Mathieu_BSL
08-23-2006, 09:41 PM
Hi !
Is it possible to hide the menu bar
within the standalone flash player WHILE keeping our
customized context menu ?
For example, consider this little script :
var r:ContextMenu = new ContextMenu();
r.hideBuiltInItems();
test=function () {
}
r.onSelect = function() {
r.customItems.push (new ContextMenuItem ("yahoo!",test));
};
_root.menu = r;
Stage.showMenu = true;
If you "run" the swf file in the standalone version of the
Flash Player, the menu bar and the context menu are visible.
If I set Stage.showMenu = false, I can't see anymore my contextual
menu... I would like to hide the menu bar, but also I want to keep my
context menu...is it possible ?
Is it possible to hide the menu bar
within the standalone flash player WHILE keeping our
customized context menu ?
For example, consider this little script :
var r:ContextMenu = new ContextMenu();
r.hideBuiltInItems();
test=function () {
}
r.onSelect = function() {
r.customItems.push (new ContextMenuItem ("yahoo!",test));
};
_root.menu = r;
Stage.showMenu = true;
If you "run" the swf file in the standalone version of the
Flash Player, the menu bar and the context menu are visible.
If I set Stage.showMenu = false, I can't see anymore my contextual
menu... I would like to hide the menu bar, but also I want to keep my
context menu...is it possible ?