Make .SWF Fit the Screen

I am using a main .SWF that contains the actions for buttons. Each button opens another .SWF file like so:

on (release) {
	_root.contents.loadMovie("frontpage.swf");
}

My problem is I want to make the .SWF files I load INSIDE my main .SWF fit the screen. The main .SWF with the buttons is already fitted to the screen with HTML:

<param name="movie" value="main.swf" />
<param name="quality" value="high" />
<PARAM NAME="SCALE" VALUE="exactfit">

however this does not apply to the other .SWF’s. So how can I achieve this with the other .SWF files? :facepalm:
I desperately need this. Thanks!