How to Play a Flash Movie in Access.

mohammadagul

PrinceAtif
Local time
Today, 17:14
Joined
Mar 14, 2004
Messages
298
Hi,
Same as the title of this thread , i would like to know how to play a flash movie in Access.
 
Yes, this is possible using the following details and design -

If you are storing your Flash movie clip in the same directory as the database you can try the following:

With your start-up form in design mode, go to Insert >> ActiveX Control. From the list choose Shockwave Flash Object.

Open up the properties window for this new control and name it obj_flashmovie.

Now go to the properties of the form, and for the On Activate Event Procedure add the following code:

Private Sub Form_Activate() Me.obj_flashmovie.Movie = Application.CurrentProject.Path + "\Movie1.swf"End Sub

Change the Movie1.swf to the name of your flash file.
Good luck!!!
--- Minh Hien ----
 

Users who are viewing this thread

Back
Top Bottom