CLICK HERE TO COPY
Actionscript:
x = y = 10
graphics.lineStyle(1,0);
drawBox(6);
function drawBox(iter:Number=10, count:Number=1, y:Number=0, w:Number=500):void{
if (count <iter){
var width:Number = w / count
for (var i:int = 0; i<count; i++){
graphics.drawRect(i * width, width * [...]
I'll be releasing the QuickBox2D on googlecode in the near future based on the response to yesterdays post.
By Zevan | March 31, 2010
So I have a QuickBox2D editor that I've had since the earliest version of QuickBox2D. It is really pretty buggy and imperfect. I'm wondering if I should release it even though it's really buggy... my main issue is I won't be able to guarantee that it is a safe editor to use for real projects. [...]
By Zevan | March 30, 2010
Today's quiz is about BitmapData and the Graphics class...
Number of Questions : 5
Difficulty : Medium
Topic : BitmapData, Graphics
Posted in Quiz | Tagged actionscript, as3, flash, Quiz |