このエントリの続きです。
d:id:amachang:20061220:1166630932
ActionScript では Object.prototype を書き換えていいので・・・、
実際に便利な関数を作ってみた
実際にこれを使うとどうなるか
使用前
たてながーん
var t = new TextField(); t.x = 10; t.y = 10; t.width = 400; t.height = 400; t.text = 'Hello'; addChild(t);
使用後
いちぎょーん
addChild(new TextField()._merge({ x: 10, y: 10, width: 400, height: 400 , text: 'Hello'}));
ね!簡単!
わーい