I have a Sprite displayed on top of my view which houses a scroller with a map in, the sprite is a menu, and I want to stop the user from swiping their finger around on the menu and having the map scroll in the background, it looks silly.

How do I go about stopping swipes over the menu from passing through the the map behind it?

I have tried setting:

mouseEnabled = false;

but that had no effect.

Any more suggestions appreciated. Thanks

link|improve this question

70% accept rate
feedback

4 Answers

up vote 0 down vote accepted

With the very small amount of information given, it's hard to debug, but have you tried setting enabled=false?

link|improve this answer
Setting it on what? You have to guess, so I have to guess? :D – Hamid Aug 9 '11 at 8:19
Ok, I set this on the scroller, which is what I assume you mean and got the desired result, I will accpet this as the answer. Thanks :D – Hamid Aug 9 '11 at 9:47
feedback

I'm not sure if this works with touch interfaces, but try mouseChildren = false;

link|improve this answer
use that on which component? – Hamid Aug 9 '11 at 8:19
feedback

Possibly you're seeing a manifestation of this PlayBook/AIR bug.

link|improve this answer
After reading your link, it might appear so, I happen to be running the version shown their this this bug occurs on (the latest one in the list). I didn't see a solid solution though :( – Hamid Aug 9 '11 at 8:19
If you can run your app on AIR on the desktop, and the problem does not occur there, then I think that proves it. There has been no solution created yet, nor a particularly good workaround. :( – Peter Hansen Aug 9 '11 at 15:13
feedback

Have you tried:

               mouseChildren = false;
               //useHandCursor = true;
               buttonMode = true;
link|improve this answer
I have, unfortunately that didn't work and disabled all button clicks. – Hamid Aug 9 '11 at 9:46
Maybe you could put something transparent between your map and menu – Alexander Farber Aug 9 '11 at 12:23
feedback

Your Answer

 
or
required, but never shown

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