vote up 1 vote down star

In a pure Actionscript 3 project, I have a sprite that overlaps another sprite. The lower sprite normally handles mouse clicks. The lower sprite no longer processes mouse events when it is overlapped by the higher sprite.

I understand that this is normal behavior.

I would like the lower sprite to handle mouse events when it is overlapped. (In my particular instance, the higher sprite is just a decorative piece; it has no normal mouse interactivity anyway.) Is this possible? Is there a way to route mouse events through the higher sprite?

I found a short, dated discussion about my problem here:

http://kb2.adobe.com/cps/137/tn_13766.html

Thank you.

flag

2 Answers

vote up 6 vote down

Should be something like this:

higherSprite.mouseEnabled=false;
higherSprite.mouseChildren=false;
link|flag
You only need to set mouseEnabled. – Lillemanden Jul 27 at 9:14
If you have other InteractiveObjects (MovieClip, Sprite, etc...) within "higherSprite" you need mouseChildren=false too ;) – Cay Jul 27 at 14:15
vote up 0 vote down

This worked well for me! Thank you, Cay and Lillemanden.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.