Disabling parameters of digital asset.
HDAs disabling parameters.
Date Created:Friday December 29th, 2006 03:41 AM
Date Modified:Friday August 01st, 2008 02:50 AM
* Disabling parameters
Inside of the Type Properties of an Asset, there is a "Disable When" field.
You can enter in something like:
{ parm 0 }
What this says is: "If the parmeter named parm has a value of 0, disable this parameter."
You can also do an OR statement:
{ parm 0 } { parm 2 }
What this says is: "If the parameter named parm has a value of 0 or 2, disable this parameter."
You may also do an AND statement:
{ parm1 0 parm2 1 }
What this says is: "If the parameter named parm1 has a value of 0 and the parameter named parm2 has a value of 1, disable this parameter."
