TextField.maxscroll weirdness
So this:
trace(label_txt.maxscroll);
Produces this output:
1 1 1 1
Whereas this:
var tmp:Number = label_txt._height; trace(label_txt.maxscroll);
Produces this:
1 1 1 3
I’m, like, wtf?! I think the moral of the story here is USE AS3 & NOT AS2!