Quote:
Originally Posted by JoshuaPrismon AjaxTK is simply JavaScript + DHTML. You should not have any problem using the standard flash importation techniques if you need Flash. |
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>