-
Go to and load
Im building a website and i need a command to tell a movie clip to go to play fram 240 then load an external swf into a empty movie clip
i tried this
on (release) {
_root.gotoAndStop(240);
_root.contents.loadMovie("links.swf");
}
but it doesnt work. ne suggestions?
-
You won't be able to load the file until you're in the frame with the movieClip. I would set a variable to "links.swf" and then when you get to frame 240 (which I would put a label on & go to that label instead of using the frame number), then say:
_root.contents.loadMovie(variable_name);
Hope that helps!!