PDA

View Full Version : (MX) can anybody help me to load a specific frame of external SWF



Eyeball
May 21st, 2003, 11:41 AM
hey there I posted several strings before and no response

I want to load a specific frame of external.swf into a main.swf, any help please.

brian monkey
May 21st, 2003, 12:30 PM
could you just load the movie and then put a gotoAndStop() action on the first frame of the external movie???

maybe, but I am not sure~!

thoriphes
May 21st, 2003, 08:55 PM
Originally posted by brian monkey
could you just load the movie and then put a gotoAndStop() action on the first frame of the external movie???

maybe, but I am not sure~! yeah, that's probably the best way to do it, unless you want to create a separate movie with just that one frame.

Eyeball
May 22nd, 2003, 12:48 AM
well u see my external movie is my product page which contains 15 images and text on each frame so when i click on one specific image in my main.swf it should load an external swf (products.swf)with a specific frame that contains some specific information about that particular product(image)

so this option won't work, I bet there are other ways to to that ,

let's see what other kirupians have to say

thx so much

kode
May 22nd, 2003, 12:58 AM
you could try something like this:

myButton.onRelease = function() {
_global.frame = 4;
myMovieClip.loadMovie("external.swf");
};
then put this action in the first frame of the external .swf:

this.gotoAndStop(frame);
;) =)