Difference between revisions of "LavishGUI:InputBox (Command)"
Jump to navigation
Jump to search
Line 18: | Line 18: | ||
*[[ISSession:UserInput (Top-Level Object)|UserInput]] | *[[ISSession:UserInput (Top-Level Object)|UserInput]] | ||
*[[ISSession:MessageBox (Command)|MessageBox]] | *[[ISSession:MessageBox (Command)|MessageBox]] | ||
+ | *[[LavishGUI]] | ||
*[[LavishScript:Commands|LavishScript Commands]] | *[[LavishScript:Commands|LavishScript Commands]] | ||
*[[IS:Session#Commands|Inner Space Session Commands]] | *[[IS:Session#Commands|Inner Space Session Commands]] | ||
− | + | [[Category:LavishGUI]] | |
− | [[Category: | ||
− | |||
− |
Revision as of 21:00, 16 September 2005
Contents
Syntax
InputBox | |
Usage | Intermediate |
Level of Understanding | Intermediate |
Computer Savvy | Intermediate |
Logic | Intermediate |
InputBox [-template <name>] <text> [default value]
Description
Pops up a window displaying the given text, with a text entry box and OK and Cancel buttons.
The UserInput Top-Level Object will be set to the input text, or NULL if Cancel is clicked.
To make the InputBox use a custom template specify the name with the -template switch. See Custom Interfaces for information on making templates.
Examples
- InputBox "What is your name?"
- InputBox "What year were you born?" "19"
- InputBox -template myinputbox "Am I being nosey?" "yes"