This object allows you to have access to the system's registry. It only works under Windows.
Constructor function.
var myObject = new Registry();
Create a Registry object.
var myObject = new Registry();
Opens a registry key.
myObject.openKey(key, subkey);
Creates a registry key.
myObject.createKey(key, subkey);
Sets the value of the current key.
myObject.setValue(value, data);
Returns the data contained in a registry value.
myObject.value(value);
myObject.value();
Returns all the value names contained in the current key.
myObject.valueNames();
Returns all the keys contained in the current key.
myObject.keys();
Deletes a value contained in the current key.
myObject.deleteValue(value);
myObject.deleteValue();
Deletes a registry key, or deletes the current key.
myObject.deleteKey(key, subkey);
myObject.deleteKey();
Closes the current key.
myObject.closeKey();
Root keys.