I usually create my Flash Remoting programs as a self-contained EXE file to be run off of the users computer. I wanted to display one in a browser window this time, and am running into some problems. Here is the HTML code -
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase=" width="500" height="450" id="relations map" align="middle">
<param name="allowScriptAccess" value="always" />
<param name="movie" value="xeequa.swf" />
<param name="quality" value="high" /><param name="bgcolor" value="#ffffcc" />
<embed src="xeequa.swf" quality="high" bgcolor="#ffffcc" width="500" height="450" name="relations map" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage=" />
</object>
It works on my local CF server, but when I post to my web-server it doesn't do anything. I'm sure this is some kind of a script access issue, but I have no idea how to remedy it.
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase=" width="500" height="450" id="relations map" align="middle">
<param name="allowScriptAccess" value="always" />
<param name="movie" value="xeequa.swf" />
<param name="quality" value="high" /><param name="bgcolor" value="#ffffcc" />
<embed src="xeequa.swf" quality="high" bgcolor="#ffffcc" width="500" height="450" name="relations map" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage=" />
</object>
It works on my local CF server, but when I post to my web-server it doesn't do anything. I'm sure this is some kind of a script access issue, but I have no idea how to remedy it.