This content has been marked as final.
Show 7 replies
-
1. Re: How can I add a pause after each photo to my flash file?
moccamaximum Apr 3, 2013 1:23 AM (in response to novo_apprentisse)Depending on which version of actionscript you use...
in AS3: look into the Timer class
in AS2: look into setTimeout
-
2. Re: How can I add a pause after each photo to my flash file?
novo_apprentisse Apr 3, 2013 3:04 PM (in response to moccamaximum)Thanks for responding but can you be more specific because I still do not understand how to do this. I am a total beginner and really need a step by step assistance.
-
3. Re: How can I add a pause after each photo to my flash file?
moccamaximum Apr 3, 2013 11:58 PM (in response to novo_apprentisse)which actionscript version are you using (Look into your publish settings to figure that out)?
-
4. Re: How can I add a pause after each photo to my flash file?
novo_apprentisse Apr 5, 2013 12:29 PM (in response to moccamaximum)I am using Actionscript 3
-
5. Re: How can I add a pause after each photo to my flash file?
moccamaximum Apr 7, 2013 11:58 PM (in response to novo_apprentisse)//Timers are measured in milliseconds
var minuteTimer:Timer = new Timer(60000);
minuteTimer.addEventListener(TimerEvent.TIMER, exchangePhoto);
function exchangePhoto(e:Event):void{
//put your code of exchanging your photo here
}
//you have to start the timer explicitly, when your app starts
minuteTimer.start();
-
6. Re: How can I add a pause after each photo to my flash file?
novo_apprentisse Apr 10, 2013 8:30 PM (in response to moccamaximum)Thak you Moccamaximum... It's working

