Ask a Question related to Macromedia Flash Data Integration, Design and Development.
-
rnjithkumar #1
Loading XML into Flash
Hi,
I am new to script, i need help in loading an XML List into Flash CS3.
Please help me in this regard, thanks in Advance
Regards
Ranjith Kumar. Bandi
rnjithkumar Guest
-
More FMS & Flash CS3 not loading FLV
I consider myself an intelligent fellow, but getting Flash CS3 to stream vis FMS is killing me. I've read the posts here where people are describing... -
Loading .txt into flash
I hope this is simple, but can't figure out how to build. I have a text file that has (7) separate sentences "qoutes." I am wanting flash to load... -
Loading CSS into Flash
Hi, Does anyones know how you load an external CSS file into a movie clip that's 2 MCs deep from the _root timeline? I've managed to do it on... -
Loading Flash
I really want to know how to put the % of the loaded movie on the movie begginning. Can anyone tell me how to do this? email: rickw89@aol.com -
loading flash 7
For some reasopn, I lost Flash 6 on my PC. I try to download flash but the computer freezes when the installation starts.I tried to use ... -
jimathy #2
Re: Loading XML into Flash
Check out the help files under actionscript 3 working with XML
Working with XML > Reading external XML documents reading XML documents
var myXML:XML = new XML();
var XML_URL:String = "http://www.example.com/Sample3.xml";
var myXMLURL:URLRequest = new URLRequest(XML_URL);
var myLoader:URLLoader = new URLLoader(myXMLURL);
myLoader.addEventListener("complete", xmlLoaded);
function xmlLoaded(event:Event):void
{
myXML = XML(myLoader.data);
trace("Data loaded.");
}
jimathy Guest



Reply With Quote

