Check External movie's load status

I’ve an empty movie clip on the stage and an external swf is loaded to that movieclip. How can I check the external movie’s frames are completely loaded or not from the base movie. Is it possible by targetting the empty movieclip? any help would really be appreciated. :z:

[FONT=Courier New][LEFT][COLOR=#000000]**function**[/COLOR] checksize[COLOR=#000000]([/COLOR][COLOR=#000000])[/COLOR] [COLOR=#000000]{[/COLOR]
    [COLOR=#0000FF]this[/COLOR].[COLOR=#0000FF]onEnterFrame[/COLOR] = [COLOR=#000000]**function**[/COLOR][COLOR=#000000]([/COLOR][COLOR=#000000])[/COLOR] [COLOR=#000000]{[/COLOR]
        [COLOR=#0000FF]if[/COLOR] [COLOR=#000000]([/COLOR][COLOR=#0000FF]_root[/COLOR].[COLOR=#000080]targetx[/COLOR].[COLOR=#000080]holder[/COLOR].[COLOR=#0000FF]_width[/COLOR][COLOR=#000000])[/COLOR] [COLOR=#000000]{[/COLOR]
            [COLOR=#0000FF]delete[/COLOR] [COLOR=#0000FF]this[/COLOR].[COLOR=#0000FF]onEnterFrame[/COLOR];
            [COLOR=#0000FF]trace[/COLOR][COLOR=#000000]([/COLOR][COLOR=#FF0000]"width"[/COLOR]+[COLOR=#0000FF]_root[/COLOR].[COLOR=#000080]targetx[/COLOR].[COLOR=#000080]holder[/COLOR].[COLOR=#0000FF]_width[/COLOR][COLOR=#000000])[/COLOR];
        [COLOR=#000000]}[/COLOR]
    [COLOR=#000000]}[/COLOR];
[COLOR=#000000]}[/COLOR]
[/LEFT]
[/FONT]

U can just check if the holder clip has anything in it, or if u need to test the frames just put a variable in the loaded movie like framesend= true, and test for that in your main movie.