"slide only" view of an Online-webpage slide show-No side fills

P

paigeturner

My client doesn't want the side color fills that sit behind the slide show
images in our online presentation. Is there a way to eliminate them?
 
M

Michael Koerner

Without knowing your version of PowerPoint, I'll give you two options.
Make PowerPoint 2000 HTML open full screen
http://www.rdpslides.com/pptfaq/FAQ00148.htm

Making PowerPoint 2002 and 2003 HTML open full screen
http://www.rdpslides.com/pptfaq/FAQ00428.htm


--
<>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]


| My client doesn't want the side color fills that sit behind the slide show
| images in our online presentation. Is there a way to eliminate them?
|
|
 
P

paigeturner

Mike - thanks so much for replying -- Using PPT 2003

but I've still got a problem the link opens but the frames are there and the
page is blank other than a blue background on the right side (left side is
blank and white)

I made the changes -- editing the script in Dreamweaver MX and it looks
like this:

function FullScreen()
{
if ( PPTSld.g_animUseRuntime )
PPTSld.document.body.pause();
ClearMedia();
var href = ( document.location.protocol == 'mhtml:') ? FULLSCR_HREF :
FULLSCR_HREF+"#"+GetHrefObj(gCurSld).mSldHref;
if (MHTMLPrefix != "")
href = RemoveFilePrefixFromHref(href)
if(PPTNav.event.ctrlKey) {
var w = (window.screen.availWidth * 1.0) / 2.0
var h = w * (PPTSld.g_origH * 1.0) / PPTSld.g_origW
win = window.open(
MHTMLPrefix+href,null,"toolbar=0,resizable=1,top=0,left=0," + "width="+ w +
",height=" + h );
if( win.document.body && PPTSld.g_animUseRuntime )
win.document.body.PPTSldFrameset=window;
}
else
{
win = window.open( MHTMLPrefix+href,null,"fullscreen=yes" );
if( win.document.body && PPTSld.g_animUseRuntime )
win.document.body.PPTSldFrameset=window;
}

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;
}

