Well…
I have a dynamic text box. The text within it is loaded from an ASP file (but that really doesnt matter) and i wanted to know if there a way to check the text inside the box. the asp file will load in some text and if you are not logged in it will change the text inside to “login to see info”
i thought of just saying
if(_root.textbox == “text”){
_root.textbox = “login to see info”
}
but it doesnt work. if i make the information undefined then this works
if(_root.textbox == undefined){
_root.textbox = “login to see info”
}
so i think there is some way to make it work.
Thanks for your help
Stupidsaint:cowboy: