Make a new context menu. Depending on your set up you may have to call it twice, or more (one for each scene/movie/load() etc.)
But basically just add this to the first frame of the first scene:
Code:
/*********/
var my_cm:ContextMenu = new ContextMenu();
my_cm.builtInItems.quality = false;
my_cm.builtInItems.print = false;
my_cm.builtInItems.save = false;
my_cm.builtInItems.zoom = false;
my_cm.builtInItems.play = false;
my_cm.builtInItems.loop = false;
my_cm.builtInItems.rewind = false;
my_cm.builtInItems.forward_back = false;
my_cm.builtInItems.print = false;
this.menu = my_cm;
/***********/
Change the "false" to "true" for anything you want to show.
Bookmarks