function ToggleVNarration()
{


I then went into Outline and edited it in Notepad and it looks like this:



function Load()
{
if( IsWin("PPTOtl" ) ){ LoadOtl(); parent.gOtlLoaded=true; return }
if( g_supportsPPTHTML ) {
if( IsWin("PPTNav" ) ){ LoadNav("NavObj",UpdNav); parent.gNavLoaded=true;
return; parent.FullScreen2(); return }


{
function Upd(){ if( IsWin("PPTNav") ) LoadNav("NavObj",UpdNav) }


Not sure what I did wrong but I know it was something dumb -- i don't have
much java scripting experience (in fact extremely little) so I need a really
java script for dummies response to how to correct this.

Any ideas?

Michael Koerner said:
Without knowing your version of PowerPoint, I'll give you two options.
Make PowerPoint 2000 HTML open full screen
http://www.rdpslides.com/pptfaq/FAQ00148.htm

Making PowerPoint 2002 and 2003 HTML open full screen
http://www.rdpslides.com/pptfaq/FAQ00428.htm


--
<>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]


| My client doesn't want the side color fills that sit behind the slide show
| images in our online presentation. Is there a way to eliminate them?
|
|
 
M

Michael Koerner

This line is in error:
if( IsWin("PPTNav" ) ){ LoadNav("NavObj",UpdNav); parent.gNavLoaded=true;
return; parent.FullScreen2(); return }

It should read:

if( IsWin("PPTOtlNav" ) ){ LoadNav("OtlNavObj",UpdOtlNav);
parent.gOtlNavLoaded=true; parent.FullScreen2(); return }

I would open the outline.htm file in notepad, then copy and paste the above
line and paste into the outline.htm file save it and see what happens. This
link http://www.oldfco.ca/tutorial/pptohtml_files/frame.html will take you
to an on-line
presentation that opens full screen so that you can have a look.

--
<>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]


| Mike - thanks so much for replying -- Using PPT 2003
|
| but I've still got a problem the link opens but the frames are there and
the
| page is blank other than a blue background on the right side (left side is
| blank and white)
|
| I made the changes -- editing the script in Dreamweaver MX and it looks
| like this:
|
| function FullScreen()
| {
| if ( PPTSld.g_animUseRuntime )
| PPTSld.document.body.pause();
| ClearMedia();
| var href = ( document.location.protocol == 'mhtml:') ? FULLSCR_HREF :
| FULLSCR_HREF+"#"+GetHrefObj(gCurSld).mSldHref;
| if (MHTMLPrefix != "")
| href = RemoveFilePrefixFromHref(href)
| if(PPTNav.event.ctrlKey) {
| var w = (window.screen.availWidth * 1.0) / 2.0
| var h = w * (PPTSld.g_origH * 1.0) / PPTSld.g_origW
| win = window.open(
| MHTMLPrefix+href,null,"toolbar=0,resizable=1,top=0,left=0," + "width="+ w
+
| ",height=" + h );
| if( win.document.body && PPTSld.g_animUseRuntime )
| win.document.body.PPTSldFrameset=window;
| }
| else
| {
| win = window.open( MHTMLPrefix+href,null,"fullscreen=yes" );
| if( win.document.body && PPTSld.g_animUseRuntime )
| win.document.body.PPTSldFrameset=window;
| }
|
| 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;
| }
|
| function ToggleVNarration()
| {
|
|
| I then went into Outline and edited it in Notepad and it looks like this:
|
|
|
| function Load()
| {
| if( IsWin("PPTOtl" ) ){ LoadOtl(); parent.gOtlLoaded=true; return }
| if( g_supportsPPTHTML ) {
| if( IsWin("PPTNav" ) ){ LoadNav("NavObj",UpdNav); parent.gNavLoaded=true;
| return; parent.FullScreen2(); return }
|
|
| {
| function Upd(){ if( IsWin("PPTNav") ) LoadNav("NavObj",UpdNav) }
|
|
| Not sure what I did wrong but I know it was something dumb -- i don't have
| much java scripting experience (in fact extremely little) so I need a
really
| java script for dummies response to how to correct this.
|
| Any ideas?
|
| "Michael Koerner" wrote:
|
| > Without knowing your version of PowerPoint, I'll give you two options.
| > Make PowerPoint 2000 HTML open full screen
| > http://www.rdpslides.com/pptfaq/FAQ00148.htm
| >
| > Making PowerPoint 2002 and 2003 HTML open full screen
| > http://www.rdpslides.com/pptfaq/FAQ00428.htm
| >
| >
| > --
| > <>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]
| >
| >
| > | > | My client doesn't want the side color fills that sit behind the slide
show
| > | images in our online presentation. Is there a way to eliminate them?
| > |
| > |
| >
| >
| >
 
P

paigeturner

Hi Mike -

thanks for the reply :)

I resaved the presentation deleted all previous files from the server and
did the step by step and I'm still getting an error.

The error results in the same blank framed page and when I click on the
error it's saying that it's looking for a missing object on slide0001.htm

Line 48
Char 1
Error - object expected
code 0
URL -----(contact me off discussion group for url if you need source
code)--------------------xx.files/slide0001.htm

sorry to be such a java script dummy, but I really appreciate your help on
this.

you can reach me at: [email protected]



Michael Koerner said:
This line is in error:
if( IsWin("PPTNav" ) ){ LoadNav("NavObj",UpdNav); parent.gNavLoaded=true;
return; parent.FullScreen2(); return }

It should read:

if( IsWin("PPTOtlNav" ) ){ LoadNav("OtlNavObj",UpdOtlNav);
parent.gOtlNavLoaded=true; parent.FullScreen2(); return }

I would open the outline.htm file in notepad, then copy and paste the above
line and paste into the outline.htm file save it and see what happens. This
link http://www.oldfco.ca/tutorial/pptohtml_files/frame.html will take you
to an on-line
presentation that opens full screen so that you can have a look.

--
<>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]


| Mike - thanks so much for replying -- Using PPT 2003
|
| but I've still got a problem the link opens but the frames are there and
the
| page is blank other than a blue background on the right side (left side is
| blank and white)
|
| I made the changes -- editing the script in Dreamweaver MX and it looks
| like this:
|
| function FullScreen()
| {
| if ( PPTSld.g_animUseRuntime )
| PPTSld.document.body.pause();
| ClearMedia();
| var href = ( document.location.protocol == 'mhtml:') ? FULLSCR_HREF :
| FULLSCR_HREF+"#"+GetHrefObj(gCurSld).mSldHref;
| if (MHTMLPrefix != "")
| href = RemoveFilePrefixFromHref(href)
| if(PPTNav.event.ctrlKey) {
| var w = (window.screen.availWidth * 1.0) / 2.0
| var h = w * (PPTSld.g_origH * 1.0) / PPTSld.g_origW
| win = window.open(
| MHTMLPrefix+href,null,"toolbar=0,resizable=1,top=0,left=0," + "width="+ w
+
| ",height=" + h );
| if( win.document.body && PPTSld.g_animUseRuntime )
| win.document.body.PPTSldFrameset=window;
| }
| else
| {
| win = window.open( MHTMLPrefix+href,null,"fullscreen=yes" );
| if( win.document.body && PPTSld.g_animUseRuntime )
| win.document.body.PPTSldFrameset=window;
| }
|
| 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;
| }
|
| function ToggleVNarration()
| {
|
|
| I then went into Outline and edited it in Notepad and it looks like this:
|
|
|
| function Load()
| {
| if( IsWin("PPTOtl" ) ){ LoadOtl(); parent.gOtlLoaded=true; return }
| if( g_supportsPPTHTML ) {
| if( IsWin("PPTNav" ) ){ LoadNav("NavObj",UpdNav); parent.gNavLoaded=true;
| return; parent.FullScreen2(); return }
|
|
| {
| function Upd(){ if( IsWin("PPTNav") ) LoadNav("NavObj",UpdNav) }
|
|
| Not sure what I did wrong but I know it was something dumb -- i don't have
| much java scripting experience (in fact extremely little) so I need a
really
| java script for dummies response to how to correct this.
|
| Any ideas?
|
| "Michael Koerner" wrote:
|
| > Without knowing your version of PowerPoint, I'll give you two options.
| > Make PowerPoint 2000 HTML open full screen
| > http://www.rdpslides.com/pptfaq/FAQ00148.htm
| >
| > Making PowerPoint 2002 and 2003 HTML open full screen
| > http://www.rdpslides.com/pptfaq/FAQ00428.htm
| >
| >
| > --
| > <>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]
| >
| >
| > | > | My client doesn't want the side color fills that sit behind the slide
show
| > | images in our online presentation. Is there a way to eliminate them?
| > |
| > |
| >
| >
| >
 
P

paigeturner

Michael - Not sure how the presentation souce code should look, but the
source is showing only frameset commands:

<html>

<head>
<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
<meta name=ProgId content=PowerPoint.Slide>
<meta name=Generator content="Microsoft PowerPoint 11">
<link id=Main-File rel=Main-File href="../Kohl's.htm">
<link rel=Preview href=preview.wmf>
<title>The New Fronteir in Wearable Technology(tm)</title>
<![if !ppt]><script src=script.js></script><script>
<!--
var gNavLoaded = gOtlNavLoaded = gOtlLoaded = false;
function Load()
{
str=unescape(document.location.hash),idx=str.indexOf('#')
if(idx>=0) str=str.substr(1);
if(str) PPTSld.location.replace(escape(str));
}
//-->
</script><![endif]>
</head>


<frameset rows="*,25" border=0>
<frameset cols="25%,*" onload="Load()" id=PPTHorizAdjust framespacing=1
frameborder=1>
<frame src=outline.htm title="Outline" name=PPTOtl>
<frame src=slide0001.htm title="Slide" name=PPTSld>
</frameset>
<frameset cols="25%,*" framespacing=1>
<frame src=outline.htm title="Outline
Navigation Bar" name=PPTOtlNav scrolling=no noresize>
<frame src=outline.htm title="Slide
Navigation Bar" name=PPTNav scrolling=no noresize>
</frameset>
</frameset>
</html>


Am I publishing it incorrectly? I following the steps on the site you sent
me.



Michael Koerner said:
This line is in error:
if( IsWin("PPTNav" ) ){ LoadNav("NavObj",UpdNav); parent.gNavLoaded=true;
return; parent.FullScreen2(); return }

It should read:

if( IsWin("PPTOtlNav" ) ){ LoadNav("OtlNavObj",UpdOtlNav);
parent.gOtlNavLoaded=true; parent.FullScreen2(); return }

I would open the outline.htm file in notepad, then copy and paste the above
line and paste into the outline.htm file save it and see what happens. This
link http://www.oldfco.ca/tutorial/pptohtml_files/frame.html will take you
to an on-line
presentation that opens full screen so that you can have a look.

--
<>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]


| Mike - thanks so much for replying -- Using PPT 2003
|
| but I've still got a problem the link opens but the frames are there and
the
| page is blank other than a blue background on the right side (left side is
| blank and white)
|
| I made the changes -- editing the script in Dreamweaver MX and it looks
| like this:
|
| function FullScreen()
| {
| if ( PPTSld.g_animUseRuntime )
| PPTSld.document.body.pause();
| ClearMedia();
| var href = ( document.location.protocol == 'mhtml:') ? FULLSCR_HREF :
| FULLSCR_HREF+"#"+GetHrefObj(gCurSld).mSldHref;
| if (MHTMLPrefix != "")
| href = RemoveFilePrefixFromHref(href)
| if(PPTNav.event.ctrlKey) {
| var w = (window.screen.availWidth * 1.0) / 2.0
| var h = w * (PPTSld.g_origH * 1.0) / PPTSld.g_origW
| win = window.open(
| MHTMLPrefix+href,null,"toolbar=0,resizable=1,top=0,left=0," + "width="+ w
+
| ",height=" + h );
| if( win.document.body && PPTSld.g_animUseRuntime )
| win.document.body.PPTSldFrameset=window;
| }
| else
| {
| win = window.open( MHTMLPrefix+href,null,"fullscreen=yes" );
| if( win.document.body && PPTSld.g_animUseRuntime )
| win.document.body.PPTSldFrameset=window;
| }
|
| 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;
| }
|
| function ToggleVNarration()
| {
|
|
| I then went into Outline and edited it in Notepad and it looks like this:
|
|
|
| function Load()
| {
| if( IsWin("PPTOtl" ) ){ LoadOtl(); parent.gOtlLoaded=true; return }
| if( g_supportsPPTHTML ) {
| if( IsWin("PPTNav" ) ){ LoadNav("NavObj",UpdNav); parent.gNavLoaded=true;
| return; parent.FullScreen2(); return }
|
|
| {
| function Upd(){ if( IsWin("PPTNav") ) LoadNav("NavObj",UpdNav) }
|
|
| Not sure what I did wrong but I know it was something dumb -- i don't have
| much java scripting experience (in fact extremely little) so I need a
really
| java script for dummies response to how to correct this.
|
| Any ideas?
|
| "Michael Koerner" wrote:
|
| > Without knowing your version of PowerPoint, I'll give you two options.
| > Make PowerPoint 2000 HTML open full screen
| > http://www.rdpslides.com/pptfaq/FAQ00148.htm
| >
| > Making PowerPoint 2002 and 2003 HTML open full screen
| > http://www.rdpslides.com/pptfaq/FAQ00428.htm
| >
| >
| > --
| > <>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]
| >
| >
| > | > | My client doesn't want the side color fills that sit behind the slide
show
| > | images in our online presentation. Is there a way to eliminate them?
| > |
| > |
| >
| >
| >
 
M

Michael Koerner

Did you look at the link I sent, and is that what you looking to do? If so,
there is a downloadable file in that presentation which gives you all the
correct code.

--
<>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]


| Michael - Not sure how the presentation souce code should look, but the
| source is showing only frameset commands:
|
| <html>
|
| <head>
| <meta http-equiv=Content-Type content="text/html; charset=windows-1252">
| <meta name=ProgId content=PowerPoint.Slide>
| <meta name=Generator content="Microsoft PowerPoint 11">
| <link id=Main-File rel=Main-File href="../Kohl's.htm">
| <link rel=Preview href=preview.wmf>
| <title>The New Fronteir in Wearable Technology(tm)</title>
| <![if !ppt]><script src=script.js></script><script>
| <!--
| var gNavLoaded = gOtlNavLoaded = gOtlLoaded = false;
| function Load()
| {
| str=unescape(document.location.hash),idx=str.indexOf('#')
| if(idx>=0) str=str.substr(1);
| if(str) PPTSld.location.replace(escape(str));
| }
| //-->
| </script><![endif]>
| </head>
|
|
| <frameset rows="*,25" border=0>
| <frameset cols="25%,*" onload="Load()" id=PPTHorizAdjust framespacing=1
| frameborder=1>
| <frame src=outline.htm title="Outline" name=PPTOtl>
| <frame src=slide0001.htm title="Slide" name=PPTSld>
| </frameset>
| <frameset cols="25%,*" framespacing=1>
| <frame src=outline.htm title="Outline
| Navigation Bar" name=PPTOtlNav scrolling=no noresize>
| <frame src=outline.htm title="Slide
| Navigation Bar" name=PPTNav scrolling=no noresize>
| </frameset>
| </frameset>
| </html>
|
|
| Am I publishing it incorrectly? I following the steps on the site you
sent
| me.
|
|
|
| "Michael Koerner" wrote:
|
| > This line is in error:
| > if( IsWin("PPTNav" ) ){ LoadNav("NavObj",UpdNav);
parent.gNavLoaded=true;
| > return; parent.FullScreen2(); return }
| >
| > It should read:
| >
| > if( IsWin("PPTOtlNav" ) ){ LoadNav("OtlNavObj",UpdOtlNav);
| > parent.gOtlNavLoaded=true; parent.FullScreen2(); return }
| >
| > I would open the outline.htm file in notepad, then copy and paste the
above
| > line and paste into the outline.htm file save it and see what happens.
This
| > link http://www.oldfco.ca/tutorial/pptohtml_files/frame.html will take
you
| > to an on-line
| > presentation that opens full screen so that you can have a look.
| >
| > --
| > <>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]
| >
| >
| > | > | Mike - thanks so much for replying -- Using PPT 2003
| > |
| > | but I've still got a problem the link opens but the frames are there
and
| > the
| > | page is blank other than a blue background on the right side (left
side is
| > | blank and white)
| > |
| > | I made the changes -- editing the script in Dreamweaver MX and it
looks
| > | like this:
| > |
| > | function FullScreen()
| > | {
| > | if ( PPTSld.g_animUseRuntime )
| > | PPTSld.document.body.pause();
| > | ClearMedia();
| > | var href = ( document.location.protocol == 'mhtml:') ? FULLSCR_HREF :
| > | FULLSCR_HREF+"#"+GetHrefObj(gCurSld).mSldHref;
| > | if (MHTMLPrefix != "")
| > | href = RemoveFilePrefixFromHref(href)
| > | if(PPTNav.event.ctrlKey) {
| > | var w = (window.screen.availWidth * 1.0) / 2.0
| > | var h = w * (PPTSld.g_origH * 1.0) / PPTSld.g_origW
| > | win = window.open(
| > | MHTMLPrefix+href,null,"toolbar=0,resizable=1,top=0,left=0," +
"width="+ w
| > +
| > | ",height=" + h );
| > | if( win.document.body && PPTSld.g_animUseRuntime )
| > | win.document.body.PPTSldFrameset=window;
| > | }
| > | else
| > | {
| > | win = window.open( MHTMLPrefix+href,null,"fullscreen=yes" );
| > | if( win.document.body && PPTSld.g_animUseRuntime )
| > | win.document.body.PPTSldFrameset=window;
| > | }
| > |
| > | 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;
| > | }
| > |
| > | function ToggleVNarration()
| > | {
| > |
| > |
| > | I then went into Outline and edited it in Notepad and it looks like
this:
| > |
| > |
| > |
| > | function Load()
| > | {
| > | if( IsWin("PPTOtl" ) ){ LoadOtl(); parent.gOtlLoaded=true; return }
| > | if( g_supportsPPTHTML ) {
| > | if( IsWin("PPTNav" ) ){ LoadNav("NavObj",UpdNav);
parent.gNavLoaded=true;
| > | return; parent.FullScreen2(); return }
| > |
| > |
| > | {
| > | function Upd(){ if( IsWin("PPTNav") ) LoadNav("NavObj",UpdNav) }
| > |
| > |
| > | Not sure what I did wrong but I know it was something dumb -- i don't
have
| > | much java scripting experience (in fact extremely little) so I need a
| > really
| > | java script for dummies response to how to correct this.
| > |
| > | Any ideas?
| > |
| > | "Michael Koerner" wrote:
| > |
| > | > Without knowing your version of PowerPoint, I'll give you two
options.
| > | > Make PowerPoint 2000 HTML open full screen
| > | > http://www.rdpslides.com/pptfaq/FAQ00148.htm
| > | >
| > | > Making PowerPoint 2002 and 2003 HTML open full screen
| > | > http://www.rdpslides.com/pptfaq/FAQ00428.htm
| > | >
| > | >
| > | > --
| > | > <>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]
| > | >
| > | >
message
| > | > | > | > | My client doesn't want the side color fills that sit behind the
slide
| > show
| > | > | images in our online presentation. Is there a way to eliminate
them?
| > | > |
| > | > |
| > | >
| > | >
| > | >
| >
| >
| >
| >
 
P

paigeturner

Michael I did all that - reviewed, read, recoded, resaved, re-read, recoded
and nothing worked

I'm guessing since I'm a total newbie to coding that I've made some
placement error. But I have no idea what i've done wrong and I'm so
frustrated.

I downloaded the code, checked and double checked the phrasing, used notepad
and it still won't work.

I think maybe...not sure, but that i'm going wrong on how to place the
FullScreen(2) coding.

I'm putting it directly after the last } of the FullScreen() function. Is
that right?

Or should I simply change FullScreen() to FullScreen(2) and delete the
FullScreen() code to insert the FullScreen(2) code?

I hate coding LOL - and this experience has just reinforced that feeling.

Michael Koerner said:
Did you look at the link I sent, and is that what you looking to do? If so,
there is a downloadable file in that presentation which gives you all the
correct code.

--
<>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]


| Michael - Not sure how the presentation souce code should look, but the
| source is showing only frameset commands:
|
| <html>
|
| <head>
| <meta http-equiv=Content-Type content="text/html; charset=windows-1252">
| <meta name=ProgId content=PowerPoint.Slide>
| <meta name=Generator content="Microsoft PowerPoint 11">
| <link id=Main-File rel=Main-File href="../Kohl's.htm">
| <link rel=Preview href=preview.wmf>
| <title>The New Fronteir in Wearable Technology(tm)</title>
| <![if !ppt]><script src=script.js></script><script>
| <!--
| var gNavLoaded = gOtlNavLoaded = gOtlLoaded = false;
| function Load()
| {
| str=unescape(document.location.hash),idx=str.indexOf('#')
| if(idx>=0) str=str.substr(1);
| if(str) PPTSld.location.replace(escape(str));
| }
| //-->
| </script><![endif]>
| </head>
|
|
| <frameset rows="*,25" border=0>
| <frameset cols="25%,*" onload="Load()" id=PPTHorizAdjust framespacing=1
| frameborder=1>
| <frame src=outline.htm title="Outline" name=PPTOtl>
| <frame src=slide0001.htm title="Slide" name=PPTSld>
| </frameset>
| <frameset cols="25%,*" framespacing=1>
| <frame src=outline.htm title="Outline
| Navigation Bar" name=PPTOtlNav scrolling=no noresize>
| <frame src=outline.htm title="Slide
| Navigation Bar" name=PPTNav scrolling=no noresize>
| </frameset>
| </frameset>
| </html>
|
|
| Am I publishing it incorrectly? I following the steps on the site you
sent
| me.
|
|
|
| "Michael Koerner" wrote:
|
| > This line is in error:
| > if( IsWin("PPTNav" ) ){ LoadNav("NavObj",UpdNav);
parent.gNavLoaded=true;
| > return; parent.FullScreen2(); return }
| >
| > It should read:
| >
| > if( IsWin("PPTOtlNav" ) ){ LoadNav("OtlNavObj",UpdOtlNav);
| > parent.gOtlNavLoaded=true; parent.FullScreen2(); return }
| >
| > I would open the outline.htm file in notepad, then copy and paste the
above
| > line and paste into the outline.htm file save it and see what happens.
This
| > link http://www.oldfco.ca/tutorial/pptohtml_files/frame.html will take
you
| > to an on-line
| > presentation that opens full screen so that you can have a look.
| >
| > --
| > <>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]
| >
| >
| > | > | Mike - thanks so much for replying -- Using PPT 2003
| > |
| > | but I've still got a problem the link opens but the frames are there
and
| > the
| > | page is blank other than a blue background on the right side (left
side is
| > | blank and white)
| > |
| > | I made the changes -- editing the script in Dreamweaver MX and it
looks
| > | like this:
| > |
| > | function FullScreen()
| > | {
| > | if ( PPTSld.g_animUseRuntime )
| > | PPTSld.document.body.pause();
| > | ClearMedia();
| > | var href = ( document.location.protocol == 'mhtml:') ? FULLSCR_HREF :
| > | FULLSCR_HREF+"#"+GetHrefObj(gCurSld).mSldHref;
| > | if (MHTMLPrefix != "")
| > | href = RemoveFilePrefixFromHref(href)
| > | if(PPTNav.event.ctrlKey) {
| > | var w = (window.screen.availWidth * 1.0) / 2.0
| > | var h = w * (PPTSld.g_origH * 1.0) / PPTSld.g_origW
| > | win = window.open(
| > | MHTMLPrefix+href,null,"toolbar=0,resizable=1,top=0,left=0," +
"width="+ w
| > +
| > | ",height=" + h );
| > | if( win.document.body && PPTSld.g_animUseRuntime )
| > | win.document.body.PPTSldFrameset=window;
| > | }
| > | else
| > | {
| > | win = window.open( MHTMLPrefix+href,null,"fullscreen=yes" );
| > | if( win.document.body && PPTSld.g_animUseRuntime )
| > | win.document.body.PPTSldFrameset=window;
| > | }
| > |
| > | 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;
| > | }
| > |
| > | function ToggleVNarration()
| > | {
| > |
| > |
| > | I then went into Outline and edited it in Notepad and it looks like
this:
| > |
| > |
| > |
| > | function Load()
| > | {
| > | if( IsWin("PPTOtl" ) ){ LoadOtl(); parent.gOtlLoaded=true; return }
| > | if( g_supportsPPTHTML ) {
| > | if( IsWin("PPTNav" ) ){ LoadNav("NavObj",UpdNav);
parent.gNavLoaded=true;
| > | return; parent.FullScreen2(); return }
| > |
| > |
| > | {
| > | function Upd(){ if( IsWin("PPTNav") ) LoadNav("NavObj",UpdNav) }
| > |
| > |
| > | Not sure what I did wrong but I know it was something dumb -- i don't
have
| > | much java scripting experience (in fact extremely little) so I need a
| > really
| > | java script for dummies response to how to correct this.
| > |
| > | Any ideas?
| > |
| > | "Michael Koerner" wrote:
| > |
| > | > Without knowing your version of PowerPoint, I'll give you two
options.
| > | > Make PowerPoint 2000 HTML open full screen
| > | > http://www.rdpslides.com/pptfaq/FAQ00148.htm
| > | >
| > | > Making PowerPoint 2002 and 2003 HTML open full screen
| > | > http://www.rdpslides.com/pptfaq/FAQ00428.htm
| > | >
| > | >
| > | > --
| > | > <>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]
| > | >
| > | >
message
| > | > | > | > | My client doesn't want the side color fills that sit behind the
slide
| > show
| > | > | images in our online presentation. Is there a way to eliminate
them?
| > | > |
| > | > |
| > | >
| > | >
| > | >
| >
| >
| >
| >
 
M

Michael Koerner

If you could send us a link to your online presentation so that we might
have a look would be great. Also, If you want to send me the fullscreen.htm,
and the outline.htm file before you made any changes, I'd be more than
happy to have a look at it. insert the coding for you. You can send it to
'emko at hotmail dot com' make sure that you remind me what it is about in
the subject line.

--
<>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]


| Michael I did all that - reviewed, read, recoded, resaved, re-read,
recoded
| and nothing worked
|
| I'm guessing since I'm a total newbie to coding that I've made some
| placement error. But I have no idea what i've done wrong and I'm so
| frustrated.
|
| I downloaded the code, checked and double checked the phrasing, used
notepad
| and it still won't work.
|
| I think maybe...not sure, but that i'm going wrong on how to place the
| FullScreen(2) coding.
|
| I'm putting it directly after the last } of the FullScreen() function. Is
| that right?
|
| Or should I simply change FullScreen() to FullScreen(2) and delete the
| FullScreen() code to insert the FullScreen(2) code?
|
| I hate coding LOL - and this experience has just reinforced that feeling.
|
| "Michael Koerner" wrote:
|
| > Did you look at the link I sent, and is that what you looking to do? If
so,
| > there is a downloadable file in that presentation which gives you all
the
| > correct code.
| >
| > --
| > <>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]
| >
| >
| > | > | Michael - Not sure how the presentation souce code should look, but
the
| > | source is showing only frameset commands:
| > |
| > | <html>
| > |
| > | <head>
| > | <meta http-equiv=Content-Type content="text/html;
charset=windows-1252">
| > | <meta name=ProgId content=PowerPoint.Slide>
| > | <meta name=Generator content="Microsoft PowerPoint 11">
| > | <link id=Main-File rel=Main-File href="../Kohl's.htm">
| > | <link rel=Preview href=preview.wmf>
| > | <title>The New Fronteir in Wearable Technology(tm)</title>
| > | <![if !ppt]><script src=script.js></script><script>
| > | <!--
| > | var gNavLoaded = gOtlNavLoaded = gOtlLoaded = false;
| > | function Load()
| > | {
| > | str=unescape(document.location.hash),idx=str.indexOf('#')
| > | if(idx>=0) str=str.substr(1);
| > | if(str) PPTSld.location.replace(escape(str));
| > | }
| > | //-->
| > | </script><![endif]>
| > | </head>
| > |
| > |
| > | <frameset rows="*,25" border=0>
| > | <frameset cols="25%,*" onload="Load()" id=PPTHorizAdjust
framespacing=1
| > | frameborder=1>
| > | <frame src=outline.htm title="Outline" name=PPTOtl>
| > | <frame src=slide0001.htm title="Slide" name=PPTSld>
| > | </frameset>
| > | <frameset cols="25%,*" framespacing=1>
| > | <frame src=outline.htm title="Outline
| > | Navigation Bar" name=PPTOtlNav scrolling=no noresize>
| > | <frame src=outline.htm title="Slide
| > | Navigation Bar" name=PPTNav scrolling=no noresize>
| > | </frameset>
| > | </frameset>
| > | </html>
| > |
| > |
| > | Am I publishing it incorrectly? I following the steps on the site you
| > sent
| > | me.
| > |
| > |
| > |
| > | "Michael Koerner" wrote:
| > |
| > | > This line is in error:
| > | > if( IsWin("PPTNav" ) ){ LoadNav("NavObj",UpdNav);
| > parent.gNavLoaded=true;
| > | > return; parent.FullScreen2(); return }
| > | >
| > | > It should read:
| > | >
| > | > if( IsWin("PPTOtlNav" ) ){ LoadNav("OtlNavObj",UpdOtlNav);
| > | > parent.gOtlNavLoaded=true; parent.FullScreen2(); return }
| > | >
| > | > I would open the outline.htm file in notepad, then copy and paste
the
| > above
| > | > line and paste into the outline.htm file save it and see what
happens.
| > This
| > | > link http://www.oldfco.ca/tutorial/pptohtml_files/frame.html will
take
| > you
| > | > to an on-line
| > | > presentation that opens full screen so that you can have a look.
| > | >
| > | > --
| > | > <>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]
| > | >
| > | >
message
| > | > | > | > | Mike - thanks so much for replying -- Using PPT 2003
| > | > |
| > | > | but I've still got a problem the link opens but the frames are
there
| > and
| > | > the
| > | > | page is blank other than a blue background on the right side (left
| > side is
| > | > | blank and white)
| > | > |
| > | > | I made the changes -- editing the script in Dreamweaver MX and it
| > looks
| > | > | like this:
| > | > |
| > | > | function FullScreen()
| > | > | {
| > | > | if ( PPTSld.g_animUseRuntime )
| > | > | PPTSld.document.body.pause();
| > | > | ClearMedia();
| > | > | var href = ( document.location.protocol == 'mhtml:') ?
FULLSCR_HREF :
| > | > | FULLSCR_HREF+"#"+GetHrefObj(gCurSld).mSldHref;
| > | > | if (MHTMLPrefix != "")
| > | > | href = RemoveFilePrefixFromHref(href)
| > | > | if(PPTNav.event.ctrlKey) {
| > | > | var w = (window.screen.availWidth * 1.0) / 2.0
| > | > | var h = w * (PPTSld.g_origH * 1.0) / PPTSld.g_origW
| > | > | win = window.open(
| > | > | MHTMLPrefix+href,null,"toolbar=0,resizable=1,top=0,left=0," +
| > "width="+ w
| > | > +
| > | > | ",height=" + h );
| > | > | if( win.document.body && PPTSld.g_animUseRuntime )
| > | > | win.document.body.PPTSldFrameset=window;
| > | > | }
| > | > | else
| > | > | {
| > | > | win = window.open( MHTMLPrefix+href,null,"fullscreen=yes" );
| > | > | if( win.document.body && PPTSld.g_animUseRuntime )
| > | > | win.document.body.PPTSldFrameset=window;
| > | > | }
| > | > |
| > | > | 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;
| > | > | }
| > | > |
| > | > | function ToggleVNarration()
| > | > | {
| > | > |
| > | > |
| > | > | I then went into Outline and edited it in Notepad and it looks
like
| > this:
| > | > |
| > | > |
| > | > |
| > | > | function Load()
| > | > | {
| > | > | if( IsWin("PPTOtl" ) ){ LoadOtl(); parent.gOtlLoaded=true;
return }
| > | > | if( g_supportsPPTHTML ) {
| > | > | if( IsWin("PPTNav" ) ){ LoadNav("NavObj",UpdNav);
| > parent.gNavLoaded=true;
| > | > | return; parent.FullScreen2(); return }
| > | > |
| > | > |
| > | > | {
| > | > | function Upd(){ if( IsWin("PPTNav") ) LoadNav("NavObj",UpdNav) }
| > | > |
| > | > |
| > | > | Not sure what I did wrong but I know it was something dumb -- i
don't
| > have
| > | > | much java scripting experience (in fact extremely little) so I
need a
| > | > really
| > | > | java script for dummies response to how to correct this.
| > | > |
| > | > | Any ideas?
| > | > |
| > | > | "Michael Koerner" wrote:
| > | > |
| > | > | > Without knowing your version of PowerPoint, I'll give you two
| > options.
| > | > | > Make PowerPoint 2000 HTML open full screen
| > | > | > http://www.rdpslides.com/pptfaq/FAQ00148.htm
| > | > | >
| > | > | > Making PowerPoint 2002 and 2003 HTML open full screen
| > | > | > http://www.rdpslides.com/pptfaq/FAQ00428.htm
| > | > | >
| > | > | >
| > | > | > --
| > | > | > <>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]
| > | > | >
| > | > | >
| > message
| > | > | > | > | > | > | My client doesn't want the side color fills that sit behind
the
| > slide
| > | > show
| > | > | > | images in our online presentation. Is there a way to
eliminate
| > them?
| > | > | > |
| > | > | > |
| > | > | >
| > | > | >
| > | > | >
| > | >
| > | >
| > | >
| > | >
| >
| >
| >
 
M

Michael Koerner

Meant to say the 'script.js' file and not 'fullscreen.htm'

--
<>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]


| If you could send us a link to your online presentation so that we might
| have a look would be great. Also, If you want to send me the
fullscreen.htm,
| and the outline.htm file before you made any changes, I'd be more than
| happy to have a look at it. insert the coding for you. You can send it to
| 'emko at hotmail dot com' make sure that you remind me what it is about in
| the subject line.
|
| --
| <>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]
|
|
| || Michael I did all that - reviewed, read, recoded, resaved, re-read,
| recoded
|| and nothing worked
||
|| I'm guessing since I'm a total newbie to coding that I've made some
|| placement error. But I have no idea what i've done wrong and I'm so
|| frustrated.
||
|| I downloaded the code, checked and double checked the phrasing, used
| notepad
|| and it still won't work.
||
|| I think maybe...not sure, but that i'm going wrong on how to place the
|| FullScreen(2) coding.
||
|| I'm putting it directly after the last } of the FullScreen() function.
Is
|| that right?
||
|| Or should I simply change FullScreen() to FullScreen(2) and delete the
|| FullScreen() code to insert the FullScreen(2) code?
||
|| I hate coding LOL - and this experience has just reinforced that feeling.
||
|| "Michael Koerner" wrote:
||
|| > Did you look at the link I sent, and is that what you looking to do? If
| so,
|| > there is a downloadable file in that presentation which gives you all
| the
|| > correct code.
|| >
|| > --
|| > <>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]
|| >
|| >
|| > || > | Michael - Not sure how the presentation souce code should look, but
| the
|| > | source is showing only frameset commands:
|| > |
|| > | <html>
|| > |
|| > | <head>
|| > | <meta http-equiv=Content-Type content="text/html;
| charset=windows-1252">
|| > | <meta name=ProgId content=PowerPoint.Slide>
|| > | <meta name=Generator content="Microsoft PowerPoint 11">
|| > | <link id=Main-File rel=Main-File href="../Kohl's.htm">
|| > | <link rel=Preview href=preview.wmf>
|| > | <title>The New Fronteir in Wearable Technology(tm)</title>
|| > | <![if !ppt]><script src=script.js></script><script>
|| > | <!--
|| > | var gNavLoaded = gOtlNavLoaded = gOtlLoaded = false;
|| > | function Load()
|| > | {
|| > | str=unescape(document.location.hash),idx=str.indexOf('#')
|| > | if(idx>=0) str=str.substr(1);
|| > | if(str) PPTSld.location.replace(escape(str));
|| > | }
|| > | //-->
|| > | </script><![endif]>
|| > | </head>
|| > |
|| > |
|| > | <frameset rows="*,25" border=0>
|| > | <frameset cols="25%,*" onload="Load()" id=PPTHorizAdjust
| framespacing=1
|| > | frameborder=1>
|| > | <frame src=outline.htm title="Outline" name=PPTOtl>
|| > | <frame src=slide0001.htm title="Slide" name=PPTSld>
|| > | </frameset>
|| > | <frameset cols="25%,*" framespacing=1>
|| > | <frame src=outline.htm title="Outline
|| > | Navigation Bar" name=PPTOtlNav scrolling=no noresize>
|| > | <frame src=outline.htm title="Slide
|| > | Navigation Bar" name=PPTNav scrolling=no noresize>
|| > | </frameset>
|| > | </frameset>
|| > | </html>
|| > |
|| > |
|| > | Am I publishing it incorrectly? I following the steps on the site
you
|| > sent
|| > | me.
|| > |
|| > |
|| > |
|| > | "Michael Koerner" wrote:
|| > |
|| > | > This line is in error:
|| > | > if( IsWin("PPTNav" ) ){ LoadNav("NavObj",UpdNav);
|| > parent.gNavLoaded=true;
|| > | > return; parent.FullScreen2(); return }
|| > | >
|| > | > It should read:
|| > | >
|| > | > if( IsWin("PPTOtlNav" ) ){ LoadNav("OtlNavObj",UpdOtlNav);
|| > | > parent.gOtlNavLoaded=true; parent.FullScreen2(); return }
|| > | >
|| > | > I would open the outline.htm file in notepad, then copy and paste
| the
|| > above
|| > | > line and paste into the outline.htm file save it and see what
| happens.
|| > This
|| > | > link http://www.oldfco.ca/tutorial/pptohtml_files/frame.html will
| take
|| > you
|| > | > to an on-line
|| > | > presentation that opens full screen so that you can have a look.
|| > | >
|| > | > --
|| > | > <>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]
|| > | >
|| > | >
| message
|| > | > || > | > | Mike - thanks so much for replying -- Using PPT 2003
|| > | > |
|| > | > | but I've still got a problem the link opens but the frames are
| there
|| > and
|| > | > the
|| > | > | page is blank other than a blue background on the right side
(left
|| > side is
|| > | > | blank and white)
|| > | > |
|| > | > | I made the changes -- editing the script in Dreamweaver MX and
it
|| > looks
|| > | > | like this:
|| > | > |
|| > | > | function FullScreen()
|| > | > | {
|| > | > | if ( PPTSld.g_animUseRuntime )
|| > | > | PPTSld.document.body.pause();
|| > | > | ClearMedia();
|| > | > | var href = ( document.location.protocol == 'mhtml:') ?
| FULLSCR_HREF :
|| > | > | FULLSCR_HREF+"#"+GetHrefObj(gCurSld).mSldHref;
|| > | > | if (MHTMLPrefix != "")
|| > | > | href = RemoveFilePrefixFromHref(href)
|| > | > | if(PPTNav.event.ctrlKey) {
|| > | > | var w = (window.screen.availWidth * 1.0) / 2.0
|| > | > | var h = w * (PPTSld.g_origH * 1.0) / PPTSld.g_origW
|| > | > | win = window.open(
|| > | > | MHTMLPrefix+href,null,"toolbar=0,resizable=1,top=0,left=0," +
|| > "width="+ w
|| > | > +
|| > | > | ",height=" + h );
|| > | > | if( win.document.body && PPTSld.g_animUseRuntime )
|| > | > | win.document.body.PPTSldFrameset=window;
|| > | > | }
|| > | > | else
|| > | > | {
|| > | > | win = window.open( MHTMLPrefix+href,null,"fullscreen=yes" );
|| > | > | if( win.document.body && PPTSld.g_animUseRuntime )
|| > | > | win.document.body.PPTSldFrameset=window;
|| > | > | }
|| > | > |
|| > | > | 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;
|| > | > | }
|| > | > |
|| > | > | function ToggleVNarration()
|| > | > | {
|| > | > |
|| > | > |
|| > | > | I then went into Outline and edited it in Notepad and it looks
| like
|| > this:
|| > | > |
|| > | > |
|| > | > |
|| > | > | function Load()
|| > | > | {
|| > | > | if( IsWin("PPTOtl" ) ){ LoadOtl(); parent.gOtlLoaded=true;
| return }
|| > | > | if( g_supportsPPTHTML ) {
|| > | > | if( IsWin("PPTNav" ) ){ LoadNav("NavObj",UpdNav);
|| > parent.gNavLoaded=true;
|| > | > | return; parent.FullScreen2(); return }
|| > | > |
|| > | > |
|| > | > | {
|| > | > | function Upd(){ if( IsWin("PPTNav") ) LoadNav("NavObj",UpdNav) }
|| > | > |
|| > | > |
|| > | > | Not sure what I did wrong but I know it was something dumb -- i
| don't
|| > have
|| > | > | much java scripting experience (in fact extremely little) so I
| need a
|| > | > really
|| > | > | java script for dummies response to how to correct this.
|| > | > |
|| > | > | Any ideas?
|| > | > |
|| > | > | "Michael Koerner" wrote:
|| > | > |
|| > | > | > Without knowing your version of PowerPoint, I'll give you two
|| > options.
|| > | > | > Make PowerPoint 2000 HTML open full screen
|| > | > | > http://www.rdpslides.com/pptfaq/FAQ00148.htm
|| > | > | >
|| > | > | > Making PowerPoint 2002 and 2003 HTML open full screen
|| > | > | > http://www.rdpslides.com/pptfaq/FAQ00428.htm
|| > | > | >
|| > | > | >
|| > | > | > --
|| > | > | > <>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]
|| > | > | >
|| > | > | >
|| > message
|| > | > | > || > | > | > | My client doesn't want the side color fills that sit behind
| the
|| > slide
|| > | > show
|| > | > | > | images in our online presentation. Is there a way to
| eliminate
|| > them?
|| > | > | > |
|| > | > | > |
|| > | > | >
|| > | > | >
|| > | > | >
|| > | >
|| > | >
|| > | >
|| > | >
|| >
|| >
|| >
|
|
 
P

paigeturner

Hi Michael -

We had to go with the presentation set up without navigation (slide show
with background fill) since the client needed to provide the link to his
client by yesterday afternoon at 5pm. Needless to say I failed to meet my
client's request.

But for future use, I would like to forward to you my Script.js and
outline.html scripts (unchanged). If you could either tell me how to place
the new FullScreen scripts I'd appreciate it. (or, include them on the page
might be even better since I'm a real noob at this)

I'll foward an e-mail to the address you gave me and thank you again for
your patience and continued help. It's sincerely appreciated.

Paige

Michael Koerner said:
Meant to say the 'script.js' file and not 'fullscreen.htm'

--
<>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]


| If you could send us a link to your online presentation so that we might
| have a look would be great. Also, If you want to send me the
fullscreen.htm,
| and the outline.htm file before you made any changes, I'd be more than
| happy to have a look at it. insert the coding for you. You can send it to
| 'emko at hotmail dot com' make sure that you remind me what it is about in
| the subject line.
|
| --
| <>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]
|
|
| || Michael I did all that - reviewed, read, recoded, resaved, re-read,
| recoded
|| and nothing worked
||
|| I'm guessing since I'm a total newbie to coding that I've made some
|| placement error. But I have no idea what i've done wrong and I'm so
|| frustrated.
||
|| I downloaded the code, checked and double checked the phrasing, used
| notepad
|| and it still won't work.
||
|| I think maybe...not sure, but that i'm going wrong on how to place the
|| FullScreen(2) coding.
||
|| I'm putting it directly after the last } of the FullScreen() function.
Is
|| that right?
||
|| Or should I simply change FullScreen() to FullScreen(2) and delete the
|| FullScreen() code to insert the FullScreen(2) code?
||
|| I hate coding LOL - and this experience has just reinforced that feeling.
||
|| "Michael Koerner" wrote:
||
|| > Did you look at the link I sent, and is that what you looking to do? If
| so,
|| > there is a downloadable file in that presentation which gives you all
| the
|| > correct code.
|| >
|| > --
|| > <>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]
|| >
|| >
|| > || > | Michael - Not sure how the presentation souce code should look, but
| the
|| > | source is showing only frameset commands:
|| > |
|| > | <html>
|| > |
|| > | <head>
|| > | <meta http-equiv=Content-Type content="text/html;
| charset=windows-1252">
|| > | <meta name=ProgId content=PowerPoint.Slide>
|| > | <meta name=Generator content="Microsoft PowerPoint 11">
|| > | <link id=Main-File rel=Main-File href="../Kohl's.htm">
|| > | <link rel=Preview href=preview.wmf>
|| > | <title>The New Fronteir in Wearable Technology(tm)</title>
|| > | <![if !ppt]><script src=script.js></script><script>
|| > | <!--
|| > | var gNavLoaded = gOtlNavLoaded = gOtlLoaded = false;
|| > | function Load()
|| > | {
|| > | str=unescape(document.location.hash),idx=str.indexOf('#')
|| > | if(idx>=0) str=str.substr(1);
|| > | if(str) PPTSld.location.replace(escape(str));
|| > | }
|| > | //-->
|| > | </script><![endif]>
|| > | </head>
|| > |
|| > |
|| > | <frameset rows="*,25" border=0>
|| > | <frameset cols="25%,*" onload="Load()" id=PPTHorizAdjust
| framespacing=1
|| > | frameborder=1>
|| > | <frame src=outline.htm title="Outline" name=PPTOtl>
|| > | <frame src=slide0001.htm title="Slide" name=PPTSld>
|| > | </frameset>
|| > | <frameset cols="25%,*" framespacing=1>
|| > | <frame src=outline.htm title="Outline
|| > | Navigation Bar" name=PPTOtlNav scrolling=no noresize>
|| > | <frame src=outline.htm title="Slide
|| > | Navigation Bar" name=PPTNav scrolling=no noresize>
|| > | </frameset>
|| > | </frameset>
|| > | </html>
|| > |
|| > |
|| > | Am I publishing it incorrectly? I following the steps on the site
you
|| > sent
|| > | me.
|| > |
|| > |
|| > |
|| > | "Michael Koerner" wrote:
|| > |
|| > | > This line is in error:
|| > | > if( IsWin("PPTNav" ) ){ LoadNav("NavObj",UpdNav);
|| > parent.gNavLoaded=true;
|| > | > return; parent.FullScreen2(); return }
|| > | >
|| > | > It should read:
|| > | >
|| > | > if( IsWin("PPTOtlNav" ) ){ LoadNav("OtlNavObj",UpdOtlNav);
|| > | > parent.gOtlNavLoaded=true; parent.FullScreen2(); return }
|| > | >
|| > | > I would open the outline.htm file in notepad, then copy and paste
| the
|| > above
|| > | > line and paste into the outline.htm file save it and see what
| happens.
|| > This
|| > | > link http://www.oldfco.ca/tutorial/pptohtml_files/frame.html will
| take
|| > you
|| > | > to an on-line
|| > | > presentation that opens full screen so that you can have a look.
|| > | >
|| > | > --
|| > | > <>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]
|| > | >
|| > | >
| message
|| > | > || > | > | Mike - thanks so much for replying -- Using PPT 2003
|| > | > |
|| > | > | but I've still got a problem the link opens but the frames are
| there
|| > and
|| > | > the
|| > | > | page is blank other than a blue background on the right side
(left
|| > side is
|| > | > | blank and white)
|| > | > |
|| > | > | I made the changes -- editing the script in Dreamweaver MX and
it
|| > looks
|| > | > | like this:
|| > | > |
|| > | > | function FullScreen()
|| > | > | {
|| > | > | if ( PPTSld.g_animUseRuntime )
|| > | > | PPTSld.document.body.pause();
|| > | > | ClearMedia();
|| > | > | var href = ( document.location.protocol == 'mhtml:') ?
| FULLSCR_HREF :
|| > | > | FULLSCR_HREF+"#"+GetHrefObj(gCurSld).mSldHref;
|| > | > | if (MHTMLPrefix != "")
|| > | > | href = RemoveFilePrefixFromHref(href)
|| > | > | if(PPTNav.event.ctrlKey) {
|| > | > | var w = (window.screen.availWidth * 1.0) / 2.0
|| > | > | var h = w * (PPTSld.g_origH * 1.0) / PPTSld.g_origW
|| > | > | win = window.open(
|| > | > | MHTMLPrefix+href,null,"toolbar=0,resizable=1,top=0,left=0," +
|| > "width="+ w
|| > | > +
|| > | > | ",height=" + h );
|| > | > | if( win.document.body && PPTSld.g_animUseRuntime )
|| > | > | win.document.body.PPTSldFrameset=window;
|| > | > | }
|| > | > | else
|| > | > | {
|| > | > | win = window.open( MHTMLPrefix+href,null,"fullscreen=yes" );
|| > | > | if( win.document.body && PPTSld.g_animUseRuntime )
|| > | > | win.document.body.PPTSldFrameset=window;
|| > | > | }
|| > | > |
|| > | > | 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;
|| > | > | }
|| > | > |
|| > | > | function ToggleVNarration()
|| > | > | {
|| > | > |
|| > | > |
|| > | > | I then went into Outline and edited it in Notepad and it looks
| like
|| > this:
|| > | > |
|| > | > |
|| > | > |
|| > | > | function Load()
|| > | > | {
|| > | > | if( IsWin("PPTOtl" ) ){ LoadOtl(); parent.gOtlLoaded=true;
| return }
|| > | > | if( g_supportsPPTHTML ) {
|| > | > | if( IsWin("PPTNav" ) ){ LoadNav("NavObj",UpdNav);
|| > parent.gNavLoaded=true;
|| > | > | return; parent.FullScreen2(); return }
|| > | > |
|| > | > |
|| > | > | {
|| > | > | function Upd(){ if( IsWin("PPTNav") ) LoadNav("NavObj",UpdNav) }
|| > | > |
|| > | > |
|| > | > | Not sure what I did wrong but I know it was something dumb -- i
| don't
|| > have
|| > | > | much java scripting experience (in fact extremely little) so I
| need a
|| > | > really
|| > | > | java script for dummies response to how to correct this.
|| > | > |
|| > | > | Any ideas?
|| > | > |
|| > | > | "Michael Koerner" wrote:
|| > | > |
|| > | > | > Without knowing your version of PowerPoint, I'll give you two
|| > options.
|| > | > | > Make PowerPoint 2000 HTML open full screen
|| > | > | > http://www.rdpslides.com/pptfaq/FAQ00148.htm
|| > | > | >
|| > | > | > Making PowerPoint 2002 and 2003 HTML open full screen
|| > | > | > http://www.rdpslides.com/pptfaq/FAQ00428.htm
|| > | > | >
|| > | > | >
|| > | > | > --
|| > | > | > <>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]
|| > | > | >
|| > | > | >
|| > message
|| > | > | > || > | > | > | My client doesn't want the side color fills that sit behind
| the
|| > slide
|| > | > show
|| > | > | > | images in our online presentation. Is there a way to
| eliminate
|| > them?
|| > | > | > |
|| > | > | > |
|| > | > | >
|| > | > | >
|| > | > | >
|| > | >
|| > | >
|| > | >
|| > | >
|| >
|| >
|| >
|
|
 
M

Michael Koerner

Received both files. There seemed to be an extra "}" in the script.js file
made the corrections and sent them back to you. Let us know how they turned
out.

--
<>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]


| Hi Michael -
|
| We had to go with the presentation set up without navigation (slide show
| with background fill) since the client needed to provide the link to his
| client by yesterday afternoon at 5pm. Needless to say I failed to meet
my
| client's request.
|
| But for future use, I would like to forward to you my Script.js and
| outline.html scripts (unchanged). If you could either tell me how to
place
| the new FullScreen scripts I'd appreciate it. (or, include them on the
page
| might be even better since I'm a real noob at this)
|
| I'll foward an e-mail to the address you gave me and thank you again for
| your patience and continued help. It's sincerely appreciated.
|
| Paige
|
| "Michael Koerner" wrote:
|
| > Meant to say the 'script.js' file and not 'fullscreen.htm'
| >
| > --
| > <>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]
| >
| >
| > | > | If you could send us a link to your online presentation so that we
might
| > | have a look would be great. Also, If you want to send me the
| > fullscreen.htm,
| > | and the outline.htm file before you made any changes, I'd be more
than
| > | happy to have a look at it. insert the coding for you. You can send it
to
| > | 'emko at hotmail dot com' make sure that you remind me what it is
about in
| > | the subject line.
| > |
| > | --
| > | <>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]
| > |
| > |
| > | | > || Michael I did all that - reviewed, read, recoded, resaved, re-read,
| > | recoded
| > || and nothing worked
| > ||
| > || I'm guessing since I'm a total newbie to coding that I've made some
| > || placement error. But I have no idea what i've done wrong and I'm so
| > || frustrated.
| > ||
| > || I downloaded the code, checked and double checked the phrasing, used
| > | notepad
| > || and it still won't work.
| > ||
| > || I think maybe...not sure, but that i'm going wrong on how to place
the
| > || FullScreen(2) coding.
| > ||
| > || I'm putting it directly after the last } of the FullScreen()
function.
| > Is
| > || that right?
| > ||
| > || Or should I simply change FullScreen() to FullScreen(2) and delete
the
| > || FullScreen() code to insert the FullScreen(2) code?
| > ||
| > || I hate coding LOL - and this experience has just reinforced that
feeling.
| > ||
| > || "Michael Koerner" wrote:
| > ||
| > || > Did you look at the link I sent, and is that what you looking to
do? If
| > | so,
| > || > there is a downloadable file in that presentation which gives you
all
| > | the
| > || > correct code.
| > || >
| > || > --
| > || > <>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]
| > || >
| > || >
message
| > || > | > || > | Michael - Not sure how the presentation souce code should look,
but
| > | the
| > || > | source is showing only frameset commands:
| > || > |
| > || > | <html>
| > || > |
| > || > | <head>
| > || > | <meta http-equiv=Content-Type content="text/html;
| > | charset=windows-1252">
| > || > | <meta name=ProgId content=PowerPoint.Slide>
| > || > | <meta name=Generator content="Microsoft PowerPoint 11">
| > || > | <link id=Main-File rel=Main-File href="../Kohl's.htm">
| > || > | <link rel=Preview href=preview.wmf>
| > || > | <title>The New Fronteir in Wearable Technology(tm)</title>
| > || > | <![if !ppt]><script src=script.js></script><script>
| > || > | <!--
| > || > | var gNavLoaded = gOtlNavLoaded = gOtlLoaded = false;
| > || > | function Load()
| > || > | {
| > || > | str=unescape(document.location.hash),idx=str.indexOf('#')
| > || > | if(idx>=0) str=str.substr(1);
| > || > | if(str) PPTSld.location.replace(escape(str));
| > || > | }
| > || > | //-->
| > || > | </script><![endif]>
| > || > | </head>
| > || > |
| > || > |
| > || > | <frameset rows="*,25" border=0>
| > || > | <frameset cols="25%,*" onload="Load()" id=PPTHorizAdjust
| > | framespacing=1
| > || > | frameborder=1>
| > || > | <frame src=outline.htm title="Outline" name=PPTOtl>
| > || > | <frame src=slide0001.htm title="Slide" name=PPTSld>
| > || > | </frameset>
| > || > | <frameset cols="25%,*" framespacing=1>
| > || > | <frame src=outline.htm title="Outline
| > || > | Navigation Bar" name=PPTOtlNav scrolling=no noresize>
| > || > | <frame src=outline.htm title="Slide
| > || > | Navigation Bar" name=PPTNav scrolling=no noresize>
| > || > | </frameset>
| > || > | </frameset>
| > || > | </html>
| > || > |
| > || > |
| > || > | Am I publishing it incorrectly? I following the steps on the
site
| > you
| > || > sent
| > || > | me.
| > || > |
| > || > |
| > || > |
| > || > | "Michael Koerner" wrote:
| > || > |
| > || > | > This line is in error:
| > || > | > if( IsWin("PPTNav" ) ){ LoadNav("NavObj",UpdNav);
| > || > parent.gNavLoaded=true;
| > || > | > return; parent.FullScreen2(); return }
| > || > | >
| > || > | > It should read:
| > || > | >
| > || > | > if( IsWin("PPTOtlNav" ) ){ LoadNav("OtlNavObj",UpdOtlNav);
| > || > | > parent.gOtlNavLoaded=true; parent.FullScreen2(); return }
| > || > | >
| > || > | > I would open the outline.htm file in notepad, then copy and
paste
| > | the
| > || > above
| > || > | > line and paste into the outline.htm file save it and see what
| > | happens.
| > || > This
| > || > | > link http://www.oldfco.ca/tutorial/pptohtml_files/frame.html
will
| > | take
| > || > you
| > || > | > to an on-line
| > || > | > presentation that opens full screen so that you can have a
look.
| > || > | >
| > || > | > --
| > || > | > <>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]
| > || > | >
| > || > | >
| > | message
| > || > | > | > || > | > | Mike - thanks so much for replying -- Using PPT 2003
| > || > | > |
| > || > | > | but I've still got a problem the link opens but the frames
are
| > | there
| > || > and
| > || > | > the
| > || > | > | page is blank other than a blue background on the right side
| > (left
| > || > side is
| > || > | > | blank and white)
| > || > | > |
| > || > | > | I made the changes -- editing the script in Dreamweaver MX
and
| > it
| > || > looks
| > || > | > | like this:
| > || > | > |
| > || > | > | function FullScreen()
| > || > | > | {
| > || > | > | if ( PPTSld.g_animUseRuntime )
| > || > | > | PPTSld.document.body.pause();
| > || > | > | ClearMedia();
| > || > | > | var href = ( document.location.protocol == 'mhtml:') ?
| > | FULLSCR_HREF :
| > || > | > | FULLSCR_HREF+"#"+GetHrefObj(gCurSld).mSldHref;
| > || > | > | if (MHTMLPrefix != "")
| > || > | > | href = RemoveFilePrefixFromHref(href)
| > || > | > | if(PPTNav.event.ctrlKey) {
| > || > | > | var w = (window.screen.availWidth * 1.0) / 2.0
| > || > | > | var h = w * (PPTSld.g_origH * 1.0) / PPTSld.g_origW
| > || > | > | win = window.open(
| > || > | > | MHTMLPrefix+href,null,"toolbar=0,resizable=1,top=0,left=0," +
| > || > "width="+ w
| > || > | > +
| > || > | > | ",height=" + h );
| > || > | > | if( win.document.body && PPTSld.g_animUseRuntime )
| > || > | > | win.document.body.PPTSldFrameset=window;
| > || > | > | }
| > || > | > | else
| > || > | > | {
| > || > | > | win = window.open( MHTMLPrefix+href,null,"fullscreen=yes" );
| > || > | > | if( win.document.body && PPTSld.g_animUseRuntime )
| > || > | > | win.document.body.PPTSldFrameset=window;
| > || > | > | }
| > || > | > |
| > || > | > | 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;
| > || > | > | }
| > || > | > |
| > || > | > | function ToggleVNarration()
| > || > | > | {
| > || > | > |
| > || > | > |
| > || > | > | I then went into Outline and edited it in Notepad and it
looks
| > | like
| > || > this:
| > || > | > |
| > || > | > |
| > || > | > |
| > || > | > | function Load()
| > || > | > | {
| > || > | > | if( IsWin("PPTOtl" ) ){ LoadOtl(); parent.gOtlLoaded=true;
| > | return }
| > || > | > | if( g_supportsPPTHTML ) {
| > || > | > | if( IsWin("PPTNav" ) ){ LoadNav("NavObj",UpdNav);
| > || > parent.gNavLoaded=true;
| > || > | > | return; parent.FullScreen2(); return }
| > || > | > |
| > || > | > |
| > || > | > | {
| > || > | > | function Upd(){ if( IsWin("PPTNav") )
LoadNav("NavObj",UpdNav) }
| > || > | > |
| > || > | > |
| > || > | > | Not sure what I did wrong but I know it was something dumb --
i
| > | don't
| > || > have
| > || > | > | much java scripting experience (in fact extremely little) so
I
| > | need a
| > || > | > really
| > || > | > | java script for dummies response to how to correct this.
| > || > | > |
| > || > | > | Any ideas?
| > || > | > |
| > || > | > | "Michael Koerner" wrote:
| > || > | > |
| > || > | > | > Without knowing your version of PowerPoint, I'll give you
two
| > || > options.
| > || > | > | > Make PowerPoint 2000 HTML open full screen
| > || > | > | > http://www.rdpslides.com/pptfaq/FAQ00148.htm
| > || > | > | >
| > || > | > | > Making PowerPoint 2002 and 2003 HTML open full screen
| > || > | > | > http://www.rdpslides.com/pptfaq/FAQ00428.htm
| > || > | > | >
| > || > | > | >
| > || > | > | > --
| > || > | > | > <>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]
| > || > | > | >
| > || > | > | >
in
| > || > message
| > || > | > | > | > || > | > | > | My client doesn't want the side color fills that sit
behind
| > | the
| > || > slide
| > || > | > show
| > || > | > | > | images in our online presentation. Is there a way to
| > | eliminate
| > || > them?
| > || > | > | > |
| > || > | > | > |
| > || > | > | >
| > || > | > | >
| > || > | > | >
| > || > | >
| > || > | >
| > || > | >
| > || > | >
| > || >
| > || >
| > || >
| > |
| > |
| >
| >
| >
 
P

paigeturner

Michael - hotmail wouldn't let the script.js file through - could you tell me
-- show me-- where you removed the extra } so I can replicate it.

Thank you.

Michael Koerner said:
Received both files. There seemed to be an extra "}" in the script.js file
made the corrections and sent them back to you. Let us know how they turned
out.

--
<>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]


| Hi Michael -
|
| We had to go with the presentation set up without navigation (slide show
| with background fill) since the client needed to provide the link to his
| client by yesterday afternoon at 5pm. Needless to say I failed to meet
my
| client's request.
|
| But for future use, I would like to forward to you my Script.js and
| outline.html scripts (unchanged). If you could either tell me how to
place
| the new FullScreen scripts I'd appreciate it. (or, include them on the
page
| might be even better since I'm a real noob at this)
|
| I'll foward an e-mail to the address you gave me and thank you again for
| your patience and continued help. It's sincerely appreciated.
|
| Paige
|
| "Michael Koerner" wrote:
|
| > Meant to say the 'script.js' file and not 'fullscreen.htm'
| >
| > --
| > <>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]
| >
| >
| > | > | If you could send us a link to your online presentation so that we
might
| > | have a look would be great. Also, If you want to send me the
| > fullscreen.htm,
| > | and the outline.htm file before you made any changes, I'd be more
than
| > | happy to have a look at it. insert the coding for you. You can send it
to
| > | 'emko at hotmail dot com' make sure that you remind me what it is
about in
| > | the subject line.
| > |
| > | --
| > | <>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]
| > |
| > |
| > | | > || Michael I did all that - reviewed, read, recoded, resaved, re-read,
| > | recoded
| > || and nothing worked
| > ||
| > || I'm guessing since I'm a total newbie to coding that I've made some
| > || placement error. But I have no idea what i've done wrong and I'm so
| > || frustrated.
| > ||
| > || I downloaded the code, checked and double checked the phrasing, used
| > | notepad
| > || and it still won't work.
| > ||
| > || I think maybe...not sure, but that i'm going wrong on how to place
the
| > || FullScreen(2) coding.
| > ||
| > || I'm putting it directly after the last } of the FullScreen()
function.
| > Is
| > || that right?
| > ||
| > || Or should I simply change FullScreen() to FullScreen(2) and delete
the
| > || FullScreen() code to insert the FullScreen(2) code?
| > ||
| > || I hate coding LOL - and this experience has just reinforced that
feeling.
| > ||
| > || "Michael Koerner" wrote:
| > ||
| > || > Did you look at the link I sent, and is that what you looking to
do? If
| > | so,
| > || > there is a downloadable file in that presentation which gives you
all
| > | the
| > || > correct code.
| > || >
| > || > --
| > || > <>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]
| > || >
| > || >
message
| > || > | > || > | Michael - Not sure how the presentation souce code should look,
but
| > | the
| > || > | source is showing only frameset commands:
| > || > |
| > || > | <html>
| > || > |
| > || > | <head>
| > || > | <meta http-equiv=Content-Type content="text/html;
| > | charset=windows-1252">
| > || > | <meta name=ProgId content=PowerPoint.Slide>
| > || > | <meta name=Generator content="Microsoft PowerPoint 11">
| > || > | <link id=Main-File rel=Main-File href="../Kohl's.htm">
| > || > | <link rel=Preview href=preview.wmf>
| > || > | <title>The New Fronteir in Wearable Technology(tm)</title>
| > || > | <![if !ppt]><script src=script.js></script><script>
| > || > | <!--
| > || > | var gNavLoaded = gOtlNavLoaded = gOtlLoaded = false;
| > || > | function Load()
| > || > | {
| > || > | str=unescape(document.location.hash),idx=str.indexOf('#')
| > || > | if(idx>=0) str=str.substr(1);
| > || > | if(str) PPTSld.location.replace(escape(str));
| > || > | }
| > || > | //-->
| > || > | </script><![endif]>
| > || > | </head>
| > || > |
| > || > |
| > || > | <frameset rows="*,25" border=0>
| > || > | <frameset cols="25%,*" onload="Load()" id=PPTHorizAdjust
| > | framespacing=1
| > || > | frameborder=1>
| > || > | <frame src=outline.htm title="Outline" name=PPTOtl>
| > || > | <frame src=slide0001.htm title="Slide" name=PPTSld>
| > || > | </frameset>
| > || > | <frameset cols="25%,*" framespacing=1>
| > || > | <frame src=outline.htm title="Outline
| > || > | Navigation Bar" name=PPTOtlNav scrolling=no noresize>
| > || > | <frame src=outline.htm title="Slide
| > || > | Navigation Bar" name=PPTNav scrolling=no noresize>
| > || > | </frameset>
| > || > | </frameset>
| > || > | </html>
| > || > |
| > || > |
| > || > | Am I publishing it incorrectly? I following the steps on the
site
| > you
| > || > sent
| > || > | me.
| > || > |
| > || > |
| > || > |
| > || > | "Michael Koerner" wrote:
| > || > |
| > || > | > This line is in error:
| > || > | > if( IsWin("PPTNav" ) ){ LoadNav("NavObj",UpdNav);
| > || > parent.gNavLoaded=true;
| > || > | > return; parent.FullScreen2(); return }
| > || > | >
| > || > | > It should read:
| > || > | >
| > || > | > if( IsWin("PPTOtlNav" ) ){ LoadNav("OtlNavObj",UpdOtlNav);
| > || > | > parent.gOtlNavLoaded=true; parent.FullScreen2(); return }
| > || > | >
| > || > | > I would open the outline.htm file in notepad, then copy and
paste
| > | the
| > || > above
| > || > | > line and paste into the outline.htm file save it and see what
| > | happens.
| > || > This
| > || > | > link http://www.oldfco.ca/tutorial/pptohtml_files/frame.html
will
| > | take
| > || > you
| > || > | > to an on-line
| > || > | > presentation that opens full screen so that you can have a
look.
| > || > | >
| > || > | > --
| > || > | > <>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]
| > || > | >
| > || > | >
| > | message
| > || > | > | > || > | > | Mike - thanks so much for replying -- Using PPT 2003
| > || > | > |
| > || > | > | but I've still got a problem the link opens but the frames
are
| > | there
| > || > and
| > || > | > the
| > || > | > | page is blank other than a blue background on the right side
| > (left
| > || > side is
| > || > | > | blank and white)
| > || > | > |
| > || > | > | I made the changes -- editing the script in Dreamweaver MX
and
| > it
| > || > looks
| > || > | > | like this:
| > || > | > |
| > || > | > | function FullScreen()
| > || > | > | {
| > || > | > | if ( PPTSld.g_animUseRuntime )
| > || > | > | PPTSld.document.body.pause();
| > || > | > | ClearMedia();
| > || > | > | var href = ( document.location.protocol == 'mhtml:') ?
| > | FULLSCR_HREF :
| > || > | > | FULLSCR_HREF+"#"+GetHrefObj(gCurSld).mSldHref;
| > || > | > | if (MHTMLPrefix != "")
| > || > | > | href = RemoveFilePrefixFromHref(href)
| > || > | > | if(PPTNav.event.ctrlKey) {
| > || > | > | var w = (window.screen.availWidth * 1.0) / 2.0
| > || > | > | var h = w * (PPTSld.g_origH * 1.0) / PPTSld.g_origW
| > || > | > | win = window.open(
| > || > | > | MHTMLPrefix+href,null,"toolbar=0,resizable=1,top=0,left=0," +
| > || > "width="+ w
| > || > | > +
| > || > | > | ",height=" + h );
| > || > | > | if( win.document.body && PPTSld.g_animUseRuntime )
| > || > | > | win.document.body.PPTSldFrameset=window;
| > || > | > | }
| > || > | > | else
| > || > | > | {
| > || > | > | win = window.open( MHTMLPrefix+href,null,"fullscreen=yes" );
| > || > | > | if( win.document.body && PPTSld.g_animUseRuntime )
| > || > | > | win.document.body.PPTSldFrameset=window;
| > || > | > | }
| > || > | > |
| > || > | > | 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;
| > || > | > | }
| > || > | > |
| > || > | > | function ToggleVNarration()
| > || > | > | {
| > || > | > |
| > || > | > |
| > || > | > | I then went into Outline and edited it in Notepad and it
looks
| > | like
| > || > this:
| > || > | > |
| > || > | > |
| > || > | > |
| > || > | > | function Load()
| > || > | > | {
| > || > | > | if( IsWin("PPTOtl" ) ){ LoadOtl(); parent.gOtlLoaded=true;
| > | return }
| > || > | > | if( g_supportsPPTHTML ) {
| > || > | > | if( IsWin("PPTNav" ) ){ LoadNav("NavObj",UpdNav);
| > || > parent.gNavLoaded=true;
| > || > | > | return; parent.FullScreen2(); return }
| > || > | > |
| > || > | > |
| > || > | > | {
| > || > | > | function Upd(){ if( IsWin("PPTNav") )
LoadNav("NavObj",UpdNav) }
| > || > | > |
| > || > | > |
| > || > | > | Not sure what I did wrong but I know it was something dumb --
i
| > | don't
 
M

Michael Koerner

Must be a setting on your account. I received/sent it just fine. I renamed
the .js file to a .txt file, and re sent. Let me know if it gets through.

--
<>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]


| Michael - hotmail wouldn't let the script.js file through - could you tell
me
| -- show me-- where you removed the extra } so I can replicate it.
|
| Thank you.
|
| "Michael Koerner" wrote:
|
| > Received both files. There seemed to be an extra "}" in the script.js
file
| > made the corrections and sent them back to you. Let us know how they
turned
| > out.
| >
| > --
| > <>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]
| >
| >
| > | > | Hi Michael -
| > |
| > | We had to go with the presentation set up without navigation (slide
show
| > | with background fill) since the client needed to provide the link to
his
| > | client by yesterday afternoon at 5pm. Needless to say I failed to
meet
| > my
| > | client's request.
| > |
| > | But for future use, I would like to forward to you my Script.js and
| > | outline.html scripts (unchanged). If you could either tell me how to
| > place
| > | the new FullScreen scripts I'd appreciate it. (or, include them on the
| > page
| > | might be even better since I'm a real noob at this)
| > |
| > | I'll foward an e-mail to the address you gave me and thank you again
for
| > | your patience and continued help. It's sincerely appreciated.
| > |
| > | Paige
| > |
| > | "Michael Koerner" wrote:
| > |
| > | > Meant to say the 'script.js' file and not 'fullscreen.htm'
| > | >
| > | > --
| > | > <>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]
| > | >
| > | >
| > | > | > | > | If you could send us a link to your online presentation so that we
| > might
| > | > | have a look would be great. Also, If you want to send me the
| > | > fullscreen.htm,
| > | > | and the outline.htm file before you made any changes, I'd be more
| > than
| > | > | happy to have a look at it. insert the coding for you. You can
send it
| > to
| > | > | 'emko at hotmail dot com' make sure that you remind me what it is
| > about in
| > | > | the subject line.
| > | > |
| > | > | --
| > | > | <>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]
| > | > |
| > | > |
message
| > | > | | > | > || Michael I did all that - reviewed, read, recoded, resaved,
re-read,
| > | > | recoded
| > | > || and nothing worked
| > | > ||
| > | > || I'm guessing since I'm a total newbie to coding that I've made
some
| > | > || placement error. But I have no idea what i've done wrong and I'm
so
| > | > || frustrated.
| > | > ||
| > | > || I downloaded the code, checked and double checked the phrasing,
used
| > | > | notepad
| > | > || and it still won't work.
| > | > ||
| > | > || I think maybe...not sure, but that i'm going wrong on how to
place
| > the
| > | > || FullScreen(2) coding.
| > | > ||
| > | > || I'm putting it directly after the last } of the FullScreen()
| > function.
| > | > Is
| > | > || that right?
| > | > ||
| > | > || Or should I simply change FullScreen() to FullScreen(2) and
delete
| > the
| > | > || FullScreen() code to insert the FullScreen(2) code?
| > | > ||
| > | > || I hate coding LOL - and this experience has just reinforced that
| > feeling.
| > | > ||
| > | > || "Michael Koerner" wrote:
| > | > ||
| > | > || > Did you look at the link I sent, and is that what you looking
to
| > do? If
| > | > | so,
| > | > || > there is a downloadable file in that presentation which gives
you
| > all
| > | > | the
| > | > || > correct code.
| > | > || >
| > | > || > --
| > | > || > <>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]
| > | > || >
| > | > || >
| > message
| > | > || > | > | > || > | Michael - Not sure how the presentation souce code should
look,
| > but
| > | > | the
| > | > || > | source is showing only frameset commands:
| > | > || > |
| > | > || > | <html>
| > | > || > |
| > | > || > | <head>
| > | > || > | <meta http-equiv=Content-Type content="text/html;
| > | > | charset=windows-1252">
| > | > || > | <meta name=ProgId content=PowerPoint.Slide>
| > | > || > | <meta name=Generator content="Microsoft PowerPoint 11">
| > | > || > | <link id=Main-File rel=Main-File href="../Kohl's.htm">
| > | > || > | <link rel=Preview href=preview.wmf>
| > | > || > | <title>The New Fronteir in Wearable Technology(tm)</title>
| > | > || > | <![if !ppt]><script src=script.js></script><script>
| > | > || > | <!--
| > | > || > | var gNavLoaded = gOtlNavLoaded = gOtlLoaded = false;
| > | > || > | function Load()
| > | > || > | {
| > | > || > | str=unescape(document.location.hash),idx=str.indexOf('#')
| > | > || > | if(idx>=0) str=str.substr(1);
| > | > || > | if(str) PPTSld.location.replace(escape(str));
| > | > || > | }
| > | > || > | //-->
| > | > || > | </script><![endif]>
| > | > || > | </head>
| > | > || > |
| > | > || > |
| > | > || > | <frameset rows="*,25" border=0>
| > | > || > | <frameset cols="25%,*" onload="Load()" id=PPTHorizAdjust
| > | > | framespacing=1
| > | > || > | frameborder=1>
| > | > || > | <frame src=outline.htm title="Outline" name=PPTOtl>
| > | > || > | <frame src=slide0001.htm title="Slide" name=PPTSld>
| > | > || > | </frameset>
| > | > || > | <frameset cols="25%,*" framespacing=1>
| > | > || > | <frame src=outline.htm title="Outline
| > | > || > | Navigation Bar" name=PPTOtlNav scrolling=no noresize>
| > | > || > | <frame src=outline.htm title="Slide
| > | > || > | Navigation Bar" name=PPTNav scrolling=no noresize>
| > | > || > | </frameset>
| > | > || > | </frameset>
| > | > || > | </html>
| > | > || > |
| > | > || > |
| > | > || > | Am I publishing it incorrectly? I following the steps on the
| > site
| > | > you
| > | > || > sent
| > | > || > | me.
| > | > || > |
| > | > || > |
| > | > || > |
| > | > || > | "Michael Koerner" wrote:
| > | > || > |
| > | > || > | > This line is in error:
| > | > || > | > if( IsWin("PPTNav" ) ){ LoadNav("NavObj",UpdNav);
| > | > || > parent.gNavLoaded=true;
| > | > || > | > return; parent.FullScreen2(); return }
| > | > || > | >
| > | > || > | > It should read:
| > | > || > | >
| > | > || > | > if( IsWin("PPTOtlNav" ) ){ LoadNav("OtlNavObj",UpdOtlNav);
| > | > || > | > parent.gOtlNavLoaded=true; parent.FullScreen2(); return }
| > | > || > | >
| > | > || > | > I would open the outline.htm file in notepad, then copy and
| > paste
| > | > | the
| > | > || > above
| > | > || > | > line and paste into the outline.htm file save it and see
what
| > | > | happens.
| > | > || > This
| > | > || > | > link
http://www.oldfco.ca/tutorial/pptohtml_files/frame.html
| > will
| > | > | take
| > | > || > you
| > | > || > | > to an on-line
| > | > || > | > presentation that opens full screen so that you can have a
| > look.
| > | > || > | >
| > | > || > | > --
| > | > || > | > <>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]
| > | > || > | >
| > | > || > | >
in
| > | > | message
| > | > || > | > | > | > || > | > | Mike - thanks so much for replying -- Using PPT 2003
| > | > || > | > |
| > | > || > | > | but I've still got a problem the link opens but the
frames
| > are
| > | > | there
| > | > || > and
| > | > || > | > the
| > | > || > | > | page is blank other than a blue background on the right
side
| > | > (left
| > | > || > side is
| > | > || > | > | blank and white)
| > | > || > | > |
| > | > || > | > | I made the changes -- editing the script in Dreamweaver
MX
| > and
| > | > it
| > | > || > looks
| > | > || > | > | like this:
| > | > || > | > |
| > | > || > | > | function FullScreen()
| > | > || > | > | {
| > | > || > | > | if ( PPTSld.g_animUseRuntime )
| > | > || > | > | PPTSld.document.body.pause();
| > | > || > | > | ClearMedia();
| > | > || > | > | var href = ( document.location.protocol == 'mhtml:') ?
| > | > | FULLSCR_HREF :
| > | > || > | > | FULLSCR_HREF+"#"+GetHrefObj(gCurSld).mSldHref;
| > | > || > | > | if (MHTMLPrefix != "")
| > | > || > | > | href = RemoveFilePrefixFromHref(href)
| > | > || > | > | if(PPTNav.event.ctrlKey) {
| > | > || > | > | var w = (window.screen.availWidth * 1.0) / 2.0
| > | > || > | > | var h = w * (PPTSld.g_origH * 1.0) / PPTSld.g_origW
| > | > || > | > | win = window.open(
| > | > || > | > |
MHTMLPrefix+href,null,"toolbar=0,resizable=1,top=0,left=0," +
| > | > || > "width="+ w
| > | > || > | > +
| > | > || > | > | ",height=" + h );
| > | > || > | > | if( win.document.body && PPTSld.g_animUseRuntime )
| > | > || > | > | win.document.body.PPTSldFrameset=window;
| > | > || > | > | }
| > | > || > | > | else
| > | > || > | > | {
| > | > || > | > | win = window.open(
MHTMLPrefix+href,null,"fullscreen=yes" );
| > | > || > | > | if( win.document.body && PPTSld.g_animUseRuntime )
| > | > || > | > | win.document.body.PPTSldFrameset=window;
| > | > || > | > | }
| > | > || > | > |
| > | > || > | > | 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;
| > | > || > | > | }
| > | > || > | > |
| > | > || > | > | function ToggleVNarration()
| > | > || > | > | {
| > | > || > | > |
| > | > || > | > |
| > | > || > | > | I then went into Outline and edited it in Notepad and it
| > looks
| > | > | like
| > | > || > this:
| > | > || > | > |
| > | > || > | > |
| > | > || > | > |
| > | > || > | > | function Load()
| > | > || > | > | {
| > | > || > | > | if( IsWin("PPTOtl" ) ){ LoadOtl();
parent.gOtlLoaded=true;
| > | > | return }
| > | > || > | > | if( g_supportsPPTHTML ) {
| > | > || > | > | if( IsWin("PPTNav" ) ){ LoadNav("NavObj",UpdNav);
| > | > || > parent.gNavLoaded=true;
| > | > || > | > | return; parent.FullScreen2(); return }
| > | > || > | > |
| > | > || > | > |
| > | > || > | > | {
| > | > || > | > | function Upd(){ if( IsWin("PPTNav") )
| > LoadNav("NavObj",UpdNav) }
| > | > || > | > |
| > | > || > | > |
| > | > || > | > | Not sure what I did wrong but I know it was something
dumb --
| > i
| > | > | don't
 
P

paigeturner

How clever!! it came through. I'll remember that trick in the future. I'll
load it on my site now and try it.

Thank you, Michael

RESULT:

It worked !! Woot :)

But I have a question -- the outline view sits behind it -- is that normal?
for some reason I thought it would only open in full screen and eliminate the
outline view entirely.


Michael Koerner said:
Must be a setting on your account. I received/sent it just fine. I renamed
the .js file to a .txt file, and re sent. Let me know if it gets through.

--
<>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]


| Michael - hotmail wouldn't let the script.js file through - could you tell
me
| -- show me-- where you removed the extra } so I can replicate it.
|
| Thank you.
|
| "Michael Koerner" wrote:
|
| > Received both files. There seemed to be an extra "}" in the script.js
file
| > made the corrections and sent them back to you. Let us know how they
turned
| > out.
| >
| > --
| > <>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]
| >
| >
| > | > | Hi Michael -
| > |
| > | We had to go with the presentation set up without navigation (slide
show
| > | with background fill) since the client needed to provide the link to
his
| > | client by yesterday afternoon at 5pm. Needless to say I failed to
meet
| > my
| > | client's request.
| > |
| > | But for future use, I would like to forward to you my Script.js and
| > | outline.html scripts (unchanged). If you could either tell me how to
| > place
| > | the new FullScreen scripts I'd appreciate it. (or, include them on the
| > page
| > | might be even better since I'm a real noob at this)
| > |
| > | I'll foward an e-mail to the address you gave me and thank you again
for
| > | your patience and continued help. It's sincerely appreciated.
| > |
| > | Paige
| > |
| > | "Michael Koerner" wrote:
| > |
| > | > Meant to say the 'script.js' file and not 'fullscreen.htm'
| > | >
| > | > --
| > | > <>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]
| > | >
| > | >
| > | > | > | > | If you could send us a link to your online presentation so that we
| > might
| > | > | have a look would be great. Also, If you want to send me the
| > | > fullscreen.htm,
| > | > | and the outline.htm file before you made any changes, I'd be more
| > than
| > | > | happy to have a look at it. insert the coding for you. You can
send it
| > to
| > | > | 'emko at hotmail dot com' make sure that you remind me what it is
| > about in
| > | > | the subject line.
| > | > |
| > | > | --
| > | > | <>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]
| > | > |
| > | > |
message
| > | > | | > | > || Michael I did all that - reviewed, read, recoded, resaved,
re-read,
| > | > | recoded
| > | > || and nothing worked
| > | > ||
| > | > || I'm guessing since I'm a total newbie to coding that I've made
some
| > | > || placement error. But I have no idea what i've done wrong and I'm
so
| > | > || frustrated.
| > | > ||
| > | > || I downloaded the code, checked and double checked the phrasing,
used
| > | > | notepad
| > | > || and it still won't work.
| > | > ||
| > | > || I think maybe...not sure, but that i'm going wrong on how to
place
| > the
| > | > || FullScreen(2) coding.
| > | > ||
| > | > || I'm putting it directly after the last } of the FullScreen()
| > function.
| > | > Is
| > | > || that right?
| > | > ||
| > | > || Or should I simply change FullScreen() to FullScreen(2) and
delete
| > the
| > | > || FullScreen() code to insert the FullScreen(2) code?
| > | > ||
| > | > || I hate coding LOL - and this experience has just reinforced that
| > feeling.
| > | > ||
| > | > || "Michael Koerner" wrote:
| > | > ||
| > | > || > Did you look at the link I sent, and is that what you looking
to
| > do? If
| > | > | so,
| > | > || > there is a downloadable file in that presentation which gives
you
| > all
| > | > | the
| > | > || > correct code.
| > | > || >
| > | > || > --
| > | > || > <>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]
| > | > || >
| > | > || >
| > message
| > | > || > | > | > || > | Michael - Not sure how the presentation souce code should
look,
| > but
| > | > | the
| > | > || > | source is showing only frameset commands:
| > | > || > |
| > | > || > | <html>
| > | > || > |
| > | > || > | <head>
| > | > || > | <meta http-equiv=Content-Type content="text/html;
| > | > | charset=windows-1252">
| > | > || > | <meta name=ProgId content=PowerPoint.Slide>
| > | > || > | <meta name=Generator content="Microsoft PowerPoint 11">
| > | > || > | <link id=Main-File rel=Main-File href="../Kohl's.htm">
| > | > || > | <link rel=Preview href=preview.wmf>
| > | > || > | <title>The New Fronteir in Wearable Technology(tm)</title>
| > | > || > | <![if !ppt]><script src=script.js></script><script>
| > | > || > | <!--
| > | > || > | var gNavLoaded = gOtlNavLoaded = gOtlLoaded = false;
| > | > || > | function Load()
| > | > || > | {
| > | > || > | str=unescape(document.location.hash),idx=str.indexOf('#')
| > | > || > | if(idx>=0) str=str.substr(1);
| > | > || > | if(str) PPTSld.location.replace(escape(str));
| > | > || > | }
| > | > || > | //-->
| > | > || > | </script><![endif]>
| > | > || > | </head>
| > | > || > |
| > | > || > |
| > | > || > | <frameset rows="*,25" border=0>
| > | > || > | <frameset cols="25%,*" onload="Load()" id=PPTHorizAdjust
| > | > | framespacing=1
| > | > || > | frameborder=1>
| > | > || > | <frame src=outline.htm title="Outline" name=PPTOtl>
| > | > || > | <frame src=slide0001.htm title="Slide" name=PPTSld>
| > | > || > | </frameset>
| > | > || > | <frameset cols="25%,*" framespacing=1>
| > | > || > | <frame src=outline.htm title="Outline
| > | > || > | Navigation Bar" name=PPTOtlNav scrolling=no noresize>
| > | > || > | <frame src=outline.htm title="Slide
| > | > || > | Navigation Bar" name=PPTNav scrolling=no noresize>
| > | > || > | </frameset>
| > | > || > | </frameset>
| > | > || > | </html>
| > | > || > |
| > | > || > |
| > | > || > | Am I publishing it incorrectly? I following the steps on the
| > site
| > | > you
| > | > || > sent
| > | > || > | me.
| > | > || > |
| > | > || > |
| > | > || > |
| > | > || > | "Michael Koerner" wrote:
| > | > || > |
| > | > || > | > This line is in error:
| > | > || > | > if( IsWin("PPTNav" ) ){ LoadNav("NavObj",UpdNav);
| > | > || > parent.gNavLoaded=true;
| > | > || > | > return; parent.FullScreen2(); return }
| > | > || > | >
| > | > || > | > It should read:
| > | > || > | >
| > | > || > | > if( IsWin("PPTOtlNav" ) ){ LoadNav("OtlNavObj",UpdOtlNav);
| > | > || > | > parent.gOtlNavLoaded=true; parent.FullScreen2(); return }
| > | > || > | >
| > | > || > | > I would open the outline.htm file in notepad, then copy and
| > paste
| > | > | the
| > | > || > above
| > | > || > | > line and paste into the outline.htm file save it and see
what
| > | > | happens.
| > | > || > This
| > | > || > | > link
http://www.oldfco.ca/tutorial/pptohtml_files/frame.html
| > will
| > | > | take
| > | > || > you
| > | > || > | > to an on-line
| > | > || > | > presentation that opens full screen so that you can have a
| > look.
| > | > || > | >
| > | > || > | > --
| > | > || > | > <>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]
| > | > || > | >
| > | > || > | >
in
| > | > | message
| > | > || > | > | > | > || > | > | Mike - thanks so much for replying -- Using PPT 2003
| > | > || > | > |
| > | > || > | > | but I've still got a problem the link opens but the
frames
| > are
| > | > | there
| > | > || > and
| > | > || > | > the
| > | > || > | > | page is blank other than a blue background on the right
side
| > | > (left
| > | > || > side is
| > | > || > | > | blank and white)
| > | > || > | > |
| > | > || > | > | I made the changes -- editing the script in Dreamweaver
MX
| > and
| > | > it
| > | > || > looks
| > | > || > | > | like this:
| > | > || > | > |
| > | > || > | > | function FullScreen()
| > | > || > | > | {
| > | > || > | > | if ( PPTSld.g_animUseRuntime )
| > | > || > | > | PPTSld.document.body.pause();
| > | > || > | > | ClearMedia();
| > | > || > | > | var href = ( document.location.protocol == 'mhtml:') ?
| > | > | FULLSCR_HREF :
| > | > || > | > | FULLSCR_HREF+"#"+GetHrefObj(gCurSld).mSldHref;
| > | > || > | > | if (MHTMLPrefix != "")
| > | > || > | > | href = RemoveFilePrefixFromHref(href)
| > | > || > | > | if(PPTNav.event.ctrlKey) {
| > | > || > | > | var w = (window.screen.availWidth * 1.0) / 2.0
| > | > || > | > | var h = w * (PPTSld.g_origH * 1.0) / PPTSld.g_origW
| > | > || > | > | win = window.open(
| > | > || > | > |
MHTMLPrefix+href,null,"toolbar=0,resizable=1,top=0,left=0," +
| > | > || > "width="+ w
| > | > || > | > +
| > | > || > | > | ",height=" + h );
| > | > || > | > | if( win.document.body && PPTSld.g_animUseRuntime )
| > | > || > | > | win.document.body.PPTSldFrameset=window;
| > | > || > | > | }
| > | > || > | > | else
 
M

Michael Koerner

Glad to hear that it worked. I don't know about the Outline sitting behind.
I do know that it will not come up in Full Screen if you have "Block PopUps"
set. The only difference I see in the Windows XP and PowerPoint 2003, in
IE(6) you get the Microsoft Title bar, and the tool bar, which were not
there in earlier versions, you got a true FullScreen. Unless there is some
way to turn them off that I am not aware.

--
<>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]


