hi,
i have a plane where i have put a MovieMaterial and made it
interactive:
var material1:MovieMaterial = new MovieMaterial(mcTeste1);
material1.interactive = true;
plane1 = new
Plane({material:material1,width:mcTeste1.width,height:mcTeste1.height,segmentsW:
1,segmentsH:1});
plane1.bothsides = true;
plane1.useHandCursor = true;
and inside the mcTeste1 i have a movieclip with a CLICK event, the
MOUSE_OVER event works well but the CLICK event does not work.
public function mcTeste()
{
bt1.addEventListener(MouseEvent.CLICK, bt1Click);
bt1.addEventListener(MouseEvent.MOUSE_OVER, btOver);
bt1.addEventListener(MouseEvent.MOUSE_OUT, btOut);
}
what do i need to do to make the MovieMaterial send the clicks to the
mcTeste1?
regards,
herculano campos
www.herkulano.com