Loading XML into Flash

Ask a Question related to Macromedia Flash Data Integration, Design and Development.

  1. #1

    Default 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

  2. Similar Questions and Discussions

    1. 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...
    2. 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...
    3. 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...
    4. 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
    5. 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 ...
  3. #2

    Default 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

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139