| How clever!! it came through. I'll remember that trick in the future.
I'll
| load it on my site now and try it.
|
| Thank you, Michael
|
| RESULT:
|
| It worked !! Woot :)
|
| But I have a question -- the outline view sits behind it -- is that
normal?
| for some reason I thought it would only open in full screen and eliminate
the
| outline view entirely.
|
|
| "Michael Koerner" wrote:
|
| > Must be a setting on your account. I received/sent it just fine. I
renamed
| > the .js file to a .txt file, and re sent. Let me know if it gets
through.
| >
| > --
| > <>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]
| >
| >
| > | > | Michael - hotmail wouldn't let the script.js file through - could you
tell
| > me
| > | -- show me-- where you removed the extra } so I can replicate it.
| > |
| > | Thank you.
| > |
| > | "Michael Koerner" wrote:
| > |
| > | > Received both files. There seemed to be an extra "}" in the
script.js
| > file
| > | > made the corrections and sent them back to you. Let us know how they
| > turned
| > | > out.
| > | >
| > | > --
| > | > <>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]
| > | >
| > | >
message
| > | > | > | > | Hi Michael -
| > | > |
| > | > | We had to go with the presentation set up without navigation
(slide
| > show
| > | > | with background fill) since the client needed to provide the link
to
| > his
| > | > | client by yesterday afternoon at 5pm. Needless to say I failed
to
| > meet
| > | > my
| > | > | client's request.
| > | > |
| > | > | But for future use, I would like to forward to you my Script.js
and
| > | > | outline.html scripts (unchanged). If you could either tell me how
to
| > | > place
| > | > | the new FullScreen scripts I'd appreciate it. (or, include them on
the
| > | > page
| > | > | might be even better since I'm a real noob at this)
| > | > |
| > | > | I'll foward an e-mail to the address you gave me and thank you
again
| > for
| > | > | your patience and continued help. It's sincerely appreciated.
| > | > |
| > | > | Paige
| > | > |
| > | > | "Michael Koerner" wrote:
| > | > |
| > | > | > Meant to say the 'script.js' file and not 'fullscreen.htm'
| > | > | >
| > | > | > --
| > | > | > <>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]
| > | > | >
| > | > | >
| > | > | > | > | > | > | If you could send us a link to your online presentation so
that we
| > | > might
| > | > | > | have a look would be great. Also, If you want to send me the
| > | > | > fullscreen.htm,
| > | > | > | and the outline.htm file before you made any changes, I'd be
more
| > | > than
| > | > | > | happy to have a look at it. insert the coding for you. You can
| > send it
| > | > to
| > | > | > | 'emko at hotmail dot com' make sure that you remind me what it
is
| > | > about in
| > | > | > | the subject line.
| > | > | > |
| > | > | > | --
| > | > | > | <>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]
| > | > | > |
| > | > | > |
| > message
| > | > | > | | > | > | > || Michael I did all that - reviewed, read, recoded, resaved,
| > re-read,
| > | > | > | recoded
| > | > | > || and nothing worked
| > | > | > ||
| > | > | > || I'm guessing since I'm a total newbie to coding that I've
made
| > some
| > | > | > || placement error. But I have no idea what i've done wrong and
I'm
| > so
| > | > | > || frustrated.
| > | > | > ||
| > | > | > || I downloaded the code, checked and double checked the
phrasing,
| > used
| > | > | > | notepad
| > | > | > || and it still won't work.
| > | > | > ||
| > | > | > || I think maybe...not sure, but that i'm going wrong on how to
| > place
| > | > the
| > | > | > || FullScreen(2) coding.
| > | > | > ||
| > | > | > || I'm putting it directly after the last } of the FullScreen()
| > | > function.
| > | > | > Is
| > | > | > || that right?
| > | > | > ||
| > | > | > || Or should I simply change FullScreen() to FullScreen(2) and
| > delete
| > | > the
| > | > | > || FullScreen() code to insert the FullScreen(2) code?
| > | > | > ||
| > | > | > || I hate coding LOL - and this experience has just reinforced
that
| > | > feeling.
| > | > | > ||
| > | > | > || "Michael Koerner" wrote:
| > | > | > ||
| > | > | > || > Did you look at the link I sent, and is that what you
looking
| > to
| > | > do? If
| > | > | > | so,
| > | > | > || > there is a downloadable file in that presentation which
gives
| > you
| > | > all
| > | > | > | the
| > | > | > || > correct code.
| > | > | > || >
| > | > | > || > --
| > | > | > || > <>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]
| > | > | > || >
| > | > | > || >
in
| > | > message
| > | > | > || > | > | > | > || > | Michael - Not sure how the presentation souce code should
| > look,
| > | > but
| > | > | > | the
| > | > | > || > | source is showing only frameset commands:
| > | > | > || > |
| > | > | > || > | <html>
| > | > | > || > |
| > | > | > || > | <head>
| > | > | > || > | <meta http-equiv=Content-Type content="text/html;
| > | > | > | charset=windows-1252">
| > | > | > || > | <meta name=ProgId content=PowerPoint.Slide>
| > | > | > || > | <meta name=Generator content="Microsoft PowerPoint 11">
| > | > | > || > | <link id=Main-File rel=Main-File href="../Kohl's.htm">
| > | > | > || > | <link rel=Preview href=preview.wmf>
| > | > | > || > | <title>The New Fronteir in Wearable
Technology(tm)</title>
| > | > | > || > | <![if !ppt]><script src=script.js></script><script>
| > | > | > || > | <!--
| > | > | > || > | var gNavLoaded = gOtlNavLoaded = gOtlLoaded = false;
| > | > | > || > | function Load()
| > | > | > || > | {
| > | > | > || > | str=unescape(document.location.hash),idx=str.indexOf('#')
| > | > | > || > | if(idx>=0) str=str.substr(1);
| > | > | > || > | if(str) PPTSld.location.replace(escape(str));
| > | > | > || > | }
| > | > | > || > | //-->
| > | > | > || > | </script><![endif]>
| > | > | > || > | </head>
| > | > | > || > |
| > | > | > || > |
| > | > | > || > | <frameset rows="*,25" border=0>
| > | > | > || > | <frameset cols="25%,*" onload="Load()" id=PPTHorizAdjust
| > | > | > | framespacing=1
| > | > | > || > | frameborder=1>
| > | > | > || > | <frame src=outline.htm title="Outline" name=PPTOtl>
| > | > | > || > | <frame src=slide0001.htm title="Slide" name=PPTSld>
| > | > | > || > | </frameset>
| > | > | > || > | <frameset cols="25%,*" framespacing=1>
| > | > | > || > | <frame src=outline.htm title="Outline
| > | > | > || > | Navigation Bar" name=PPTOtlNav scrolling=no noresize>
| > | > | > || > | <frame src=outline.htm title="Slide
| > | > | > || > | Navigation Bar" name=PPTNav scrolling=no noresize>
| > | > | > || > | </frameset>
| > | > | > || > | </frameset>
| > | > | > || > | </html>
| > | > | > || > |
| > | > | > || > |
| > | > | > || > | Am I publishing it incorrectly? I following the steps on
the
| > | > site
| > | > | > you
| > | > | > || > sent
| > | > | > || > | me.
| > | > | > || > |
| > | > | > || > |
| > | > | > || > |
| > | > | > || > | "Michael Koerner" wrote:
| > | > | > || > |
| > | > | > || > | > This line is in error:
| > | > | > || > | > if( IsWin("PPTNav" ) ){ LoadNav("NavObj",UpdNav);
| > | > | > || > parent.gNavLoaded=true;
| > | > | > || > | > return; parent.FullScreen2(); return }
| > | > | > || > | >
| > | > | > || > | > It should read:
| > | > | > || > | >
| > | > | > || > | > if( IsWin("PPTOtlNav" ) ){
LoadNav("OtlNavObj",UpdOtlNav);
| > | > | > || > | > parent.gOtlNavLoaded=true; parent.FullScreen2();
return }
| > | > | > || > | >
| > | > | > || > | > I would open the outline.htm file in notepad, then copy
and
| > | > paste
| > | > | > | the
| > | > | > || > above
| > | > | > || > | > line and paste into the outline.htm file save it and
see
| > what
| > | > | > | happens.
| > | > | > || > This
| > | > | > || > | > link
| > http://www.oldfco.ca/tutorial/pptohtml_files/frame.html
| > | > will
| > | > | > | take
| > | > | > || > you
| > | > | > || > | > to an on-line
| > | > | > || > | > presentation that opens full screen so that you can
have a
| > | > look.
| > | > | > || > | >
| > | > | > || > | > --
| > | > | > || > | > <>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]
| > | > | > || > | >
| > | > | > || > | >
| > | > | > || > | > "paigeturner" <[email protected]>
wrote
| > in
| > | > | > | message
| > | > | > || > | >
| > | > | > || > | > | Mike - thanks so much for replying -- Using PPT 2003
| > | > | > || > | > |
| > | > | > || > | > | but I've still got a problem the link opens but the
| > frames
| > | > are
| > | > | > | there
| > | > | > || > and
| > | > | > || > | > the
| > | > | > || > | > | page is blank other than a blue background on the
right
| > side
| > | > | > (left
| > | > | > || > side is
| > | > | > || > | > | blank and white)
| > | > | > || > | > |
| > | > | > || > | > | I made the changes -- editing the script in
Dreamweaver
| > MX
| > | > and
| > | > | > it
| > | > | > || > looks
| > | > | > || > | > | like this:
| > | > | > || > | > |
| > | > | > || > | > | function FullScreen()
| > | > | > || > | > | {
| > | > | > || > | > | if ( PPTSld.g_animUseRuntime )
| > | > | > || > | > | PPTSld.document.body.pause();
| > | > | > || > | > | ClearMedia();
| > | > | > || > | > | var href = ( document.location.protocol == 'mhtml:')
?
| > | > | > | FULLSCR_HREF :
| > | > | > || > | > | FULLSCR_HREF+"#"+GetHrefObj(gCurSld).mSldHref;
| > | > | > || > | > | if (MHTMLPrefix != "")
| > | > | > || > | > | href = RemoveFilePrefixFromHref(href)
| > | > | > || > | > | if(PPTNav.event.ctrlKey) {
| > | > | > || > | > | var w = (window.screen.availWidth * 1.0) / 2.0
| > | > | > || > | > | var h = w * (PPTSld.g_origH * 1.0) / PPTSld.g_origW
| > | > | > || > | > | win = window.open(
| > | > | > || > | > |
| > MHTMLPrefix+href,null,"toolbar=0,resizable=1,top=0,left=0," +
| > | > | > || > "width="+ w
| > | > | > || > | > +
| > | > | > || > | > | ",height=" + h );
| > | > | > || > | > | if( win.document.body && PPTSld.g_animUseRuntime )
| > | > | > || > | > | win.document.body.PPTSldFrameset=window;
| > | > | > || > | > | }
| > | > | > || > | > | else
 
P

paigeturner

Thanks, Michael -- I really appreciate all your patience and willingness to
work with a coding noob like me :) You went above and beyond the call of duty
and I can't thank you enough for that.

