![]() |
|
#5
|
|||
|
|||
|
Sorry there's a typo!
Code:
Sub changeLinks() Dim ohl As Hyperlink Dim osld As Slide Const serverold As String = "http://www.technologytrish.co.uk" Const servernew As String = "http://www.whatever.com" For Each osld In ActivePresentation.Slides For Each ohl In osld.Hyperlinks If ohl.Address Like serverold & "*" & ".pdf" Then ohl.Address = Replace(ohl.Address, serverold, servernew) End If Next ohl Next osld End Sub |
| Tags |
| edit, power point, weblink |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| MS Power point | Gyroman | PowerPoint | 0 | 08-08-2015 04:59 PM |
| can power point LINK to embedded object in power point ? | johnseito | PowerPoint | 0 | 05-24-2014 04:31 AM |
| Microsoft Power Point 2004 to Office Power Point 2007 | chuff | PowerPoint | 0 | 03-20-2011 01:23 PM |
| Power Point on the Web | Carthalion | PowerPoint | 0 | 03-03-2010 09:59 AM |
| power point | ladonna12 | PowerPoint | 2 | 02-16-2009 09:34 AM |