-
I just wanna know how i can make diff dynamic sounds come up like if i have 3 diff waves. ex. a.wav, b.wav, c.wav and i want to play a diff one each time the flash loads up.. if someone can tell me pleaze post...
-
hi there,
well if have your sounds in separate swfs (eg. so1.swf, so2.swf..etc), then you could use the random() function to pick a different sound everytime it loads.. eg.
numsongs=3;
ran = 1+Math.floor(Math.random()*numsongs);
loadMovie("so"+ran+".swf",_root.SonConMC);
hope this helps,
Andy