Question

I can do a few things with PowerPoint, but I need to learn more about the following:

  • Adding a new textframe and text, and placing it where I want to on the slide.
  • How to use VB to control the master slide.
  • Add text to the notes field.

What resources and tutorials are available to help me with those items?

Was it helpful?

Solution

OTHER TIPS

To find names and such Select a shape and step through this macro and highlight or watch the variables for values

Sub Shape_name()

Let x = ActiveWindow.Selection.ShapeRange(1).Name

Let y = ActiveWindow.Selection.ShapeRange(1).Type

Let Z = ActiveWindow.Selection.ShapeRange(1).Id

Let a = ActiveWindow.Selection.ShapeRange(1).OLEFormat.ProgID

Let b = ActiveWindow.Selection.ShapeRange(1).Height

Let c = ActiveWindow.Selection.ShapeRange(1).Width

Let D = ActiveWindow.Selection.ShapeRange(1).Left

Let E = ActiveWindow.Selection.ShapeRange(1).Top

End Sub

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top