Pulling dynamic images/JS issue
hi all,
i have problem hoping with. using zoomify (www.zoomify.com) zoom in on products. products loaded dynamically based on sting passed after url. example: http://www.grjd.com/zoom/dynamic.html?zoomifyimagepath=back/&zoomifyzoom=25&zoomifyminzoom =25
problem unable rid of ie’s ‘click activate control’ annoyance. typically use general js’s out there remedy issue, javascript available doesn’t jive javascript in html (see below) declares variables in turn pull in dynamic images.
does have remedy this? appreciated.
thanks,
greg.
html code:
<script language="javascript">
var urlstring = document.location.href;
var paramindex = urlstring.indexof("?")+1;
var paramstring = urlstring.substring(paramindex,urlstring.length);
document.write("<object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000'");
document.write("codebase=' http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0'");
document.write("width='503'");
document.write("height='385'");
document.write("id='themovie'>");
document.write("<param name='src' value='zoomifydynamicviewer.swf'>");
document.write("<param name='flashvars' value='" + paramstring + "' >");
document.write("<embed src='zoomifydynamicviewer.swf'");
document.write("flashvars='" + paramstring + "'");
document.write("pluginspage=' http://www.macromedia.com/shockwave/download/index.cgi?p1_prod_version=shockwaveflash'");
document.write("width='503'");
document.write("height='385'");
document.write("name='themovie'>");
document.write("</embed>");
document.write("</object>");
</script>
i have problem hoping with. using zoomify (www.zoomify.com) zoom in on products. products loaded dynamically based on sting passed after url. example: http://www.grjd.com/zoom/dynamic.html?zoomifyimagepath=back/&zoomifyzoom=25&zoomifyminzoom =25
problem unable rid of ie’s ‘click activate control’ annoyance. typically use general js’s out there remedy issue, javascript available doesn’t jive javascript in html (see below) declares variables in turn pull in dynamic images.
does have remedy this? appreciated.
thanks,
greg.
html code:
<script language="javascript">
var urlstring = document.location.href;
var paramindex = urlstring.indexof("?")+1;
var paramstring = urlstring.substring(paramindex,urlstring.length);
document.write("<object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000'");
document.write("codebase=' http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0'");
document.write("width='503'");
document.write("height='385'");
document.write("id='themovie'>");
document.write("<param name='src' value='zoomifydynamicviewer.swf'>");
document.write("<param name='flashvars' value='" + paramstring + "' >");
document.write("<embed src='zoomifydynamicviewer.swf'");
document.write("flashvars='" + paramstring + "'");
document.write("pluginspage=' http://www.macromedia.com/shockwave/download/index.cgi?p1_prod_version=shockwaveflash'");
document.write("width='503'");
document.write("height='385'");
document.write("name='themovie'>");
document.write("</embed>");
document.write("</object>");
</script>
have tried swfobject?
http://www.explorinlauren.com/repository/flash/fixing-the-flash-embed-issue-for-internet-e xplorer.html
http://www.explorinlauren.com/repository/flash/fixing-the-flash-embed-issue-for-internet-e xplorer.html
More discussions in ActionScript 1 and 2
adobe
Comments
Post a Comment