Hey there! I’m having some trouble controlling my external .swf.
The site has a main .swf and for each submenu, this main .swf load an external movie. But i want the external movie to play an “out”-sequence, when a new button is ‘released’. Here’s my script:
the first button:
on(release){
loadMovie(“extern1.swf”,myMovieclip);
}
the second button:
on(release){
tellTarget(“myMovieclip”){
gotoAndPlay(“out”);
}
loadMovie(“extern2.swf”,myMovieclip);
}
The problem is, that it doesn’t play the out-sequence but goes straight to the in-sequence of the new external movie. SOMEONE PLEASE HELP ME!!!
I’M GOING OUT OF MY MIND, DANG IT!