Greetings,
I am writing a networked flash application. The server (an independent C++ app) sends resources for the flash client to manipulate and/or display, eg, images and sound. I'm assuming that the browser stores these resources in its cache. Since the resources can be pretty big, I don't want to resend them from the server each time the client restarts the app. I can't use the LSO (flash cookies) because those won't update if the cache gets independently cleared by the browser or the user.
So for the flash gurus.. 1) Is there a way to detect if an item has been cached, eg to query the browser cache for a crc or something? Maybe load the object offscreen and (somehow) detect if it shows up? -OR- 2) Is there a way to avoid using the normal browser cache and cache things myself, in some kind of larger LSO?
Thanks for the help.