Thursday, July 28, 2011

Steps to Embedding Power Point(.ppt) presentation in SharePoint page

Follow the below steps to embedding power point presentation in share point page.

Step-1: Open ppt file in local machine and save as single webpage(.mht)
Step-2: Open share point site and upload this file (.mht) in to a document library.
Step-3: Copy the url of the file from document library.
Step-4: Create a page and place "page viewer web part" and give the above copied url in web part configuration.
Strp-5: Finally we will able to see power point presentation in share point page.


Advantages: There is no need to have client software of ppt installed in end user's machine.

Monday, July 18, 2011

Play video files (youTube etc) files in sharepoint

Place the following code in content Editor Webpart

 <object width="380" height="385">
                    <param name="movie" value="http://www.youtube.com/v/i5VDAx1xD3E123&hl=en_GB&fs=1&rel=0&color1=0x2b405b&color2=0x6b8ab6"></param>
                   <param name="allowFullScreen" value="true"></param>
                   <param name="allowscriptaccess" value="always"></param>
                   <embed src="http://www.youtube.com/v/i5VDAx1xD3E123&hl=en_GB&fs=1&rel=0&color1=0x2b405b&color2=0x6b8ab6" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="650" height="385"></embed>
               </object>