I'm trying to do a simple test to figure out another bug, but I'm getting Access of undefined property tsLogo for addChild(tsLogo);

I don't get it because this is simple timeline code on the first frame:

var tsFont = new TextFormat();
    tsFont.font = FranklinGothic;
    tsFont.size = 8;
    tsFont.color = 0xFFFFFF;
    tsFont.align = TextFormatAlign.LEFT;

var tslogo:TextField = new TextField();  // <-- I've defined it right here :(
    tslogo.defaultTextFormat = tsFont;
    tslogo.selectable = false;
    tslogo.mouseEnabled = false;
    tslogo.x = 10;
    tslogo.y = 10;
    tslogo.width = 64;
    tslogo.height = 16;
    tslogo.text = "®MYLOGO";


addChild(tsLogo);


Error:

1120: Access of undefined property tsLogo.

I'm sure this is another simple bug/fix, thanks again in advance guys! :)

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

Should be addChild(tslogo);

Watch the capitalization :)

link|improve this answer
/facepalm I'm such a n00b thx man! – Leon Oct 19 '09 at 15:51
feedback

tslogo /= tsLogo capitalize the L! You didn't have your coffee this morning did you lol

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.