I have a three monitor set up on Windows 7 and I sometimes lose track of where my cursor is. Is there any Windows shortcut to reset the mouse position? I'm guessing there is not, but might there be a way to set up a simple macro I could bind to a key combination to set my cursor to a default location, such as the center of the primary display?
|
|
Combining a few of the above ideas, I came up with this script. It's tested and working. CenterCursor.ps1
Save this script in a convenient folder, and create a shortcut in your All Programs menu:
Now whenever you press Ctrl+Alt+Shift+C, your cursor will return home. Edit: While it doesn't seem to be a requirement on my computer, I've added Patrick's suggestion to the shortcut. |
|||||||||||
|
|
Turning on "Show location of pointer when I press the CTRL key" is one option. This is especially useful if it is currently changed to some custom mouse pointer by an application, like a paint brush, that is harder to see.
|
|||||
|
|
You can do this fairly easily with a software program called UltraMon. In the options section there is a place to specify HotKeys. You can see screenshot where I've setup a hot key for Crtl + Shift + C
|
|||||
|
|
Here's an AutoIt script to do it. AutoIt can compile its scripts to .exe, which you could then assign a hotkey.
|
|||
|
|
|
The following AutoHotkey command sequence will instantly move the mouse to the center of the primary display:
For example, compile the following script:
You can then create a shortcut ( Download: CenterMouse.exe, 784KB, ahk.igalvez.net |
||||
|
|
|
Using WMIC and Powershell (both of which should already be installed under Windows 7) this should be doable. Using WMIC, you can get the screen width and height:
and Powershell can set the mouse position (replacing
So, a little trial and error (and basic math) ought to give you a script which, when run, centers the mouse pointer. |
|||||
|
|
uhh...I dont think so but on the issue of finding your mouse you CAN turn on "pointer sonar" so your pointer will be honed into when you press the control key. (currently on a mac but I will try and get screen shots in a moment and edit it in) regarding macro idea. I guess its plausible...but I dont know of any app that has this already programed, or how to program this myself |
|||
|
|
|
Another AutoIt3 program:
|
||||
|
|

