UnderwareDESIGN

PlayBASIC => Resources => Source Codes => Topic started by: kevin on September 28, 2007, 06:05:48 PM

Title: Overriding the break key
Post by: kevin on September 28, 2007, 06:05:48 PM
 This sample shows how you can trap when the user wants to 'break' out of your program.

[pbcode]

Setfps 60
Breakkey off

repeat
  cls 0
      print "Press ESC or click close gadget [X] to exit"

   sync
until KeyState(1)=true or getscreenclose()=true

[/pbcode]


   Read more:  PlayBASIC Documentation - INPUT COMMANDS (https://www.playbasic.com/help.php?page=INPUT.INDEX)