Question
Playback pause with AS3.
With AS3, I need to pause the playback for about 2 seconds, then have it automatically resume. For Canvas the code would be
stop();
var stoVariable:uint = setTimeout(Variable, 2000);
function Variable() { play(); }
How would I modify this for AS3?
