views:

26

answers:

1

Using DOTNET 3.5 . I have a app which shows load a flash movie in form, using this code

axShockwaveFlash1 = new AxShockwaveFlashObjects.AxShockwaveFlash() axShockwaveFlash1.LoadMovie(0, Form1.currentGame);

The problem is that whenever I make a changes in the flash hosted in our application and try to refresh the to see the changes, the new changes is 'messed' up. to be more specific , it seems that the background and some controls of the previous flash still remain, 'spoiling' the new flash that is loaded. why?

Using the following methods before loading the second flash video makes no difference

axShockwaveFlash1.Refresh(); axShockwaveFlash1.Stop();

A: 

Have you tried loading an "empty" flash video before loading your new video?

e.g.

axShockwaveFlash1.LoadMovie(0,"");

I'm sure that I encountered a similar problem and resolved it this way.

lowie
Its not working for me.still I am able to see the previous flash content.
GLP