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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top