flash on 2009-7-6
♥0 |
Line 15 |
Modified 2009-07-06 15:23:29 |
MIT License
archived:2017-03-30 09:48:55
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);
}
}
}