mouseMove detection by Anonymous Coder5th Oct 2006 6:13
|
---|
Summary How to let darkbasic know wen th mouse is moving. Description Code ` This code was downloaded from The Game Creators ` It is reproduced here with full permission ` http://www.thegamecreators.com sync rate 30 sync on do cls if mousemovex()>0 or mousemovey()>0 print "you are moving the mouse" endif sync loop |