loadMovie question
- Started
- Last post
- 7 Responses
- pmbrum
is there any way to load a new SWF and go to a specific frame from the same script? ie:
loadMovie ("url.swf", this, "frameLabel");
- UndoUndo0
load it into an MC then target the mc with a gotoAndPlay()
mynewmc.gotoAndPlay("frameLabel...
- pmbrum0
i'm trying to load the SWF and target the new frame simultaneously, from the same button...
sorry if that wasn't clear before
- UndoUndo0
write a function that loads the swf and when loaded uses gotoAndPlay();
call the function from yr button
- pmbrum0
YES. great call. thanks for the help UndoUndo
- UndoUndo0
no problem : )
- urban100
you'll have to make sure the external swf was fully loaded before trying to move its playhead with gotoAndPlay()
- tkmeister0
i started to use the loader component. it's easy to use. then on complete, gotoAndPlay();
you should look into it.