I’ve tried to unload a movieclip from my flash MX File. I’ve tried on this way…that is
unloadMovieNum
in this method I’ve given the target path of the movie clip. But when the browser page refreshing that again displays. How can we unload a movie that never comes even if browser refreshing the page. Any body to help me…:goatee:
you’ll need to use a SharedObject for that… to write the SO, use this code:
mySO = SharedObject.getLocal("mcvisibility")
if (mySO.data.myObj.isNotVisible) {
unloadMovie[Num](level/"target")
}
and then, after where you have your original unloading script, have this action:
mySO.data.myObj = {}
mySO.data.myObj.isNotVisible = true
something like this should do it 