A "loader" should only appear when the flash file is not cached in the user's system. Once it's cached the "loader" is skipped.
If your Flash file "loads" each time ... you have a badly written "loader".
You will need to edit your Flash file so that it doesn't "load" each time the file is called.
essentially, a flash file checks if (number of frames exist) to display or not display "loader"...
if (not loaded)
{
goto frame 0
}
OR
if (frame10 is loaded)
{
//skip the loader
goto frame 10
}
the above is not the code to use ... it's just giving you a direction to look into
all loaders are different but, the above is pretty much the basics
|