Is there any way to use as3 to go to a button sitting on a frame and (using just script) click it to play movie? I have 15 sec movie inside other movie, so I want after 15 sec to use some code to go back to a button on a previous frame and push it but using just actionscript 3.
This is script I have on a button which I want to execute:
iphone_btn.addEventListener(MouseEvent.CLICK, buttonClick);
function buttonClick(event:MouseEvent):void{
gotoAndPlay(62);
};
Hope you know what I mean.
Thanks