We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
V1:
f:: MsgBox, You pressed f! Return g::MsgBox, You pressed g! h:: GoSub, f GoSub, g Send, f Send, g Goto, f Return
V2 (Converted):
f(): { ; V1toV2: Added bracket global ; V1toV2: Made function global MsgBox("You pressed f!") Return } ; V1toV2: Added Bracket before hotkey or Hotstring g(){ :MsgBox("You pressed g!") } h:: { ; V1toV2: Added bracket global ; V1toV2: Made function global f() g() Send("f") Send("g") f() Return } ; V1toV2: Added bracket in the end
V2 (Expected):
Hotkey("f", AHKey_f) Hotkey("g", AHKey_g) AHKey_f(*) { ; V1toV2: Added bracket global ; V1toV2: Made function global MsgBox("You pressed f!") Return } ; V1toV2: Added Bracket before hotkey or Hotstring AHKey_g(*){ MsgBox("You pressed g!") } h:: { ; V1toV2: Added bracket global ; V1toV2: Made function global AHKey_f() AHKey_g() Send("f") Send("g") AHKey_f() Return } ; V1toV2: Added bracket in the end
The AHKey_ can be changed, just a placeholder for now
AHKey_
The text was updated successfully, but these errors were encountered:
No branches or pull requests
V1:
V2 (Converted):
V2 (Expected):
The
AHKey_
can be changed, just a placeholder for nowThe text was updated successfully, but these errors were encountered: