The default action for the Next Slide action button is to advance to the
next slide (whatever the number of the next slide is). It does not care
where you are in the presentation, it just advances to the next slide. So,
the answer is Current location +1.
This will show you the address and sub-address of the NextSlide action
buttons on the second slide.
Sub OffTheCuff()
Dim oshp As Shape
For Each oshp In ActivePresentation.Slides(2).Shapes
If oshp.Type = 1 Then
If oshp.AutoShapeType = 130 Then
With oshp.ActionSettings(ppMouseClick).Hyperlink
MsgBox .Address & vbCr & .SubAddress
End With
End If
End If
Next oshp
End Sub

Signature
Bill Dilworth
A proud member of the Microsoft PPT MVP Team
Users helping fellow users.
http://billdilworth.mvps.org
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
vestprog2@ Please read the PowerPoint FAQ pages.
yahoo. They answer most of our questions.
com www.pptfaq.com
.
> Hello,
>
[quoted text clipped - 39 lines]
>
> End Sub
Geoff Cox - 19 Aug 2006 00:09 GMT
>The default action for the Next Slide action button is to advance to the
>next slide (whatever the number of the next slide is). It does not care
[quoted text clipped - 16 lines]
> Next oshp
>End Sub
Many thanks Bill.
Cheers
Geoff