Supercharge your PowerPoint productivity with

Supercharge your PPT Productivity with PPTools - Click here to learn more.

Tell me about PPTools

Slide sorter displays slides from right to left


PPTools
Shape Styles brings the power of styles to PowerPoint. Apply complex formatting with a single click
Merge Excel, CSV or tab-delimited data into PowerPoint presentations to create certificates, awards presentations, personalized presentations and more
FixLinks prevents broken links when you distribute PowerPoint presentations
Optimizer saves disk space and bandwidth, shrinks your PowerPoint presentations to the right size for email, screenshow or printing
PPT2HTML gives you full control of PowerPoint HTML output, helps meet Section 508 accessibility requirements
Prep4PDF preserves interactivity in PowerPoint presentations when you convert to PDF
Image Export converts PowerPoint slides to JPG, PNG, GIF, WMF and more

Problem

  • In Slide Sorter view, slide thumbnails are displayed from right to left rather than from left to right as you might expect.
  • When you print handouts, the slides are ordered from right to left instead of left to right

Cause

The presentation is set for Right-to-Left layout direction rather than Left-to-Right. This can happen when the presentation was created on a computer or PPT version set to use Hebrew, Arabic or some other Right-to-Left language.

Thanks to PPT MVP John Wilson for helping to track this one down and providing test files to work with.

Solution

This macro will switch the layout direction each time you run it. If the presentation is Left-to-Right, it makes it Right-to-Left and vice versa.

Sub ToggleDirection()

    If ActivePresentation.LayoutDirection = ppDirectionMixed Then
        MsgBox "Presentation has mixed layout direction; cannot change"
        Exit Sub
    End If

    If ActivePresentation.LayoutDirection = ppDirectionRightToLeft Then
        MsgBox "Presentation was Right to Left" & vbCrLf & "Converting it to Left to Right"
        ActivePresentation.LayoutDirection = ppDirectionLeftToRight
    Else
        MsgBox "Presentation was Left to Right" & vbCrLf & "Converting it to Right to Left"
        ActivePresentation.LayoutDirection = ppDirectionRightToLeft
    End If


End Sub

See How do I use VBA code in PowerPoint? to learn how to use this example code.


Page copy protected against web site content infringement by Copyscape Contents © 1995 - 2008 Stephen Rindsberg, Rindsberg Photography, Inc. and members of the MS PowerPoint MVP team. You may link to this page but any form of unauthorized reproduction of this page's contents is expressly forbidden.

Español    Deutsch    Français    Português    Italiano    Nederlands    Greek    Japanese    Korean    Chinese



Supercharge your PPT Productivity with PPTools


content authoring & site maintenance by
Friday, the automatic faq maker (logo)
Friday - The Automatic FAQ Maker

Slide sorter displays slides from right to left
http://www.pptfaq.com/FAQ00870.htm
Last update 11 June, 2007