![]() |
#1
|
|||
|
|||
![]()
Hi.
There is a pptx file with some embedded pictures and some which are linked to. On a colleague's PC, the links don't work, so I have to replace them with embedded pics. On my PC the links work fine, so I cannot see which pictures are embeded and which are linked. How do I distinguish linked pictures from embedded pictures? Thx for help |
#2
|
|||
|
|||
![]()
You might get a clue by going to File > Info > Edit Links (on the right)
Other wise you may need to use some vba code If you don't know how try here www.pptalchemy.co.uk/vba.html Code:
'Code Sub findLinks() Dim oshp As Shape Dim osld As Slide For Each osld In ActivePresentation.Slides For Each oshp In osld.Shapes If oshp.Type = msoLinkedPicture Then With osld.Shapes.AddShape(msoShape12pointStar, Left:=oshp.Left, Top:=oshp.Top, Width:=20, Height:=20) .Fill.ForeColor.RGB = vbRed End With End If If oshp.Type = msoPlaceholder Then If oshp.PlaceholderFormat.ContainedType = msoLinkedPicture Then With osld.Shapes.AddShape(msoShape12pointStar, Left:=oshp.Left, Top:=oshp.Top, Width:=20, Height:=20) .Fill.ForeColor.RGB = vbRed End With End If End If Next oshp Next osld End Sub |
![]() |
Tags |
powerpoint picture linked |
Thread Tools | |
Display Modes | |
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
Powerpoint 2013 VBA- Adding pictures and their related data from Excel worksheet | nirnat | PowerPoint | 0 | 09-15-2015 03:27 AM |
VBA for pictures positioning in powerpoint | iebogu | PowerPoint | 1 | 01-17-2014 05:47 AM |
Linked slides incorrect after conversion from Powerpoint to pdf | jdkurtzer | PowerPoint | 0 | 07-18-2013 07:56 AM |
Is it possible to for a flash SWF in powerpoint to run linked to a XML file? | mjw2012 | PowerPoint | 0 | 07-20-2012 08:28 AM |
Faulty alignment of charts linked from excel to powerpoint | Reem | PowerPoint | 0 | 05-25-2012 05:24 AM |