On Jan 11, 4:05*am, Anees <muhd.an...@gmail.com> wrote:
> > Post a link to your page or the markup used for your Flash movie.
>
> http://projects.realinternetsales.com/AudraRhodes/
> here i need to Load the JS Menu if Flash will not support
> And also need to prompt the user to confirm the redirection into flash
> download page
Forget about redirection as your users won't be interested in that.
They are going to want a menu that works without a download!
The only parameter you are passing to Flash is quality="high". You
can lose that as it is the default. You can also lose the embed tag.
Here is an example:
<object classid="clsid

27CDB6E-AE6D-11cf-96B8-444553540000"
width="300" height="120" codebase="http://fpdownload.macromedia.com/
pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" title="Movie">
<param name="movie" value="flash/testflash_streaming.swf">
<!--[if !IE]>-->
<object type="application/x-shockwave-flash" data="flash/
testflash_streaming.swf" width="300" height="120" title="Movie">
<!--<![endif]-->
<ul>
<li><a href="page1.html">menu item 1</a></li>
<li><a href="page2.html">menu item 2</a></li>
<li><a href="page3.html">menu item 3</a></li>
...
</ul>
<!--[if !IE]>-->
</object>
<!--<![endif]-->
</object>
Use CSS to approximate the Flash rollover effects. Without getting
into a detailed discussion of progressive enhancement, a simple
solution to the "Click to Activate" issue is to document.write the
object tags from an external script file. You will then need a
noscript element that contains the menu list.
<script type="text/javascript" src="flashmenu.js"></script>
<noscript>
<ul>
<li><a href="page1.html">menu item 1</li>
<li><a href="page2.html">menu item 2</li>
<li><a href="page3.html">menu item 3</li>
...
</ul>
</noscript>
Granted, it isn't an optimal solution as your menu list will exist in
two places.
Do the same thing with your other Flash movie, but use a JPEG as the
fallback.