VBA - change movie link

W

Ward

Hello,

What VBA object and property do i need to access to change the filename of a linked movie (video clip).

thnks,
Ward
 
M

Mike M.

For the shape, use the LinkFormat->SourceFullName property.
With ActivePresentation.Slides(1).Shapes(1)
If .Type = msoLinkedOLEObject Then
With .LinkFormat
.SourceFullName = "c:\my documents\wordtest.doc"
.AutoUpdate = ppUpdateOptionAutomatic
End With
End If
 
Top