hellos im jason and i am trying to send <shift> + o
but i want the o to be a capital O. this o is in the o in OH. then when i press w the script will stop.
this script will not send the shifted O only the lowercase o.
im using the program Autokey
but i want the o to be a capital O. this o is in the o in OH. then when i press w the script will stop.
this script will not send the shifted O only the lowercase o.
im using the program Autokey
Code:
keyboard.send_key("<SHIFT>")
time.sleep(.33)
keyboard.press_key("o")
time.sleep(.33)
#keyboard.press_key("<shift>")
time.sleep(2.33)
keyboard.release_key("w")
Comment