python - win32api.keybd_event stopped working -
these 2 lines of code used work (sending keyboard event of letter focused window). stopped working recently, i'm guessing since windows update.
import win32api win32api.keybd_event(0, win32api.mapvirtualkey(66, 0), 0, 0)
is known bug/issue , there workaround?
keydb_event unreliable instead use sendinput function
Comments
Post a Comment