2010-06-01 22:11

[ActionScript] Component 動態建立與移除

  1. /*建立 Component*/ 
  2. createObject("TextInput", "name_ti", getNextHighestDepth(),{ 
  3.    _width:200, 
  4.    _heigh:22, 
  5.    _x:20, 
  6.    _y:30 
  7. }); 
  8.  
  9. /*移除 Component*/ 
  10. destroyObject("name_ti"); 

0 回應: