Playing Flash Animations in .NET

  • Thread starter Thread starter Huw Lloyd
  • Start date Start date
H

Huw Lloyd

I am developing a windows application and want to display
a flash animation in a splash screen.

I have the .fla file but i dont know how to load it into
the shockwave flash object that I have on my form. I have
tried this code in the forms load code but no no joy

Me.vrFlash.LoadMovie(1, C:\Splash.fla")
Me.vrFlash.Play()

Any ideas?

Many thanks in advance
 
One possible way of doing this is to create a new form (set the
FormBorderStyle to None to give you the splash window look), add a Web
Browser Control, resize it to fit the full height/width of the splash form &
then navigate the control to your flash movie as the form loads.

Not very elegant but may point you in the right direction.

D
 
Back
Top