I simply cannot get anything into flash via XML...
Anyone see anything wrong here?
Flash AS
And 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);
};
Code:
<?xml version="1.0" encoding="ISO-8859-1"?> <videos theVideo="videos/1.flv" />
Comment