Consulting

Results 1 to 3 of 3

Thread: Copy shapes using hyperlink

  1. #1

    Copy shapes using hyperlink

    Hey guys... Greetings from Portugal...

    I have a .PPT file with several slides. In each slide there are 4 diferent shapes, and all of those shapes have the same hyperlink that leads to the last slide (this one has no shapes, it's totally blank). What I need is a code that, when I click in a specific shape, it copys this specific shape to the last slide.

    Any ideias? Thanks...

  2. #2
    VBAX Master
    Joined
    Feb 2007
    Posts
    2,093
    Location
    Try adding this code to a module.

    Give every shape that you want to click an action of Run macro "copyme"

    [VBA]Sub copyme(oshp As Shape)
    oshp.Copy
    With ActivePresentation.Slides
    .Item(.Count).Shapes.Paste
    End With
    End Sub[/VBA]
    John Wilson
    Microsoft PowerPoint MVP
    Amazing Free PowerPoint Tutorials
    http://www.pptalchemy.co.uk/powerpoi...tutorials.html

  3. #3
    Great minds think alike... =) A solve my question yesterday with your ideia... Thanks any way

Posting Permissions

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