flash on 2013-11-17
♥0 |
Line 13 |
Modified 2013-11-17 23:09:22 |
MIT License
archived:2017-03-20 17:39:54
ActionScript3 source code
/**
* Copyright mwelsh ( http://wonderfl.net/user/mwelsh )
* MIT License ( http://www.opensource.org/licenses/mit-license.php )
* Downloaded from: http://wonderfl.net/c/jcBL
*/
package {
import flash.display.*;
import flash.text.*;
public class FlashTest extends Sprite {
public function FlashTest() {
var tf : TextField = new TextField();
addChild(tf);
var a:int = 0x7fffffff;
var b:int = a+1;
tf.text = b.toString();
}
}
}