A standard text input control.
The value first specifies the variable name, then optionally a colon followed by a number, the number specifying the max input length.
An Enter Action node may also be attached, in which case any actions attached to the Input node will be action when the focus is within the input control and enter is pressed.
Focus Lost node may be attached to specify what actions to take as input focus moves away from the control, this is useful for running validation.
A Set Focus node may be attached to set the initial input focus, this is useful when a screen or dialog is shown and you wish the input focus to move to the first input. If multiple are specified (not a good idea) the focus will be left on the last one specified.
A Status node may be attached to allow the control to start Disabled or Enabled, this can be changed by a later Action graph if required.
Attaching a Label node will specify the placeholder (as its known in HTML) label - usually this is greyed out text shown within the control to help the used know what to input e.g. "Your eMail" (without the quotes) could be used.
Textbox may be used instead of Input, a Password Textbox will hide the typed characters, Double Input and Integer Input will restrict characters to those of just numbers or numbers and decimal point respectively. A minus/negative symbol is also allowed in both cases.
Styling may be applied by the use of CSS as required.