Get_password - hpgDesigns/hpgdesigns-dev.io GitHub Wiki
Description
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.
Parameters
| Parameter | Data Type | Description | 
|---|---|---|
| str | string | the message of the dialog | 
| def | string | the default value to put in the dialog | 
Return Values
string: Returns the value entered into the dialog.
Example Call
// demonstrates asking the user to input a password string
var name;
name = get_string("Please enter your password:", "Remembered Password Entry");
NOTOC