Hello!
Does anybody know how to import Flash animation into Zimbra AjaxTK components?
Thanks!
Printable View
Hello!
Does anybody know how to import Flash animation into Zimbra AjaxTK components?
Thanks!
A tried to import flash object like this
composite = new DwtComposite(shell, null, DwtControl.ABSOLUTE_STYLE);
composite .setBounds(200, 80, 1000, 700);
composteHtml = composite .getHtmlElement();
composteHtml.innerHTML = [""].join("<object classid="clsid:... blablabla">");
But javascript debugger has inform me with an error that compiler could not recognize an "object" expression, so I found some clever or stupid way (you should decide this :) ) to import flash objects into my zimbra ajax toolkit application. I imported it into application html framework in body html object!
<table>
<tr>
<td>
<div>
<noscript><p>Javascript must be enabled to use this.</p></noscript>
<script language="JavaScript">
function launch() {
DBG = new AjxDebug(AjxDebug.NONE, null, false);
Demo.run();
}
AjxCore.addOnloadListener(launch);
</script>
</div>
</td>
<td>
<table>
<tr>
<td><div id="flash">
<object classid="... blablabla flash object ">
</object>
</div></td>
</tr>
</table>
</td>
</tr>
</table>