Dynamically change the xml file location that flash loads using c# - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T12:23:03Zhttp://stackoverflow.com/feeds/question/215139http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/215139/dynamically-change-the-xml-file-location-that-flash-loads-using-c0Dynamically change the xml file location that flash loads using c#schmoopy2008-10-18T15:09:05Z2008-10-24T23:58:32Z
<p>Hi,</p>
<p>Can someone tell me how i can change the .xml file that a flash movie loads using c#. ie: i would like an ActionScript variable that defines the location of the flash movie. I would like to be able to change this variable using c# if possible.</p>
<p>i dont really know how it would look, but something like:</p>
<pre><code><object xmlpath='" + myCSharpVar + "'" ...></object>
</code></pre>
<p>I just starting this, but my ultimate goal is to create a .swf movie that can load an xml file that specifies images, etc. However i want to use the same .swf file in multiple places and only have to change a ref to what xml file it uses - and my Flash/ActionScript skills are very rusty.</p>
<p>To clear it up a bit, in AS you can do something like: </p>
<pre><code>loader.load( new URLRequest("IWantThisNameDynamic.xml") );
</code></pre>
<p>how can i define that xml file in my c# code?</p>
http://stackoverflow.com/questions/215139/dynamically-change-the-xml-file-location-that-flash-loads-using-c/215176#2151761Answer by Argelbargel for Dynamically change the xml file location that flash loads using c#Argelbargel2008-10-18T15:41:37Z2008-10-18T15:41:37Z<p>I'm quite sure you cannot "create" your own attributes for the object tag. At least not without consulting with the w3c ;-)</p>
<p>Passing values to flash is done via the "flashvar"-param:</p>
<p><pre><code>
<object ...>
<param name="flashvars" value="&xmlpath=<path to xml>"/>
</object>
</pre></code></p>
<p>In the flash-movie you can now access the path to your xml via the "xmlpath"-variable.</p>
http://stackoverflow.com/questions/215139/dynamically-change-the-xml-file-location-that-flash-loads-using-c/215556#2155560Answer by Philippe for Dynamically change the xml file location that flash loads using c#Philippe2008-10-18T20:53:43Z2008-10-18T20:59:00Z<p><strong>Edit:</strong> sorry, question was about ASP.NET</p>
<p>If you were using an AxShockwaveFlash object in C#, you would set the variables this way:</p>
<pre><code>AxShockwaveFlash movie; // already exists
string xmlPath = "some path";
movie.FlashVars = "xmlPath=" + xmlPath; // url-encoded variables
</code></pre>
<p>Then in AS2:</p>
<pre><code>var xmlPath:String = _level0.xmlPath;
</code></pre>
<p>Or in AS3:</p>
<pre><code>var xmlPath:String = loaderInfo.parameters.xmlPath;
</code></pre>
http://stackoverflow.com/questions/215139/dynamically-change-the-xml-file-location-that-flash-loads-using-c/235642#2356420Answer by eric for Dynamically change the xml file location that flash loads using c#eric2008-10-24T23:58:32Z2008-10-24T23:58:32Z<p>Also look into the ExternalInterface class that Adobe has introduced. It has the ability to communicate to external javascript and handle return events.</p>