Scroll wheel  
Author Message
socodevil





PostPosted: 2006-4-2 2:17:05 Top

flash-actionscript, Scroll wheel can someone please tell me how to get the scroll wheel to work in a flash movie?

thanks,
dawn

 
abeall





PostPosted: 2006-4-2 4:52:00 Top

flash-actionscript >> Scroll wheel Did you even look in the F1 actionscript reference? It's called onMouseWheel()

var mouseListener = new Object();
mouseListener.onMouseWheel = function(delta) {
clip_mc._x += delta;
}
Mouse.addListener(mouseListener);