when working on google gadgets i had problems doing it the way you
are.
try:
<?xml version=”1.0″ encoding=”UTF-8″ ?>
<Module>
<ModulePrefs title=”Open Social App” author_email=””>
<Require feature=”opensocial-0.7″ />
<Require feature=”flash” />
</ModulePrefs>
<Content type=”html”>
<![CDATA[
<script type=”text/javascript”>
var flexAppId = “OpenSocial”;
function getFlexApp(appName)
{
if (navigator.appName.indexOf (”Microsoft”) !=-1) {
return window[appName];
} else {
return document[appName];
}
}
</script>
<div id=”flashcontainer” style=”text-align: center;” width=”500″
height=”500″></div>
<script language="javascript" type="text/javascript">
var swfUrl = “url - to - your - swf”;
gadgets.flash.embedCachedFlash(swfUrl, “flashcontainer”, {id:
flexAppId, width: 500, height: 500 });
</script>
]]>
</Content>
</Module>
On Mar 3, 11:22 am, Daniel <bote...@gmail.com> wrote: