Hmm,
Try this....
Open your HTML in a editor.
Change the references from 9.0.28 to 9.0.115 or make it universal to all versions of Flash 9 by entering only 9
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Virtual Tour Created By Yourname</title>
<style type="text/css">
/* hide from ie on mac */
html {
height: 100%;
overflow: hidden;
}
#flashcontent {
height: 100%;
}
/* end hide */
body {
height: 100%;
margin: 0;
padding: 0;
background-color: #FFFFFF;
}
</style>
</head>
<body leftMargin="0" topMargin="0" rightMargin="0" bottomMargin="0">
<script type="text/javascript" src="swfobject.js"></script>
<div id="flashcontent">
To view virtual tour properly, Flash Player 9.0.28 or later version is needed.
Please download the latest version of <a title="http://www.adobe.com/go/getflashplayer" target="_blank">Flash Player</a> and install it on your computer.
</div>
<script type="text/javascript">
// <![CDATA[
var so = new SWFObject("twviewer.swf", "sotester", "800", "500", "9.0.28", "#FFFFFF");
so.useExpressInstall('expressinstall.swf');
so.addParam("allowNetworking", "all");
so.addParam("allowScriptAccess", "always");
so.addParam("allowFullScreen", "true");
so.addParam("scale", "noscale");
so.addVariable("lwImg", "loader_image.jpg");
so.addVariable("lwBgColor", "255,255,255,255");
so.addVariable("lwBarBgColor", "255,255,255,255");
so.addVariable("lwBarColor", "255,204,0,255");
so.addVariable("lwBarBounds", "99,265,300,14");
so.addVariable("iniFile", "config_yourtour.xml");
so.write("flashcontent");
// ]]>
</script>
</body>
</html>
that "should" be enough to overcome the issue.
Regards, Smooth 