tengo este codigo:
loadVariables("noticias.txt","_root");
_root.createTextField("mytext",1,0,0,300,100);
mytext.variable = "titulo1";
mytext.multiline = true;
mytext.wordWrap = true;
mytext.background = true;
mytext.backgroundColor = 0x999999
mytext.border = true;
mytext.textColor = 0xFFFFFF
if(mytext.variable == ""){
mytext.removeTextField();
}
necesito que variable tenga un valor para que cuando en el archivo no haya texto el TextField, no se cree.....o como es la mejor forma de hacerlo???
Gracias por la ayuda...