Link to home
Start Free TrialLog in
Avatar of Aetia
Aetia

asked on

Preload music in flash

Hey!

I am working on a flash webiste and what I found out that my sound are slowing down my flash to run animations. I have added a dog wh is scratching himself and meanwhile sound is playing. It gets stuck for a second or two. I've checked if ther is duplicate frames that might cuse this but no... So I removed sound and it works well.

Problem is that if there is no sound, it seems booring. What I think is if I would just preload all sounds like preloading movie, i would get it working. I know there's way to do that. So can anybody give me some code for it or maybe even integrate it to my preloader:

onClipEvent (load)
{
    total = _root.getBytesTotal();
}
onClipEvent (enterFrame)
{
    loaded = _root.getBytesLoaded();
    percent = int(loaded / total * 100);
    text = "Loaded " + percent + "%";
    gotoAndStop(percent);
    if (loaded == total)
    {
        _root.gotoAndPlay(2);
    } // end if
}

Sound file is located in "symbol 601" and in layer called "Stream Sound Layer".
Avatar of dutchfoxer
dutchfoxer
Flag of Netherlands image

Your question will get more good answers right in the following area:
https://www.experts-exchange.com/Web/WebDevSoftware/Flash/

What you want probably is to preload the complete flash movie, not only the sound. What I found easiest is to use a Flash Preload Component (for Flash MX). You drag-drop this component in your movie and you have a preloader, just like that.

Goto http://www.flashcomponents.net/  and search for "preload".

Following tutorial explains a preloader but also sound as an Object:
http://www.tutorialized.com/tutorial/Preloader-Techniques-With-The-Sound-Object/3856

[if this does not help, please request Admin to refund and delete this question and repost it in the flash area]
 
Well one thing you keep in mind that is the streaming muzic files while downloading, dramatically increase the size of flash movie as flash is not actaually the streaming media format and is same as quicktime format. You can find much more help with searching over web with google for flash and multimedia integration. In the book Flash MX Bible they have more than a chapter related to this topic.
Regards,
Fahd Murtaza
ASKER CERTIFIED SOLUTION
Avatar of Fahdmurtaza
Fahdmurtaza
Flag of Pakistan image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Man thanks for the B.
Regards,
Fahd Murtaza