flash/javascript not working in internet explorer

Associate
Joined
28 Sep 2006
Posts
416
Hey Guys,

Working on a little childrens game as a uni project, its a little google maps app with some custom markers on.

works fine on firefox
works fine on opera
works fine on chrome
works fine on i.e with scripting disabled (i.e fall into the noscript block)
doesnt work on i.e with scripting enabled

Anybody run into this problem before? or can see something obvious im missing?

Thanks,

Pete

heres the intereresting bit of the code, or get it straight off the site @ http://www.eightyeightgames.com/Wanstead

Code:
if ( hasProductInstall && !hasRequestedVersion ) {
	// DO NOT MODIFY THE FOLLOWING FOUR LINES
	// Location visited after installation is complete if installation is required
	var MMPlayerType = (isIE == true) ? "ActiveX" : "PlugIn";
	var MMredirectURL = window.location;
    document.title = document.title.slice(0, 47) + " - Flash Player Installation";
    var MMdoctitle = document.title;

	AC_FL_RunContent(
		"src", "playerProductInstall",
		"FlashVars", "MMredirectURL="+MMredirectURL+'&MMplayerType='+MMPlayerType+'&MMdoctitle='+MMdoctitle+"",
		"width", "1218",
		"height", "770",
		"align", "middle",
		"id", "Wanstead",
		"quality", "high",
		"bgcolor", "#869ca7",
		"name", "Wanstead",
		"allowScriptAccess","sameDomain",
		"type", "application/x-shockwave-flash",
		"pluginspage", "http://www.adobe.com/go/getflashplayer"
	);
} else if (hasRequestedVersion) {
	// if we've detected an acceptable version
	// embed the Flash Content SWF when all tests are passed
	AC_FL_RunContent(
			"src", "Wanstead",
			"width", "1218",
			"height", "770",
			"align", "middle",
			"id", "Wanstead",
			"quality", "high",
			"bgcolor", "#869ca7",
			"name", "Wanstead",
			"allowScriptAccess","sameDomain",
			"type", "application/x-shockwave-flash",
			"pluginspage", "http://www.adobe.com/go/getflashplayer"
	);
  } else {  // flash is too old or we can't detect the plugin
    var alternateContent = 'Alternate HTML content should be placed here. '
  	+ 'This content requires the Adobe Flash Player. '
   	+ '<a href=http://www.adobe.com/go/getflash/>Get Flash</a>';
    document.write(alternateContent);  // insert non-flash content
  }
// -->
</script>
<noscript>
  	<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
			id="Wanstead" width="1218" height="770"
			codebase="http://fpdownload.macromedia.com/get/flashplayer/current/swflash.cab">
			<param name="movie" value="Wanstead.swf" />
			<param name="quality" value="high" />
			<param name="bgcolor" value="#869ca7" />
			<param name="allowScriptAccess" value="sameDomain" />
			<embed src="Wanstead.swf" quality="high" bgcolor="#869ca7"
				width="1218" height="770" name="Wanstead" align="middle"
				play="true"
				loop="false"
				quality="high"
				allowScriptAccess="sameDomain"
				type="application/x-shockwave-flash"
				pluginspage="http://www.adobe.com/go/getflashplayer">
			</embed>
	</object>
</noscript>
 
Don't forget the EOLAS thing that means without Javascript, in IE flash objects have to be clicked to activate them.
 
Back
Top Bottom