Answered
Streaming MP3 controls
So the problem I'm having is the play and pause buttons work
with the timeline but the audio keeps running.
I have a flash movie with a preloader in Scene 1, Scene 2 is just a standard timeline movie. I have the sound loading using this script in a MC on a layer.
mySound = new Sound();
mySound.loadSound("FullUp1.mp3", true);
mySound.start();
I'm using a movie clip with controls in Scene 2 with the play and pause buttons:
Play Btn:
on (release) {
_parent.play();
with ("Suazo") {
play;
}
}
Pse Btn:
on (release) {
_parent.stop();
with ("Suazo") {
pause;
}
}
The movie clip with the mysound code has an instance name of "Suazo." Any ideas?
I have a flash movie with a preloader in Scene 1, Scene 2 is just a standard timeline movie. I have the sound loading using this script in a MC on a layer.
mySound = new Sound();
mySound.loadSound("FullUp1.mp3", true);
mySound.start();
I'm using a movie clip with controls in Scene 2 with the play and pause buttons:
Play Btn:
on (release) {
_parent.play();
with ("Suazo") {
play;
}
}
Pse Btn:
on (release) {
_parent.stop();
with ("Suazo") {
pause;
}
}
The movie clip with the mysound code has an instance name of "Suazo." Any ideas?