Search…

X3 Photo Gallery Support Forums

Search…
 
Elisa
Topic Author
Posts: 13
Joined: 23 Nov 2007, 09:55

How to put a layer on the animation

30 Nov 2007, 11:04

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 ?
 
User avatar
mjau-mjau
X3 Wizard
Posts: 14452
Joined: 30 Sep 2006, 03:37

01 Dec 2007, 00:13

You certainly have to change the following line:
Code
application.addParam( "wmode", "opaque" ); 
...into:
Code
so.addParam( "wmode", "opaque" ); 
That should work ...