Twice on each call, I receive the error "Object doesn't support this property or method".
We are creating an XML file, which is functioning fine, we are just switching to swfobject2 to get rid of previous flash detection that was causing serious problems in IE 6.
Flash detection works fine when Flash is disabled.
(majorversion, minorversion, revision: 8.0.0)
In the head:
var flashvars = {};
flashvars.dataXML = " {$XMLText;} ";
var params = {};
params.play = "true";
params.quality = "high";
params.wmode = "transparent";
params.bgcolor = "#FFFFFF";
params.allowfullscreen = "false";
params.allowscriptaccess = "always";
var attributes = {};
attributes.id = "Map2Div";
attributes.align = "middle";
swfobject.embedSWF("FCMap_USA.swf", "AltContent", "520", "360", "{$FlashMajorVersion . '.' . $FlashMinorVersion . '.' . $FlashRevision;}", false, flashvars, params, attributes);
In the body:

Any insight would certainly be appreciated.

Back to top
MultiQuote