flash on 2009-6-24

by hacker_9p8x8mco
♥0 | Line 14 | Modified 2009-06-24 14:20:00 | 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/tumd
 */

package{
    import flash.display.*;
    import flash    .text.*;
    
    public class flashTest extends Sprite{
        public function flashTest(){
             var textField:TextField = new TextField();
             var a:int = 6;
             do {
                 textField.appendText(String(a));
                 a++;
            }while(a>=5)                 
        }
    }
}