I have written very simple script:
Code: Select all
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn ; Enable warnings to assist with detecting common errors.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
#IfWinActive StarCraft II
LCtrl::LShift
LShift::LCtrl
Return
Code: Select all
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
After restarting the script the problem went away, why is this happening? Any proven solution?
Note: Since i have if winActive command i added my script in the startup folder (i am not sure if its relevant)
thanks