How to redirect "End of Show" slide to different URL

M

Marcy

Where would I find information on redirecting the user to an acknowledgement
page at the end of the slide show?
 
J

John Fallon

If you are saving the presentation as HTML for viewing on the web, on the
last slide/html page that you create, try putting a redirect javascript in
the header (body) and have it timed to automatically go to the new page after
10 seconds or so. Put it on the last slide in stead of the "end of slide
show" slide.

<SCRIPT LANGUAGE="JavaScript">
<!-- Original: [email protected] -->
<!-- Modified: Benjamin Wright, Editor -->
<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
redirTime = "15000";
redirURL = "http://www.whereever.com";
function redirTimer() { self.setTimeout("self.location.href =
redirURL;",redirTime); }
// End -->
</script>
</head>

<BODY onLoad="redirTimer()">
</Body>

If not doing it that way, put the acknowledge page as the last slide of the
presentation or you might want to add interactivity and set it up as a custom
show.
Hope this helps!!!
 
Top