I try the example, but the value is null, and I cant found the Greeting key in the registry.
var path: String = "org\\nekovm\\systools";
var key: String = "Greeting";
// Write a registry entry:
Registry.setValue(Registry.HKEY_CLASSES_ROOT, path, key,"Hello World!");
var value: String = Registry.getValue(Registry.HKEY_CLASSES_ROOT, path, key);
trace("value:"+value); //value:null
I try the example, but the value is null, and I cant found the Greeting key in the registry.