vote up 1 vote down star
1

Is it possible to embed a powerpoint presentation (ppt) into a webpage (xhtml)?

This will be used on a local Intranet where there is a mix of IE6 and 7 only so no need to consider other browsers.

flag

13 Answers

vote up 3 vote down check

Here are many ways to embed your PowerPoint presentation on Web. Here is an article for you.

5 ways to put PowerPoint presentation on Web

link|flag
This link looks like blatant advertising - funny how the page is hosted on the site that sells number 1 in the list. – Steg Nov 6 at 9:20
vote up 0 vote down

The first few results on Google all sound like good options:

http://www.pptfaq.com/FAQ00708.htm

http://www.webdeveloper.com/forum/showthread.php?t=86212

link|flag
vote up 0 vote down

@matt b Thanks for these, but non of these really answer the question.

link|flag
vote up 2 vote down

I don't know of a way to embed powerpoint slides directly into html. However, there are a number of solutions online for converting a PPT file into a SWF, which can be embedded into HTML just like any other flash movie.

Googling for 'ppt to swf' seems to give a lot of hits. Some are free, others aren't. Some handle things like animations, others just do still images. There's gotta be one out there that does what you need. :)

link|flag
vote up -2 vote down

Does anyone else have the actual answer?

link|flag
vote up 0 vote down

Try this:

http://www.freedownloadscenter.com/Programming/Delphi_Tools_and_Components/PowerPoint_ActiveX.html

This is an ActiveX component that embeds powerpoint into an OCX.

Since you are using just IE6/7 you can embed this component into the HTML.

link|flag
vote up 0 vote down

I've given up... I guess Flash is the way forward.

link|flag
vote up 0 vote down

As a side note: If your intranet users also have access to the internet, you can use slideshare widget to embed your PowerPoint presentations in your website

(Remember to mark your presentation as private!)

link|flag
vote up 0 vote down

Some Flash tool that can convert the PowerPoint file to Flash could be helpful. Slide share is also helpful. For me, I will take something like PPT2Flash Pro or things like that.

link|flag
vote up 0 vote down

Well, I think you get to convert the powerpoint to flash first. PowerPoint is not a sharable format on Internet. Some tool like PowerPoint to Flash could be helpful for you.

link|flag
vote up 0 vote down

The 'actual answer' is that you cannot do it directly. You have to convert your powerpoint to something that the browser can process. You can save each page of the powerpoint as a jpg and then display as a series of images. You can save the powerpoint as html. Both of these solutions will render only static pages, without any of the animations of powerpoint. You can use a tool to convert your powerpoint to flash (.swf) and embed it that way. This will preserve any animations and presumably allow you to do an automatic slideshow without the need for writing special code to change the images.

link|flag
vote up 0 vote down

I spent a while looking into this and pretty much all of the freeware/shareware on the web sucked. This included software to directly convert the ppt to flash or some sort of video format and also software to record your desktop screen. Software was clunky, quality was poor.

The solution we eventually came up with is a little bit manual, but it gave by far the best quality results:

  1. Export the ppt into some sort of image format (.bmp, .jpeg, .png, .tif) - it writes out 1 file per slide
  2. Import all the slide image files into Google Picasa and use them to create a video. You can add in some nice simple transitions (it hasn't got some of the horrific ppt one's, but who cares) and it dumps out a .wmv file of your specified resolution

Saving out as .wmv isn't perfect, but I'm sure it's probably quite straightforward to convert that to some other format or flash. We were looking to get them up on YouTube and this did the trick

link|flag
vote up 3 vote down

Google Docs can serve up PowerPoint (and PDF) documents in it's document viewer. You don't have to sign up for Google Docs, just upload it to your website, and call it from your page:

<iframe src="http://docs.google.com/gview?url=http://www.yourwebsite.com/powerpoint.ppt&embedded=true" style="width:600px; height:500px;" frameborder="0"></iframe>
link|flag
Wouldn't have worked for my purpose, but given that the question states it is for a local intranet, this has to be the way to do it! +1 – Steg Nov 7 at 23:18

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.