forked from: flash on 2009-7-6
forked from flash on 2009-7-6 (diff: 8)
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/iLf7
*/
package{
import flash.display.Sprite;
import flash.text.*;
public class flTest extends Sprite{
public function flTest(){
var str1:TextField = new TextField();
var str2:TextField = new TextField();
str1.text = "test1";
var a:String = "tes"+str1.text;
str2.text = a;
var str3:TextField = new TextField();
str3.text = str1.text+str2.text;
addChild(str2);
}
}
}
