PDA

View Full Version : Need Scripting help


gbeals
03-24-2005, 09:25 AM
Hello all - Im new to this board and could use some help.. I've been reading through alot of threads but have not had much luck.

Im creating a cd presentation that uses flash and dreamweaver. Dreamweaver is really only used as a fix to solve a sizing issue - and is used for navigation. The rest of the project contains flash elements...

On to my issue:

I would like when I open the starting page to not have any of the internet explorer icons - I'm looking to have just the titlebar and my content. Can this be done?

Issue #2 - Is there a code to put in flash that will allow me to disable the right click? I dont wannt people to be able to bring up the sub menu when you right click flash objects.

Thanks for any and all help.

_Aerospace_Eng_
03-24-2005, 02:38 PM
1. Yes but it requires javascript to open it and it will require that the opening page be closed, that is of course you wanted to have the window with no toolbars etc to be opened automatically, even if u did that popup blockers would block it and you would get a msg asking you if you wanted to close the previous window or not. However if you clicked on a link that opened the new window then yes it could be done, do a search for window.open in these forums, its been asked numerous times.
2. You can't remove the menu completely but you can remove most of the options to do this you would add this parameter to your html, in between the object tags
<param name="menu" value="false">
Another option you can consider is publishing the flash file as an exe file or also known as a projector file, and to disable the menu there you would add this to the action script in the first frame
fscommand("showmenu", "false");
HTH