Just off the top of my head, - so then don't disable mouse events since you 
need them.  Instead, maybe in all your classes, the container, and the children 
classes, when a rollover occurs, broadcast a custom event AND also make it 
bubble up the display list (bubbles=true) - then wherever your current 
listening, listen for the CUSTOM events instead if the standard mouse over 
events and then respond accordingly.

That would seem to separate out all the mouse over events into separate events 
you listen for.  So in your class that listens, it would end up looking 
something like this:

addEventListener(MySpecialEvent.MY_CONTAINER_ROLLED_OVER, 
onMyContainerRolledOver);
addEventListener(MySpecialEvent.MY_SQUARE_ROLLED_OVER, onMySquareRolledOver);
addEventListener(MySpecialEvent.MY_TRIANGLE_ROLLED_OVER, 
onMyTriangleRolledOver);

Would something like that work?  


Jason Merrill
Bank of America     Instructional Technology & Media   ·   Learning Performance 
Solutions L&LD

Interested in Flash Platform technologies?  Join the Bank of America Flash 
Platform Community 
Interested in innovative ideas in Learning?  Check out the Innovative Learning 
Blog and subscribe.




_______________________________________________
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Reply via email to