flash on 2012-2-6
♥0 |
Line 14 |
Modified 2012-02-06 15:09:37 |
MIT License
archived:2017-03-30 02:59:51
ActionScript3 source code
/**
* Copyright tepe ( http://wonderfl.net/user/tepe )
* MIT License ( http://www.opensource.org/licenses/mit-license.php )
* Downloaded from: http://wonderfl.net/c/cLv5
*/
package {
import flash.display.Sprite;
import flash.text.*;
public class FlashTest extends Sprite {
public function FlashTest() {
// write as3 code here..
var t:TextField = new TextField();
addChild(t);
t.text = "a";
var n:int = 255;
var str:String = n.toString(2);
t.text = str;
}
}
}