Technology
 

Pause

From TI-BASIC Wiki - The free TI-BASIC encyclopedia

:Pause

Will stop the programming from continuing past the point where the command is placed until the user presses "ENTER"

:Pause value

This displays a value, allows scrolling of the value. Whatever was displayed will continue to be scrollable until the user presses "ENTER", when the calculator will continue the program.

[edit] Location

  • Prgm
  • CTL
  • 8:Pause

[edit] Example

:ClrHome
:Disp "PRESS ENTER"
:Pause
:Disp "THANK YOU"

This program will display "PRESS ENTER", then wait until the "ENTER" key is pressed. It will then display "THANK YOU"