Loading sound with loadVars

Hi,

I figured out how to use ASP in Flash and it’s no problem to load and send textfield data from and to the asp page.
But now I need to know how to get a variable from that asp page into my loadSound object.

the asp page (audio_loader.asp) is giving this as result

audio1=sounds/sound1.mp3

Now I want to assign it to the soundLoad

loadVariablesNum(“audio_loader.asp”, 0, “POST”);
stop();
function MoveNext() {
nextFrame();
}
coolTune = new Sound (soundLoader);
coolTune.loadSound( [COLOR=red]here needs to be the var audio1[/COLOR] ,true);
coolTune.onSoundComplete = MoveNext;

I dont know how I need to code this. must be simple :stuck_out_tongue: