Log in

View Full Version : little problem!



frog
11-01-2008, 01:38 PM
Sorry if i posted wrong subforum or forum. I have little problem with my flash site. i want install one js to my board. that called "splash screen" ,it splash if any1 visit my site and problem is that my flash site content "index.swf" is apperet there but its not must be. it must be behind my splash screen.

view this image:

http://img388.imageshack.us/my.php?image=problemii8.jpg
and sorry again if i posted it wrong.
If any1 can help, please help. Thanks,
Best Regards

jscheuer1
11-01-2008, 02:48 PM
Add the following parameter to the OBJECT tag:


<param name="wmode" value="transparent">

Add the following attribute to the EMBED tag:


wmode="transparent"

Or, if you are using two object tags, as can and is sometimes done, add the param tag to both of them.

If you are using script to generate the tags (as is frequently done to avoid the 'click to activate' feature in some browsers), the wmode transparent must be passed to the script. This is easily accomplished but, varies depending upon the sort of script one uses. Some scripts do it automatically.

frog
11-01-2008, 03:03 PM
Add the following parameter to the OBJECT tag:


<param name="wmode" value="transparent">

Add the following attribute to the EMBED tag:


wmode="transparent"

Or, if you are using two object tags, as can and is sometimes done, add the param tag to both of them.

If you are using script to generate the tags (as is frequently done to avoid the 'click to activate' feature in some browsers), the wmode transparent must be passed to the script. This is easily accomplished but, varies depending upon the sort of script one uses. Some scripts do it automatically.

Thank you very much. BIG RESPECT TO YOU!