티스토리 뷰

<?xml version="1.0" encoding="utf-8"?>
< mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute"
 enterFrame="appEnter()" creationComplete="initApp()">
 <mx:Button x="10" y="20" label="Button" click="btnOk()"/>
 <mx:TextInput id="txtId" x="10" y="50"/>
 <mx:Script>
  <![CDATA[
   import mx.controls.Alert;
   
   private var intCount:int = 0;
   private var bInit:Boolean = false;
   
   private function initApp():void {
    bInit = true;
   }
   
   private function btnOk():void {
    intCount = 0;    
   }
   private function appEnter():void {
    if(bInit == false) return;
    intCount++;
    txtId.text = intCount.toString();
    
   }
  ]]>
 </mx:Script>
< /mx:Application> 

Total
Today
Yesterday
최근에 올라온 글
«   2025/01   »
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31