They can be global variables, but the assignment of the text input must happen inside the onEvent. As it stands now, the program assigns the variables and initializes them to the value of the text boxes, which when the program starts is blank.
Here’s a working Submit Button onEvent. I don’t see a good reason to make the variables global, so I made them local instead.
onEvent(“titleSubmitButton”, “click”, function(){
var noun = getText(“titleFirstInputBox”);
var adjective = getText(“titleSecondInputBox”);
var verb = getText(“titleThirdInputBox”);
var finalMessage = ("Don’t use a " + adjective + " " + noun + "when " + verb);
Yes, the getText needs to be inside an onEvent. Otherwise it gets the text when you initially run the program and nothing is there. The user hasn’t entered anything. The click of Submit button should trigger the program to getText and assign what is in those input boxes to the variables.
I suppose you could do an onEvent of the text input box changing for each text input box, but that seems messy. You only need to pull the information when the user clicks submit.