Hi Gina,
As far as I know there is no way to find the original filename of a
picture that is embedded. However, for linked pictures, the following
macro will let you view the filename. It will also let you change the
name in case you wish to do that. To use it, select a shape, run the
macro, then type in a new filename if you want to change it (just click
OK in your case). If you're not sure about using macros, check the link
at the end.
Sub ChangePictureLink()
Dim Shape As Shape
Dim Filename As String
If ActiveWindow.Selection.Type <> ppSelectionShapes Then
MsgBox "Please select a shape"
ElseIf ActiveWindow.Selection.ShapeRange.Count <> 1 Then
MsgBox "Please select only 1 shape"
Else
Set Shape = ActiveWindow.Selection.ShapeRange(1)
If Shape.Type <> msoLinkedPicture Then
MsgBox "The shape is not a linked picture"
Else
' Show the filename, and get a new one (if required)
Filename = InputBox("Filename of linked item:", "", _
Shape.LinkFormat.SourceFullName)
' Change the filename
Shape.LinkFormat.SourceFullName = Filename
End If
End If
End Sub
Useful link:
http://www.rdpslides.com/pptfaq/FAQ00033.htm - how to use macro code