matticus1181
02-25-2005, 06:32 AM
I wanting to play a movie clip right after the first one finishes playing, and they' can't just be right after each other on the timeline...What it does right now is skip the first movie clip and immediately play the second one...on the button that starts it, this is my code:
on(release){
if(expand_box.isopen == 1){
expand_box.gotoAndPlay("close");
expand_box.gotoAndPlay("marketingopen");
}
}
I've tried some sort of a loop to try to give it time to finish the first clip, but i just throw it into an infinite loop...Any thoughts on how to do this? thanks.
on(release){
if(expand_box.isopen == 1){
expand_box.gotoAndPlay("close");
expand_box.gotoAndPlay("marketingopen");
}
}
I've tried some sort of a loop to try to give it time to finish the first clip, but i just throw it into an infinite loop...Any thoughts on how to do this? thanks.