How do You right click? #160
-
I Have tried various combinations including: The shift key is actvating on the OSK app on windows 10 but not F10. Thanks for your help. |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
I see. Yeah, I don't think SendInput {{F10} up} Which would not be correct. I think you want to do is The resulting script looks like this: SendInput {F10 up} Which is what you want, and should work as expected
ahk.right_click() |
Beta Was this translation helpful? Give feedback.
This comment has been hidden.
This comment has been hidden.
-
This is now no longer be an issue since v1 |
Beta Was this translation helpful? Give feedback.
I see. Yeah, I don't think
key_up
andkey_down
work with{F10}
like that because of how these work... The resulting script would beWhich would not be correct.
I think you want to do is
ahk.key_down('F10')
The resulting script looks like this:
Which is what you want, and should work as expected