I’m using an AxShockwaveFlash object in C# to load and display a SWF inside of a Windows form.
I’m loading it using LoadMovie and everything is working fine
axShockwaveFlash.LoadMovie(0, "local url");
For debugging reasons I want to be able to refresh this swf without having to rebuild the c# application.
I’ve tried a couple of things including loading a blank swf before reloading the real one.
axShockwaveFlash.LoadMovie(0, "");
axShockwaveFlash.LoadMovie(0, "local url");
However this does not seem to work.
Does anyone happen to know how I can reload the axShockwaveFlash object?
Ah was able to figure that out pretty quickly. It seems like creating a loading a blank swf does the trick.