getParameterNormalized(nameOrID) Function to read the current value of a parameter in the normalized range from 0 to 1.0. The parameter can be determined by name or ID. Available in: Controller, Processor. Returns the current value of the parameter in the normalized range from 0 to 1.0 or Description
Arguments
nameOrID The name or ID of the parameter. string or number Return Values
nil
if the parameter doesn't exist. If the parameter is not numeric, the function returns the same as getParameterExample
-- print the normalized value of the parent layer's level parameter
function onLoadIntoSlot()
print("Level = "..this.parent:getParameterNormalized("Level")) -- via name
print("Level = "..this.parent:getParameterNormalized(38)) -- via ID
end
See Also: setParameterNormalized, getParameter, setParameter, hasParameter
1 Comment
Sabine Pfeifer
proofread done