Page 1 of 1

How to put a layer on the animation

Posted: 30 Nov 2007, 11:04
by Elisa
Hello,
a want to have a html menu with layer in the top of my page page. When i put my mouse on this menu, i want display a layer. But I have a problem : the layer is hidden by animation.

I try to insert animation like this, but it doesn't work :
Code
<script>
var so = new SWFObject("imagevue.swf?folder=content/Russie/Piter-by-night/", "imagevue", "100%", "100%", "6", "#FFFFFF");
so.addVariable("backimage", "false",);
application.addParam( "wmode", "opaque" );
so.write("imagevue");
</script>
Somebody can help me ?

Posted: 01 Dec 2007, 00:13
by mjau-mjau
You certainly have to change the following line:
Code
application.addParam( "wmode", "opaque" ); 
...into:
Code
so.addParam( "wmode", "opaque" ); 
That should work ...