Hi
If I have this code on scene 1
this.createTextField("word_txt", 2000, 100, 100, 300, 100);
word_txt.multiline = true;
word_txt.wordWrap = true;
word_txt.border=true;
var my_fmt:TextFormat = new TextFormat();
my_fmt.color = 0xFF0000;
my_fmt.underline = true;
word_txt.text = "This is my first test field object text. created on scene 1";
word_txt.setTextFormat(my_fmt);
it works fine
But I want it on scene 2. WHen I do it doesn’t work. I have tried putting this.getNextHighestDepth() instead of 2000, and removing the this from this.create…
But nothing works
Can anybody help please
thanks
E