Dynamically change the xml file location that flash loads using c# - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T12:23:03Z http://stackoverflow.com/feeds/question/215139 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/215139/dynamically-change-the-xml-file-location-that-flash-loads-using-c 0 Dynamically change the xml file location that flash loads using c# schmoopy 2008-10-18T15:09:05Z 2008-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>&lt;object xmlpath='" + myCSharpVar + "'" ...&gt;&lt;/object&gt; </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#215176 1 Answer by Argelbargel for Dynamically change the xml file location that flash loads using c# Argelbargel 2008-10-18T15:41:37Z 2008-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> &lt;object ...&gt; &lt;param name="flashvars" value="&amp;xmlpath=&lt;path to xml&gt;"/&gt; &lt;/object&gt; </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#215556 0 Answer by Philippe for Dynamically change the xml file location that flash loads using c# Philippe 2008-10-18T20:53:43Z 2008-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#235642 0 Answer by eric for Dynamically change the xml file location that flash loads using c# eric 2008-10-24T23:58:32Z 2008-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>