
March 10th, 2009, 03:45 PM
|
|
Registered User
|
|
Join Date: Nov 2008
Posts: 10
Time spent in forums: 1 h 40 m 40 sec
Reputation Power: 0
|
|
FlashGallery Firefox compatibility problem
Hello All!
I'm having a problem with a flash gallery. It automatically draws from a database and displays images. As always, it works perfectly in Internet Explorer. Of course, and again, as always it doesnt want to show up in my arch enemy FireFox/Mozilla.
It ends up loading the flash but does not display the images
There is always a work around to use javascript to redirect the user to the standard gallery that just lists them out, but I want to provide my users with the flash gallery if at all possible.
Here is the link to the website so you can see whats happening: Flash Image Gallery
Here is my code that I'm using:
Code:
<%
if request("showtype") = "" then
showtype = "tux"
else
showtype = request("showtype")
end if
%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta content="text/html; charset=windows-1252" http-equiv="Content-Type" />
<title>Untitled 1</title>
<style type="text/css">
.style1 {
text-align: center;
}
</style>
</head>
<body style="color: #FFFFFF; background-color: #000000">
<p class="style1">
<font face="Verdana">
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="600" height="650" id="xmlGallery" align="middle" data="xmlGallery.swf?file_to_load=data_<% =showtype %>.asp">
<param name="allowScriptAccess" value="sameDomain" />
<param name="movie" value="xmlGallery.swf?file_to_load=data_<% =showtype %>.asp" />
<param name="quality" value="High" />
<param name="bgcolor" value="#000000" />
<embed src="xmlGallery.swf?file_to_load=data.asp" quality="High" bgcolor="#000000" width="600" height="650" name="xmlGallery" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />
</object></font></p>
</body>
</html>
As always, I'd appreciate any help one can offer!!
Best regards,
Matt
|