Groups | Blog | Home
all groups > flash (macromedia) > october 2005 >

flash (macromedia) : Music delay between repeats?


NEW_Flash
10/11/2005 9:30:10 PM
I have music that is set with
Sync = Start
Repeat = 50

The music loop is 69 seconds long.

When the music starts it will play just fine for 69 seconds then it stops for
5seconds and start again. Driving me nuts!
I thought the whole idea of repeat is that there would be no delay.
Why the delay? And how can I get rid of the delay?

Does it matter, the layer I have the music on is only 35 frames long (2.8
seconds) the last frame has a return to frame 1 command.





:confused;
Equan
10/12/2005 12:00:00 AM
how are you loading the sound?
to make a sound loop
use actionscript
if the sound is in the library, give the sound a linkage name
and put this code on the timeline;

s = new Sound();
s.attachSound("linkage name");
s.start(0,50)//where 0 = the starting point of the sound, and 50 = the # of
loops
NEW_Flash
10/12/2005 8:32:01 PM
:brokenheart;

I tried the Action script and it still delays.
Code>
mySound.start(0, 9999)

Yet, it still takes a 5second delay between loops.

The music is 69 seconds long and after 69 seconds it stops and then starts
again 5seconds later. I want to get rid of the 5 seconds. to me 9999 means
keep playing without stopping. What am I missing?




Equan
10/15/2005 12:00:00 AM
AddThis Social Bookmark Button