View Full Version : Stopping movie for certain time?
Surekin
July 18th, 2005, 06:33 PM
How can i stop a movie let's say for 60 seconds
EDIT: and then restart at the frame where i stopped it...for sure...._)
Help me please
Skribble
July 18th, 2005, 07:33 PM
onLoad = function () {
stop();
framerate = 30;
timer = 60*framerate;
};
onEnterFrame = function () {
timer--;
if (timer <= 0) {
play();
}
};
just replace the number after framerate with your current frame rate.
electrikmonk
July 18th, 2005, 07:38 PM
http://www.spymac.com/forums/showthread.php?threadid=137222
i posted a little .fla with instructions for such a thing at this link. inside is a little mov symbol you can drop anywhere. i should just make it a prototype. hope it helps. if there's a better way to do this, please let me know (seems like a setInterval or something might work better).
Powered by vBulletin® Version 4.1.10 Copyright © 2012 vBulletin Solutions, Inc. All rights reserved.