This is a total newbie question, but I searched around for a while, but was unable to find an answer to this, so any help would be fantastic.I have this piece of code here:
All I want to do is get the value that the user inputs into the box and put it into a string the rest of my code can access. How would i get that value?
Code:
SC.askforValue("textFieldTitle", "Please enter a title for your textField", new ValueCallback(){ @Override public void execute(String value) { SC.say("The title you entered is"+value); } }); }
Comment