Embed video in to power point using C#

  • Thread starter Thread starter Chris Calzaretta
  • Start date Start date
C

Chris Calzaretta

I need to create the ability to create a power point on the fly. With in that
power point i need to embed a video. I need to do this in C#. Could somebody
please give me a little direction on how to embed a video. I can get the
power point to create but I can not get the video to embed.



Thanks

Chris
Email: (e-mail address removed)
 
Set clockMovie = ActivePresentation.Slides(1).Shapes _
.AddMediaObject(FileName:="C:\WINNT\clock.avi", _
Left:=20, Top:=20)
With clockMovie.AnimationSettings.PlaySettings
.PlayOnEntry = True
.PauseAnimation = False
.HideWhileNotPlaying = True
End With


Alter for C# as needed.



Austin Myers
AT&W Technologies

Creators of PowerPoint add-ins
 
Back
Top