Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
Home
DiscussionsAccessExcelInfoPathOutlookPowerPointPublisherWord
DirectoryUser Groups
Related Topics
Outlook ExpressInternet ExplorerWindowsMS Server ProductsMore Topics ...

MS Office Forum / General PowerPoint Questions / June 2006

Tip: Looking for answers? Try searching our database.

PP PPS to HTML question & help

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
IDAssociatesLLC - 29 Jun 2006 04:08 GMT
I have a PP presentation without text that I would like to add to a web
site.  I need to have fade, no sound, and full screen with a timed exposure
to each slide, hopefully variable as in PP.  I have tried every conceivable
free download and they all seem to have a funky appearance or their own
logo.  This is a corporate site for us so I just need to have the slides
roll one after another without any adjustments.  Maybe just hold at the end
or loop but thats about it.  This is full screen without the list of slides
at the side.

I would sincerely appreciate any and all direction anyone could offer.  I
dont want to learn Front Page just to try to recreate a PP show.
Steve Rindsberg - 29 Jun 2006 19:23 GMT
> I have a PP presentation without text that I would like to add to a web
> site.  I need to have fade, no sound, and full screen with a timed exposure
[quoted text clipped - 4 lines]
> or loop but thats about it.  This is full screen without the list of slides
> at the side.

Visit http://ppt2html.pptools.com

If I understand your needs correctly, our PPT2HTML addin will do what you need.
Full-screen is a bit more complicated than it might appear at first, as it's
impossible to predict how large a given user's screen might be, but it should
be possible to fill the screen with a background color and "float" the slide
image within that.  Fade should be possible in IE, if memory serves; not sure
of other browsers.

In any case, have a look at the free demo then if you like, give me a shout at
steve at-sign pptools dot com for a bit of a push-start.  Sometimes it takes
that and we're happy to help out.

-----------------------------------------
Steve Rindsberg, PPT MVP
PPT FAQ:  www.pptfaq.com
PPTools:  www.pptools.com
================================================
IDAssociatesLLC - 29 Jun 2006 20:41 GMT
I did try the software and if my memory serves me correctly ( I am running
1280 x 1024 ) I had a large frame right and left.  Also the fade between
slides dropped out.  I couldn't find a way to resole this although I did
like the simplicity of it.

>> I have a PP presentation without text that I would like to add to a web
>> site.  I need to have fade, no sound, and full screen with a timed
[quoted text clipped - 34 lines]
> PPTools:  www.pptools.com
> ================================================
Steve Rindsberg - 30 Jun 2006 03:57 GMT
> I did try the software and if my memory serves me correctly ( I am running
> 1280 x 1024 ) I had a large frame right and left.  Also the fade between
> slides dropped out.  I couldn't find a way to resole this although I did
> like the simplicity of it.

You can change the size of the image that it creates ... the default is
relatively small so that it doesn't overwhelm users of smaller monitors.  Set
that in the preferences dialog.  Try, say, 1200 pixels and experiment from
there.

This explains how to pick up the transition effects and times:

AutoAdvancing Presentations, Slide Transitions
http://www.rdpslides.com/pptools/ppt2html/FAQ00166.htm

> >> I have a PP presentation without text that I would like to add to a web
> >> site.  I need to have fade, no sound, and full screen with a timed
[quoted text clipped - 34 lines]
> > PPTools:  www.pptools.com
> > ================================================

-----------------------------------------
Steve Rindsberg, PPT MVP
PPT FAQ:  www.pptfaq.com
PPTools:  www.pptools.com
================================================
IDAssociatesLLC - 30 Jun 2006 05:12 GMT
 I got the size increased but the code for the auto advancing didnt work no
matter what.  I am at 4Seconds for some and on second for others .  No go.
>> I did try the software and if my memory serves me correctly ( I am
>> running
[quoted text clipped - 63 lines]
> PPTools:  www.pptools.com
> ================================================
Gus Collot - 30 Jun 2006 14:58 GMT
1. First identify the name of each HTML slide...do that by right clicking
"properties" on each slide.

2. Place in each slide the following code in the <HEAD>
section :

<META http-equiv="refresh" content="3; URL=nextslide.htm">
<META http-equiv="Page-Enter" content="blendTrans(Duration=3)">
<META http-equiv="Page-Exit" content="blendTrans(Duration=3)">

Change the transition time ( 3 secs in this example ) to whatever you wish.
The "blendTrans" produces the fade-in, fade-out effect in IE Explorer.

3. Regarding the automatic "open full screen" approach, it is usually done
with a "window.open" tag, but then it must be remembered that this method is
usually cancelled with popup window blockers in most browsers, so there's
the risk of your pres being closed. I'd advise you to make the presentation
show up in a new window ( target="_blank" ) and include instructions for
resizing pressing the F11 key.

Hope I've helped....

Gus
-----------------------------------------
>   I got the size increased but the code for the auto advancing didnt work no
> matter what.  I am at 4Seconds for some and on second for others .  No go.
[quoted text clipped - 65 lines]
> > PPTools:  www.pptools.com
> > ================================================
IDAssociatesLLC - 30 Jun 2006 16:16 GMT
Thank you !  It looks great and I will tackle the fullscreenthing next after
I figure out how to specify which slide goes next.  Very sorry to be a
bother but although I can design anything in CAD Front Page is totally new.
Appreciate your help.

> 1. First identify the name of each HTML slide...do that by right clicking
> "properties" on each slide.
[quoted text clipped - 105 lines]
>> > PPTools:  www.pptools.com
>> > ================================================
Steve Rindsberg - 30 Jun 2006 16:29 GMT
Thanks, Gus.

> 1. First identify the name of each HTML slide...do that by right clicking
> "properties" on each slide.
[quoted text clipped - 5 lines]
> <META http-equiv="Page-Enter" content="blendTrans(Duration=3)">
> <META http-equiv="Page-Exit" content="blendTrans(Duration=3)">

Or with PPT2HTML, you could put this in the template so you don't have to edit
each and every slide's HTML. One edit would do it.  Substitute this for the
first line:

<META http-equiv="refresh" content="3; URL=:Nav.Next:">


> Change the transition time ( 3 secs in this example ) to whatever you wish.
> The "blendTrans" produces the fade-in, fade-out effect in IE Explorer.
[quoted text clipped - 87 lines]
> > > PPTools:  www.pptools.com
> > > ================================================

-----------------------------------------
Steve Rindsberg, PPT MVP
PPT FAQ:  www.pptfaq.com
PPTools:  www.pptools.com
================================================
Steve Rindsberg - 30 Jun 2006 16:29 GMT
> I got the size increased but the code for the auto advancing didnt work no
> matter what.  I am at 4Seconds for some and on second for others .  No go.

Have a look at Gus' suggestion and my reply.  If that still doesn't get you
there, again, feel free to email me.

steve at-sign pptools.com

-----------------------------------------
Steve Rindsberg, PPT MVP
PPT FAQ:  www.pptfaq.com
PPTools:  www.pptools.com
================================================

Rate this thread:






 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.