I am using version 15.1.2.4730 of iMIS.
I have similar problem as Jonathan with including Flash (in my case I like to include it in the website content).
I tried to apply solution provided by Balaji, without success:
Here is my page:
http://209.217.68.142/imis15/fra/About/fra/About.aspx?languageId=1
My Flash (4.3 MB) is saved in /Net/App_Themes/fra/swf/flash_banner01.swf
Here is the code I am trying to insert:
<div style="float:left;"> <embed id="flash_banner01" height="134" align="middle" width="224" type="application/x-shockwave-flash" pluginspage="http://www.adobe.com/go/getflashplayer" allowscriptaccess="sameDomain" name="flash_banner01" bgcolor="#FFFFFF" quality="high" src="<%= "/imis15/App_Themes/" + Page.Theme + "/swf/" + "flash_banner01.swf"%>"/>
</div>
However, when I save it, the teleric editor re-writes to this:
<div style="float: left;"><embed id="flash_banner01" height="134" name="flash_banner01" type="application/x-shockwave-flash" pluginspage="http://www.adobe.com/go/getflashplayer" width="224" src="<%= " allowscriptaccess="sameDomain" bgcolor="#FFFFFF" quality="high" />"/> </div>
Please advice,
Thank you,
Ewa
Hi Ewa, Sorry, I
Hi Ewa,
Sorry, I misunderstood your previous post. Actually I gave you that code to be used in iPart.
Please copy this html code into your content area.. this will display flash file correctly.
<div style="float: left;">
<embed id="flash_banner01" height="134" width="224" allowscriptaccess="sameDomain" bgcolor="#FFFFFF" quality="high" src="../../../App_Themes/fra/swf/flash_banner01.swf" pluginspage="http://www.adobe.com/go/getflashplayer" type="application/x-shockwave-flash" name="flash_banner01"/>
</div>