Hi,
i want to develop as3 dock flash menu and i ended up doing this menu
check this link

the complete code for above is present here

so need help in developing dock menu like mac i.e.
http://active.tutsplus.com/tutorials...menu-with-as3/

i have to give one swf file thats why i dont want to use class method
i checked this menu in AS1/2 . link here but i want AS3

i got stucked in displaying movieclips from library into array i.e.
var container:MovieClip = new MovieClip();
//container.graphics.beginFill(0xFF0000);
//container.graphics.drawRect(0, 0, 970, 180);
//container.graphics.endFill();
addChild(container);
//container.width = myClipWidth;



/*var myArray = new Array();
myArray = ["student", "young", "parent_", "traveller", "town"];

var myClipWidth:int=0;
var myClipHeight:int=0;

var nextX:int =35;
var i:int;
var scrollWidth:int;
var scrollHeight:int;


for (i=0; i<myArray.length ; i++) {

var thumbClip:thumb = new thumb();
thumbClip.height = 118;
thumbClip.width = 118;
thumbClip.x = nextX;
thumbClip.y = 25;

container.addChild(thumbClip);
nextX+=185;
myClipWidth += thumbClip.width+75;
thumbClip.buttonMode = true;



}

container.x = (stage.stageWidth / 2) - (myClipWidth / 2);
//container.y = (stage.stageHeight / 2) - (container.height / 2);
*/

//
Can anyone helpout in details, an AS3 example dock mac menu will be great which is working! Thanks