-
Notifications
You must be signed in to change notification settings - Fork 0
Get_password
hpgDesigns edited this page Aug 8, 2021
·
1 revision
Displays a message box asking the user to input a string value and returns the value they entered. The characters in the textbox will be hidden by black circles or asterisks, depending on the platform or widget system.
| Parameter | Data Type | Description |
|---|---|---|
| str | string | the message of the dialog |
| def | string | the default value to put in the dialog |
string: Returns the value entered into the dialog.
// demonstrates asking the user to input a password string
var name;
name = get_string("Please enter your password:", "Remembered Password Entry");
NOTOC
This is number 1