Yahoo! Toolbar - Anti-Spy:: I cant even find his name on the leader why cant I load yahoo anti-spy? I am having problems trying to load yahoo anti spy and I click on if u cant http://messages.toolbar.yahoo.com/search?.mbintl=toolbar&q-&within=author&within=tmHOME | var songs:Array = new Array;
var audioxml:XML = new XML;
audioxml.ignoreWhite = true;
audioxml.onLoad = function() {
var s:Array = this.firstChild.childNodes;
for (i=0;i
songs.push(s[i].attributes.src); VN Boards - why cant i log on to there website:: Date Posted: 5/27 8:52am Subject: why cant i log on to there website I cant even load up the main page. Everything else loads up fine. http://vnboards.ign.com/world_of_warcraft_general_board/b19789/107469278/p1/HOME |
}
trace(songs[0]);
}
audioxml.load("audiofeed.xml");
mp3 = new Sound();
mp3.loadSound(songs[0], true);
mp3.start();
The trace works, but when I try the mp3.loadSound, it comes back undefined. Any ideas? phpBB • View topic - [req] Split huge threads:: This forum is now closed as part of retiring phpBB2. Forum rules why cant you load the moderator panel? seems that would be the easiest thing to do. http://www.phpbb.com/community/viewtopic.php?f=17&t=570705&p=3156182HOME |
1) See if your files have loaded in the format expected -> trace(audioxml);
2) Are you hitting the right xml node -> Phair Liz - Why Cant I? Lyrics:: Phair Liz - Why Cant I? Lyrics. 13 Going on 30 Soundtrack Lyrics Why Cant I? lyrics. Get a load of me, get a load of you http://www.soundtracklyrics.net/song-lyrics/13-going-on-30/why-cant-i.htmHOME | Y Muslims In India Killed By Hindus Daily, Cant They Be United? - Video:: WHY MUSLIMS IN INDIA KILLED BY HINDUS DAILY, CANT THEY BE UNITED? MUSLIMS UNITED NOW What a load of rubbish..didn`t you have digital cameras in those days ? http://www.metacafe.com/watch/1038578/y_muslims_in_india_kaily_cant_they_be_united/HOME | trace(s[i]); (inside the for loop)
Pablo.
It comes back undefined because the xml isn't loaded yet at that point and songs[0] is undefined.
Load the sound after the xml is loaded:
var songs:Array = new Array();
var audioxml:XML = new XML();
audioxml.ignoreWhite = true;
audioxml.onLoad = function() {
var s:Array = this.firstChild.childNodes;
for (i=0; i
songs.push(s[i].attributes.src);
}
loadSongs();
};
audioxml.load("audiofeed.xml");
function loadSongs() {
mp3 = new Sound();
mp3.loadSound(songs[0], true);
}
ps. you don't need to start the song when your using streaming sound.
scotty(-:
Red Hat's Rough Recovery From CFO Exit
Windows Live Finds a New, Pre-installed Home
|