Learning Actionscript?

Hi people.

I’m Niels, 17 years old and I live in the Netherlands. I’m interested in flash. I like making flash animations and building websites in flash. I can make a descent website using the tutorials from this site, but I have one problem. I don’t know actionscript. It’s so hard to learn. I’ve tried experimenting with it, but I just can’t get it. I’m eager to learn and I really do want to learn actionscript. Where do I start? Any of you guys have a site with lessons, or a book or something like that? I really want to understand this stuff so I can create cool websites and other nice animations. I figured out Photoshop all by myself, without any help. I want to figure this stuff out too but I just can’t get it right. Please help me…

P.S. I dunno if this is the right place to post this… Plz forgive me if it is the wrong place.

I’ve never read these books before, but from what I hear, they’re pretty good so you might want to pick one of these up at the book store.

ActionScript : The Definitive Guide by Colin Moock, Gary Grossman

Any Friends of Ed books are good as well.

ThnX! One day I’ll be just like you elektrongeek… a big bad flashing machine…

I learned pretty much everything I know in AS from www.kirupa.com , experimenting on my own, and www.google.com for more information on specific AS commands that I didn’t understand.

there are many threads like this… search the forums, you’ll find a lot of threads about getting started :slight_smile:

Common Phrase: Search

May sound rude, but chances are you will find your answer just by using the forum search feature, the kirupa.com search feature, or just a search engine. And you will save yourself time waiting for an answer as well as save us time having to answer your question. If all else fails, feel free to post your question.

I recomend you to use this book :

FLASH MX ACTION SCRIPTING
By : Derek Franklin/Job Makar

Its really good I learned a lot from it, u can find it very cheap on e-bay and if you’ll like to buy it makesure it comes with the cd which has the exercises.
and if you’ll like to not spend any money its ok you can still learn action script my advice would be to learn this things first then youl get every thing else from tuts:

start with Movie Clip/button event handlers such as :
[AS]on(press){
do this;
}
on(release){
do that;
}
onClipEvent(enterFrame){
do this;
}
//and then learn conditions like:

if(condition){
do this
}else{
do that;
}
//learn variables they are very important.
//and learn some basic comands like:

startDrag (this);
stopDrag();
hitTest()
_root
_parent[/AS]
etc…
does this help???