hy there! i followed the kirupa forum about transitions between SWF’s, but have one problem now. dont know how to load a dinamic text in a text_MC, but make it apear only in the midframe of the background mc…
i have a dropdown menu who loads the BG’s to the container_MC in the main timeline (its a movieclip too) who has the following code in the button:
on (release) {
if (_root.currMovie == undefined) {
_root.currMovie = “bg2”;
_root.contentor.loadMovie(“bg2.swf”);
} else if (_root.currMovie != “bg2”) {
if (_root.contentor._currentframe >= _root.contentor.midframe) {
_root.currMovie = “bg2”;
_root.contentor.play();
}
}
}
on (release) {
_root.scroller.loadText = new loadVars();
_root.scroller.loadText.load(“EQUIPA.txt”);
_root.scroller.loadText.onLoad = function() {
_root.scroller.text = this.TEXTO;
};
}
i know this second part is wrong, but its the best i could do :S
how do i make it unload the preview text, and load a new one when the bg finishes the intro animation (gets to the midframe)?
http://cosmos.oninetspeed.pt/pantas/main.fla - for the main file
or
http://cosmos.oninetspeed.pt/pantas/ - to view the site
thanks in advance for any post!