PDA

View Full Version : Disabling User Timeline Control


happy_smiles 23
09-14-2004, 04:34 AM
Hi everyone,

How do u make it so that when someone right-clicks on your .swf in a browser it only shows in the menu that pops down, settings and the About Macromedia Flash 7 bars. When I put mine in a browser there's options allowing the user to go through the timeline with buttons such as rewind, back, forward, and stop. I know there has to be a way to stop this and that its got to be really simple. Can anyone help? Thanks.

-JB :cool:

fmg
09-14-2004, 11:50 AM
Hi JB,

Simple it is..

If you are producing a projector, then you can use the fscommand:

fscommand("showmenu", "false");

and for the Web you can add a param value to your object element:

<object ....
.
.
<param name="menu" value="false" />
<embed menu="false"....
</object>