flash on 2009-7-6

by hacker_9p8x8mco
♥0 | Line 15 | Modified 2009-07-06 15:23:29 | 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/zlaa
 */

package{
    import flash.display.*;
    import flash.text.*;
    
    public class flTest extends Sprite{
        public function flTest(){
            var str1:TextField = new TextField();
            var str2:TextField = new TextField();
            str1.text = "test";
            str2.text = "slope";
            var str3:TextField = new TextField();
            str3.text = str1.text+str2.text;
            addChild(str3);        
        }    
    }
}

Forked