Preloader problem - How to add/delete such preloaders?

Hi,

I have downloaded the Flash Template which has the preloader. I have seen such preloader first time which resides in Actionscript panel and not shown on main Flash project. I have attached the picture.

The question is how can I add / delete such preloaders? I know the kind of preloaders which will be on main project file’s first frame and all other content on second frame. Which can be executed by calling goToAndPlay(2);

I have modified the whole content of this template. I need to write a line of code in preloader to go to the main page ([COLOR=#0000ff]flashmo elegant[/COLOR]) . Please help. The following is the “Preloader” code:

stop();
import flash.net.URLRequest;
import flash.ui.ContextMenu;

var loaded:Number;
var percent:Number;

fm_bar.addEventListener( Event.ENTER_FRAME, load_progress );

function load_progress(e:Event):void
{
    loaded = stage.loaderInfo.bytesLoaded / stage.loaderInfo.bytesTotal;
    percent = Math.round(loaded * 100);
    
    fm_bar.scaleX = loaded;
    loader_info.text = "Loading... " + percent + "%";
    
    if( percent == 100 )
    {
        fm_bar.removeEventListener( Event.ENTER_FRAME, load_progress );
       **[COLOR=#ff0000] play();[/COLOR]**
    }
}

I need the code in place of [COLOR=#ff0000] play();[/COLOR] It is not work now simply blinking.

Note: Please let me know how can I delete this preloader.

Thanks.