|
-
go, play, or?...help please!!
Pardoned my bad English , are Italian! I have two different movie clip (every movie clips have various frames) in two frames different and I would want that they came reproduced in succession as I must make? In alternative, there are the possibility to insert the frames of the second movieclip in the first one?
Please help!!!
Rewrite in italian:
Ho due differenti movie clip in due differenti frames vorrei che venissero riprodotti di seguito, come devo fare? In alternativa, c'è la possibilit* di inserire i frames del secondo movieclip nel primo?
-
undead creature
Re: go, play, or?...help please!!
Originally posted by canzonando
I have two different movie clip (every movie clips have various frames) in two frames different and I would want that they came reproduced in succession as I must make? In alternative, there are the possibility to insert the frames of the second movieclip in the first one?
First of all,tell us if you're talking about FUN (KoolMoves source file) or SWF (no FUN source file for them) files.
-
I am talking about Fun movies mc1 and mc2 into two differents frames, they must play one after one. Do you have an action script for this? or Koolmoves have function for this? I want also insert a koolmoves preloader but the program play only the first frame.
-
undead creature
Originally posted by canzonando
I am talking about Fun movies mc1 and mc2 into two differents frames, they must play one after one. Do you have an action script for this? or Koolmoves have function for this? I want also insert a koolmoves preloader but the program play only the first frame.
You have (at least) two options:
1) copy & paste each frame of mc2 to the end of mc1
2) if the last keyframe of mc1 is 66 and the last keyframe of mc2 is 77, put each "child-movie" in a separate ROOT keyframe and add this script for it:
jumpto = function(){
if(_root.mc1._currentframe == 66){
clearInterval(jmpto);
_root.gotoAndPlay("the keyframe for mc2");
}
jmpto = setInterval(jumpto,33);
stop();
Use a similar script for the mc2's keyframe.
-
Thanks! Your information as been very usefull!Everything is OK now!
http://www.mrpacky.it this is my realization.
-
undead creature
Well done !
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|