flash help!!!!!plz!!
flash help!!!!!plz!!
- Started
- Last post
- 5 Responses
- factoryxii
im creating a flash into right now..i was wondering how to stop WHOLE thing includs music at frame 79 for only 3~5 sec..then keep playing from frame 80!! anyone ?? sorry about my poor english
- enjine0
For Flash 8, paste this into your 79th frame:
stop();
_global["setTimeout"](this, "beginAgain", 3000);
function beginAgain(){
this.play();
}
- factoryxii0
sorry..wut is 3000?
- version30
3000 miliseconds
- factoryxii0
im sorry,i just start learning actionscript,so i just put this code in frame 79?
stop();
_global["setTimeout" ](this, "beginAgain", 3000);
function beginAgain(){
this.play();
}
- enjine0
if frame 79 is where you want it to stop, yes. paste it in a blank keyframe.