Mude entre esquerda e direita e volte com um script - clique uma vez que mudar e clique novamente e ele mudará de volta contra o RUNDLL32.EXE USER32.DLL, SwapMouseButton "que apenas troca para a mão esquerda, mas não para trás
Nota: se você quiser enviar este arquivo por e-mail depois de criá-lo no MouseHandSwitch.vbs, copie o seguinte script e salve-o como um arquivo .vbs na área de trabalho e agora você o obtém.
'> Mouse change Left to Right handed
'> and repeat to set Left to Right handed again.
'> By William Anderson July 1715
Sub DoAction(str, ms)
'> Check status until ready
status = (WshShell.AppActivate)(cPanel.ProcessID)
Do Until status = true
WScript.Sleep 100
status = (WshShell.AppActivate)(cPanel.ProcessID)
WScript.Sleep 100
Loop
if status = true then
WshShell.SendKeys str
WScript.Sleep ms
End if
End Sub
'> Set windows for best performance
Set WshShell = CreateObject("WScript.Shell")
Set cPanel = WshShell.Exec("rundll32.exe shell32.dll,Control_RunDLL main.cpl")
status = (WshShell.AppActivate)(cPanel.ProcessID)
Do Until status = true
WScript.Sleep 100
status = (WshShell.AppActivate)(cPanel.ProcessID)
WScript.Sleep 100
Loop
if status = true then
'> Send alt S to mouse panel
DoAction "%S", 20
DoAction "{ENTER}", 20
End if