So I have this code.
stop ();
import flash.events.MouseEvent;
next_btn.addEventListener(MouseEvent.CLICK, powerClick3);
function powerClick3(Event:MouseEvent):void {
var ld:Loader = new Loader()
ld.load(new URLRequest(“conflict_resolution.swf” ))
addChild(ld)
}
Where it says URLRequest and then the swf file, how to I tell it to go to this file but start playing at a specific frame?
I tried to add the frame number after the file name but nothing. Example:
ld.load(new URLRequest(“conflict_resolution.swf”, (424) ))
But that won’t work. Help?