How to convert input text field data into a string i allready have.
I have a string that searches the Twitter API, for keywords, for example :
var url:String = "http://search.twitter.com/search.json?q=Robin%20&lang=en&rpp=100";
I also have a input textfield dynamically created:
var inputField:TextField = new TextField();
addChild(inputField);
inputField.border = true;
inputField.width = 200;
inputField.height = 150;
inputField.x = 75;
inputField.y = 50;
inputField.type = "input";
inputField.multiline = true;
inputField.restrict = "A-Za-z0-9";
stage.focus = inputField;
But how do i take the data from the input text field and add it to the string, keep in mind the input data has to go in the keyword part for the string. In this example the keyword is "Robin"