hi..
my problem is that i have one containers loaded with a mesh from a .obj.
i enabled this mesh for mouseclicked.
then add an eventlistener for the contaier that has this mesh..
but when i clone this container into a second container..
the second containers dont detect the mouseDown event..
like this
mesh1.mouseEnabled = true;
ocCar2 = ocCar.clone() as ObjectContainer3D;
ocCar2.x+=200;
view.scene.addChild(ocCar);
view.scene.addChild(ocCar2);
ocCar.addEventListener(MouseEvent3D.MOUSE_DOWN,function1);
ocCar2.addEventListener(MouseEvent3D.MOUSE_DOWN,function2);
the second eventlistener just doesnt work..
who can i extract the mesh from the container so i could enabled??
thx alot in advance..