'range' option type in process

Hi, I’m making a new process and one of my options has the ‘range’ type:
sProcess.options.exporder.Comment = 'Expansion order (in, out): ';
sProcess.options.exporder.Type = ‘range’;
sProcess.options.exporder.Value = {[9, 6], ‘’, 0};

However, it won’t accept two different values. When one is modified, the other one changes as well, as soon as the focus changes to another field or button. It even displays [6, 6] as the default, instead of [9, 6] as requested.
Thanks!

Hi Marc,

The range option type is meant for numerical intervals of type [min,max]. The first value has to be lower or equal to the second value. Try [6, 9] instead of [9, 6].

Full documentation here: https://neuroimage.usc.edu/brainstorm/Tutorials/TutUserProcess#Option_types

Cheers,
Martin

Right, that makes sense. X) Thanks!