-
Notifications
You must be signed in to change notification settings - Fork 68
Closed
Description
I've notice that in 1.5.4 there seems to be partial support for the SendKeys module import:
>>> import SendKeys
Traceback (most recent call last):
File "<console>", line 1, in <module>
File "C:\...\plugins\PythonScript\lib\SendKeys.py", line 16, in <module>
from _sendkeys import char2keycode, key_up, key_down, toggle_numlock
ImportError: No module named _sendkeys
So, SendKeys is found, but when that code tries to access _sendkeys there is a failure because that isn't found.
I'd like to use SendKeys without having to do "special things" to make it work.
Note about 3.0.5alpha: SendKeys is not present at all -- can this be added (in full, of course)?