hi, I’m making a whole-flash site. I need to load an .swf file in a specific frame, from a swf previously loaded in the main movie.
I got, for example.
main.swf
tal.swf
tal2.swf
I loaded tal.swf into main.swf
in tal.swf I need a link to load tal2.swf, frame 2, into main.swf (in the same movieclip where tal.swf was loaded).
I’m explaining myself the best I can.
I do you do that?
I tried:
on (press) {
_root.display.loadMovie(“tal.swf”);
_root.display.gotoAndStop(2);
}
could anyone please help me?