if this an event sound (on frames) then when setting the sound from frame properties click event to make settings.
if its being attached from the library using actionscript then
s = new sound()
s.attachSound("linkName"
i = 0;
s.setVolume(0)
s.start(.....)//your loops
fade = setInterval(fadeIn,100)
function fadeIn ()
i +=4
s.setVolume(i)
if(i>=100)clearInterval(fade)
}
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.