Level= Command

Level= lets you set the default level for ChannelLevel() commands.
This way you can set the channel level one time for messages sent to multiple channels.
This change is only for the task it is in and lasts until the next time you change the default preset value.
Using the Level= command to change the default level of ChannelLevel() commands saves some typing but the main benefit is allowing you edit the level parameter in multiple functions from a single location.

Syntax

Level=x Where x is the percentage to send the channels to.
Can be set more than once within the task, i.e. can be set for the first 6 messages and then set for the next 6 messages in a 12 message task.
The default preset parameter if left blank is 1% until changed by this command.
Can be any value from 0-100.

The task editor in System Builder has a bug and will apply any default modification commands that are skipped over by a BRA command. Essentially only the last default modification will apply.

Example

Will send the following when called “Area 10 Channel 2 Fade to 50% over 3 seconds” then “Delay for .2 seconds” then “Area 14 Channel 4 Fade to 50% over 3 seconds” then “Delay for .2 seconds” then “Area 2 Channel 6 Fade to 65% over 3 seconds” etc etc.

{
Level=50  //Set default level to 50%
ChannelLevel(A=10,C=2,F=3)      //Area 10 Ch2 to 50%(default)
Delay(.2)
ChannelLevel(A=14,C=4,F=3)      //Area 14 Ch4 to 50%(default)
Delay(.2)
ChannelLevel(A=2,C=6,F=3,L=65)  //Area 2 Ch6 to 65%(specified)
Delay(.2)
ChannelLevel(A=10,C=4,F=3)      //Area 10 Ch4 to 50%(default)
}