// FlashPlayer9の場合

var t:TextField = new TextField();
t.text = "sample";
addChild(t);
t.x = undefined;
trace(t.x) // 0;

// flashPlayer10の場合

var t:TextField = new TextField();
t.text = "sample";
addChild(t);
t.x = undefined;
trace(t.x) // -107374182.4;

// なんすかね? この数値は 原因特定するのに一晩かかったよ。
バグっすか?