2010-06-01 22:11

[ActionScript] Component 動態建立與移除


/*建立 Component*/
createObject("TextInput", "name_ti", getNextHighestDepth(),{
_width:200,
_heigh:22,
_x:20,
_y:30
});

/*移除 Component*/
destroyObject("name_ti");

0 回應: