Results 1 to 12 of 12

Thread: Solved: Tags or Names

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #12
    VBAX Master
    Joined
    Feb 2007
    Posts
    2,096
    Location
    We don't have any Andy. We do have a simple homegrown add in for adding tags to either a selected shape or a range of shapes and a similar one for tagging slides but its pretty basic just based on
    Dim oShpR As ShapeRange'or sliderange
    Set oShpR = ActiveWindow.Selection.ShapeRange 'or sliderange
    For i = 1 To oShpR.Count
        Set oshp = oShpR(i)
        oshp.Tags.Add strTName, strTVal
    Next
    I'd be interested in anything you produce though!
    Last edited by Aussiebear; 04-28-2023 at 02:23 AM. Reason: Adjusted the code tags
    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
  •