Yeah, just do
Stage.showMenu=false;
If you just want to disable one thing, like the play or rewind, do this
root_cm = new ContextMenu();
root_cm.hideBuiltInItems();
_root.menu = root_cm;
root_cm = new ContextMenu();
root_cm.hideBuiltInItems();
var root_cm:ContextMenu = new ContextMenu ();
//code here
this.menu = my_cm;
_root.menu = root_cm;
and where it says //code here, you can add line with
root_cm.builtInItems.zoom=false;
root_cm.builtInItems.play=false;
root_cm.builtInItems.forward_back=false;
root_cm.builtInItems.rewind=false;
root_cm.builtInItems.loop=false;
root_cm.builtInItems.print=false;
root_cm.builtInItems.quality=false;
_________________

