Trying to play a movie clip within a movie clip when hover
Like the title say i have a MC2 inside MC1
when hover MC1 i want it to stop and MC2 to play
this is my code which is not working
var frequency = 1000;
stage.enableMouseOver(frequency);
this.zivbtn.cursor = "pointer";
stage.enableMouseOver();
myLocalThis01 = this;
this.zivbtn.addEventListener("mouseover", fl_MouseOverHandler);
function fl_MouseOverHandler()
{
myLocalThis01.zivbtn.stop();
myLocalThis01.zivbtn.arow-btn.stop();
}
What i am doing wrong?
