I want to make my powerpoint slides visible on a web page in such a way the .ppt
ID: 660822 • Letter: I
Question
I want to make my powerpoint slides visible on a web page in such a way the .pptx file cannot be downloaded. However that same webpage should also be accessible from an ipad (this rules out converting the ppt to flash or Silverlight). Finally the ppts contain numerous animations that the users should be able to click through.
Summarizing:
Converting .pptx files to an web-based viewer format
Visible on ipad
User must be able to click through the animations
Does anyone know of a conversion program or file format that ticks all three boxes?
Explanation / Answer
As a file format I would recommend ShockWave Flash. It can be opened by any browser that has Adobe Flash Player plugin installed (all browsers in these days).
Libreoffice can open (import) pptx files and export them as swf objects than can be embedded in any webpage.
You can then embed it in html with:
<embed src="presentation.swf">
You'll have to make the whole html file yourself, assuming you have the swf in the same folder as your html:
<html>
<head>
<title>My Presentation</title>
</head>
<body>
<embed src="presentation.swf" type="application/x-shockwave-flash" width="90%" ></embed>
</body>
</html>
Users can click through the presentation, but can't download the pptx.
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.