Best wishes,
Paige

Michael Koerner said:
Glad to hear that it worked. I don't know about the Outline sitting behind.
I do know that it will not come up in Full Screen if you have "Block PopUps"
set. The only difference I see in the Windows XP and PowerPoint 2003, in
IE(6) you get the Microsoft Title bar, and the tool bar, which were not
there in earlier versions, you got a true FullScreen. Unless there is some
way to turn them off that I am not aware.

--
<>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]


| How clever!! it came through. I'll remember that trick in the future.
I'll
| load it on my site now and try it.
|
| Thank you, Michael
|
| RESULT:
|
| It worked !! Woot :)
|
| But I have a question -- the outline view sits behind it -- is that
normal?
| for some reason I thought it would only open in full screen and eliminate
the
| outline view entirely.
|
|
| "Michael Koerner" wrote:
|
| > Must be a setting on your account. I received/sent it just fine. I
renamed
| > the .js file to a .txt file, and re sent. Let me know if it gets
through.
| >
| > --
| > <>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]
| >
| >
| > | > | Michael - hotmail wouldn't let the script.js file through - could you
tell
| > me
| > | -- show me-- where you removed the extra } so I can replicate it.
| > |
| > | Thank you.
| > |
| > | "Michael Koerner" wrote:
| > |
| > | > Received both files. There seemed to be an extra "}" in the
script.js
| > file
| > | > made the corrections and sent them back to you. Let us know how they
| > turned
| > | > out.
| > | >
| > | > --
| > | > <>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]
| > | >
| > | >
message
| > | > | > | > | Hi Michael -
| > | > |
| > | > | We had to go with the presentation set up without navigation
(slide
| > show
| > | > | with background fill) since the client needed to provide the link
to
| > his
| > | > | client by yesterday afternoon at 5pm. Needless to say I failed
to
| > meet
| > | > my
| > | > | client's request.
| > | > |
| > | > | But for future use, I would like to forward to you my Script.js
and
| > | > | outline.html scripts (unchanged). If you could either tell me how
to
| > | > place
| > | > | the new FullScreen scripts I'd appreciate it. (or, include them on
the
| > | > page
| > | > | might be even better since I'm a real noob at this)
| > | > |
| > | > | I'll foward an e-mail to the address you gave me and thank you
again
| > for
| > | > | your patience and continued help. It's sincerely appreciated.
| > | > |
| > | > | Paige
| > | > |
| > | > | "Michael Koerner" wrote:
| > | > |
| > | > | > Meant to say the 'script.js' file and not 'fullscreen.htm'
| > | > | >
| > | > | > --
| > | > | > <>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]
| > | > | >
| > | > | >
| > | > | > | > | > | > | If you could send us a link to your online presentation so
that we
| > | > might
| > | > | > | have a look would be great. Also, If you want to send me the
| > | > | > fullscreen.htm,
| > | > | > | and the outline.htm file before you made any changes, I'd be
more
| > | > than
| > | > | > | happy to have a look at it. insert the coding for you. You can
| > send it
| > | > to
| > | > | > | 'emko at hotmail dot com' make sure that you remind me what it
is
| > | > about in
| > | > | > | the subject line.
| > | > | > |
| > | > | > | --
| > | > | > | <>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]
| > | > | > |
| > | > | > |
| > message
| > | > | > | | > | > | > || Michael I did all that - reviewed, read, recoded, resaved,
| > re-read,
| > | > | > | recoded
| > | > | > || and nothing worked
| > | > | > ||
| > | > | > || I'm guessing since I'm a total newbie to coding that I've
made
| > some
| > | > | > || placement error. But I have no idea what i've done wrong and
I'm
| > so
| > | > | > || frustrated.
| > | > | > ||
| > | > | > || I downloaded the code, checked and double checked the
phrasing,
| > used
| > | > | > | notepad
| > | > | > || and it still won't work.
| > | > | > ||
| > | > | > || I think maybe...not sure, but that i'm going wrong on how to
| > place
| > | > the
| > | > | > || FullScreen(2) coding.
| > | > | > ||
| > | > | > || I'm putting it directly after the last } of the FullScreen()
| > | > function.
| > | > | > Is
| > | > | > || that right?
| > | > | > ||
| > | > | > || Or should I simply change FullScreen() to FullScreen(2) and
| > delete
| > | > the
| > | > | > || FullScreen() code to insert the FullScreen(2) code?
| > | > | > ||
| > | > | > || I hate coding LOL - and this experience has just reinforced
that
| > | > feeling.
| > | > | > ||
| > | > | > || "Michael Koerner" wrote:
| > | > | > ||
| > | > | > || > Did you look at the link I sent, and is that what you
looking
| > to
| > | > do? If
| > | > | > | so,
| > | > | > || > there is a downloadable file in that presentation which
gives
| > you
| > | > all
| > | > | > | the
| > | > | > || > correct code.
| > | > | > || >
| > | > | > || > --
| > | > | > || > <>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]
| > | > | > || >
| > | > | > || >
in
| > | > message
| > | > | > || > | > | > | > || > | Michael - Not sure how the presentation souce code should
| > look,
| > | > but
| > | > | > | the
| > | > | > || > | source is showing only frameset commands:
| > | > | > || > |
| > | > | > || > | <html>
| > | > | > || > |
| > | > | > || > | <head>
| > | > | > || > | <meta http-equiv=Content-Type content="text/html;
| > | > | > | charset=windows-1252">
| > | > | > || > | <meta name=ProgId content=PowerPoint.Slide>
| > | > | > || > | <meta name=Generator content="Microsoft PowerPoint 11">
| > | > | > || > | <link id=Main-File rel=Main-File href="../Kohl's.htm">
| > | > | > || > | <link rel=Preview href=preview.wmf>
| > | > | > || > | <title>The New Fronteir in Wearable
Technology(tm)</title>
| > | > | > || > | <![if !ppt]><script src=script.js></script><script>
| > | > | > || > | <!--
| > | > | > || > | var gNavLoaded = gOtlNavLoaded = gOtlLoaded = false;
| > | > | > || > | function Load()
| > | > | > || > | {
| > | > | > || > | str=unescape(document.location.hash),idx=str.indexOf('#')
| > | > | > || > | if(idx>=0) str=str.substr(1);
| > | > | > || > | if(str) PPTSld.location.replace(escape(str));
| > | > | > || > | }
| > | > | > || > | //-->
| > | > | > || > | </script><![endif]>
| > | > | > || > | </head>
| > | > | > || > |
| > | > | > || > |
| > | > | > || > | <frameset rows="*,25" border=0>
| > | > | > || > | <frameset cols="25%,*" onload="Load()" id=PPTHorizAdjust
| > | > | > | framespacing=1
| > | > | > || > | frameborder=1>
| > | > | > || > | <frame src=outline.htm title="Outline" name=PPTOtl>
| > | > | > || > | <frame src=slide0001.htm title="Slide" name=PPTSld>
| > | > | > || > | </frameset>
| > | > | > || > | <frameset cols="25%,*" framespacing=1>
| > | > | > || > | <frame src=outline.htm title="Outline
| > | > | > || > | Navigation Bar" name=PPTOtlNav scrolling=no noresize>
| > | > | > || > | <frame src=outline.htm title="Slide
| > | > | > || > | Navigation Bar" name=PPTNav scrolling=no noresize>
| > | > | > || > | </frameset>
| > | > | > || > | </frameset>
| > | > | > || > | </html>
| > | > | > || > |
| > | > | > || > |
| > | > | > || > | Am I publishing it incorrectly? I following the steps on
the
| > | > site
| > | > | > you
| > | > | > || > sent
| > | > | > || > | me.
| > | > | > || > |
| > | > | > || > |
| > | > | > || > |
| > | > | > || > | "Michael Koerner" wrote:
| > | > | > || > |
| > | > | > || > | > This line is in error:
| > | > | > || > | > if( IsWin("PPTNav" ) ){ LoadNav("NavObj",UpdNav);
| > | > | > || > parent.gNavLoaded=true;
| > | > | > || > | > return; parent.FullScreen2(); return }
| > | > | > || > | >
| > | > | > || > | > It should read:
| > | > | > || > | >
| > | > | > || > | > if( IsWin("PPTOtlNav" ) ){
LoadNav("OtlNavObj",UpdOtlNav);
| > | > | > || > | > parent.gOtlNavLoaded=true; parent.FullScreen2();
return }
| > | > | > || > | >
| > | > | > || > | > I would open the outline.htm file in notepad, then copy
and
| > | > paste
| > | > | > | the
| > | > | > || > above
| > | > | > || > | > line and paste into the outline.htm file save it and
see
| > what
| > | > | > | happens.
| > | > | > || > This
| > | > | > || > | > link
 
