flash on 2009-8-4

by hacker_9p8x8mco
♥0 | Line 16 | Modified 2009-08-04 18:17:19 | MIT License
play

ActionScript3 source code

/**
 * Copyright hacker_9p8x8mco ( http://wonderfl.net/user/hacker_9p8x8mco )
 * MIT License ( http://www.opensource.org/licenses/mit-license.php )
 * Downloaded from: http://wonderfl.net/c/vvXL
 */

package{
    import flash.display.Sprite;
    import flash.events.Event;
    import flash.text.TextField;
    
    public class FlashTest extends Sprite{
        private var tfX:TextField;
        private var tfY:TextField;
        
        public function FlashTest(){
            init();    
        }
        
        private function init():void{
             tfX = new TextField();
             tfY = new TextField();                
        }            
    }                    
        
}