Page 1 of 1

LoadMovie Cache Problems

Posted: Fri Jan 04, 2008 12:30 pm
by jrdutton
Hi

I have developed a .net windows form application that uses the bare AxShockwaveFlash object to display flash movies.

The problem that I am experiencing is that if the movie changes, but the file name does not, then the next time I call LoadMovie, the new movie is not loaded, and the old one is displayed. It appears to assume that if the file name has not changed, then the movie does not need to be reloaded.

Would the f-in-box solution overcome this problem? Can I force the movie to unload using it?

TIA

Posted: Fri Jan 04, 2008 1:07 pm
by Softanics
Thank you for your question.

Yes, you can use something like that:

Code: Select all

f_in_box__control1.FlashProperty_Movie = '_'; // yes, just '_' :)
f_in_box__control1.FlashProperty_Movie = 'URL or path here';