Skip to main content
Known Participant
August 29, 2007
Question

flash variable

  • August 29, 2007
  • 1 reply
  • 142 views
I know this is probably easy but my mine is hurting from the videoplay i just built. I need to make a variable to pass a url to from flash.

example Actionscript

importXML.load(this.xmlloader);

var xmlloader = "importdata.xml";

How is this done
This topic has been closed for replies.

1 reply

Damon Edwards
Inspiring
August 29, 2007
var myURL:String = "importdata.xml";
importXML.load(myURL);