hi folks, here’s my scenario:
I need to have 3 single labelled frames/cells: anime1a, anime1b, and anime1c in the main timeline. They need to be single cells because I am using onKeyPress Previous and Next as navigation… like a manual slideshow.
these three cells each has a goToAndPlay action that targets a same external movie – anime.swf, but to different frames. Now the problem is, since anime.swf is an external movie, I need to call it up with loadMovie (“anime1.swf”, “target”); but this causes the movie to play from the beginning even if I state
stop ();
tellTarget (“target”) {
gotoAndStop (2);
}
the goTo action doesn’t seem to register.
if I don’t do a loadMovie in every cell, and do it only right at the beginning, it works fine, but I have problem displaying the correct movie once I bring in a second set of cells targeting at another movie.
What should I do?:*(