It's exact copy of example what do you think should happen?
Does need _display to stop the bloody blinking
Oh it goes off screen, did you see the next sample in Wiki that fixed that?
Eh here is my fix:
Does need _display to stop the bloody blinking
Oh it goes off screen, did you see the next sample in Wiki that fixed that?
Eh here is my fix:
Code: (Select All)
Screen 12
PX = 320: PY = 240 'center position
Do: _Limit 200
Do While _MouseInput
mmx = _MouseMovementX
mmy = _MouseMovementY
If (PX + mmx) >= 0 And (PX + mmx) <= _Width Then PX = PX + mmx
If (PY + mmy) >= 0 And (PY + mmy) <= _Height Then PY = PY + mmy
Loop
Cls
Circle (PX, PY), 10, 10
Locate 1, 1: Print PX, PY
_Display
Loop Until InKey$ = Chr$(27) 'escape key exit
b = b + ...