Replies: 4 comments
-
And just want to go ahead and post this. it is not against the tos to use this script. |
Beta Was this translation helpful? Give feedback.
0 replies
-
You'll probably get better performance using: https://karabiner-elements.pqrs.org |
Beta Was this translation helpful? Give feedback.
0 replies
-
Ok thanks I posted there before but never got a response. I’ll keep trying.
… On Mar 12, 2021, at 5:40 PM, Chris Hocking ***@***.***> wrote:
You'll probably get better performance using: https://karabiner-elements.pqrs.org
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub, or unsubscribe.
|
Beta Was this translation helpful? Give feedback.
0 replies
-
Here is the comment. I’m not sure why I’m doing wrong with it but seems like it’s not a function in karabiner anymore?
pqrs-org/Karabiner-Elements#2598 (comment)
… On Mar 12, 2021, at 6:23 PM, Kyle ***@***.***> wrote:
Ok thanks I posted there before but never got a response. I’ll keep trying.
>> On Mar 12, 2021, at 5:40 PM, Chris Hocking ***@***.***> wrote:
>>
>
> You'll probably get better performance using: https://karabiner-elements.pqrs.org
>
> —
> You are receiving this because you authored the thread.
> Reply to this email directly, view it on GitHub, or unsubscribe.
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
have been using autohotkey in the past and have this script that I cannot live without while playing world of warcraft. I suffered a hand injury and can't play without the following script attached
All it does is key repeat the letter r while holding it down. I use an addon in world of warcraft called gnomesequenceenhanced to put my abilities in to play. and the scritp uses the same button over and over until released to cast my abilities.
The old script is attached that worked in autohotkey on pc, i need a new script built in hammerspoon to do the exact same thing since switching to a m1 mac mini.
Hold down the r key, it repeats while world of warcraft window is active until i release it.
Here is the script from autohotkey.
#ifWinActive World of Warcraft
{
$r::
Loop
{
if not GetKeyState("r", "P")
break
Send r
Sleep 40
}
return
}
Beta Was this translation helpful? Give feedback.
All reactions