Documentation
IPS_GetScriptList
array IPS_GetScriptList ()
Returns
A list of all IDs of scripts
Description
This function determines the IDs of all scripts that are registered within IP-Symcon. The IDs are listed in an array. If no scripts exist, the array is empty.
Example
$allScripts = IPS_GetScriptList();
print_r($allScripts);
/* returns, e.g.:
Array
(
[0] => 37659
[1] => 18326
etc. ...
*/