$ » History » Revision 8
Revision 7 (Per Amundsen, 06/14/2016 07:48 AM) → Revision 8/10 (Per Amundsen, 01/04/2017 11:58 AM)
_Added 1.9.0_
*<notextile>$?*!N="message"</notextile>*
Prompts the user for input and returns the result.
_See also [[$input]]._
_Can be prefixed with # to ensure the resulted text starts with a channel prefix._
*Parameters*
<notextile>*</notextile> - Use a password Editbox.
<notextile>!</notextile> - Use a yes/no dialog which will return [[$true]] if user clicks yes, otherwise [[$false]].
="message" - Message to display.
N - Try to use the Nth token as the result text.
*Example*
<pre>
; Ask the user for his name and print the result.
//echo $?="What is your name?"
; Ask the user for his password and print the result.
//echo $?*="What is your password?"
; Ask the use to continue with a yes/no dialog.
//echo $?!="Do you want to continue?"
; Ask for the second token.
//tokenize 44 a,b,c | echo -ag Ths second token is $?2
</pre>