clearCache
Command; clears the Director network cache.
The clearCache command clears only the cache, which is separate from the browser's cache.
If a file is in use, it remains in the cache until it is no longer in use.
None.
This handler clears the cache when the movie starts:
-- Lingo syntax
on startMovie
clearCache
end
// JavaScript syntax
function startMovie() {
clearCache();
}