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: (e-mail address removed) -->
<!-- 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!!!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top