 |
AutoHotkey Community Let's help each other out
|
| View previous topic :: View next topic |
| Author |
Message |
Repkam09 (as guest) Guest
|
Posted: Sat Jun 14, 2008 11:19 pm Post subject: making mouse move faster (move by 10's) |
|
|
I'm trying to get the mouse to move by 10's, if my mouse has not moved i want it to stay where it is. if you can fix mine, or can make a better one...
Thanks!
Repkam09
| Code: |
Hotkey,q, Exit
CoordMode, mouse, screen
LoopMain:
MouseGetPos, Vax, VaY
Wait:
MouseGetPos, VarX ,VarY
if VarX = VaX
{
Goto, Wait
}
Else
if VarY = VaY
{
Goto, Wait
}
else
varX += 10
VarY += 10
MouseMove, VarX, VarY
Goto, LoopMain
Exit:
ExitApp
| [/code] |
|
| Back to top |
|
 |
poetbox
Joined: 07 Jan 2007 Posts: 59
|
Posted: Sun Jun 15, 2008 3:48 am Post subject: |
|
|
In control panel,-mouse prop-,cursor opt,-select moving speed,DRAG the bar.
In this way,I think you can run few program.
BTW,What's the matter with you script? |
|
| Back to top |
|
 |
|
|
You can post new topics in this forum You can reply to topics in this forum
|
Powered by phpBB © 2001, 2005 phpBB Group
|