Can't get text to display

Hey Guys,

I have this code in my flash movie…

if(_root._currentframe == 110) 
                    {
                        trace("blah");
                        var test:MovieClip = _root.attachMovie("mcWinner", "mcWinner", _root.getNextHighestDepth(), {_x: 157.1, _y: 348.8});
                        test.winners_txt = "testing!";
                        delete this.onEnterFrame;
                    }

Now… my ‘mcWinner’ movie clip shows up (I just have basically a red strip right now to make sure something shows up, and I can see the ‘text line’ come up instead of a pointer when my mouse moves over that… the trace shows up fine, but for some frickin’ reason, the “testing” text won’t show up… Does anyone have any idea why this isn’t working for me? I have had similar code in programs before… but this isn’t working for me…

Any ideas?

Thanks,

–D