Hello there !
Is that possible to have a function which would release all key down at once ?
I'm currently using variables to press keys. But the token {STATE_KEYSTATE} doesn't work with all keys using brackets like [SHIFT] for instance. So, if I want to detect if this key is pressed, I have to check {STATE_KEYSTATE:SHIFT} instead of {STATE_KEYSTATE:{TXT:myVariable}} (with myVariable = [SHIFT]). And if a user changes the key in myVariable, it won't be detected anymore.
With a function which releases any key, I will just have to check if any key is pressed with {STATE_ANYKEYDOWN} and use the function if the result is 1.
I don't know if I'm clear enough.