Hello,
I’m having a little problem that i don’t know how to solve…
My swf works with scenes. In the 1st scene i build a sound object :
mysound = new Sound();
mysound.attachSound("thesound.wav");
mysound.start(0,loop);
mysound.setVolume(100);
but when i move to the 2nd scene, the sound stop looping… I could restart it using _root.mysound.start(0,loop) but it would restart the sound when you move from scene1 to scene2 so cut it up in the middle and restart which isn’t so nice…
Any idea??