ok, I have to make everything in my movie SuperFly
I’m creating a background MC, then sticking a textfield above it… in thoery.
All I get is the background MC. As I see it “clip” depth =1, “blogText” depth =2;
BTW: This is in the crazy world of class files.
Thanks for insight.
[AS]
for (var j = 0; j<node.childNodes[0].childNodes.length; j++) {
blog[j] = node.childNodes[0].childNodes[j].attributes.text;
//viral.showMC.reader
var target = viral.showMC.reader.createEmptyMovieClip(“zBut”+j,j)
var clip:MovieClip = drawSquare(target, 1 , 0xD3DCE7, 0, 0, 174.4, 22.0);
//
trace(“T_”+target)
target.createTextField(“blogText”,2,10.8,2.0,240.3,19.6);
target.blogText.text = blog[j];
target.blogText.autoSize = true;
var myFormat = new TextFormat();
myFormat.color = 0xff0000//333333;
myFormat.font =“Arial”;
myFormat.size =12;
target.blogText.setTextFormat(myFormat);
}
[/AS]