Microsoft Office Forums

Go Back   Microsoft Office Forums > >

Reply
 
Thread Tools Display Modes
  #1  
Old 09-15-2015, 06:06 AM
downunder downunder is offline Powerpoint 2013: How to find linked pictures? Windows 7 64bit Powerpoint 2013: How to find linked pictures? Office 2013
Novice
Powerpoint 2013: How to find linked pictures?
 
Join Date: Sep 2015
Posts: 1
downunder is on a distinguished road
Default Powerpoint 2013: How to find linked pictures?

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
Reply With Quote
  #2  
Old 09-16-2015, 01:09 PM
JohnWilson JohnWilson is offline Powerpoint 2013: How to find linked pictures? Windows 7 64bit Powerpoint 2013: How to find linked pictures? Office 2010 32bit
Programmer
 
Join Date: Nov 2008
Location: UK
Posts: 1,913
JohnWilson has a spectacular aura aboutJohnWilson has a spectacular aura about
Default

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
__________________
Microsoft PowerPoint MVP 2007-2023
Free Advanced PowerPoint Tips and Tutorials
Reply With Quote
Reply

Tags
powerpoint picture linked

Thread Tools
Display Modes


Similar Threads
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

Other Forums: Access Forums

All times are GMT -7. The time now is 12:17 AM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2025, vBulletin Solutions Inc.
Search Engine Optimisation provided by DragonByte SEO (Lite) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
MSOfficeForums.com is not affiliated with Microsoft