However, with some latest updates it does not anymore. What is wrong??
Furthermore, presing caps+q should then take a character and send a corresponding sigs, etc.
Getting that to work would be awesome.
Thanks!
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn ; Recommended for catching common errors.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
capslock & a::
Send {Home}
return
capslock & s::
Send {^leftarrow}
return
capslock & d::
Send {^rightarrow}
return
; add text here
capslock & q::
Input, OutputVar, L1
tooltip, %outputvar%
if (OutputVar = "p")
send 900810****
if (OutputVar = "p")
send anton.****@gmail.com
if OutputVar = "a"
send Anton ***
return
;testing tooltips, favourite documents etc
^r:: tooltip, hej
capslock & f::Send {end}
capslock & 2:: run D:\
capslock & 1:: run C:\Users\Anton\Desktop\Dropbox
capslock & 3::
run C:\Program Files
run C:\Program Files (x86)
return
capslock & 4:: run D:\Downloads




