00:00
00:00
Newgrounds Background Image Theme

Matilly 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 "shoddy actionscript tut!"

Good...ish,

some of the codes diddn't work and u need to put more time into making it look good. It just looked like a pre-schoolers doodle pad with code on it. Make it look a little more proffessional

flashfreakz responds:

we'll try. :)

Nice try, not quite.

The concept behind this is cool. Tutorials like this are very helpful for people trying to learn.

To be brutally honest, though, the early lessons are easy to find just about anywhere and the colors/teeny-tiny font size on the more complex lessons makes them impossible to read.

The layout and colors need a _lot_ of help, but once it gets that then I think this would make a great addition to the community.

flashfreakz responds:

Thanks for the review.

3 meg for a crappy song?

It's a tutorial, why bother with sound at all? Further, I realize that the point of it was to copy paste, but you don't go explain why anything does anything. So in actuality, it's a cheat sheet and not a tutorial.

flashfreakz responds:

Yes and no, it does explain how to make things like the buttons and platform but I know what you mean, the next one shall explain stuff more.

Really bad.

Really.

First off, for the drag n' drop (dress up game) all you need is:

on(press){
startDrag("");
}

Rather than the on(press) you did, which was stupid (an instance name in quotes? What the fuck?). Also for the movement this is a lot simpler:

onClipEvent(enterFrame){
Key.isDown(Key.LEFT) ? _x-=3 : 0
Key.isDown(Key.RIGHT) ? _x+=3 : 0
Key.isDown(Key.UP) ? _y-=3 : 0
Key.isDown(Key.DOWN) ? _y+=3 : 0
}

Isn't it?

Plus, I HIGHLY doubt you wrote that 3D code yourself (why would one section of the tutorial be great AS and the rest utter shite?) so why did you include it?

Horrible layout, worse actionscripting..