LouisK
unread,Jul 22, 2008, 4:06:27 AM7/22/08Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to SWFObject
I'm using the dynamic embed method and only in IE6 I keep getting the
"operation aborted" error. I have 2 flash movies beneath each other.
It works in all browsers except IE6. What's wrong? When I take away
the code, the page loads fine.
Here is my embed code (this is in the HEAD of the page).
--------------------------------------------------------------------
<script type="text/javascript">
var flashvars = {};
flashvars.xmlfile = "imageadmin/images.php?album=1";
var params = {};
params.allowScriptAccess = "always";
params.wmode = "transparent";
var attributes = {};
swfobject.embedSWF("uploads/media/gallery.swf", "gallery", "460",
"460", "8.0.0", "uploads/media/expressInstall.swf", flashvars, params,
attributes);
</script>
<script type="text/javascript">{literal}
var flashvars = {};
flashvars.width = "460";
flashvars.height = "150";
flashvars.file = "playlist.xml";
flashvars.backcolor = "0xFFFFFF";
flashvars.frontcolor = "0x666666";
flashvars.lightcolor = "0x888888";
flashvars.screencolor = "0xEEEEEE";
flashvars.displaywidth = "130";
flashvars.overstretch = "fit";
flashvars.showicons = "false";
flashvars.showdigits = "false";
flashvars.usefullscreen = "false";
flashvars.autoscroll = "true";
flashvars.showdownload = "true";
flashvars.thumbsinplaylist = "false";
flashvars.shuffle = "false";
var params = {};
params.allowScriptAccess = "always";
params.allowfullscreen = "false";
params.wmode = "transparent";
params.base = ".";
var attributes = {};
swfobject.embedSWF("uploads/media/mediaplayer.swf", "player", "460",
"150", "8.0.0", "uploads/media/expressInstall.swf", flashvars, params,
attributes);
</script>
---------------------------