Hi, so I have this problem thats giving me real headache because I have the feeling the solution is pretty simple only I can’t get my finger on it! How can you check mutliple elements against multiple results at once ? example :
var ltr:String = "mystring"; for (var i:Number = 0; i < ltr.length; i++) { this.createTextField ("ltrField" + i, i, 0, 0, 30, 30); if (_root["ltrField" + i].text == ltr.substr (i, 1)) { _root["ltrField" + i].text = ltr.substr (i, 1); } }
I wan to be able to check if each each text field's letter is the same as my variable's substring in order to set all text fields letters back to the proper value. Its a kind of randomly cycling letter thingy. thx