mousex.bmx 166 B

12345678910
  1. ' mousex.bmx
  2. ' the following tracks the position of the mouse
  3. graphics 640,480
  4. while not keyhit(KEY_ESCAPE)
  5. cls
  6. drawoval mousex()-10,mousey()-10,20,20
  7. flip
  8. wend