Transparent text?

Hi, guys!

I have a full flash project. A master swf wich loads others swf´s. Well… When the master swf load a external swf, the text of the external swf is “transparent”. Like “alpha 0”.

When I test the “external.fla”, everything is ok. It loads the “externalText.txt” and everything is ok. But… When the MASTER loads the EXTERNAL swf, the text of the EXTERNAL swf appears like “alpha 0”…

Oh, man… That´s let me @#$@#¨$%!!! (rssss).

And no errors are present into the outbox. Oh! I almost forget it: the codes of the fla (codes that I get hear, at Kirupa´s articles)

  1. At MASTER SWF, in the “menu” timeline:

//code para Release
cafe_mc.onRelease = function() {
if (_root.section != “cafezinho.swf”) {
_root.section = “cafezinho.swf”;
_root.transition.gotoAndPlay(“closing”);
}
};

  1. Code at the “content_mc” where the swf´s are loaded into

loadMovie(_root.section, _root.content);
stop();

  1. Code at timeline of the external swf (cafezinho.swf):

loadText = new LoadVars();
loadText.load(“cafezinho.txt”);
loadText.onLoad = function() {
scroller.text = this.cafezinhotext;
};

So… everything is loaded: the graphics, the scroll buttons, all the stuffs are there. The text is also there… but “invisible”. (hahahaha)

Oh! Where, finally, is the mistake?

Thanks to everybody and sorry for my poor english.