White frame between slides in ppt converted to html

J

Juan Calcagno

I am converting an ppt file into html using Automation,
something like this:

item(1).SaveAs(...

the result I get when played in IE is a html ppt that shows a white
screen for a second between slides, which I don't want.

What's the equivalent to use in PPT object model to resemble
FILE-SAVEASWEBPAGE ?
(this option run from powerpoint, generates it the right way without
white screen separator between slides)

Thanks.
Juan Calcagno
 
J

Juan Calcagno

Juan said:
I am converting an ppt file into html using Automation,
something like this:

item(1).SaveAs(...

the result I get when played in IE is a html ppt that shows a white
screen for a second between slides, which I don't want.

What's the equivalent to use in PPT object model to resemble
FILE-SAVEASWEBPAGE ?
(this option run from powerpoint, generates it the right way without
white screen separator between slides)

Thanks.
Juan Calcagno

I found the solution, the third parameter must be Zero (or msoFalse).
ActivePresentation.SaveAs
FileName:="C:\PPt\juanSaveAsWebPageFromPPTMenu.htm",
FileFormat:=ppSaveAsHTML, EmbedTrueTypeFonts:=msoFalse

Recorded a macro where I performed manually what I wanted to do from
automation, then I got the solution...
 

Ask a Question

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

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

Ask a Question

Top