jrthor2
07-23-2009, 07:05 PM
Could someone tell me why my rollover top navigation falls behind my flash on this page? I've been trying to implement the suckerfish code, but it's n ot working.
http://www.hersheysymphony.org/photos/
Thanks
Andyram2k
07-24-2009, 03:14 AM
Hi JThor2,
In your SWFObject Code, amend your swfobject code to be:
<script language="javascript" type="text/javascript">
var so = new SWFObject("flashgallery.swf", "gallery", "465", "365", "8", "transparent"); // Location of swf file. You can change gallery width and height here (using pixels or percents).
so.addParam("quality", "high");
so.addParam("wmode", "transparent");
so.addParam("allowFullScreen", "true");
so.addVariable("content_path","../images/gallery/"); // Location of a folder with JPG and PNG files (relative to php script).
so.addVariable("content_path","http://www.flickr.com/photos/rusli/sets/72157621485560617/"); // Location of a folder with JPG and PNG files (relative to php script).
so.addVariable("color_path","default.xml"); // Location of xml file with settings.
so.addVariable("script_path","flashgallery.php"); // Location of php script.
so.write("gallery");
</script>
and this should resolve your issues. Hope this helps.
jrthor2
07-24-2009, 10:50 AM
thanks, that worked great!!