Is there a way to store the number of the frame currently playing in actionscript, and then recall that frame number later?
Any help is appreciated.
Printable View
Is there a way to store the number of the frame currently playing in actionscript, and then recall that frame number later?
Any help is appreciated.
and then when you need to know what frame was saved, just use:PHP Code:var theframe:Number;
theframe = _currentframe
later on.PHP Code:trace(theframe)
let me know if that's what you were looking for