Jump to content

Recommended Posts

Posted

...I would like to now if enybody now a method for determin if any key is pressed -and witch one- whitout using an array whith all key code and stuff

(somthing like GetKey)

Thanks

Ovoid

Posted (edited)

#include <misc.au3>

Func _IsAnyKeyPressed($start = 0, $end = 255)
    For $i = $start to $end
        if (_IsPressed(Hex($i))) Then return $i
    Next
    return -1
EndFunc

while(true)
    Local $val
    $val = _IsAnyKeyPressed()
    if ( $val > -1 ) Then
        MsgBox(0, "", "You press the " & Chr($val) & " key.")
    EndIf
WEnd

Shouldn't this be in support?

------------------------

If your looking to do it in another language it is still the same concept, for whatever the function may be.

Edited by chris95219

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...