totally stumped with falsh problem!
I have a flash movie, and at 2 points in the movie, music streams in.
In the very first frame on its own layer I have the following script
mySound_sound = new Sound ();
mySound_sound.loadSound ("=song1.mp3", true);
mySound_sound.setVolume(100);
Then later on for the second piece of music I have this on its own layer
mySound_sound = new Sound ();
mySound_sound.loadSound ("song2.mp3", true);
mySound_sound.setVolume(100);
The .swf file and the two songs are in the same folder, all the file names are exact, and on my pc it all works FINE,
But the minute you copy and paste the folder onto someone else’s computer, the first song doesn’t play. The second one works perfectly, but the movie is not finding the first song in the folder! ANY ideas why this is happening cos I have none?!
I can't stream the music off the internet because where the movie will be used we won't have internet.
Thank you!
|