Flash and XML

I have a flash animation which is made to read and load data from an xml file.

I found following code over internet to run flash file but there isn’t any variable where I define path of XML file.

<script type=“text/javascript”>
AC_FL_RunContent( ‘codebase’,‘http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0’,‘width’,‘640’,‘height’,‘436’,‘src’,‘files/flash/enterpagew’,‘quality’,‘high’,‘pluginspage’,‘http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash’,‘movie’,'files/flash/enterpagew’ ); //end AC code
</script><noscript><object classid=“clsid:D27CDB6E-AE6D-11cf-96B8-444553540000” codebase=“http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0” width=“640” height=“436”>
<param name=“movie” value=“files/flash/enterpagew.swf” />
<param name=“quality” value=“high” />
<embed src=“files/flash/enterpagew.swf” quality=“high” pluginspage=“http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash” type=“application/x-shockwave-flash” width=“640” height=“436”></embed>
</object></noscript>

Please advice where should I put XML file path?

It will probably be set in the fla/swf if you cant see it in the embed code.