I have found many example scripts which should work e.g.
Sub DeleteLinks()
Dim oSl As Slide
Dim x As Long
For Each oSl In ActivePresentation.Slides
For x = oSl.Hyperlinks.Count To 1 Step -1
oSl.Hyperlinks(x).Delete
Next
Next
End Sub
However when I try to run this on Powerpoint on Mac it gives me this:
Compile Error: Method or data member not found
Does this mean this functionality doesn't exist in Mac PPT VBA?
John SR Wilson over on the Microsoft Answers Forum found a way to workaround this so I decided to post it back here in case anyone was wondering
All credit to John SR Wilson!