// Project Example: SetRawMouseVisible()
// Created: 2015-01-22
Setvirtualresolution(640,480)
ResetTimer()
// Move the mouse pointer to the left half of the
// window and the poiner will be visible.
// when in the right hand half (after a few seconds)
// the pointer will disappear.
Repeat
Xpos=GetPointerX()
If Xpos>320
SetRawMouseVisible(0)
ELSE
SetRawMouseVisible(1)
EndIf
Sync()
Until Timer()>20
End
Help make AGK better by submitting an example for this command! (All examples are subject to approval)