Could someone tell me what's wrong?

could some one please tell me why the hell my fscommands don’t work???[AS]fscommand(“allowscale” , “false”);
fscommand(“showmenu”, “false”);
[/AS]

these are the two I am using but the showmenu does not seem to work. could some some body help me with this?
I am attaching ta sample fla and the html file.

here’s the file

need this in your html page

param name=menu value=false

Are you sure you’re using it correctly? Remember that

From the AS Dictionary
Macromedia Flash can use the fscommand action to control the playback and appearance of standalone projectors, as well as launch external applications.
And there’s a thread in the Best Of Kirupa about shrinking the Flash Menu :slight_smile:

*Originally posted by AnOraK *
**need this in your html page

param name=menu value=false **

which can also be set for the HTML generated by flash from File > Publish Settings…

Remember FScommands are used basically for Operating systems etc, like to control the player or some custom app that flash is wrapped in (ive done it, and its pretty cool) =)

Flash MX allows for… [AS]Stage.showMenu = false;
Stage.scaleMode = “noScale”;[/AS]

Stage.scaleMode is set as “showAll” by default.

You can use “showAll”, “noScale”, “exactFit”, and “noBorder”