Under rating threshold (hideshow)
just type the word you are given, initially its " just type", the word will then show below the balloon. Would be great to add a dictionary challenge , like give the definition and then type the answer you think its correct. Nice one.
Under rating threshold (hideshow)
omg...i didn't realize that it barely puffs up when you type in a word...and your supposed to inflate the thing?....wow you must be a really fast typer.
Under rating threshold (hideshow)
great idea! This would definently help those that can't type very well. I give it 4/5. I think it would be worth some achievments don't ya think? I think you should add some "ingame" achievments and maybe kongregate will add some outside achievments!
Under rating threshold (hideshow)
far to difficult, you could do a increasing difficulty
var scale;
var scaleTimer;
var decrease;
function on Load()
{
scale = 100;
scaleTimer = 800;
decrease = 0.1;
}
function on EnterFrame()
{
scale -= decrease;
scaleTimer -= 1;
if(scaleTimer < 0)
{
decrease += 0.01
}
}