Hi All,<br>I am resending this from tutor list since this seems to be appropriate place to ask this question.<br>I am trying to create a custom keyboard driver program(like <a href="http://www.tavultesoft.com/keyman/">http://www.tavultesoft.com/keyman/</a> ) for windows using python.<br>
If this python script is run in the background, what is typed should be converted into my native language.<br>For example if I hit 'a' in the keyboard, the output of the keyboard should be a tamil unicode character(which will be pre-defined by user).<br>
<br>For making such program, I tried exploring pyHook based on this tutorial.<br><a href="http://mindtrove.info/articles/monitoring-global-input-with-pyhook/">http://mindtrove.info/articles/monitoring-global-input-with-pyhook/</a><br>
<br>From the tutorial, I have learned to capture the keys typed, but couldn't understand how to change the keys before they reach the windows applications.<br><br>Attached is the sample code I used (In this code basically I am trying to change all the keys typed to 'b' in this code, but its not working )<br>
<br>Please guide me on how i can change the keys sent to the application using pyHook. Or is there any other library that I can make use of to create such application.<br><br>Regards,<br>Mugunth<br><br>