Re: Simulate Keyboard keypress Delay

2013-02-14 Thread inq1ltd
On Wednesday, February 13, 2013 11:47:36 AM DaGeek247 wrote: > I am using the windows api feature getasynckeystate() to check the status of > every key pressed; like this; > > #always checking > while(True): > #iterate through list of ascii codes > for num in range(0,127): > #if as

Re: Simulate Keyboard keypress Delay

2013-02-13 Thread 88888 Dihedral
DaGeek247於 2013年2月14日星期四UTC+8上午3時47分36秒寫道: > I am using the windows api feature getasynckeystate() to check the status of > every key pressed; like this; > > > > #always checking > > while(True): > > #iterate through list of ascii codes > > for num in range(0,127): > > #if a

Simulate Keyboard keypress Delay

2013-02-13 Thread DaGeek247
I am using the windows api feature getasynckeystate() to check the status of every key pressed; like this; #always checking while(True): #iterate through list of ascii codes for num in range(0,127): #if ascii code key is being pressed if win32api.GetAsyncKeyState(num):