I've been cracking down on flash game making again. And HARK! I've actually managed to pull off something playable. I call it Multiball and it's actually quite addicting. I think I've spent about as much time playing it as I did coding it.

The neat thing about this game is: It's all code! everything you see is created with fun, fun lines of code like such as

Code:
baseColor = targetRed * 0x010000 + targetBlue * 0x000100 + targetGreen;
back.graphics.beginFill(baseColor);
back.graphics.drawRect(0,0,350,600);
back.graphics.endFill();
stage.addChildAt(back,0);
And so, because of the lack of premade objects, the file is less the 10 kb even with sound! Woot! It's pretty much useless to make a game that small anyway but it's a symbol of stature I suppose.

So yes, this is what I've been up to during the week or so none of you have seen me for.

Comments anyone? I especially want to know it the sound drives you crazy or if it's okay. I had a hard time finding even decent effects.

I wish we could still have .swfs in sigs too =( I could make this horizontal then it'd be a mini sig game =).