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.
Stacking a selection of shapes
Problem
You'd like a quick way to "stack" the shapes you've selected. That is, to align them one above the other so they stack up like bricks or building blocks, one above the other with no space in between them.
Solution
This little macro will do the job for you. Select the shapes you want to stack before running it.
Sub StackEmDanO()
Dim x As Long
With ActiveWindow.Selection.ShapeRange
For x = 1 To .Count - 1
.Item(x + 1).Top = .Item(x).Top + .Item(x).height
Next
End With
End Sub