00:00
00:00
Newgrounds Background Image Theme

supahVEVO 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 "Actionscript Tutorial."

very helpful!

I'm understanding AS finally, to think how much trouble I had ASing the play button on my first movie...lol. I'm more on the artwork side. This really has me informed every code thus far has worked great and has got me thinking of alturnate combinations! I'll have to get back to this tomarrow.

Thank you for this Tutorial

It was very informative and is helping me learn the basics of Action Script. I was so intimidated to do this Action Script stuff and finally bit the bullet.The way you present it makes it digestible and the music was good too :3

I recommended this tut for the tutorial collections! Thanks again!

Awesome!

I've read other tutorials, but this is the first one that mentions the While Loops. I was wondering what the best way was to keep the game running continuously :)

Many other concepts are explained in a very simple way. It's much easier to understand than trying to read the Actionscript documentation. Especially when all you need to know are basic game concepts.

O_O i learned IT! FINALLY!

Wow >.> Good no Copy Paste tutorials.. which still didnt work on me

but this did! :]

WOW

very good but i found a glitch in your code. in your platformer advanced movment area the code you put up has three errors. 1. you closed the enter frame to soon and gives a glitch saying that the statement
if (this._y == stage.height) {
vy = 0;
gravity = 0;
needs to be in onClipEvent handler.
2. all of your
if (key.isDown(Key.RIGHT)) {
the first key isnt capitalized and the program doesnt understand that key and Key are the same thing.
3. your hitTest you said to make a line and name it ground yet you programmed it
if (_root.guy.hitTest(_root.floor)){
when if you name the line ground it should be
if (_root.guy.hitTest(_root.ground)){
otherwise awesome job learned alot from this tutorial