mbytes
Joined: 29 Jul 2008 Posts: 3
|
Posted: Tue Jul 29, 2008 3:04 pm Post subject: Flash overlaps menu... |
|
|
The CooljsMenu is spawning its sub-menus beneath a chart generated via flash on my site. I know this has been asked before, but how do I remedy this? I'm using CooljsMenu 2.9.4.
I searched the forum, which led me here http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_14201&sliceId=2. I tried to use the instructions under "Editing HTML code manually," but am at a loss as to how to apply the OBJECT and EMBED tags; I believe because the .swf file is being handled with javascript, and the examples I could find weren't specific enough to account for this.
Here's the code to the table that calls and displays the chart...
| Code: | <table width="98%" border="0" cellspacing="0" cellpadding="3" align="center">
<tr>
<td valign="top" class="text" align="center" style="height: 19px"></td>
</tr>
<tr>
<td valign="top" class="text" align="center" style="height: 19px">
<div id="chartdiv" align="center">FusionCharts</div>
<script type="text/javascript">
var chart = new FusionCharts("../Charts/MSLine.swf", "ChartId", "750", "425", "0", "0");
chart.setDataURL("Data/01_CMX.xml");
chart.render("chartdiv");
</script>
</td>
</tr>
<tr>
<td valign="top" class="text" align="center"> </td>
</tr>
</table> |
Will someone please show me how to properly apply the OBJECT & EMBED tags as described in the above-referenced document??? If you haven't guessed by now, I'm somewhat new to this...So, explain it as you would to a beginner.
Thanks in advance. |
|