Jump to content

Recommended Posts

Posted

what is the fastest way to check to see once a key is RELEASED on the computer

and, no...its not a keylogger, keyloggers use _ispressed(....)

You would pretty much be using _Ispressed()

If _Ispressed(key) then 
While _Ispressed(key)
Sleep(100)
WEnd
Msgbox(0, "INFO", "Key has been released")
Endif
Posted (edited)

You would pretty much be using _Ispressed()

If _Ispressed(key) then 
While _Ispressed(key)
Sleep(100)
WEnd
Msgbox(0, "INFO", "Key has been released")
Endif
useful, but, I wanted it to return 10 keys released, and if I run my finger along the top row "qwertyuiop" 1/2 wont be reconized Edited by ReaImDown
[u][font="Century Gothic"]~я α и d γ ĵ . ċ . ѕ қ ϊ и и ε я~- My Programs -auto shutdownSleep funcdisallow programs[/font][/u]
Posted (edited)

useful, but, I wanted it to return 10 keys released, and if I run my finger along the top row "qwertyuiop" 1/2 wont be reconized

Reduce the sleep. Edited by Paulie

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...