AutoTest II Sytem Operation
Subject to Export Control, see Cover Page for details.
6-13
pauseYN
Pauses script and displays soft key set:
1 - Yes
2 - No
Example:
set temp [pauseYN]
if { $temp ==1 } {
print “Yes was pressed”
} else {
print “No was pressed”
}
addusermsg “string”
Displays message on User Screen.
Tutorial 3 (tut3.tcl) provides information on using User Message Screen.
clearusermsg
Clears custom message area.
displayusermsg
Displays User Screen.
Example:
clearusermsg
addusermsg “User Instruction”
addusermsg “ “
addusermsg “Pause command example”
displayusermsg
pause
showmain (You must use the showmain command to return to the Main Screen)
Tutorial 3 (tut3.tcl) provides information on using User Message Screen.
displayuserentry “string”
Displays the screen with an entry for the user to enter text and the message “string.”
Example:
displayuserentry “Enter the user Data”
Tutorial 2 (tut2.tcl) provides information on using displayuserentry.