Sorry for those which I didn’t mention in the title… :puzzle:
I’m making my transition from a little tut Voetsjoeba showed in this thread: http://www.kirupa.com/forum/showthread.php?t=39101
So to clear it out I’m using this AS:
//button:
button.onRelease = function() {
if (currMovie == undefined) {
currMovie = “artist”;
container.loadMovie(“artist.swf”);
} else if (currMovie != “artist”) {
if (container._currentframe == container.midframe) {
currMovie = “artist”;
container.play();
}
}
}
//first frame of artist.swf
midframe=29
//frame 29 of artist.swf
stop();
//last frame of artist.swf
_root.container.loadMovie(_root.currMovie+".swf");
this all works perfectly… but I want it after clicking the button to first load the external swf… and if it’s fully loaded flash will play the outro… so you don’t have to wait the loading time between the last frame of “some.swf” to first frame of the next swf… [sorry for my English]
thx for any help…