flash on 2014-3-9
♥0 |
Line 16 |
Modified 2014-03-09 07:38:42 |
MIT License
archived:2017-03-20 17:39:42
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/mk4s
*/
package {
import flash.display.Sprite;
import flash.text.TextField;
public class FlashTest extends Sprite {
public function FlashTest() {
var tf:TextField = new TextField();
addChild(tf);
var a:uint = 50000*50000;
tf.text += a + "\n";
var b:uint = 50000;
var f:uint=1;
a = -1;
tf.text += (a==-1) + "\n";
}
}
}