<html>
<head>
<meta content="text/html; charset=ISO-8859-1"
http-equiv="Content-Type">
</head>
<body bgcolor="#FFFFFF" text="#000000">
Ciao a tutti, <br>
sto scrivendo un thread semplice che rileva gli eventi tastiera di
windows.<br>
Usando pyhook, il codice è semplice:<br>
<br>
<small><small><b>import </b>pythoncom, pyHook <br>
<b>def OnKeyboardEvent</b>(event):<br>
testo += chr(event.Ascii),<br>
<b>return </b>event.Ascii<br>
testo=""<br>
hm = pyHook.HookManager()<br>
hm.KeyDown = OnKeyboardEvent<br>
hm.HookKeyboard()<br>
pythoncom.PumpMessages()</small></small><br>
<br>
ad un certo punto però, ho la necessità che il thread si chiuda.<br>
Qualcuno sa come fare?<br>
C'è un modo alternativo a pythoncom.PumpMessages() che dipenda da un
normale ciclo del tipo<br>
while loop:<br>
....<br>
in modo che controllando la variabile globale loop il thread
termini?<br>
Grazie<br>
<br>
</body>
</html>