E r g e b n i s / R e s u l t
Reads a password from the user at the current cursor position and returns it.
B e s c h r e i b u n g / D e s c r i p t i o n
The routine reads character input from the keyboard at the current cursor position. When the user is typing, the typed characters are hidden by ↔ characters. After the user has entered the password, it gets returned by the function. The password can have a maximum length of 20 characters.
S y n t a x
Code:
value = call ('PASS') P a r a m e t e r
R e t u r n s
The password the user entered or an empty string, if the user cancelled.
B e i s p i e l / E x a m p l e
Code:
attach 'PASS'
put call ('PASS' ) ! returns the password the user entered
detach 'PASS'