Generally you don’t want your component to take up the entire page. Rather, you want to embed it somewhere in another page. No trouble, just put this in a HelloWorld.html file and you’re good to go:
<html> <body> <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" id="HelloWorld" width="500" height="375" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab"> <param name="movie" value="HelloWorld.swf" /> <param name="quality" value="high" /> <param name="bgcolor" value="#869ca7" /> <param name="allowScriptAccess" value="always" /> <embed src="HelloWorld.swf" quality="high" bgcolor="#869ca7" width="500" height="375" name="HelloWorld" align="middle" play="true" loop="false" quality="high" allowScriptAccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"> </embed> </object> </body> </html>