Primo frame scrivi
codice:
unction prova() {
return true;
}
function www() {
getURL("http://www.sito.it", "_blank");
}
function Mail() {
getURL("mailto:info@sito.it");
}
my_CustomMenu = new ContextMenu();
my_CustomMenu.hideBuiltInItems();
_root.menu = my_CustomMenu;
var copyright = new ContextMenuItem("SCRIVI | qllo che vuoi", www);
var email = new ContextMenuItem("Contact: info@sito.it", Mail);
var project = new ContextMenuItem("Project: TuoProgetto", prova);
var releaseVersion = new ContextMenuItem("Versione release: 1.0", prova);
var releaseDate = new ContextMenuItem("Data Release: Mese gg, aaaa", prova);
project.separatorBefore = true;
my_CustomMenu.customItems.push(copyright);
my_CustomMenu.customItems.push(email);
my_CustomMenu.customItems.push(project);
my_CustomMenu.customItems.push(releaseVersion);
my_CustomMenu.customItems.push(releaseDate);