[Name] RANGE_SLIDER [Description] This creates an input text box with a label that has bounds enforced with an optional slider. There are two ways to specify the minimum value, the maximum value, and the precision: For the first syntax, the - specifies the minimum value allowed to be input. Set the value to MIN to indicate the minimum value allowed for this platform. - specifies the maximum value allowed to be input. A value of MAX indicates the maximum value allowed for this platform. - specifies how many decimals are allowed. The keyword MAX indicates the maximum allowed. The default is 0. - if is MIN or is MAX then the slider will not be shown by default For the second syntax, the - RANGE:, specifies that the second syntax is used. Use standard mathematical range notation (i.e. (5,6]). - specifies the minimum value allowed to be input. If left blank, defaults to the minimum value allowed for this platform - specifies the maximum value allowed to be input. If left blank, defaults to the maximum value allowed for this platform - use '(' if the input must be strictly greater than the minimum value, or '[' if the input can be greater than or equal to the minimum value - use ')' if the input must be strictly less than the minimum value, or ']' if the input can be less than or equal to the minimum value - PRECISION: specifies how many decimals are allowed. Uses the maximum allowed by default. - for this syntax, the slider will not be shown by default Other options for either syntax - explicitly sets whether or not the slider is visible overriding default behavior - INCR, the spacing between the ticks on the slider gui. The default is max-min/10 - EXCLUSIVE_MIN the input must be strictly less than the min - EXCLUSIVE_MAX the input must be strictly larger than the max - Note: using EXCLUSIVE_MIN or EXCLUSIVE_MAX will overwrite any other specifications In a Transformer (*.fmx) File Syntax PARAMETER_NAME: PARAMETER_TYPE: RANGE_SLIDER %[%][%][%INCR,][%EXCLUSIVE_MIN][%EXCLUSIVE_MAX] PARAMETER_PROMPT: