rt3d
05-13-2012, 08:09 AM
Hello,
I work for a very small company. The individual that was hired on from the outside to create a flash based virtual brochure for our website has decided not to complete the project due to increase in other projects...basically left us high and dry. My boss asked me if possible to continue and start by either changing the text in the 'Right Click' menu that appears when you 'Right Click' on the virtual brochure displayed in the web browser or eliminating it completely. Currently our company name is shown in the menu, but it is spelled incorrectly. Also a user is meant to click on our name in the menu which will bring the user to a page on our website...which currently does not exist anymore.
This project deals with Javascript, HTML, and Flash.
I have a sample of the code in question below (from 'index.html' file). In regards to our misspelled name shown on the 'Right Click' menu...where is that information kept? Is it embedded in the flash file itself? The main brochure flash file is the 'movie.swf'. Unfortunately we do not know where he created the .fla files...I only have access to .swf files.
If unable to make these changes, is there a way to at least just have the 'Settings' and 'About Flash' shown only in the menu?
I have found similar threads related to the 'Right Click' menu, but could not get much out of them to use towards my problem. Sorry...I am a newbie at this and my knowledge is limited. Please let me know if I need to submit more code and I will do my best. Thank you!
var dir = "./files/";
var jsfolder = "js/";
var swffile = "movie.swf";
var flashvars = {};
var params = {
menu: "false",
scale: "noScale",
allowfullscreen: "true",
allowscriptaccess: "always",
bgcolor: "#ffffff",
wmode:"transparent"
};
var attributes = {id: "stream"};
swfobject.embedSWF(dir+swffile, "stream", "100%", "100%", "9.0.0", dir+jsfolder+"expressInstall.swf", flashvars, params, attributes);
</script>
</head>
<body style="padding: 0px; margin: 0px; height:100%; width:100%;">
<div id="stream">
<h1>Requires FlashPlayer</h1>
<p><a href="http://get.adobe.com/flashplayer/"><img src="http://www.adobe.com/images/shared/download_buttons/get_adobe_flash_player.png" alt="Get Adobe Flash Player"/></a></p>
<p>Please try the above link first. If you still encounter problems after installing the Flash Player, try this one:</p>
<p><a href="http://get.adobe.com/shockwave/"><img src="http://www.adobe.com/images/shared/download_buttons/get_adobe_shockwave_player.png" alt="Get Adobe Shockwave Player"/></a></p>
</div>
I work for a very small company. The individual that was hired on from the outside to create a flash based virtual brochure for our website has decided not to complete the project due to increase in other projects...basically left us high and dry. My boss asked me if possible to continue and start by either changing the text in the 'Right Click' menu that appears when you 'Right Click' on the virtual brochure displayed in the web browser or eliminating it completely. Currently our company name is shown in the menu, but it is spelled incorrectly. Also a user is meant to click on our name in the menu which will bring the user to a page on our website...which currently does not exist anymore.
This project deals with Javascript, HTML, and Flash.
I have a sample of the code in question below (from 'index.html' file). In regards to our misspelled name shown on the 'Right Click' menu...where is that information kept? Is it embedded in the flash file itself? The main brochure flash file is the 'movie.swf'. Unfortunately we do not know where he created the .fla files...I only have access to .swf files.
If unable to make these changes, is there a way to at least just have the 'Settings' and 'About Flash' shown only in the menu?
I have found similar threads related to the 'Right Click' menu, but could not get much out of them to use towards my problem. Sorry...I am a newbie at this and my knowledge is limited. Please let me know if I need to submit more code and I will do my best. Thank you!
var dir = "./files/";
var jsfolder = "js/";
var swffile = "movie.swf";
var flashvars = {};
var params = {
menu: "false",
scale: "noScale",
allowfullscreen: "true",
allowscriptaccess: "always",
bgcolor: "#ffffff",
wmode:"transparent"
};
var attributes = {id: "stream"};
swfobject.embedSWF(dir+swffile, "stream", "100%", "100%", "9.0.0", dir+jsfolder+"expressInstall.swf", flashvars, params, attributes);
</script>
</head>
<body style="padding: 0px; margin: 0px; height:100%; width:100%;">
<div id="stream">
<h1>Requires FlashPlayer</h1>
<p><a href="http://get.adobe.com/flashplayer/"><img src="http://www.adobe.com/images/shared/download_buttons/get_adobe_flash_player.png" alt="Get Adobe Flash Player"/></a></p>
<p>Please try the above link first. If you still encounter problems after installing the Flash Player, try this one:</p>
<p><a href="http://get.adobe.com/shockwave/"><img src="http://www.adobe.com/images/shared/download_buttons/get_adobe_shockwave_player.png" alt="Get Adobe Shockwave Player"/></a></p>
</div>