Hi all, I'm trying to create something very basic, but I'm a noob and can't figure it out :) So HERE I have in layout 1 a inputtext field and a button and a text box on Layout 2. I want the user to input their name or other information, click the button to go to the next layout and have what they input in Layout 1 pop up on layout 2.
I tried following what Lancifer suggested:
"As for the TextInput solution, the easiest way is to create a global variable for it and save the text when you leave the current layout. Then, you just need to call the variable when you get to the next layout.
For example, make a global variable called InputText. Then, use whatever event that ends the layout to set InputText to whatever the textbox had in it. Like this...
-> System: Set InputText to TextInput.Text
Now, when you go to the next layout, you call for the InputText variable with a text object or whatever you got planned."
where am I going wrong in my project?