Key.get

From MiniScript Wiki
Revision as of 13:30, 6 August 2020 by JoeStrout (talk | contribs) (→‎Example)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

key.get removes and returns the next key in the keyboard input buffer. If the input buffer is currently clear (empty), then this method waits until a key is pressed. Note that modifier keys (shift, alt, etc.) pressed alone do not go into the input buffer.

See also: key.available

Example

k = key.get
print "You pressed: " + k + " which is char(" + k.code + ")"