vote up 0 vote down star

Hi,

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.

i dont really know how it would look, but something like:

<object xmlpath='" + myCSharpVar + "'" ...></object>

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.

To clear it up a bit, in AS you can do something like:

loader.load( new URLRequest("IWantThisNameDynamic.xml") );

how can i define that xml file in my c# code?

flag

66% accept rate

3 Answers

vote up 1 vote down check

I'm quite sure you cannot "create" your own attributes for the object tag. At least not without consulting with the w3c ;-)

Passing values to flash is done via the "flashvar"-param:


  <object ...>
    <param name="flashvars" value="&xmlpath=<path to xml>"/>
  </object>

In the flash-movie you can now access the path to your xml via the "xmlpath"-variable.

link|flag
LOL - that was just for demo purposes - im sure it would have been much clearer if i did it in the param, but i honestly didnt know where it went. Thanks for the reply, i still may ask w3c and tell them its for a special project - ha ha --- thanks again. – schmoopy Oct 18 '08 at 15:51
vote up 0 vote down

Edit: sorry, question was about ASP.NET

If you were using an AxShockwaveFlash object in C#, you would set the variables this way:

AxShockwaveFlash movie; // already exists
string xmlPath = "some path";
movie.FlashVars = "xmlPath=" + xmlPath; // url-encoded variables

Then in AS2:

var xmlPath:String = _level0.xmlPath;

Or in AS3:

var xmlPath:String = loaderInfo.parameters.xmlPath;
link|flag
vote up 0 vote down

Also look into the ExternalInterface class that Adobe has introduced. It has the ability to communicate to external javascript and handle return events.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.