So, I am running into a problem with my name variables. Well, more a coding issue.
Right now, I have my name variables set up like this, in the label all the names go to:
*set mc_fullname “mc_first mc_surname”
It’s coming out as, mc_first mc_surname.
The reason I’m not putting the names in each name choice ie because I am not sure what to do with the imput_text, as it’s by defenission, your own text.
So, the end of this ramble is that I am not quite sure how to set up name variables correctly. Put each, *set name “text” in the name choice, or at the end, or what not?
I don’t know what seems to be the issue here. But if it’s about the input_text, just type it like this
What is your name?
*input_text mc_first
Which family are you from?
*input_text mc_surname
*set mc_fullname ("${mc_first} ${mc_surname}")
Is your name ${mc_fullname}?