Page 1 of 1

Python Sendkeys

Posted: Sun Aug 10, 2008 6:30 pm
by toasty2
I'm having trouble with Sendkeys for Python. I can get it to type stuff, but not unicode. After research, it appears to be unable to type unicode characters. That's fine though, because I could do ALT+# instead...Except how do I?
I've tried:

Code: Select all

import SendKeysSendKeys.SendKeys("%(164)") 
But I think the problem is that its using just normal number keys...not the numpad. So what can I do?

Re: Python Sendkeys

Posted: Mon Aug 11, 2008 1:39 am
by toasty2
I resorted to a crude but working solution: I assign the unicode character to the clipboard and paste it. :)