I'm looking for a webpage or artical that lists all the keyboard characters for use with Python. I have looked all over the net and not found exactly what I'm looking for.
Below is a small part of code/script that Paco made for some of us having issues using EG for Alt/Tab-TaskSwitching....
Push and hold ALT, send TAB
Code: Select all
<?xml version="1.0" encoding="UTF-8" ?>
<EventGhost Version="1066">
<Action>
EventGhost.PythonScript(u'import win32api\nwin32api.keybd_event(18,0,0,0)\nwin32api.keybd_event(9,0,0,0)\nwin32api.keybd_event(9,0,2,0)')
</Action>
</EventGhost>I'm just guessing but it looks like the....
"(18,0,0,0)" = Alt key down
"(9,0,0,0)" = Tab key down
"(9,0,2,0)" = Tab key up etc.
A Bonus would be to know what all other variables can be called up with the other numbers/zeros in that code.
Thanks much for any info or pointing me to the right place on the net to find/learn this.