Results 1 to 3 of 3

Thread: Add chevron to a slide

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #2
    VBAX Master
    Joined
    Feb 2007
    Posts
    2,096
    Location
    Try this (adjust the adjustment number to suit (a number up to 1)

    Sub rad_est()
    Dim oshp As Shape
    Dim osld As Slide
    Set osld = ActivePresentation.Slides(1)
    Set oshp = osld.Shapes.AddShape(Type:=msoShapeChevron, _
    Top:=144, Left:=144, Width:=72, Height:=72)
    oshp.Adjustments(1) = 0.3
    End Sub

    And I know the "myDocument" comes straight from Microsoft but a Slide is NOT a Document!
    Last edited by John Wilson; 01-07-2013 at 11:29 AM.
    John Wilson
    Microsoft PowerPoint MVP
    Amazing Free PowerPoint Tutorials
    http://www.pptalchemy.co.uk/powerpoi...tutorials.html

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •