00:00
00:00
Newgrounds Background Image Theme

hyperheartcom 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 "BasicActionscriptTutorial"

helpful

thanks 5/5 10/10

cool

My advices, to make your tutorial better:
Movie Clips are better to use as a buttons, but at the beggining buttons are ok.

Don't use on(release){...};
instead better use:
make a Movie Clip (or button) with an instance name, for example: "myButton_", and in the keyframe place code:
myButton_.onRelease = function() {...};
To make an animation, on for other purposes you can use also
myButton_.onRollOver = function() {...};
myButton_.onRollOut = function() {...};

Do not use _root. If you import movie for example, the imported movie _root, becomes the importing movie _root, and that can mess things up.

Don't use:
tellTarget (_root.loader) {
gotoAndStop (_root.percentbytes);
}
instead:
loader.gotoAndStop(percentbytes);

Good luck :]

mechanixnut responds:

ok thanks ill look into that and i might add that into the tutorial at a later date when i get used to using it.

useful

this is very useful i will check this out for later use thanks alot!

mechanixnut responds:

awesome glad to help

"10 hours to get right"

And 5 seconds to find an error.

You have:
on (release) {_quality = "low":}

Should be something like:
on (release) {_quality = "low";}

Anyway, pretty decent tutorial.

mechanixnut responds:

i guess my shift button didnt work ill fix that in a sec, thanks

It's helpful.

I knew AS from before, but I guess it's helpful for people that's new to ActionScripting. You should make the graphics better, cause they weren't really good, but it's helpful!

mechanixnut responds:

Thanks. I only made the graphics that way beacuse it makes things easy to understand. If my graphics are too good and crazy stuff happens people will get either confuzed or lost in their thought.