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
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
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):