Image Export converts PowerPoint slides to high-quality images.
PPT2HTML exports HTML even from PowerPoint 2010 and 2013, gives you full control of PowerPoint HTML output, helps meet Section 508 accessibility requirements
Merge Excel data into PowerPoint presentations to create certificates, awards presentations, personalized presentations and more
Resize your presentations quickly and without distortion
Language Selector switches the text in your presentation from one language to another
FixLinks prevents broken links when you distribute PowerPoint presentations
Shape Styles brings styles to PowerPoint. Apply complex formatting with a single click.
Slide sorter displays slides from right to left
Problem
In Slide Sorter view, slide thumbnails are displayed from right to left rather than from left to right as you might expect.
In Normal view, the slide thumbnails are on the right side of the screen and the text is right justified in Outline view.
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.
Click the red X in the upper right of the VBA editor window to close it
Breathe a sigh of relief. Your presentation is fixed.
If you prefer a macro that you can re-use, this code 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
Slide sorter displays slides from right to left
http://www.pptfaq.com/FAQ00870_Slide_sorter_displays_slides_from_right_to_left.htm
Last update 14 November, 2016
Created: