Thanks Kitty. Maybe in next version mouse wheel start to work

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts Menu
LOCAL mx%,my%,b1%,b2%,b3%,mw%,b1a%,b2a%
LOCAL sx%,sy%
GETDESKTOPSIZE sx,sy
SETSCREEN sx,sy,1
PRESCALER 640,360
LIMITFPS 60,TRUE
//only works if uncomment next line
//SYSTEMPOINTER TRUE
WHILE TRUE
MOUSESTATE mx,my,b1,b2
mw=MOUSEAXIS(2)
b1a=MOUSEAXIS(3)
b2a=MOUSEAXIS(4)
b3=MOUSEAXIS(5)
CLEARSCREEN RGB(204,204,204)
PRINT "MX :"+mx,10,0
PRINT "MY :"+my,10,10
PRINT "B1 :"+b1,10,20
PRINT "B2 :"+b2,10,30
PRINT "B1a:"+b1a,10,40
PRINT "B2a:"+b2a,10,50
PRINT "B3 :"+b3,10,60
PRINT "MW :"+mw,10,70
SHOWSCREEN
WEND