How do I end a web PPT returning to the orignal web page?

G

Guest

Hello,

I am publishing a ppt to an internal web site using a thicket file. It is
being viewed full screen. When spacing through the slides at the end it just
ends and closes IE. How do I create navigation within the ppt presentation
returning to the original web page, pre-slide show?

Thanks
 
M

Michael Koerner

Closing the fullScreen at the end of the show without returning to the
Outline view.
The fullscreen mode is another window. So, to modify the script, we need to
let the Outline Window to navigate to the calling page. We can modify the
script.js file as below:

1. Open script.js file in Notepad.
2. Find the CloseWindow() function.
3. At the beginning of the function, add the following code:

if(!window.opener.closed) window.opener.history.back();

If you want to go back to a specific page enter this code instead

window.opener.navigate("http://www.google.com");


--
<>Please post all follow-up questions/replies to the newsgroup<>
<><>Email unless specifically requested will not be opened<><>
<><><>Do Provide The Version Of PowerPoint You Are Using<><><>
<><><>Do Not Post Attachments In This Newsgroup<><><>
Michael Koerner [MS PPT MVP]


| Hello,
|
| I am publishing a ppt to an internal web site using a thicket file. It is
| being viewed full screen. When spacing through the slides at the end it
just
| ends and closes IE. How do I create navigation within the ppt
presentation
| returning to the original web page, pre-slide show?
|
| Thanks
 
M

Michael Koerner

Hope it meets your needs.

--
<>Please post all follow-up questions/replies to the newsgroup<>
<><>Email unless specifically requested will not be opened<><>
<><><>Do Provide The Version Of PowerPoint You Are Using<><><>
<><><>Do Not Post Attachments In This Newsgroup<><><>
Michael Koerner [MS PPT MVP]


| Thanks Michael. I appreciate the pointer.
|
| "Michael Koerner" wrote:
|
| > Closing the fullScreen at the end of the show without returning to the
| > Outline view.
| > The fullscreen mode is another window. So, to modify the script, we need
to
| > let the Outline Window to navigate to the calling page. We can modify
the
| > script.js file as below:
| >
| > 1. Open script.js file in Notepad.
| > 2. Find the CloseWindow() function.
| > 3. At the beginning of the function, add the following code:
| >
| > if(!window.opener.closed) window.opener.history.back();
| >
| > If you want to go back to a specific page enter this code instead
| >
| > window.opener.navigate("http://www.google.com");
| >
| >
| > --
| > <>Please post all follow-up questions/replies to the newsgroup<>
| > <><>Email unless specifically requested will not be opened<><>
| > <><><>Do Provide The Version Of PowerPoint You Are Using<><><>
| > <><><>Do Not Post Attachments In This Newsgroup<><><>
| > Michael Koerner [MS PPT MVP]
| >
| >
| > | > | Hello,
| > |
| > | I am publishing a ppt to an internal web site using a thicket file.
It is
| > | being viewed full screen. When spacing through the slides at the end
it
| > just
| > | ends and closes IE. How do I create navigation within the ppt
| > presentation
| > | returning to the original web page, pre-slide show?
| > |
| > | Thanks
| >
| >
| >
 

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