4
It is in the object
.
Put inside:
<param name="menu" value="false" />
And within the tag embed
place:
menu="false"
4
2
It is in the object
.
Put inside:
<param name="menu" value="false" />
And within the tag embed
place:
menu="false"
2
You can make it by putting AS like this:
var meuMenu:ContextMenu = new ContextMenu();
meuMenu.hideBuiltInItems();
stage.contextMenu = meuMenu;
In addition to hiding the controls you can try to use Actionscript itself and hide the contextmenu thus:
stage.addEventListener(MouseEvent.RIGHT_CLICK, function(e:MouseEvent):void {});
stage.addEventListener(MouseEvent.CONTEXT_MENU, function(e:MouseEvent):void {});
Browser other questions tagged html flash
You are not signed in. Login or sign up in order to post.
Mmm, I’m gonna use that!
– Raizant
@Jacksonantunes has to disable the contextmenu, but I underlined it because I didn’t test it, but as soon as I test it I confirm if it works
– Guilherme Nascimento