Well, that depends on the scrollbar implementation, I guess. If you have access to the
actual MouseEvent handler the scrollbar uses, put it in there (this is a function provided
by the Event class, so you call it on event objects).
If you don't, try adding a mouse listener on the scrollbar object manually, with a little
lower priority (to guarantee the scrollbar will still work), and call it in there. E.g.
something like this:
function(e
:MouseEvent):void { e.
stopPropagation();
});
No guarantee this will work, though, just an idea
