flash on 2012-7-29
/**
* Copyright hackerboxes ( http://wonderfl.net/user/hackerboxes )
* MIT License ( http://www.opensource.org/licenses/mit-license.php )
* Downloaded from: http://wonderfl.net/c/uK7O
*/
package {
import flash.display.Sprite;
public class FlashTest extends Sprite {
public function FlashTest() {
this.graphics.lineStyle(1,Math.random()*65535,1);
for(var i:int=0;i<100;i++){
this.graphics.beginFill(Math.random()*65535,0.8);
this.graphics.drawRect(Math.random()*500,Math.random()*600,20,20);
}
}
}
}