1123581321 Posted June 18, 2010 Posted June 18, 2010 Hi, I'm using adobe flash CS4 professional, version 10.0 and was wondering how to get a still or freeze frame - whatever it is, in order to get a frame or sequence of frames to hold for a certain period. you know what i mean.. ? thanks.
Kookas Posted February 6, 2011 Posted February 6, 2011 (edited) So, you want it to wait for a certain period of time? It can be done using ActionScript and Timers. Try this: import flash.events.TimerEvent; stop(); var sleepTime:Timer = new Timer(5000); sleepTime.addEventListener(TimerEvent.TIMER, moveOn); function moveOn(event:TimerEvent) { play(); } EDIT: Sorry, didn't check the post date, didn't realise that threads so old would be on the first page... Edited February 6, 2011 by Kookas
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now