목록actionscript (1)
특별한딸기이야기
액션스크립트 컴포넌트
MyButton.as package Mycontrols { import mx.controls.Button; import mx.controls.Alert; public class MyButton extends Button { private var m_str : String; public function MyButton() { super(); m_str = ""; } public function setM_str(str : String) : void { m_str = str; } public function getM_str() : String { return m_str; } public function showStr() : void { Alert.show(m_str); } } } Study.mxml
딸기 공부방/flex
2008. 12. 27. 21:26