View Full Version : stopping movie on a named frame
tonowicz
September 27th, 2001, 05:22 PM
i have a movie clip that i want to play and stop using buttons. i am trying to make the movie play until it reaches a named frame defined by the button but with not much luck. i cant have stops on the time line as this doesnt give me the right effect.
any ideas?
suprabeener
September 27th, 2001, 11:46 PM
in the frame you want it to (sometimes) stop in:
if(varStop == "hulahoop"){
stop();
varStop = 0; // this is if you want to reset the variable
// otherwise delete this line
}
then have a button that you want to trigger the stop with:
on (release){
varStop = "hulahoop";
}
tonowicz
September 30th, 2001, 03:10 PM
thanks that worked...
Powered by vBulletin® Version 4.1.10 Copyright © 2012 vBulletin Solutions, Inc. All rights reserved.