View Single Post
 
Old 08-05-2013, 11:18 PM
JohnWilson JohnWilson is offline Windows 7 64bit Office 2010 32bit
Programmer
 
Join Date: Nov 2008
Location: UK
Posts: 1,914
JohnWilson has a spectacular aura aboutJohnWilson has a spectacular aura about
Default

It can be done but it is really only available if you have a language that reads Right to Left. I presume you don't!

You can enable this in code though.

Read here if you don't know how to use code (It's for earlier versions so you will need to adapt.)
In 2013 ALT f11 opens the Code editor
Insert > Module
Copy and paste in the code below
Put the cursor in the code and f5 to run it

You should get a printout with lines to left.


Sub leftnotes()
With ActivePresentation
.LayoutDirection = ppDirectionRightToLeft
With .PrintOptions
.FrameSlides = True
.OutputType = ppPrintOutputThreeSlideHandouts
End With
.PrintOut
.LayoutDirection = ppDirectionLeftToRight
End With
End Sub
__________________
Microsoft PowerPoint MVP 2007-2023
Free Advanced PowerPoint Tips and Tutorials
Reply With Quote