M

Michael Koerner

Thank you very much. I'd hate to tell you how many times I have sat for
hours because I had an extra space in a piece of code. Don't hesitate to
come back if you run into more glitches with PowerPoint. Heck, come back for
a visit even if you don't have problems.

--
<>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 really appreciate all your patience and willingness
to
| work with a coding noob like me :) You went above and beyond the call of
duty
| and I can't thank you enough for that.
|
| Best wishes,
| Paige
|
| "Michael Koerner" wrote:
|
| > Glad to hear that it worked. I don't know about the Outline sitting
behind.
| > I do know that it will not come up in Full Screen if you have "Block
PopUps"
| > set. The only difference I see in the Windows XP and PowerPoint 2003, in
| > IE(6) you get the Microsoft Title bar, and the tool bar, which were not
| > there in earlier versions, you got a true FullScreen. Unless there is
some
| > way to turn them off that I am not aware.
| >
| > --
| > <>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]
| >
| >
| > | > | How clever!! it came through. I'll remember that trick in the future.
| > I'll
| > | load it on my site now and try it.
| > |
| > | Thank you, Michael
| > |
| > | RESULT:
| > |
| > | It worked !! Woot :)
| > |
| > | But I have a question -- the outline view sits behind it -- is that
| > normal?
| > | for some reason I thought it would only open in full screen and
eliminate
| > the
| > | outline view entirely.
| > |
| > |
| > | "Michael Koerner" wrote:
| > |
| > | > Must be a setting on your account. I received/sent it just fine. I
| > renamed
| > | > the .js file to a .txt file, and re sent. Let me know if it gets
| > through.
| > | >
| > | > --
| > | > <>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]
| > | >
| > | >
message
| > | > | > | > | Michael - hotmail wouldn't let the script.js file through - could
you
| > tell
| > | > me
| > | > | -- show me-- where you removed the extra } so I can replicate it.
| > | > |
| > | > | Thank you.
| > | > |
| > | > | "Michael Koerner" wrote:
| > | > |
| > | > | > Received both files. There seemed to be an extra "}" in the
| > script.js
| > | > file
| > | > | > made the corrections and sent them back to you. Let us know how
they
| > | > turned
| > | > | > out.
| > | > | >
| > | > | > --
| > | > | > <>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]
| > | > | >
| > | > | >
| > message
| > | > | > | > | > | > | Hi Michael -
| > | > | > |
| > | > | > | We had to go with the presentation set up without navigation
| > (slide
| > | > show
| > | > | > | with background fill) since the client needed to provide the
link
| > to
| > | > his
| > | > | > | client by yesterday afternoon at 5pm. Needless to say I
failed
| > to
| > | > meet
| > | > | > my
| > | > | > | client's request.
| > | > | > |
| > | > | > | But for future use, I would like to forward to you my
Script.js
| > and
| > | > | > | outline.html scripts (unchanged). If you could either tell me
how
| > to
| > | > | > place
| > | > | > | the new FullScreen scripts I'd appreciate it. (or, include
them on
| > the
| > | > | > page
| > | > | > | might be even better since I'm a real noob at this)
| > | > | > |
| > | > | > | I'll foward an e-mail to the address you gave me and thank you
| > again
| > | > for
| > | > | > | your patience and continued help. It's sincerely appreciated.
| > | > | > |
| > | > | > | Paige
| > | > | > |
| > | > | > | "Michael Koerner" wrote:
| > | > | > |
| > | > | > | > Meant to say the 'script.js' file and not 'fullscreen.htm'
| > | > | > | >
| > | > | > | > --
| > | > | > | > <>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]
| > | > | > | >
| > | > | > | >
| > | > | > | > | > | > | > | > | If you could send us a link to your online presentation so
| > that we
| > | > | > might
| > | > | > | > | have a look would be great. Also, If you want to send me
the
| > | > | > | > fullscreen.htm,
| > | > | > | > | and the outline.htm file before you made any changes, I'd
be
| > more
| > | > | > than
| > | > | > | > | happy to have a look at it. insert the coding for you. You
can
| > | > send it
| > | > | > to
| > | > | > | > | 'emko at hotmail dot com' make sure that you remind me
what it
| > is
| > | > | > about in
| > | > | > | > | the subject line.
| > | > | > | > |
| > | > | > | > | --
| > | > | > | > | <>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]
| > | > | > | > |
| > | > | > | > |
| > | > | > | > | "paigeturner" <[email protected]>
wrote in
| > | > message
| > | > | > | > | | > | > | > | > || Michael I did all that - reviewed, read, recoded,
resaved,
| > | > re-read,
| > | > | > | > | recoded
| > | > | > | > || and nothing worked
| > | > | > | > ||
| > | > | > | > || I'm guessing since I'm a total newbie to coding that I've
| > made
| > | > some
| > | > | > | > || placement error. But I have no idea what i've done wrong
and
| > I'm
| > | > so
| > | > | > | > || frustrated.
| > | > | > | > ||
| > | > | > | > || I downloaded the code, checked and double checked the
| > phrasing,
| > | > used
| > | > | > | > | notepad
| > | > | > | > || and it still won't work.
| > | > | > | > ||
| > | > | > | > || I think maybe...not sure, but that i'm going wrong on how
to
| > | > place
| > | > | > the
| > | > | > | > || FullScreen(2) coding.
| > | > | > | > ||
| > | > | > | > || I'm putting it directly after the last } of the
FullScreen()
| > | > | > function.
| > | > | > | > Is
| > | > | > | > || that right?
| > | > | > | > ||
| > | > | > | > || Or should I simply change FullScreen() to FullScreen(2)
and
| > | > delete
| > | > | > the
| > | > | > | > || FullScreen() code to insert the FullScreen(2) code?
| > | > | > | > ||
| > | > | > | > || I hate coding LOL - and this experience has just
reinforced
| > that
| > | > | > feeling.
| > | > | > | > ||
| > | > | > | > || "Michael Koerner" wrote:
| > | > | > | > ||
| > | > | > | > || > Did you look at the link I sent, and is that what you
| > looking
| > | > to
| > | > | > do? If
| > | > | > | > | so,
| > | > | > | > || > there is a downloadable file in that presentation which
| > gives
| > | > you
| > | > | > all
| > | > | > | > | the
| > | > | > | > || > correct code.
| > | > | > | > || >
| > | > | > | > || > --
| > | > | > | > || > <>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]
| > | > | > | > || >
| > | > | > | > || >
| > | > | > | > || > "paigeturner" <[email protected]>
wrote
| > in
| > | > | > message
| > | > | > | > || >
| > | > | > | > || > | Michael - Not sure how the presentation souce code
should
| > | > look,
| > | > | > but
| > | > | > | > | the
| > | > | > | > || > | source is showing only frameset commands:
| > | > | > | > || > |
| > | > | > | > || > | <html>
| > | > | > | > || > |
| > | > | > | > || > | <head>
| > | > | > | > || > | <meta http-equiv=Content-Type content="text/html;
| > | > | > | > | charset=windows-1252">
| > | > | > | > || > | <meta name=ProgId content=PowerPoint.Slide>
| > | > | > | > || > | <meta name=Generator content="Microsoft PowerPoint
11">
| > | > | > | > || > | <link id=Main-File rel=Main-File
href="../Kohl's.htm">
| > | > | > | > || > | <link rel=Preview href=preview.wmf>
| > | > | > | > || > | <title>The New Fronteir in Wearable
| > Technology(tm)</title>
| > | > | > | > || > | <![if !ppt]><script src=script.js></script><script>
| > | > | > | > || > | <!--
| > | > | > | > || > | var gNavLoaded = gOtlNavLoaded = gOtlLoaded = false;
| > | > | > | > || > | function Load()
| > | > | > | > || > | {
| > | > | > | > || > |
str=unescape(document.location.hash),idx=str.indexOf('#')
| > | > | > | > || > | if(idx>=0) str=str.substr(1);
| > | > | > | > || > | if(str) PPTSld.location.replace(escape(str));
| > | > | > | > || > | }
| > | > | > | > || > | //-->
| > | > | > | > || > | </script><![endif]>
| > | > | > | > || > | </head>
| > | > | > | > || > |
| > | > | > | > || > |
| > | > | > | > || > | <frameset rows="*,25" border=0>
| > | > | > | > || > | <frameset cols="25%,*" onload="Load()"
id=PPTHorizAdjust
| > | > | > | > | framespacing=1
| > | > | > | > || > | frameborder=1>
| > | > | > | > || > | <frame src=outline.htm title="Outline" name=PPTOtl>
| > | > | > | > || > | <frame src=slide0001.htm title="Slide" name=PPTSld>
| > | > | > | > || > | </frameset>
| > | > | > | > || > | <frameset cols="25%,*" framespacing=1>
| > | > | > | > || > | <frame src=outline.htm title="Outline
| > | > | > | > || > | Navigation Bar" name=PPTOtlNav scrolling=no noresize>
| > | > | > | > || > | <frame src=outline.htm title="Slide
| > | > | > | > || > | Navigation Bar" name=PPTNav scrolling=no noresize>
| > | > | > | > || > | </frameset>
| > | > | > | > || > | </frameset>
| > | > | > | > || > | </html>
| > | > | > | > || > |
| > | > | > | > || > |
| > | > | > | > || > | Am I publishing it incorrectly? I following the
steps on
| > the
| > | > | > site
| > | > | > | > you
| > | > | > | > || > sent
| > | > | > | > || > | me.
| > | > | > | > || > |
| > | > | > | > || > |
| > | > | > | > || > |
| > | > | > | > || > | "Michael Koerner" wrote:
| > | > | > | > || > |
| > | > | > | > || > | > This line is in error:
| > | > | > | > || > | > if( IsWin("PPTNav" ) ){ LoadNav("NavObj",UpdNav);
| > | > | > | > || > parent.gNavLoaded=true;
| > | > | > | > || > | > return; parent.FullScreen2(); return }
| > | > | > | > || > | >
| > | > | > | > || > | > It should read:
| > | > | > | > || > | >
| > | > | > | > || > | > if( IsWin("PPTOtlNav" ) ){
| > LoadNav("OtlNavObj",UpdOtlNav);
| > | > | > | > || > | > parent.gOtlNavLoaded=true; parent.FullScreen2();
| > return }
| > | > | > | > || > | >
| > | > | > | > || > | > I would open the outline.htm file in notepad, then
copy
| > and
| > | > | > paste
| > | > | > | > | the
| > | > | > | > || > above
| > | > | > | > || > | > line and paste into the outline.htm file save it
and
| > see
| > | > what
| > | > | > | > | happens.
| > | > | > | > || > This
| > | > | > | > || > | > link
 
