forked from: flash on 2011-1-15
♥0 |
Line 17 |
Modified 2011-01-15 12:10:02 |
MIT License
archived:2017-03-20 07:11:39
ActionScript3 source code
/**
* Copyright kahin ( http://wonderfl.net/user/kahin )
* MIT License ( http://www.opensource.org/licenses/mit-license.php )
* Downloaded from: http://wonderfl.net/c/7qak
*/
import flash.text.TextFormat;// forked from gonta's flash on 2011-1-15
packge{
import flash.test.TextFormat;
import flash.text.TextField;
import flash.display.Sprite;
import caurina . transitions . Tweener;
public class FlashTest extends Sprite {
private var txt:TextField;
public function FlashTest() {
// vrite as3 code here..
txt =new TextField();
addchild(txt);
txt.text = "HEllo World !!";
txt.autoSize = "left";
var fmt:TextFormat();
fmt.clor = 0xff0000;
fmt.size = 50;
}