forked from: flash on 2010-3-12
forked from flash on 2010-3-12 (diff: 9)
ActionScript3 source code
/**
* Copyright yaha ( http://wonderfl.net/user/yaha )
* MIT License ( http://www.opensource.org/licenses/mit-license.php )
* Downloaded from: http://wonderfl.net/c/57BR
*/
package {
import flash.display.Sprite;
import flash.text.*;
public class Lesson1 extends Sprite {
public function Lesson1() {
// write as3 code here..
var textField:TextField = new TextField();
textField.text = "てすとーーー";
addChild(textField);
var text:TextField = new TextField();
text.text = "/rこれは?";
addChild(text);
}
}
}
