00:00
00:00
Newgrounds Background Image Theme

htffan2000 just joined the crew!

We need you on the team, too.

Support Newgrounds and get tons of perks for just $2.99!

Create a Free Account and then..

Become a Supporter!

Reviews for "Find The Sock!"

soooo...

ok i couldnt get past the five second one, im just not fast enough xDD

but the cliking could be improved, it gets kind of messed up some times

Pretty good little game

DAMNIT!! I MISSED MY BUS!! Lousy socks LOL. Next time maybe you could make the ticket the thing you have to find, then you wouldn't even be let on if you said "Screw the sock, I'm late!"

...

well, i found the till the second sock... and u could improve the click and drag feature becaus it doesn't work very well sometimes...

Hilarious

This game is a hilarious idea, and not too horribly made...

1 specific thing i would add: a mouse listener to stop dragging onmouseup:

ML = new Object();
Mouse.addListener(ML);
ML.onMouseUp = function() {
stopDrag();
};

blorp

the clothing is on top of each other so "onRelease" doesnt always work, because theres something above your button so you cant "release" that button.. if you know what i mean. you ned a global onRelease such as:
onMouseUp = function () {
stopDrag();
}
it would also help not-releasing when you drag off screen. (assuming that works)