Hi All,
I had problem with embedding flash files on sharepoint 2010 sites, so I googled and found the input from HERE and this is the complete solution with code.
1.) Go to Central admin -> Web Application management -> Select the web application in question by highlighting it then select -> general settings on teh ribbon - scroll down and select the permissive radio button
this will allow the sharepoint 2010 sites to display flash files.
Now use the below code in a content editor webpart.
"
.
I had problem with embedding flash files on sharepoint 2010 sites, so I googled and found the input from HERE and this is the complete solution with code.
1.) Go to Central admin -> Web Application management -> Select the web application in question by highlighting it then select -> general settings on teh ribbon - scroll down and select the permissive radio button
this will allow the sharepoint 2010 sites to display flash files.
Now use the below code in a content editor webpart.
"
<object codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="550" height="240" id="your flash file" align="middle" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000">
<param name="allowScriptAccess" value="sameDomain">
<param name="movie" value="your flash file.swf">
<param name="quality" value="high">
<param name="bgcolor" value="#ffffff">
<embed src="link to your flash file" quality="high" bgcolor="#ffffff" width="550" height="240" name="your flash file name" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"></object>"
<param name="allowScriptAccess" value="sameDomain">
<param name="movie" value="your flash file.swf">
<param name="quality" value="high">
<param name="bgcolor" value="#ffffff">
<embed src="link to your flash file" quality="high" bgcolor="#ffffff" width="550" height="240" name="your flash file name" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"></object>"
.
Comments
Post a Comment