myText.text = "anything"
myText.text = "anything"
- Started
- Last post
- 5 Responses
- nburlington
Actionscript ?:
How do I actionscript this:
I want Flash to check if a text box has any text in it.
- loahn0
if (myText.length
- loahn0
oops.
if statement
check "myText.lenght < 1"
- nburlington0
Thanks loahn.
I'm checking out your site now. Nice work.
- loahn0
thanks, looking for a new job at the moment
- cram0
if(myText.text != ""){
doSomething();
};that should do it. obviously the doSomthing() is for your statements... good luck.