remove Hyper Links - PPT 2007
Author | Message |
Hi,
|
In case you are familiar with Visual basic macros you may use something like this: Code: Sub RemoveHyperlinks() For i = 1 To ActivePresentation.Slides.Count Dim sld As Slide Set sld = ActivePresentation.Slides(i) For j = sld.Hyperlinks.Count To 1 Step -1 Dim h As Hyperlink Set h = sld.Hyperlinks(j) h.Delete Next j Next i End Sub This macro, however, does not remove hyperlinks which are applied to a part of the text (for example to one of several paragraphs). However, they can also be removed if you improve the macro a bit.
|
||||||
|
Who is online | |
---|---|
![]() |
In total there are 14 users online :: 0 registered, 0 hidden and 14 guests (based on users active over the past 5 minutes) Most users ever online was 803 on Sat Dec 12, 2020 9:21 am Registered users: No registered users |