swank.inc
03-26-2003, 02:53 PM
Netscape 6 Mac does stop streaming correctly. Both browsers use the 6.0r79 plug-in btw. It's only a IE Mac bug. Please check the following url containing a 10MB streaming mp3 with both Mac browsers if possible.
http://www.moregraphics.nl/swank.inc/test
Use a traffic gauge like NetBarrier to monitor the receiving bytes.
You will notice Netscape stops d/l, but IE keeps d/l the mp3 file, even after the delete soundObject and removeMovieClip actions took place... very frustrating.
Here's the code for the button:
on (release) {
_root.createEmptyMovieClip("soundLib, 1");
soundLib.createEmptyMovieClip("track4hold", 1);
track4 = new Sound(soundLib.track4hold);
track4.loadSound("track4", true);
}
on (rollOver) {
function removeSound(){
}
delete track4;
soundLib.removeMovieClip();
}
http://www.moregraphics.nl/swank.inc/test
Use a traffic gauge like NetBarrier to monitor the receiving bytes.
You will notice Netscape stops d/l, but IE keeps d/l the mp3 file, even after the delete soundObject and removeMovieClip actions took place... very frustrating.
Here's the code for the button:
on (release) {
_root.createEmptyMovieClip("soundLib, 1");
soundLib.createEmptyMovieClip("track4hold", 1);
track4 = new Sound(soundLib.track4hold);
track4.loadSound("track4", true);
}
on (rollOver) {
function removeSound(){
}
delete track4;
soundLib.removeMovieClip();
}