Search in Flash
Search in Flash
Out of context: Reply #5
- Started
- Last post
- 11 Responses
- lostnation0
Something like this should work:
textfield.prototype.hasText=func...
if(this.text==txt){
return true;
}else{
return false;
}
}usage:
if(yourTextField.hasText('textTo...
//do this;
}else{
//do this
}