Hello,
I have a question.
script
Code: Select all
1: @input name summary:"Choose your name."
2: @stop
3:
4: Archibald: Greetings, {name}!
For example, in the above script, if the user inputs "001", the expected result is "Greetings, 001!", but what is actually displayed is "Greetings, 1!".
When I use the var command to check the content of a custom variable, the content of the "name" variable is "001", so I think the {name} part is probably interpreting "001" as a number and displaying it as "1".
How can I get it to display "Greetings, 001!" as expected?