Answered
control main timeline with as3
I'm having some problems playing the main timeline from one
of it's children. In actionscript 2 the command would have been:
_root.gotoAndPlay(2);
How is this done with actionscript 3?
root.gotoAndPlay(2) does not work since root is a DisplayObject instead of a MovieClip.
_root.gotoAndPlay(2);
How is this done with actionscript 3?
root.gotoAndPlay(2) does not work since root is a DisplayObject instead of a MovieClip.