Link to home
Start Free TrialLog in
Avatar of penelope112358
penelope112358Flag for Switzerland

asked on

wmv in ms word

How is it possible to embed and play .wmv files in MS Word 2003?
thanks, Penelope
Avatar of darbid73
darbid73
Flag of Germany image

Yes - In short

On the View menu, point to Toolbars, and click Control Toolbox.
In the Control Toolbox, click More Tools.
In the list of available ActiveX Controls, click Windows Media Player.
Draw the control somewhere on your form.

Then you will need code like this



Const strPATHNAME As String = "C:\videos\"
'Change this line to the path where your movie files are stored.
'Be sure to include the trailing backslash!
 
Private Sub MediaPlayer1_EndOfStream(ByVal Result As Long)
'Check to see if the movie has ended. If so, then set the
'control's visibility to false and turn off autostart.
   Dim strName As String
 
   If Result = 0 Then
      strName = ""
      With MediaPlayer1
         .Visible = False
         .AutoStart = False
         .FileName = strName
      End With
      SlideShowWindows(1).View.GotoSlide 1, msoTrue
   End If
End Sub
 
Sub startme1()
'This is attached to an action button.
   Dim strName As String
   'Set the file name to movie you want to play
   strName = strPATHNAME & "movie1.avi"
   RunMovie strName
End Sub
 
Sub startme2()
'This is attached to an action button.
'You can have as many of these as you want.
'Just copy startme1 and paste into the project, but
'make sure you change the name of the subroutine.
   Dim strName As String
 
   'Set the file name to the movie you want to play.
   strName = strPATHNAME & "movie2.avi"
   RunMovie strName
End Sub
 
Sub RunMovie(strName As String)
'This function sets the various parameters, then resets
'the slide as the last step.
   With MediaPlayer1
      .AutoStart = True
      .DisplaySize = mpFullScreen
      'You can choose whatever size you want for the playback
      'of the movie with the .DisplaySize method.
 
      .Visible = True
      .EnableFullScreenControls = False
      .EnablePositionControls = False
      .EnableTracker = False
      .FileName = strName
   End With
   SlideShowWindows(1).View.GotoSlide 1, msoTrue
End Sub

Open in new window

Avatar of penelope112358

ASKER

Hello darbid73,

thanks for helping me with this and submitting detailed code. In startme2() I didn't use the & in the string name, just used &.

I was able to insert the plug in and attached your code in "This document" but can't get it to run, wonder what I might have overlooked. For your reference I have attached that document.


For the size I will experiment with these parameters:
mpFitToSize
mpFullScreen
1
2
3


Liglin


Sample-embedded.doc
Ok it has been a while, so throw out the code I gave you as that is for the old Media Player.

With yours it is probably very simple.

With this one I put the code in the open document routine otherwise it starts automatically.

This will let you click the play button if you want.

If you make other buttons for your word doc then you would need to change the path in this click routine and would need "WindowsMediaPlayer1.Controls.play" at the end to play it.  You will see at the end of "WindowsMediaPlayer1.Controls" that you can play and stop etc without using the buttons of the actual media player.



Private Sub Document_Open()
 
Dim strName As String
 
strName = strPATHNAME & "all.wmv"  'your file name
 
WindowsMediaPlayer1.windowlessVideo = True
WindowsMediaPlayer1.settings.autoStart = False   'stop it from automatically starting on load
 
WindowsMediaPlayer1.URL = strName   'add the path to your file
WindowsMediaPlayer1.settings.volume = 100      'here you can change initial volume
WindowsMediaPlayer1.settings.setMode "loop", False     'stop it from looping
 
End Sub

Open in new window

Thanks for the new much simpler code. I have put the code into Microsoft Word Objects "ThisDocument" but the Object still won't run...


Sample-embedded.doc
Looking at the sample  I have included in the previous post, is it possible that I have perhaps attached the code incorrectly?
ASKER CERTIFIED SOLUTION
Avatar of darbid73
darbid73
Flag of Germany image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Thank you Darbid73. I got it to work. Great help!! You really made a difference!!!
Excellent help!! Thanks again very much.