mobius1983
Technical User
Hi Everyone,
I have a flash file, that imports an xml file. This is dispayed embeded in an asp page. The asp page gets the data out of a datbase and creates the xml file before it calls the flash movie. Because I want several users to be using this page at once I want to pass to the flash file the name of the xml doc created.
My flash file works fine if I hard code the name of the xml file. But as soon as I replace the hard coded name with the variable name passed using FlashVars it fails.
My code is:
asp/html -
<object classid="clsid
27CDB6E-AE6D-11CF-96B8-444553540000" id="obj1" codebase=" border="0" width="563" height="365">
<param name="movie" value="ftrack.swf">
<param name="quality" value="High">
<PARAM NAME="FlashVars" VALUE="read_file=testData.xls">
<embed src="ftrack.swf" pluginspage=" type="application/x-shockwave-flash" name="obj1" width="563" height="365"></object>
flash -
doc.load(read_file);
I really hope someone can help.
Thanks to everyone that has taken the time to read through this!
Cheers
Nick
I have a flash file, that imports an xml file. This is dispayed embeded in an asp page. The asp page gets the data out of a datbase and creates the xml file before it calls the flash movie. Because I want several users to be using this page at once I want to pass to the flash file the name of the xml doc created.
My flash file works fine if I hard code the name of the xml file. But as soon as I replace the hard coded name with the variable name passed using FlashVars it fails.
My code is:
asp/html -
<object classid="clsid
<param name="movie" value="ftrack.swf">
<param name="quality" value="High">
<PARAM NAME="FlashVars" VALUE="read_file=testData.xls">
<embed src="ftrack.swf" pluginspage=" type="application/x-shockwave-flash" name="obj1" width="563" height="365"></object>
flash -
doc.load(read_file);
I really hope someone can help.
Thanks to everyone that has taken the time to read through this!
Cheers
Nick