Jump to content

IsPressed for any key...


ovoid
 Share

Recommended Posts

#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
Link to comment
Share on other sites

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
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...