ciao a tutti sto cercando di capire come posso creare un menu simile a questo http://jrgraphix.net/research/flash-dock-mx-2004.php da hostare nel mio sito il problema è che se pure conosco il codice non capisco come faccio a configurarlo nella maniera adeguata come programmi ho flash mx e flash decompiler trillix un suggerimento su come approcciare mi sarebbe utilissimo grazie lo stesso

codice:
Stage.scaleMode = "noScale";
this.dockActions = function (label)
{
    if ((__reg0 = label) === "Preferences") 
    {
        trace("Actions here to handle Preferences.");
getURL('http://opera.com/', '_blank');
//questo dovrebbe essere il collegamento che una volta cliccato sull'immagine dovrebbe aprirsi
        return;
    }
    else if (__reg0 === "Blog") 
    {
        trace("Actions here to handle Blog.");
        return;
    }
    else if (__reg0 === "Forum") 
    {
        trace("Actions here to handle Forum.");
        return;
    }
    trace("Default action here.");
}
;
var dockTemplate = {layout: 0, icon_size: 128, icon_min: 32, icon_max: 128, icon_spacing: 2, items: [{id: "settings", label: "Preferences"}, {id: "blog", label: "Blog"}, {id: "forum", label: "Forum"}, {id: "shop", label: "Store"}, {id: "support", label: "Tech Support"}, {id: "search", label: "Search Archives"}, {id: "contact", label: "Contact Us"}, {id: "trash", label: "Trash"}], span: null, amplitude: null, callback: this.dockActions};
this.attachMovie("Dock", "menu_mc", 1, dockTemplate);
this.menu_mc._x = Stage.width / 2;
this.menu_mc._y = Stage.height;
[/QUOTE]