PDA

View Full Version : Reasons for sound not working?



dynastyjp
August 5th, 2003, 02:16 AM
firstSound=new Sound();
firstSound.attachSound("****");


that's easy...did the linkage thing and it doesn't work..did it with another mp3 file and it worked fine..any idea on what can be causing this particular mp3 not to work when attached with AS?

This is MX by the way.


thanks in advance.

dynastyjp
August 5th, 2003, 02:26 AM
nevermind im an idiot.

Voetsjoeba
August 5th, 2003, 02:31 AM
I think you would be better off loading them external, because when the sounds are in the library, they usually make your filesize huge and when exported in first frame, they usually mess up preloaders too.

firstSound=new Sound();
firstSound.loadSound("whatever.mp3", true); //true = streaming
firstSound.start(0,999);

Also, see this page (http://www.kennybellew.com)

Didn't see your post ...