Flash Movie on a form

A

Arvin Meyer MVP

Little Penny said:
Is it possible to use flash animation on an access form? If so how?


I tried following the steps here:

http://www.databasedev.co.uk/flash_movie.html

But counld not get it to worK

It worked fine for me, both in the form's Activate event and also in the
control's GotFocus event. Make sure that your code reads like:

Me.NameOfFlashControl.Movie = "C:\Full path to the swf file"
 
Top