boolean
Posts: 62
|
| Posted: 11/20/2008, 7:13 AM |
|
Hello,
I have my first Flash Chart in CCS 4.0 and it's great. The problem is the location of the FlashChart.swf file kept: it is in the root folder.
In the template, it's like this
<!-- BEGIN FlashChart FlashChart1 -->
<object title="{Title}" tabindex="1" accesskey="q" height="{Height}" width="{Width}" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000">
<param name="movie" value="{Src}" />
<param name="quality" value="high" />
<param name="wmode" value="transparent" />
<param name="scale" value="exactfit" />
<embed src="{Src}" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="{Width}" height="{Height}" scale="exactfit" wmode="transparent"></embed>
</object>
<!-- END FlashChart FlashChart1 -->
In Source view of the web page, the {Src} is
src="../FlashChart.swf"
Because I need more than 1 chart, I try to modify the {Src} (which I thought I can do like a link):
src="../media/{Src}"
but in Source view of the webpage, it is
src="../media/../FlashChart.swf"
Would someone please show me where I can modify it? It would be great if I can change the Flash file name too, like MyFlash1.swf
Thank you.
|
 |
 |
|