AS3 is as appropriate for building websites as AS2.
It’s a bit more demanding in terms of proper coding practices though.
I think there is a valid argument that banner ads and stuff like that should be coded in AS2 to maximize the potential audience.
I don’t think this logic applies to entire websites though.
Procedural programming is perfectly acceptable for small AS3 projects and websites.
You may want to learn OOP if you are working on large complex projects and elaborate scripts on a regular basis.
It’ll save you time and effort, since the custom classes will be much easier to manage and apply to future projects.
XML is another area to investigate; AS3 is much improved over AS2.
Here’s an AS3/TweenMax timeline script that works very nicely for setting up website navigation.
You can add pages and buttons to the script very easily, without the need for additional listeners or functions.
stop();
import gs.TweenMax;
import fl.motion.easing.*;
/*------------------------------------------------------------------------------------------------------------
fla setup instructions:
this script goes on frame1, layer "actions"
"pageGroup" is movieclip wrapper for movieclips "page1" "page2" "page3" - frame1, layer "pageGroup"
"buttonGroup" is movieclip wrapper for movieclip buttons "btn1" "btn2" "btn3" - frame1, layer "buttonGroup"
------------------------------------------------------------------------------------------------------------*/
buttonGroup.mouseEnabled = false;
buttonGroup.buttonMode = true;
buttonGroup.addEventListener(MouseEvent.MOUSE_OVER, action, false, 0, true);
buttonGroup.addEventListener(MouseEvent.MOUSE_OUT, action, false, 0, true);
buttonGroup.addEventListener(MouseEvent.CLICK, action, false, 0, true);
var pageArray:Array = [pageGroup.page1, pageGroup.page2, pageGroup.page3];
TweenMax.allTo(pageArray, 0, {autoAlpha:0, onCompleteAll:loadHome, overwrite:false});
function loadHome():void {
TweenMax.to(pageGroup.page1, .4, {delay:.4, autoAlpha:1});
}
var button:String = "";
function action(event:MouseEvent):void {
button = event.target.name;
switch (event.type) {
case MouseEvent.MOUSE_OVER :
TweenMax.to(event.target, .8, {scaleX:1.3, scaleY:1.3, ease:Elastic.easeOut});
break;
case MouseEvent.MOUSE_OUT :
TweenMax.to(event.target, .8, {scaleX:1, scaleY:1, ease:Cubic.easeOut});
break;
case MouseEvent.CLICK :
TweenMax.to(event.target, .4, {scaleX:1, scaleY:1, ease:Cubic.easeOut});
TweenMax.allTo(pageArray, .4, {autoAlpha:0, overwrite:false});
switch (button) {
case "btn1" :
TweenMax.to(pageGroup.page1, .4, {delay:.4, autoAlpha:1});
break;
case "btn2" :
TweenMax.to(pageGroup.page2, .4, {delay:.4, autoAlpha:1});
break;
case "btn3" :
TweenMax.to(pageGroup.page3, .4, {delay:.4, autoAlpha:1});
break;
}
break;
}
}