Hi Pfeil,
I set up a voice command boost interval [5..12] and the following code:
Begin Integer Compare : [BoostDelay] Equals 0
Say, 'Your auto boost interval is not set. The valid range is from 5 to 12 seconds. To set, say the command boost interval followed by a number from 5 to 12.' (and wait until it completes)
Else
Set integer [BoostDelay] value to the converted value of {TXTNUM:"{CMD}"} (save value to profile)
Say, 'Confirmed, auto boost interval set to [BoostDelay] seconds' (and wait until it completes)
End Condition
Everything looks correct, {CMD} does pick up the spoken command. However, [BoostDelay] ends up being Not Set. By the way, what would happen if I didn't include the double-quotes around the {CMD} token? Wouldn't it change the literal "6" into a number?