I think AS 3 has a less steep learing curve then AS 2 because everything is named properly also the standard stuff like gotoAndPlay is just the same
also in CS 3 you can easily convert a motion tween to AS which can be pretty handy.
Maybe button events are less easy but its just so handy for a developer to trigger multiple functions with 1 button
and that you can link multiple buttons to 1 function and that function can get info on the button….(i know its possible with AS 2 too but its all crappy)
button.addEventListener(MouseEvent.MOUSE_UP,somefunc);
function somefunc(evt:MouseEvent){
trace(evt);
}
or
button.onRelease = function() {
trace("clicky");
}
i think the first has a more logical syntax but thats just me as a developer
PS:i also think the mouse event names are easier to remember..
PSS: sombody here wants to know why tastylamp named himself tastylamp
|