wonderflにコード補完付いたからテスト!
http://level0.kayac.com/2009/12/wonderfl_editor.php
コード補完にテスト
♥0 |
Line 14 |
Modified 2009-12-12 02:13:30 |
MIT License
archived:2017-03-10 01:27:33
ActionScript3 source code
/**
* Copyright coppieee ( http://wonderfl.net/user/coppieee )
* MIT License ( http://www.opensource.org/licenses/mit-license.php )
* Downloaded from: http://wonderfl.net/c/k7zR
*/
// http://level0.kayac.com/2009/12/wonderfl_editor.php
// コード補完にテスト
package {
import flash.text.TextFieldAutoSize;
import flash.text.TextField;
import flash.display.Sprite;
public class FlashTest extends Sprite {
public function FlashTest() {
// write as3 code here..
var tf:TextField = new TextField();
tf.autoSize = TextFieldAutoSize.LEFT;
tf.text = "コード補完やべええええええ";
addChild(tf);
var i:int = 8;
}
}
}