This repository has been archived by the owner on Jul 5, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 30
system.registry.get()
krisdb2009 edited this page Apr 2, 2017
·
2 revisions
This method will return an object or string from a specified registry location.
mixed = system.registry.set(string keyPath);
keyPath: The key path used to specify a registry location.
//Setting an object
var object = {
this: {
that: 'awsome',
is: 'Cool'
},
that: 'nice'
}
//Placing object in registry
system.registry.set('HKEY_LOCAL_DEMONSTRATION', object);
//Getting object back from registry
var data = system.registry.get('HKEY_LOCAL_DEMONSTRATION');
var dataFilter = system.registry.get('HKEY_LOCAL_DEMONSTRATION/this');
var dataFilter2 = system.registry.get('HKEY_LOCAL_DEMONSTRATION/this/is');
/*
data == {
this: {
that: 'awsome',
is: 'Cool'
},
that: 'nice'
}
dataFilter == {
that: 'awsome',
is: 'Cool'
}
dataFilter2 == 'Cool'
*/
below average 2017
system Object
- bootLoader Object
- error Method
- files Property
- formatAMPM Method
- guid Method
- intervals Object
-
is Object
- mobile Method
- loader Method
- registry Object
-
service Class
- autoStart Method
- id Method
- interval Method
- path Method
- registerService Method
- run Method
- unregisterService Method
- updateRegistry Method
- services Object
explorer Object
- context Class
- drag Method
- file_explorer Method
- initiate Method
-
start Object
- addLButton Method
- addRButton Method
- allProgramsSearch Method
- allProgramsToggle Method
- append Method
- initiate Method
- toggle Method
- tabset Class
- theme Method
- window Class
- windows Object