Keypressed function

  • Thread starter Thread starter Hans
  • Start date Start date
H

Hans

Is there a function like:
While Not(keypressed = "A") then
Print "B"
While End

Regards
Hans
 
No, there is no built in function like that. On possibility is to tie a
macro to a keypress using OnKey, but you are indicating the opposite of
this. If you want to get in the loop of interpreting keypresses, I believe
you will need to use the Windows API to do it.
 
Back
Top