keybd.release {KeyboardSimulator} | R Documentation |
Simulate the release of keyboard keys held by keybd.press
. Multiple keys can be released simultaneously by using a +
separator (see Examples). See keyboard_value
for supported keys.
keybd.release(button)
button |
character. The key release to simulate (not case sensitive). |
## Not run: # Move to the third working window keybd.press('Alt', hold = TRUE) keybd.press('Tab') Sys.sleep(0.1) keybd.press('Tab') keybd.release('Alt') ## End(Not run)