A simple question: how do I detect in actionscript if the user has blocked writing data to a shared object?
sharedObj = SharedObject.getLocal("rememberme");
This always returns a shared object, but the size is 0, even I blocked the shared object.
When I try to save data to a shared object and clear it, it gives me an error because the record is being blocked. So, what would be the right way to check if a shared object record is disabled?
Error: Error
source share