Need to get swf to load from another button
Hello all,
I am loading swfs into a movie clip. However, the contact button is not a loaded swf any longer. It's in the main flash page. This is what I want to do.
All the buttons load the external swfs except when I click on the contact button that is in the main flash page. I need to get the other buttons to load after I click the contact flash button.
Below is the code for the contact button and the one under for one of the other buttons.
Thanks for any help you can send my way.
Contact Button
Actionscript Code:
on (rollOver) {
this.contactMC2.gotoAndPlay("start");
}
on (rollOut) {
this.contactMC2.gotoAndPlay("goback");
}
on (press) {
this.contactMC2.gotoAndPlay("press");
}
on (release) {
_root.flash.intro.gotoAndPlay("contact form");
}
Loading SWF Button
Actionscript Code:
on (rollOver) {
this.aboutmeMC2.gotoAndPlay("start");
}
on (rollOut) {
this.aboutmeMC2.gotoAndPlay("goback");
}
on (press) {
this.aboutmeMC2.gotoAndPlay("press");
}
on (release) {
loadMovie("aboutme.swf", this._parent.blank_mc);
}