My main swf loads other swf's via this timeline code:
var req:URLRequest = new URLRequest("scene1.swf");
var loader:Loader = new Loader();
loader.load(req);
addChild(loader);
Does anyone have AS3 code for a button click to take me back to the main swf (at a particular frame label?) Thx!!
