Volledige versie bekijken : rightclick flashplayer menu disabelen
Roxx
%Europe/Berlin %358 %2005, 08:35
Waarschijnlijk is het ofcourse al ooit 'n keer hier gepost...maar met zoeken kan ik het niet terug vinden :P
wat zijn de parameters om die flashplayer menu die je krijgt met rechtermuisknop uit te schakelen?
b.v.d.
mknol
%Europe/Berlin %387 %2005, 09:18
fscommand('showmenu',false); in je flash plaatsen.
in je html:
<PARAM NAME=menu VALUE="false">
en bij je embed dit toevoegen (als je die gebruikt):
showmenu="false" toevoegen.
voorbeeld:
<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0"
WIDTH="100%" HEIGHT="100%" id="intro" ALIGN="">
<PARAM NAME=movie VALUE="intro.swf">
<PARAM NAME=menu VALUE="false">
<PARAM NAME=quality VALUE=high>
<PARAM NAME=bgcolor VALUE=#FD9908>
<EMBED src="intro.swf" quality=high bgcolor=#FD9908 WIDTH="100%" HEIGHT="100%" NAME="intro" showmenu="false" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"></EMBED>
</OBJECT>
Doc
%Europe/Berlin %418 %2005, 10:02
function doSomething(){}
MENU = new ContextMenu();
MENU.hideBuiltInItems();
Functioned = new ContextMenuItem("This movie is copyrighted by Your Company Name", doSomething);
MENU.customItems.push(Functioned);
_root.menu = MENU;
Hier (http://www.developertutorials.com/tutorials/flash/flash-customized-right-click-050321/page1.html) Vind je de volledige uitleg.
Roenes
%Europe/Berlin %510 %2005, 12:14
Stage.showMenu = false;doet genoeg. Dit werkt als je swf los draait maar ook als ie in een HTML file draait :)
Roxx
%Europe/Berlin %639 %2005, 15:20
thx guys
vBulletin® v3.8.1, Copyright ©2000-2012, Jelsoft Enterprises Ltd.