Switching tasks with Alt+Tab - mouse jumps to center of screen

glennsnoise

New member
Local time
8:46 PM
Messages
1
Hi. I often have multiple tasks open, and frequently toggle (task shift) back and forth between applications as part of my daily job routine. I've been moved to a new desk, and am irritated by the fact that whenever I type Alt+Tab to switch tasks (toggle), my mouse pointer immediately moves to the center of the screen. This happens every time I switch tasks using Alt+Tab. It isn't conducive to the type of work I do, and I would like to have the mouse pointer stay still instead of involuntarily jumping to the center of the screen over and over again.

I have asked Windows Support, as well as IT at my job, and no one knows how to fix this. There must be something in the preferences to change this, right?
 

My Computer My Computer

At a glance

Windows 7 Enterprise - 64 bit
Computer type
PC/Desktop
Computer Manufacturer/Model Number
Dell Optiplex 790
OS
Windows 7 Enterprise - 64 bit
Browser
Internet Explorer and Firefox
For now see if this AutoHotkey script is any help

Code:
CoordMode, Mouse, Screen
return

~!Tab::
  MouseGetPos,X,Y
  KeyWait, Alt
  KeyWait, Tab
  MouseMove,%X%,%Y%
return

Edit: It should put the mouse to the spot it was when AltTab was pressed.
 

My Computer My Computer

At a glance

Windows 7 32 bitAMD 5200+ dual core2 GBNVidia GeForce 6150SE 128 MB
Computer Manufacturer/Model Number
HP Media Center
OS
Windows 7 32 bit
CPU
AMD 5200+ dual core
Memory
2 GB
Graphics Card(s)
NVidia GeForce 6150SE 128 MB
Monitor(s) Displays
CRT
Screen Resolution
1280x1024
Hard Drives
500 GB Sata internal :

SIIG USB 3.0 docking stations w/WD Caviar Black 6 Gb/s drives
Keyboard
PS/2
Mouse
PS/2 Wheel Mouse
Other Info
SIIG USB 3.0 PCIexpress card.
Back
Top