Math.random() patching test
/**
* Copyright yonatan ( http://wonderfl.net/user/yonatan )
* MIT License ( http://www.opensource.org/licenses/mit-license.php )
* Downloaded from: http://wonderfl.net/c/591C
*/
// forked from keim_at_Si's keim challenge lv.10
// forked from imo_'s almost impossible challenge
// forked from imo_'s oimo challenge lv.5
// forked from imo_'s oimo challenge lv.4
// forked from imo_'s oimo challenge lv.3
// forked from imo_'s oimo challenge lv.2
// forked from imo_'s oimo challenge lv.1
package {
import flash.events.MouseEvent;
import flash.text.TextFormat;
import flash.events.Event;
import flash.text.TextField;
import flash.display.Sprite;
public class FlashTest extends Sprite {
private var tf:TextField;
public function FlashTest() {
tf = new TextField();
tf.defaultTextFormat = new TextFormat("monospaced", 24);
tf.selectable = false;
tf.x = 32;
tf.y = 32;
tf.width = 400;
tf.height = 400;
addChild(tf);
addEventListener(Event.ENTER_FRAME, frame);
}
private function frame(e:Event = null):void {
tf.text = "Change this to 0 -> " + Math.random();
}
}
}