mousez.bmx 154 B

12345678910
  1. ' mousez.bmx
  2. ' prints mousez() the mousewheel position
  3. Graphics 640,480
  4. While Not keyhit(KEY_ESCAPE)
  5. cls
  6. drawtext "MouseZ()="+MouseZ(),0,0
  7. flip
  8. Wend