Hallo Community!
In Zeile 21 im nachfolgenden Skript wird mein Tastendruck nicht erkannt.
Hat jemand eine Idee woran das liegen könnte?
Spoiler anzeigen
[autoit]
#include <Misc.au3>
#include <Array.au3>
While 1
$array = _GetKey()
If UBound($array) > 1 Then
_ArrayDisplay($array)
Exit
EndIf
WEnd
Func _GetKey()
Local $aKey[1], $iCount
Local $hDLL = DllOpen('User32.dll')
For $iCount = 0x00 To 0xff
If _IsPressed(String(Hex($iCount, 2)), $hDLL) And Not $iCount = 233 Then
ReDim $aKey[UBound($aKey) + 1]
$aKey[UBound($aKey)] = $iCount
$aKey[0] += 1
EndIf
Next
DllClose($hDLL)
Return $aKey
EndFunc