Supercharge your PowerPoint productivity with

Supercharge your PPT Productivity with PPTools - Click here to learn more.

Tell me about PPTools

Making PowerPoint 2002, PowerPoint 2003 and PowerPoint 2007 HTML open full screen


PPTools
Shape Styles brings the power of styles to PowerPoint. Apply complex formatting with a single click
Merge Excel, CSV or tab-delimited data into PowerPoint presentations to create certificates, awards presentations, personalized presentations and more
FixLinks prevents broken links when you distribute PowerPoint presentations
Optimizer saves disk space and bandwidth, shrinks your PowerPoint presentations to the right size for email, screenshow or printing
PPT2HTML gives you full control of PowerPoint HTML output, helps meet Section 508 accessibility requirements
Prep4PDF preserves interactivity in PowerPoint presentations when you convert to PDF
Image Export converts PowerPoint slides to JPG, PNG, GIF, WMF and more

This trick involves editing the script.js and Outline.htm files PowerPoint creates when you save your presentation as a web page from PowerPoint 2002 through 2007.

This doesn't work for PowerPoint 2000 - if you use PPT2000, see Make PowerPoint 2000 HTML open full screen instead.

For examples and a much more thorough tutorial on publishing PowerPoint presentations to the web (including how to play sound throughout the entire presentation) please visit MVP Michael Koerner's PPT to HTML Tutorial

  • Open the script.js file in Notepad.
  • Add the following function (after the FullScreen()) function:
function FullScreen2()
{
if ( PPTSld.g_animUseRuntime )
PPTSld.document.body.pause();
ClearMedia();
var href = ( document.location.protocol == 'mhtml:') ? FULLSCR_HREF : 
FULLSCR_HREF+"#"+GetHrefObj(gCurSld).mSldHref;
win = window.open( MHTMLPrefix+href,null,"fullscreen=yes" );
if( PPTSld.g_animUseRuntime )
win.document.body.PPTSldFrameset=window;
}
  • Open the Outline.htm file in Notepad.
  • Locate the following line in the Load() function:
if( IsWin("PPTOtlNav" ) ){ LoadNav("OtlNavObj",UpdOtlNav); 
parent.gOtlNavLoaded=true; return }
  • Change the above line to:
if( IsWin("PPTOtlNav" ) ){ LoadNav("OtlNavObj",UpdOtlNav); 
parent.gOtlNavLoaded=true; parent.FullScreen2(); return }

Notice the new line above is simply calling parent.FullScreen2() before the return.

The FullScreen2() function is a copy of the FullScreen() function, minus the check for PPTNav.event.ctrlKey. The check for PPTNav.event.ctrlKey in FullScreen() is to determine if the user has the Ctrl key held down at the time they clicked the Slide Show button. But since we want to call FullScreen without the button, we created FullScreen2() which doesn't check for the PPTNav.event.

Now the slide show should start automatically when you open the main htm file, at least in recent versions of Microsoft Internet Explorer. Please test with other browsers if wide compatibility is important to you. This method doesn't appear to work with Netscape 6 or 7.

Note that if the browser has pop-up blocking software installed, the user may need to click on the "Full Screen" icon at the bottom of the page to view the presentation full-screen. The Google Toolbar's "Block Popups" option is known to cause this problem.


Page copy protected against web site content infringement by Copyscape Contents © 1995-2008 Stephen Rindsberg, Rindsberg Photography, Inc. and members of the MS PowerPoint MVP team. You may link to this page but any form of unauthorized reproduction of this page's contents is expressly forbidden.

Español    Deutsch    Français    Português    Italiano    Nederlands    Greek    Japanese    Korean    Chinese



Supercharge your PPT Productivity with PPTools


content authoring & site maintenance by
Friday, the automatic faq maker (logo)
Friday - The Automatic FAQ Maker

Making PowerPoint 2002, PowerPoint 2003 and PowerPoint 2007 HTML open full screen
http://www.pptfaq.com/FAQ00428.htm
Last update 10 April, 2007