THE SYSTEM OBJECT NUMBER N DISPLAYS ITS TEXT AS STARS
ACTION
The command SECRET_ON N displays the text of the system object designated by its number N as a string of stars.
The system object is an EDIT.
Each character of EDIT is replaced by a character "*" for the display.
Remark : SECRET_ON affects the appearance of the EDIT only. The value returned by the TEXT$() function gives the actual characters.
SYNTAX:
SECRET_ON N
USE ERROR EXAMPLE
rem create an EDIT
edit 1
rem display a text
text 1,"Hello"
wait 1000
rem make it secret
secret_on 1
wait 1000
rem make it clear
secret_off 1
SECRET_ON
SECRET_ON N
SEE ALSO
EDIT
SECRET_OFF