Code:
AS2 (which can do almost everything AS3 can, with less coding). And even when I do use CS3 I still code in AS2 format, it's just that much more simple.
Gotta disagree with you here Blizz. With the exception of mouse events, most things in AS3 are easier. And even with mouse events...it only looks intimidating. If you get used to it and really understand it...it makes a lot of sense.
Simple example:
Code:
AS2
var new:MovieClip = this.attachMovie("movie", "new_movie", this.getNextHighestDepth());
AS3
var new:MovieClip = new Movie();
addChild(new);
Anyway...as you said:
Code:
To each his own though.
Love the Pong suggestion btw. I've never heard that before but you're 100% right. It does cover a lot of the basics that you would need.
Bookmarks