in a function in my first scene, data is loaded into the var "T1Q1" many frames later I have a button that i want to load the value of that into a textbox named "question"
i have tried
if i put something like
the text displays, so i know the text box is correct
what do i need to do?
i have tried
Code:
on(release){
question = T1Q1;
}
Code:
on(release){
question = var T1Q1;
}
Code:
on(release){
question = this["T1Q1"];
}
if i put something like
Code:
on(release){
question = "text";
}
what do i need to do?