Hey,
I have created a Movie Clip Button got everything working but i am working on my AS for loading a external SWF into a MC on the main time line…Below is the Current AS i have been trying to figure out;
Any one can help me out mean alot?
[COLOR=SeaGreen]this.onRelease = function(){
if (_root.currMovie == undefined) {
_root.currMovie = “temp7_pagetwo”;
this.container.loadMovie(“temp7_pagetwo.swf”);
} else if (_root.currMovie != “temp7_pagetwo”) {
if (this.container._currentframe >= this.container.midframe) {
_root.currMovie = “temp7_pagetwo”;
this.container.play();
}
}
}
}[/COLOR]