How to click a movie clip to call out another movie clip
With much needed help from Amber, my greatest accomplishment of the flash video (that wasn’t even featured in my presentation
) is here.
To view the action click the blue tab located in the top right corner of the screen (this is called companysort_mc)
When this is CLICKED the menu slides out (companysort_btn)
Embed the button inside of the movie clip, and the movie clip inside of the larger movie clip (the screen, called: companiesabc_mc)
Name the screen on Scene1 (compabc_screen)
Actionscript:
stop();
compabc_screen.companysort_mc.companysort_menu.addEventListener(MouseEvent.CLICK, moveout);
compabc_screen.companysort_mc.companysort_btn.addEventListener (MouseEvent.CLICK, onCompanysortClick);
function moveout (event:MouseEvent) : void {
compabc_screen.companysort_mc.play();
}
function onCompanysortClick (event:MouseEvent) : void {
this.play();
}
WHAM! BAM! THANK YOU MA’AM!
