Microsoft Office Forums

Go Back   Microsoft Office Forums > >

Reply
 
Thread Tools Display Modes
  #1  
Old 07-29-2015, 07:29 PM
AnthonyB AnthonyB is offline Change 'Create Handouts' behaviour Windows 8 Change 'Create Handouts' behaviour Office 2013
Novice
Change 'Create Handouts' behaviour
 
Join Date: Jul 2015
Posts: 2
AnthonyB is on a distinguished road
Default Change 'Create Handouts' behaviour

Hi,



Can anyone tell me if it is possible to change the behaviour of "File | Create Handouts" in PowerPoint? Basically when I export my slides into Word as a handout, I want to be able to read the title of the slide and have that text written underneath the embedded slides in Word.

Any guidance is appreciated.

Cheers

Anthony
Reply With Quote
  #2  
Old 07-30-2015, 01:49 AM
JohnWilson JohnWilson is offline Change 'Create Handouts' behaviour Windows 7 64bit Change 'Create Handouts' behaviour Office 2010 32bit
Programmer
 
Join Date: Nov 2008
Location: UK
Posts: 1,912
JohnWilson has a spectacular aura aboutJohnWilson has a spectacular aura about
Default

You cannot change the behaviour as such but you might be able to use the Notes below slides option and have a macro in PowerPoint copy the required text to the notes pane for each slide. (Not clear whether you want JUST the title ot the title and slide text.)

It might also be possible to create the complete handout using code but this wouldn't be a trivial task.
__________________
Microsoft PowerPoint MVP 2007-2023
Free Advanced PowerPoint Tips and Tutorials
Reply With Quote
  #3  
Old 07-30-2015, 09:44 AM
AnthonyB AnthonyB is offline Change 'Create Handouts' behaviour Windows 8 Change 'Create Handouts' behaviour Office 2013
Novice
Change 'Create Handouts' behaviour
 
Join Date: Jul 2015
Posts: 2
AnthonyB is on a distinguished road
Thumbs up

Thanks for the tips John. Pulling the title off the slide and putting in into the notes before sending to Word would work for me.
Reply With Quote
  #4  
Old 07-30-2015, 11:18 AM
JohnWilson JohnWilson is offline Change 'Create Handouts' behaviour Windows 7 64bit Change 'Create Handouts' behaviour Office 2010 32bit
Programmer
 
Join Date: Nov 2008
Location: UK
Posts: 1,912
JohnWilson has a spectacular aura aboutJohnWilson has a spectacular aura about
Default

This should do it I think (top of head code - not tested.) NOTE as written existing notes will be deleted.
Code:
Sub copyText_to_Notes()
Dim osld As Slide
Dim oshp As Shape
Dim strTitle As String
For Each osld In ActivePresentation.Slides
If osld.Shapes.HasTitle Then
strTitle = osld.Shapes.Title.TextFrame.TextRange
End If
For Each oshp In osld.NotesPage.Shapes
If oshp.Type = msoPlaceholder Then
If oshp.PlaceholderFormat.Type = 2 Then
oshp.TextFrame.TextRange = strTitle
End If
End If
Next oshp
Next osld
End Sub
To use Alt f11 to open code editor
INSERT > Module
Paste in the code
Run (f5)
__________________
Microsoft PowerPoint MVP 2007-2023
Free Advanced PowerPoint Tips and Tutorials
Reply With Quote
Reply



Similar Threads
Thread Thread Starter Forum Replies Last Post
Print handouts with notes I entered kennydude PowerPoint 2 10-16-2012 05:24 AM
PPTX > PDF & hyperlink behaviour Ordained PowerPoint 0 06-11-2012 05:31 PM
Change 'Create Handouts' behaviour Selective handouts fozzie PowerPoint 2 03-03-2012 12:45 PM
Own starting page number when printing handouts ffmarais PowerPoint 1 06-27-2011 12:54 AM
Odd behaviour in formatted cells furface00 Excel 3 03-11-2011 08:02 AM

Other Forums: Access Forums

All times are GMT -7. The time now is 02:43 PM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.
Search Engine Optimisation provided by DragonByte SEO (Lite) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
MSOfficeForums.com is not affiliated with Microsoft