show/hide this revision's text 2 added 1 characters in body

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;
show/hide this revision's text 1

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;