Run this code and use the scroll button on your mouse to scroll for a bit, then click away from the window, onto any other window. MouseZSpeed() is only supposed to return either -1,0 or 1. But it seems like blitz or some other force, keeps track of how much scrolling has been done, and returns this value when clicked outside of the blitz window.
Rather annoying, as my editor uses this for zooming, so when i click away, it zooms right back in :P
Funnily enough, the same happens with mouseZ()
Rather annoying, as my editor uses this for zooming, so when i click away, it zooms right back in :P
While Not KeyHit(1) temp1 = MouseZSpeed() If Abs(temp1) > 1 Then RuntimeError(" mouse Z speed has stored: = "+temp1) Wend
Funnily enough, the same happens with mouseZ()
While Not KeyHit(1) temp1 = MouseZ() Print temp1 Wend