Difference between revisions of "Key.available"

From MiniScript Wiki
Jump to navigation Jump to search
Line 9: Line 9:
 
<ms>while not key.available; end while  // waits until some key is pressed</ms>
 
<ms>while not key.available; end while  // waits until some key is pressed</ms>
  
[[Category:Intrinsic Functions]]
+
[[Category:Mini Micro]]

Revision as of 19:59, 24 March 2020

key.available returns whether there is a keypress available in the input buffer. If true, you can call key.get to get the next key immediately.

See also: key.clear; key.get

Usage Notes

key.available does not detect modifier keys (shift, alt, etc.).

Example

while not key.available; end while  // waits until some key is pressed