Reputation: 1
I have been trying for a couple of hour to try and get CTRL - UPKEY to work as WIN - TAB. This is similar to Mac actually but would help me a lot as a leftie.
^Up::#Tab
is the closest I got but not working.
Upvotes: 0
Views: 88
Reputation: 2344
You were very close! As @user3419297 mentioned, one working solution would be ^Up::Send #{Tab}
. Here is why this new syntax works as opposed to the original one:
Key a --> Key b
remapping (for which your original syntax would work)Send
command.Edit: This would actually proper syntax normally- the reason it didn't work had to do with SendMode Blind
that a::b
remappings use.
(current code at this point: ^Up::Send #Tab
)
{}
in order to convey this to AutoHotkey.^Up::Send #{Tab}
Hope this helped you understand why these differences are needed. Feel free to let me know if you need more clarification on this!
Upvotes: 2