Answered
How do I play a movie clip inside another movie clip?
Hello
i want to playa movie clip when i click ona nother movie clip
how can i do it?
thank you
Hello
i want to playa movie clip when i click ona nother movie clip
how can i do it?
thank you
The following is using generic instance names based on your description, so you will have to change the names to agree with your design.
anotherMovieclip.addEventListener(MouseEvent.CLICK, play_aMovieclip);
function play_aMovieclip(evt:MouseEvent):void {
aMovieclip.play();
}
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.