actionscript question
actionscript question
Out of context: Reply #2
- Started
- Last post
- 7 Responses
- fyoucher10
You can use setTimeout and an anonymous function
stop();
setTimeout(
function ():Void {
play();
}, 2000);You can put anything in the function, the duration is in milliseconds