![]() |
|
#1
|
|||
|
|||
![]()
This might give you a start (assumes you are looking at Title text)
Code:
Sub exporter() Dim osld As Slide Dim strFolder As String Dim strName As String On Error Resume Next strFolder = Environ("USERPROFILE") & "\Desktop\Slides\" MkDir strFolder For Each osld In ActivePresentation.Slides If osld.Shapes.HasTitle Then If osld.Shapes.Title.TextFrame2.HasText Then strName = osld.Shapes.Title.TextFrame2.TextRange strName = Replace(strName, " ", "-") Else strName = "Slide_" & CStr(osld.SlideIndex) End If Else strName = "Slide_" & CStr(osld.SlideIndex) End If Call osld.Export(strFolder & strName & ".jpg", "JPG") Next osld End Sub Last edited by JohnWilson; 04-25-2018 at 07:00 AM. |
#2
|
|||
|
|||
![]()
Thank you very much for such a prompt response. This is brilliant; gives me a really good starting point. Thanks again.
|
![]() |
Tags |
jpg, save text, text |
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
Editable text box in master slide not appearing once closing master slide mode | tparnicott | PowerPoint | 1 | 06-17-2016 04:13 AM |
![]() |
elfman12 | PowerPoint | 3 | 03-08-2013 12:27 AM |
![]() |
Thinker | PowerPoint | 5 | 07-26-2012 11:59 PM |
![]() |
lewis.mulhollen | PowerPoint | 1 | 12-17-2011 03:17 AM |
PP 2010 .avi file plays during slide show, but causes the slide show to loop to begin | VictorS | PowerPoint | 0 | 10-16-2010 10:23 AM |