We created a website for one of our clients using the AspDotNetStorefront which includes the RadEditor in the admin portal for managing page content on the site.
We are running into an issue of Flash plugin detection on the home page using the Flash Manager feature in the RadEditor. I put in a forum post on the AspdotNetStorefront site but no one has replied to it (http://forums.aspdotnetstorefront.com/showthread.php?t=15901). I thought maybe you could help since it is your component.
We were originally using the following code using the SWFObject which detects the version of the Flash plugin or the absence of a plugin altogether:
<!-- FLASH -->
<div id="main-flash">
<!-- Flash not installed -->
<a href="http://get.adobe.com/flashplayer/" target="_blank"><img src="images/NoFlash.gif" width="960px" height="380px" /></a>
</div>
<script type="text/javascript">
var so = new SWFObject("images/flash/Intro.swf", "sotester", "960", "380", "9", "#ffffff" );
so.addParam("wmode", "opaque");
so.write("main-flash");
</script>
<!-- END FLASH -->
But in order for the client to be able to change the content themselves in the RadEditor they need to use the Flash Manager which adds a flash file to the rich content area in an embed tag as seen below.
<embed pluginspage=http://www.macromedia.com/go/getflashplayer align=baseline src=/images/flash/NewIntro.swf width=960 height=380 type=application/x-shockwave-flash bgcolor="" salign="LT" quality="high" menu="false" loop="false"></embed>
Well, once in an embed tag, the SWFobject code no longer works and there is no flash detection. So what i need to know is can we modify the RadEditor code to be able to spit the HTML out in the format of the code I included first above? And if so, where would we do that since the storefront only contains the Editor .ascx pages and a RadEditor.Net2.dll
Any help on this would be much appreciated! we were on a client deadline to put this live today and now we are in a jam. Thank you so much if you can help!
We are running into an issue of Flash plugin detection on the home page using the Flash Manager feature in the RadEditor. I put in a forum post on the AspdotNetStorefront site but no one has replied to it (http://forums.aspdotnetstorefront.com/showthread.php?t=15901). I thought maybe you could help since it is your component.
We were originally using the following code using the SWFObject which detects the version of the Flash plugin or the absence of a plugin altogether:
<!-- FLASH -->
<div id="main-flash">
<!-- Flash not installed -->
<a href="http://get.adobe.com/flashplayer/" target="_blank"><img src="images/NoFlash.gif" width="960px" height="380px" /></a>
</div>
<script type="text/javascript">
var so = new SWFObject("images/flash/Intro.swf", "sotester", "960", "380", "9", "#ffffff" );
so.addParam("wmode", "opaque");
so.write("main-flash");
</script>
<!-- END FLASH -->
But in order for the client to be able to change the content themselves in the RadEditor they need to use the Flash Manager which adds a flash file to the rich content area in an embed tag as seen below.
<embed pluginspage=http://www.macromedia.com/go/getflashplayer align=baseline src=/images/flash/NewIntro.swf width=960 height=380 type=application/x-shockwave-flash bgcolor="" salign="LT" quality="high" menu="false" loop="false"></embed>
Well, once in an embed tag, the SWFobject code no longer works and there is no flash detection. So what i need to know is can we modify the RadEditor code to be able to spit the HTML out in the format of the code I included first above? And if so, where would we do that since the storefront only contains the Editor .ascx pages and a RadEditor.Net2.dll
Any help on this would be much appreciated! we were on a client deadline to put this live today and now we are in a jam. Thank you so much if you can help!