I am developing a page based on frames that has 2 frames, horizontally. The top frame displays a banner (a small Flash File) while the bottom frame contains the main body. The top frame (banner.htm) contains just the Flash File, nothing else. In spite of that, there are blank spaces appearing above and below the Flash. A vertical scrollbar is also appearing, in spite of specifying ScrollBars=None in the Frameset Page.
What am I doing wrong ? How can I remove the blank spaces and the scrollbar ?
I am giving the code of the body portion of both the frame and banner pages.
Banner.htm
<BODY>
<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"
id="BanFlash">
<PARAM NAME=movie VALUE=".\Flash\Banner.swf">
<PARAM NAME=quality VALUE=high>
<PARAM NAME=bgcolor VALUE=#FFFFFF>
<EMBED src=".\Flash\Banner.swf" quality=high bgcolor=#FFFFFF
NAME="BanFlash" ALIGN="" TYPE="application/x-shockwave-flash"
PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"></EMBED>
</OBJECT>
</BODY>
------------------------------------------------
Frameset Page
<FRAMESET ROWS="36%, 63%" BORDER=0 SCROLLBARS="None">
<FRAME SRC="Banner.htm" NAME="Banner">
<FRAME SRC="Main.htm" NAME="MainBody">
</FRAMESET>