exportRoot is a reference defined in the js init() function and is a global reference.
if you used parent, you would need to use 'this':
exportRoot.movieClipOne.movieClipTwo.gotoAndPlay(1);
this.parent.movieClipOne.movieClipTwo.gotoAndPlay(1);
exportRoot is a reference defined in the js init() function and is a global reference.
if you used parent, you would need to use 'this':
exportRoot.movieClipOne.movieClipTwo.gotoAndPlay(1);
this.parent.movieClipOne.movieClipTwo.gotoAndPlay(1);