Is it possible to acquire status of Remember option in flash security panel for camera using AS3? It would be nice to have a function where it returns 1 if remember option is checked, 0 when it is unchecked and -1 if the remember option is not available due to browser/client settings.
You can use cookies in flash to store this varaible. So, why not use it .
Example:
var mySharedObject:SharedObject = SharedObject.getLocal("republicofcode");
mySharedObject.data.firstName = "John";
mySharedObject.data.lastName = "Doe";
mySharedObject.flush();
trace(mySharedObject.data.firstName);
trace(mySharedObject.data.lastName);
for more info about my shared object see the link
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With