views:

533

answers:

1

I have a tile that has verticalScrollPolicy="on". Inside this tile are multiple panels, which are actually instances of a module that I've defined. The scrolling on the tile works fine when my cursor is over one of these panels, but it doesn't scroll if my cursor is just on the tile, not over one of the panels. There is space between each of the panels, and it doesn't work there either.

There is quite a bit of space where this problem happens, so it's pretty annoying. Is there a way for me to make the mouse wheel work when the cursor is just over the background?

To clarify, here's what the layout looks like (not enough rep to post an image):
http://www.freeimagehosting.net/uploads/cc18dd8c61.jpg

A: 

If it were flex3 you can capture the flash event mousewheelup and mousewheeldown. there are probably similar events in flex4

invertedSpear
There are events for mouseWheel and mouseWheelOutside, but neither of these events fire when the cursor is on the tile. The mouseWheel event fires when the cursor is on the panel, but that's not where the problem is....
Travesty3