I create on the 1. frame text field:
default_mc.createTextField ("main_text_txt", 1000, -220, -280, 470, 180);
default_mc.main_text_txt.html = true;
default_mc.main_text_txt.multiline = true;
default_mc.main_text_txt.wordWrap = true;
//default_mc.main_text_txt.border = true;
default_mc.main_text_txt.background = false;
default_mc.main_text_txt.htmlText = this.var_main_txt;
default_mc.main_text_txt._visible = 1;
Problem is if I place Layer as Mask on the Stage, than the default_mc.main_text_txt is not visible.
Without Mask Layer yes.
How can I make this text visible with the mask?
thanks