if i run this code, scroll a little and switch to another program (say: a chat window) the mouseZspeed sometimes changes to a random(?) number. if i do not scroll in the blitz window and change the focus to other windows, nothing happens (well, the scoll value doesn't change).
why?
why?
Graphics 200,200,16,2 SetBuffer(BackBuffer()) temp = 0 While Not KeyHit(1) Cls scroll = MouseZSpeed() If scroll <> 0 Then temp = scroll EndIf Text 10,10, temp Flip(0) Wend