The FULLSCREEN Template

The Fullscreen template gives us a large image centered in the browser window with a set of index numbered links to all the other slides. As with Basic and Kiosk, the :Nav.Map: lets PPT2HTML convert all of our action buttons and hyperlinks to a clickable image map.

The resulting HTML pages won't force the browser into full screen mode themselves - instead, this template produces pages that work well when the link TO them forces fullscreen mode. You can use this to link to your presentation's html files and force fullscreen mode:

<a href="javascript:void(0);" onClick="window.open('http://www.yourdomain.com/Slide001.htm', '', 'fullscreen=yes, scrollbars=auto');">Click here to start your presentation</a>

This will set the browser to fullscreen mode and open your Slide001.htm file.

The usual suspects in the HEAD section, including a page title picked up from the Preferences dialog box:

<html>
<head>
<TITLE>:Prefs.PageTitle:</TITLE>
</head>

And now the body of the page, but this time we set the background color to black thus:

<body BGCOLOR="#000000">

The image map and image of the PPT slide come next:

:Nav.Map:
<CENTER><IMG SRC=":Slide.Image:" WIDTH=:Slide.Image.Width:&nbsp;BORDER="NO"></CENTER><BR>

And now a table containing some text links:

<CENTER>
<TABLE>
<TR>
<TD>

:Nav.PreviousOrHome: gives us the name of the previous HTML file in the converted presentation (the slide previous to this one) OR a link to the home page specified in the Preferences dialog if we're already on the first page:
<CENTER><A HREF=":Nav.PreviousOrHome:">Previous</A></CENTER>
</TD>
<TD>

:Nav.LinksToAll: gives us a series of numbers; one for each slide we're converting. Each number is a clickable link to the slide of the same number:

<CENTER>:Nav.LinksToAll:</CENTER>

</TD>
<TD>

:Nav.NextOrHome: is like the Previous link above, only it gives us the name of the NEXT html file in the presentation or the home page if we're already on the last slide.
<CENTER><A HREF=":Nav.NextOrHome:">Next</A></CENTER>
</TD>
</TR>
</TABLE>
</CENTER>
</body>
</html>

Supercharge your PPT Productivity with PPTools


Content authoring & site maintenance by

Friday - The Automatic FAQ Maker