Contents |
|
Checkbox Input | Multiline Text Input |
A hidden input allows values to be added to the web page that are not seen. Input values can be sent to other web pages using submit functions.
Text • The text value. |
Input Set
• Set the text value of an input. You must set a 'Script ID' value for the input in the timeline.
InputSet("Script ID","Text"); |
Input Get
• Get the text value of an input. You must set a 'Script ID' value for the input in the timeline.
InputGet("Script ID"); |
Input Focus
• Give an input the keyboards focus. You must set a 'Script ID' value for the input in the timeline.
InputFocus("Script ID"); |
Submit Get URL
• Send the values of any inputs in the current scene to another web page. The values are attached to the URL. A 'Script ID' must be set for each input, this will be the name of the variable set.
SubmitGetUrl("http://"); |
Submit Post URL
• Post the values of any inputs in the current scene to another web page. A 'Script ID' must be set for each input, this will be the name of the variable set.
SubmitPostUrl("http://"); |
Checkbox Input | Multiline Text Input |