Hi im trying to make a mp3 player in flash 8. I have got the player working with buttons etc just I want to make it autoplay... I will post my actionscript below, thanks Liam.

For the play button I use

Code:
on ({
sound.start(cue);
}
For the pause button I use

Code:
on(release){
cue=Math.round (sound.position/1000);
sound.stop();
}
For the stop button...