Una volta che tutti gli mc interni hanno un nome istanza ad esempio btn_gallery, btn_biografia, ecc e il movieclip che li contiene ha nome istanza ad esempio mc_menu nel primo frame della time line dovrai scrivere:
codice:
mc_menu.onRollOver = function()
{
this.stop()
}
mc_menu.onRollOut = function()
{
this.play()
}
//**************************************************************
mc_menu.onRelease = function() {
if (this.btn_gallery.hitTest(_xmouse,_ymouse))
{
getURL("galleria.html","_blank")
trace("gallery");
}
if (this.btn_biografia.hitTest(_xmouse,_ymouse))
{
getURL("biografia.html","_blank")
trace("biografia");
}
}