So I am new to flash and I went through the following tutorial about flash transitions:
http://www.kirupa.com/developer/mx2004/transitions2.htm
I was able to impliment the code/concepts into my own flash file with only 1 error. When the SWFs are loading and I click a button to go to load a different SWF, the button breaks. If the loading movie has not hit the midframe and the button is clicked, that button becomes disabled.
The Action Script we had to use is only slightly different, adding the _root. in front of the container so it’ll pull the movies in. Without the _root.container, the system wasn’t working at all.
Has anyone had this problem that can help me fix it?
Thanks!
on (release) {
if (_root.currMovie == undefined) {
_root.currMovie = “flash/flash2ndMovie”;
_root.container.loadMovie(“flash/flash2ndMovie.swf”);
} else if (_root.currMovie != “flash/flash2ndMovie”) {
if (_root.container._currentframe >= container.midframe) {
_root.currMovie = “flash/flash2ndMovie”;
_root.container.play();
}
}
}