# Does Sound Object work in Flash 5 Player?

**URL:** https://forum.kirupa.com/t/does-sound-object-work-in-flash-5-player/246092
**Category:** flash
**Created:** [December 7, 2007, 12:01am UTC](https://forum.kirupa.com/t/does-sound-object-work-in-flash-5-player/246092 "2007-12-07T00:01:10Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![wyclef](https://avatars.discourse-cdn.com/v4/letter/w/65b543/32.png) [@wyclef](https://forum.kirupa.com/u/wyclef)
#### Post date: [December 7, 2007, 12:01am UTC](https://forum.kirupa.com/t/does-sound-object-work-in-flash-5-player/246092/1 "2007-12-07T00:01:10Z")

</div>

Hey, I’m trying to develop something for Flash 5 Player and nothing seems to work. Currently I’m having trouble with the following bit of AS which works fine if I export for Flash 6. But in Flash 5…no sound. Is there a specific way an mp3 needs to be encoded for Flash 5 or does it not even accept mp3s?

```auto

// sound object
_soundbuftime=10;
jbsAudio = new Sound();
jbsAudio.loadSound("i/mix.mp3", true);
jbsAudio.setVolume(50);
jbsAudio.start();

```

I’ve uploaded an fla so you can see. you’ll need to provide an mp3 and chuck it in a folder named ‘i’. I can’t figure out what the problem is. Thanks for your help.
