Hi, Im working on a Dynamic Flash file loading content from a File, there are some dynamic textboxes that need to set their position depending on how many lines the dynamic textbox on top of it had, Im setting _x and _y with no problems but the text on it goes white, it doesnt lose the size or font but it loses the color.
looks like this:
hours1pa._x='100';
hours1pa._y='220';
text1pa.autoSize=true;
text1pa.htmlText= myLoadVars.text1pa;
text1pa._x='100';
text1pa._y='280';
speaker1pa._x='100';
speaker1pa._y=text1pa._y +text1pa._height+10;
all of them go white, any ideas?, tried to set the .textColor but nothing changes,
Edited:
working on it looks like it has something to do with the fade in effect that starts on the same frame where the this code is, so the alpha doesnt change or something, in either case setting the _alpha doesnt help either, but looks to go that way... lets see