Hi,
I have a simple chart (.swf) that is connected to a xml. It generates a linear chart from the data in the xml file.
My probmlem is that I wanted to connect the swf. file with a xml file on another site. The swf. file doesnt support that so i had to use a static xml file from my own server. That is not good because the information i need is updated more often than I care to change my static xml file.
here is an exsample how my xml file looks like:
<chart>
<chart_type>line</chart_type>
<chart_data>
<row>
<null/>
<string>Year 1</string>
</row>
<row>
<string>Total</string>
<number>100</number>
<number>123</number>
<number>221</number>
</row>
</chart_data>
<chart_pref line_thickness='1' point_shape='none' fill_shape='false' />
</chart>
*********
This will draw a linear graph.
My question is: Could I have some kind of link in my static xml file to the xml file that I need so that the swf. file can still read it?
E.g. could I but in (where it says: <number>221</number>) <number>"link to another xml file"</number>
????
Is anyone here you could tell me?
It would help me alot.
Best regards,
Larus
I have a simple chart (.swf) that is connected to a xml. It generates a linear chart from the data in the xml file.
My probmlem is that I wanted to connect the swf. file with a xml file on another site. The swf. file doesnt support that so i had to use a static xml file from my own server. That is not good because the information i need is updated more often than I care to change my static xml file.
here is an exsample how my xml file looks like:
<chart>
<chart_type>line</chart_type>
<chart_data>
<row>
<null/>
<string>Year 1</string>
</row>
<row>
<string>Total</string>
<number>100</number>
<number>123</number>
<number>221</number>
</row>
</chart_data>
<chart_pref line_thickness='1' point_shape='none' fill_shape='false' />
</chart>
*********
This will draw a linear graph.
My question is: Could I have some kind of link in my static xml file to the xml file that I need so that the swf. file can still read it?
E.g. could I but in (where it says: <number>221</number>) <number>"link to another xml file"</number>
????
Is anyone here you could tell me?
It would help me alot.
Best regards,
Larus