Loading other movie in FalshObject

  • Thread starter Thread starter Marije
  • Start date Start date
M

Marije

Hi, I have a FlashObject on my WindowsForm. At some point I want to
change the movie (.swf) it is playing but this doesn't seem possible.
It just keeps playing the old one after a loadMovie-command. Does
someone know how to reset or clear the FlashObject or maybe another
workaround to change the movie?

Thanks, Marije
 
I have an application that loads several flash movies. To accomplish
this I used the following code (where flash is my FlashObject and
strMovieName is the path to the movie):

flash.Stop();
flash.Movie = strMovieName;
flash.Play();

Hope this helps...

David.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top