Am trying to set up a command template /S argument.
Calling it like this
BackgroundChanger RECURSIVE=on
or
BackgroundChanger RECURSIVE=true
is not working when using something like
if (clickData.func.args.got_arg.RECURSIVE.exists)
or
if (clickData.func.args.got_arg.RECURSIVE.value)
or
if (clickData.func.args.got_arg.RECURSIVE)
{
log(1, 'RECURSIVE EXISTS');
}
else
{
log(1, 'RECURSIVE NOT EXISTS');
}
All help appreciated.