MOUSEZ

This command will get the current integer Z position of the mouse pointer.

  Syntax
Return Integer=MOUSEZ()
  Returns

Will get the current integer Z position of the mouse wheel

  Description

The Z position usually belongs to the wheel you can sometimes find in the center of your mouse. The mouse Z position varies according to the mouse driver, and can be both a positive and negative value usually representing scroll wheel position.

  Example Code
do
cls
print "mousemovex "+str$(mousemovex())
print "mousemovey "+str$(mousemovey())
print "mousemovez "+str$(mousemovez())
print "mouse position x "+str$(mousex())
print "mouse position y "+str$(mousey())
print "mouse position z "+str$(mousez())
print "Press 1 to hide mouse"
print "Press 2 to show mouse"
print "Press 3 to change mouse image"
print "Press 4 to change mouse image back"
print "Press 5 to position mouse to top of screen"
if scancode()=2 then hide mouse
if scancode()=3 then show mouse
if scancode()=4 then change mouse 1
if scancode()=5 then change mouse 0
if scancode()=6 then position mouse mousex(),0
if mouseclick()=1 then print "left mouse button"
if mouseclick()=2 then print "right mouse button"
loop
end
  See also

INPUT Commands Menu
Index