vote up 0 vote down star

Hello,

I'm sure this must be a common question, but I haven't found an answer elsewhere.

I've got a Flash object embedded in a long webpage. I listen for the MOUSE_WHEEL event in Flash, and scroll my Flash content accordingly. However, when I scroll over the Flash object, the webpage also scrolls.

Is there any way to prevent this behaviour, i.e. lock the webpage's scrolling position when the Flash object has focus? I'd prefer not to have to use JavaScript.

flag

Why no JavaScript? – BasicallyMoney.com Aug 14 at 0:31

1 Answer

vote up 1 vote down check

I don not think this is possible without JavaScript.

You would need to communicate from the Flash movie to the browser using ExternalInterface whenever the Flash movie changes focus.

Then, have a JavaScript function on the page trap and eat the mousewheel event:

if (window.addEventListener)
    /** DOMMouseScroll is for mozilla. */
    window.addEventListener('DOMMouseScroll', handleWheelEvent, false);
/** IE/Opera. */
window.onmousewheel = document.onmousewheel = handleWheelEvent;

function handleWheelEvent(e){
    e.preventDefault();
}
link|flag
Thanks, I didn't know you could cancel events in JavaScript – Cameron Aug 14 at 22:32

Your Answer

Get an OpenID
or

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