Hi all...

I'm trying to make a flash movie that has a Real Player movie on a layer ontop of the flash.

It looks cool in IE and it's implementation in Netscape is questionable... but i'm not concerned with that... yet.

I'm using FSCommands to allow the Flash movie to control the real movie... but for some reason Netscape (4.76) won't call the FSCommand function, and I have no clue why! (works fine in IE)

here is my HTML page (snipped for brevity):

Code:
<HTML>
<HEAD>
<TITLE>draft_interface</TITLE>
<SCRIPT LANGUAGE= "JavaScript">
<!--
function draftInterface_DoFSCommand(command, args) {
//does stuff here
}
-->
</SCRIPT>

<SCRIPT LANGUAGE="VBScript">
<!-- 
Sub draftInterface_FSCommand(ByVal command, ByVal args)
  call draftInterface_DoFSCommand(command, args)
end sub
-->
</SCRIPT>

</HEAD>
<BODY bgcolor="#FFFFFF" marginwidth=0 marginheight=0>
<DIV ID="theMovieLayer" style="position: absolute; top: 10px; left: 100px; width: 110; height: 110; z-index: 2; visibility: hidden; background: blue"> </DIV>

<!-- URL's used in the movie-->
<!-- text used in the movie-->
<!--Functions Decisions e Mail -->
<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" NAME="draftInterface" ID=draftInterface codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0" WIDTH=788 HEIGHT=578>
 <PARAM NAME=movie VALUE="draftInterface.swf"> 
<PARAM NAME=quality VALUE=high> 
<PARAM NAME=bgcolor VALUE=#FFFFFF> 
<EMBED src="draftInterface.swf" NAME=draftInterface quality=high bgcolor=#FFFFFF  WIDTH=788 HEIGHT=578 TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash"></EMBED>
</OBJECT>
</BODY>
</HTML>
thanks in advance.
-elLurido