VBA - change movie link

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello,

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

thnks,
Ward
 
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
 
Back
Top