P

Paul Cahoon

Michael,

I looked at the presentation you sent in this post. I also clicked on the
Slide Show button, which takes me to the slide show. I couldn't seem to get
the arrow buttons to work at the bottom. I want to do something like that in
my presentation (except I want them to work). Can you give me any help on
this?

Thanks

Michael Koerner said:
This line is in error:
if( IsWin("PPTNav" ) ){ LoadNav("NavObj",UpdNav); parent.gNavLoaded=true;
return; parent.FullScreen2(); return }

It should read:

if( IsWin("PPTOtlNav" ) ){ LoadNav("OtlNavObj",UpdOtlNav);
parent.gOtlNavLoaded=true; parent.FullScreen2(); return }

I would open the outline.htm file in notepad, then copy and paste the above
line and paste into the outline.htm file save it and see what happens. This
link http://www.oldfco.ca/tutorial/pptohtml_files/frame.html will take you
to an on-line
presentation that opens full screen so that you can have a look.

--
<>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]


| Mike - thanks so much for replying -- Using PPT 2003
|
| but I've still got a problem the link opens but the frames are there and
the
| page is blank other than a blue background on the right side (left side is
| blank and white)
|
| I made the changes -- editing the script in Dreamweaver MX and it looks
| like this:
|
| function FullScreen()
| {
| if ( PPTSld.g_animUseRuntime )
| PPTSld.document.body.pause();
| ClearMedia();
| var href = ( document.location.protocol == 'mhtml:') ? FULLSCR_HREF :
| FULLSCR_HREF+"#"+GetHrefObj(gCurSld).mSldHref;
| if (MHTMLPrefix != "")
| href = RemoveFilePrefixFromHref(href)
| if(PPTNav.event.ctrlKey) {
| var w = (window.screen.availWidth * 1.0) / 2.0
| var h = w * (PPTSld.g_origH * 1.0) / PPTSld.g_origW
| win = window.open(
| MHTMLPrefix+href,null,"toolbar=0,resizable=1,top=0,left=0," + "width="+ w
+
| ",height=" + h );
| if( win.document.body && PPTSld.g_animUseRuntime )
| win.document.body.PPTSldFrameset=window;
| }
| else
| {
| win = window.open( MHTMLPrefix+href,null,"fullscreen=yes" );
| if( win.document.body && PPTSld.g_animUseRuntime )
| win.document.body.PPTSldFrameset=window;
| }
|
| 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;
| }
|
| function ToggleVNarration()
| {
|
|
| I then went into Outline and edited it in Notepad and it looks like this:
|
|
|
| function Load()
| {
| if( IsWin("PPTOtl" ) ){ LoadOtl(); parent.gOtlLoaded=true; return }
| if( g_supportsPPTHTML ) {
| if( IsWin("PPTNav" ) ){ LoadNav("NavObj",UpdNav); parent.gNavLoaded=true;
| return; parent.FullScreen2(); return }
|
|
| {
| function Upd(){ if( IsWin("PPTNav") ) LoadNav("NavObj",UpdNav) }
|
|
| Not sure what I did wrong but I know it was something dumb -- i don't have
| much java scripting experience (in fact extremely little) so I need a
really
| java script for dummies response to how to correct this.
|
| Any ideas?
|
| "Michael Koerner" wrote:
|
| > Without knowing your version of PowerPoint, I'll give you two options.
| > Make PowerPoint 2000 HTML open full screen
| > http://www.rdpslides.com/pptfaq/FAQ00148.htm
| >
| > Making PowerPoint 2002 and 2003 HTML open full screen
| > http://www.rdpslides.com/pptfaq/FAQ00428.htm
| >
| >
| > --
| > <>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]
| >
| >
| > | > | My client doesn't want the side color fills that sit behind the slide
show
| > | images in our online presentation. Is there a way to eliminate them?
| > |
| > |
| >
| >
| >
 
M

Michael Koerner

I don't know why the arrows do not work for you. Did the presentation open
in the Fullscreen mode on your computer? If not see if you have popups
blocked, as this may be the reason why the Next and Last arrows are not
functioning on your system. I have tried this on numerous computers and
different browser versions and they all worked just fine.

--
<>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]


| Michael,
|
| I looked at the presentation you sent in this post. I also clicked on the
| Slide Show button, which takes me to the slide show. I couldn't seem to
get
| the arrow buttons to work at the bottom. I want to do something like that
in
| my presentation (except I want them to work). Can you give me any help on
| this?
|
| Thanks
|
| "Michael Koerner" wrote:
|
| > This line is in error:
| > if( IsWin("PPTNav" ) ){ LoadNav("NavObj",UpdNav);
parent.gNavLoaded=true;
| > return; parent.FullScreen2(); return }
| >
| > It should read:
| >
| > if( IsWin("PPTOtlNav" ) ){ LoadNav("OtlNavObj",UpdOtlNav);
| > parent.gOtlNavLoaded=true; parent.FullScreen2(); return }
| >
| > I would open the outline.htm file in notepad, then copy and paste the
above
| > line and paste into the outline.htm file save it and see what happens.
This
| > link http://www.oldfco.ca/tutorial/pptohtml_files/frame.html will take
you
| > to an on-line
| > presentation that opens full screen so that you can have a look.
| >
| > --
| > <>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]
| >
| >
| > | > | Mike - thanks so much for replying -- Using PPT 2003
| > |
| > | but I've still got a problem the link opens but the frames are there
and
| > the
| > | page is blank other than a blue background on the right side (left
side is
| > | blank and white)
| > |
| > | I made the changes -- editing the script in Dreamweaver MX and it
looks
| > | like this:
| > |
| > | function FullScreen()
| > | {
| > | if ( PPTSld.g_animUseRuntime )
| > | PPTSld.document.body.pause();
| > | ClearMedia();
| > | var href = ( document.location.protocol == 'mhtml:') ? FULLSCR_HREF :
| > | FULLSCR_HREF+"#"+GetHrefObj(gCurSld).mSldHref;
| > | if (MHTMLPrefix != "")
| > | href = RemoveFilePrefixFromHref(href)
| > | if(PPTNav.event.ctrlKey) {
| > | var w = (window.screen.availWidth * 1.0) / 2.0
| > | var h = w * (PPTSld.g_origH * 1.0) / PPTSld.g_origW
| > | win = window.open(
| > | MHTMLPrefix+href,null,"toolbar=0,resizable=1,top=0,left=0," +
"width="+ w
| > +
| > | ",height=" + h );
| > | if( win.document.body && PPTSld.g_animUseRuntime )
| > | win.document.body.PPTSldFrameset=window;
| > | }
| > | else
| > | {
| > | win = window.open( MHTMLPrefix+href,null,"fullscreen=yes" );
| > | if( win.document.body && PPTSld.g_animUseRuntime )
| > | win.document.body.PPTSldFrameset=window;
| > | }
| > |
| > | 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;
| > | }
| > |
| > | function ToggleVNarration()
| > | {
| > |
| > |
| > | I then went into Outline and edited it in Notepad and it looks like
this:
| > |
| > |
| > |
| > | function Load()
| > | {
| > | if( IsWin("PPTOtl" ) ){ LoadOtl(); parent.gOtlLoaded=true; return }
| > | if( g_supportsPPTHTML ) {
| > | if( IsWin("PPTNav" ) ){ LoadNav("NavObj",UpdNav);
parent.gNavLoaded=true;
| > | return; parent.FullScreen2(); return }
| > |
| > |
| > | {
| > | function Upd(){ if( IsWin("PPTNav") ) LoadNav("NavObj",UpdNav) }
| > |
| > |
| > | Not sure what I did wrong but I know it was something dumb -- i don't
have
| > | much java scripting experience (in fact extremely little) so I need a
| > really
| > | java script for dummies response to how to correct this.
| > |
| > | Any ideas?
| > |
| > | "Michael Koerner" wrote:
| > |
| > | > Without knowing your version of PowerPoint, I'll give you two
options.
| > | > Make PowerPoint 2000 HTML open full screen
| > | > http://www.rdpslides.com/pptfaq/FAQ00148.htm
| > | >
| > | > Making PowerPoint 2002 and 2003 HTML open full screen
| > | > http://www.rdpslides.com/pptfaq/FAQ00428.htm
| > | >
| > | >
| > | > --
| > | > <>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]
| > | >
| > | >
message
| > | > | > | > | My client doesn't want the side color fills that sit behind the
slide
| > show
| > | > | images in our online presentation. Is there a way to eliminate
them?
| > | > |
| > | > |
| > | >
| > | >
| > | >
| >
| >
| >
| >
 
Top