Can't make a numeric value appear in a dynamic text window
I am tying to make a number appear in a dynamic text window. I have a dynamic textfield on the stage with an instance name called count_txt. The code that I am using is shown below. Both tace statements show a value of 100 but nothing appears in the dynamic text window. What am I doing wrong?
var count_txt:Number;
var n:Number;n = 100;trace(n);count_txt = n;trace(count_txt);stop();