Skip to content
New issue

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

Keys get stuck sometimes #14

Open
trajano opened this issue Oct 8, 2022 · 5 comments
Open

Keys get stuck sometimes #14

trajano opened this issue Oct 8, 2022 · 5 comments

Comments

@trajano
Copy link

trajano commented Oct 8, 2022

I remapped the side buttons of my mouse to the mouse wheel but it sometimes locks.

@ahk.hotkey("XButton2")
def scroll_up():
    while ahk.is_key_pressed("XButton2"): # remains true forever sometimes
        ahk.send("{WheelUp}")
        ahk.sleep(0.010)

@ahk.hotkey("XButton1")
def scroll_down():
    while ahk.is_key_pressed("XButton1"): # remains true forever sometimes
        ahk.send("{WheelDown}")
        ahk.sleep(0.010)

Using is_key_pressed_logical does not work

@Perlence
Copy link
Owner

I didn't notice keys getting stuck with this script, until I started hammering all CPU cores with another script. The analogous AHK script worked fine under such pressure.

@trajano
Copy link
Author

trajano commented Oct 11, 2022

Yes I noticed the same as well. It is when I do a number of other things. But it is hard to pin down.

@trajano
Copy link
Author

trajano commented Oct 12, 2022

In your test harness, what would happen if you increased priority or level?
Tried it on mine, for most of the day it was ok when I set it to 100 but got stuck again just now. :(

@trajano
Copy link
Author

trajano commented Oct 13, 2022

I am going to try a different approach and see if it pans out

@ahk.hotkey("XButton2")
def scroll_up():
    #while ahk.is_key_pressed("XButton2"):
    while not ahk.wait_key_released("XButton2", 0.010):
        ahk.send("{WheelUp}")

@ahk.hotkey("XButton1")
def scroll_down():
    while not ahk.wait_key_released("XButton1", 0.010):
        ahk.send("{WheelDown}")

I also took out priority for now to see if it needs it or not

No luck got stuck still, will try priority=1000 to see if it helps (no luck still)

@trajano
Copy link
Author

trajano commented Oct 15, 2022

For now, I'm running two AHKs the Python to do some OpenRGB integration and another one that will do the problematic states

#NoEnv
#InstallKeybdHook
#SingleInstance
SetCapsLockState, AlwaysOff
SetNumLockState, AlwaysOn
CapsLock::return
Launch_Mail::
While GetKeyState("Launch_Mail") {
    Send {LButton}
    Sleep, 100
}
return

Browser_Search::
While GetKeyState("Browser_Search") {
    Send {WheelUp}
    Sleep, 10
}
return

#If !WinActive("ahk_exe Overwatch.exe") and !WinActive("GUNDAM EVOLUTION")
XButton2::
While GetKeyState("XButton2", "p") {
    Send {WheelUp}
    Sleep, 10
}
return

XButton1::
While GetKeyState("XButton1", "p") {
    Send {WheelDown}
    Sleep, 10
}
return
#If

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants