FLASH—target specific frame from external swf
FLASH—target specific frame from external swf
Out of context: Reply #5
- Started
- Last post
- 9 Responses
- caseyc0
"target a specific frame" by that do you mean "go to a specific frame"?
Sounds like you are trying to load a swf and then do something like loaded_mc.gotoAndStop(10) right?
If that is the case, you will have to load the swf, and set some kind of loop to see if the frame you want is loaded and if so jump to it...
this.createEmptyMovieClip("load...
load_mc.loadMovie("some.swf");
this.onEnterFrame = function() {
var theFrame = 50;
if(load_mc._framesloaded > theFrame) {
load_mc.gotoAndStop(theFrame);
delete this.onEnterFrame;
}
}Is that what you are looking for??