# Load External Mp3 and start playing on a certain frame

**URL:** https://forum.kirupa.com/t/load-external-mp3-and-start-playing-on-a-certain-frame/151450
**Category:** flash
**Created:** [June 15, 2005, 3:57pm UTC](https://forum.kirupa.com/t/load-external-mp3-and-start-playing-on-a-certain-frame/151450 "2005-06-15T15:57:45Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![rome](https://avatars.discourse-cdn.com/v4/letter/r/ecae2f/32.png) [@rome](https://forum.kirupa.com/u/rome)
#### Post date: [June 15, 2005, 3:57pm UTC](https://forum.kirupa.com/t/load-external-mp3-and-start-playing-on-a-certain-frame/151450/1 "2005-06-15T15:57:45Z")

</div>

I am trying to load an external mp3 and have it start playing on frame 430 of my movie. The code I’ve tried either starts playing the mp3 right away or not at all. Here is what I’m working with:

[indent]onClipEvent (load) {

// sets up a sound object  
faTrack = new Sound();  
// load the external sound  
faTrack.loadSound(“intro.mp3”, true);  
// play the sound  
faTrack.start(430);  
}

[/indent]After using this code it started the movie right after the sound was loaded. What is the proper method to make this work?
