InputRequester()
Syntax
Text$ = InputRequester(Title$, Message$, DefaultText$)Description
Opens a blocking input requester to enter some text.
Example:Input$ = InputRequester("Title", "Please make your input:", "I'm the default input.") If Input$ > "" a$ = "You entered in the requester:" + Chr(10) ; Chr(10) only needed a$ + Input$ ; for line-feed Else a$ = "The requester was cancelled or there was nothing entered." EndIf MessageRequester("Information", a$, 0) End
Supported OS
Windows, Linux, MacOS X