Consulting

Results 1 to 4 of 4

Thread: go to next slide automatically

  1. #1

    go to next slide automatically

    Hi,
    I'm running a power point show.
    I'm at slide #35. A mouse pointer like "Hand symbol" is available which is hyperlinked to next slide #36 upon clicking it.
    Now, I'm at slide #36. A "Hand symbol" like mouse pointer is available which is hyperlinked to next slide #37 upon clicking it.
    Similarly # 37 has hand symbol, hyperlinked to #38 upon clicking it.
    The above 3 operations have to be executed by calling a macro automatically when the slide #35 is being activated.

    please help

  2. #2
    VBAX Master
    Joined
    Feb 2007
    Posts
    2,094
    Location
    Hi

    Ive read it a couple of times but I still struggle to understand what you want to do. Maybe you could have another go at explaining?
    John Wilson
    Microsoft PowerPoint MVP
    Amazing Free PowerPoint Tutorials
    http://www.pptalchemy.co.uk/powerpoi...tutorials.html

  3. #3

    Re:

    Hi,
    Please find the attached ppt where i gave further explanation of what i want..
    Revert if it still confuse you..

  4. #4
    VBAX Master
    Joined
    Feb 2007
    Posts
    2,094
    Location
    I'm still not sure I've understood what you need. This code would add a hand to the 3 slides after the one when it is invoked (easily changed0 and give it an action of next slide on click.
    Sub hand()
    Dim n As Integer
    Dim i As Integer
    Dim otxt As Shape
    'set refn to current slide
    n = ActivePresentation.SlideShowWindow.View.CurrentShowPosition
    'For next 3 slides
        For i = 1 To 3
            'add hand
            Set otxt = ActivePresentation.Slides(n + i) _
           .Shapes.AddTextbox(msoTextOrientationHorizontal, 300, 200, 50, 50)
           With otxt.TextFrame.TextRange
                .InsertSymbol "Wingdings 2", 74
                .Font.Size = 72
                'set actions
                With .ActionSettings(ppMouseClick)
                    .Action = ppActionNextSlide
            End With
       End With
    Next
    End Sub
    Last edited by Aussiebear; 04-28-2023 at 02:25 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
  •