I'm a flex dev, and I need to make the scrolling experience in my flex app more uniform across browsers. Flex scrolling relies on the delta property of mouse scroll events, which we all know is different across browsers.
After reading another StackOverflow post(http://stackoverflow.com/questions/5527601/normalizing-mousewheel-speed-across-browsers) I thought maybe I could somehow take advantage of the fact that qooxdoo has invested time in their MouseScroll event class with some crazy algorithm (http://news.qooxdoo.org/the-week-in-qooxdoo-2010-10-08).
So I wanted to redispatch this a new MouseSCroll event with the qooxdoo "normalized" delta property to flex.
Is this possible? I am rubbish at javascript so wouldn't even know where to start.