Basic XML & Flash issue with FLV player. Help?!

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Head In A Pan
    New Member
    • Mar 2007
    • 25

    Basic XML & Flash issue with FLV player. Help?!

    I simply cannot get anything into flash via XML...
    Anyone see anything wrong here?

    Flash AS
    Code:
    var vList:XML = new XML();
    vList.ignoreWhite = true;
    vList.load('oneVideo.xml');
    
    vList.onLoad = function(){    
    ns.play(vlist.firstChild.attributes.videos);
    
    };
    And XML...
    Code:
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <videos theVideo="videos/1.flv" />
  • kestrel
    Recognized Expert Top Contributor
    • Jul 2006
    • 1071

    #2
    Sorry, i dont normally use XML in flash. I did search google and came up with this tutorial on XML in Flash. Hopefully this will be of some help.

    --
    Kestrel

    Comment

    • Head In A Pan
      New Member
      • Mar 2007
      • 25

      #3
      Thanks man...

      I'm at my wit's end so this may be a welcome diversion with hopefully some new knowledge gained by the end.

      HIAP

      Comment

      Working...