Loading...
This chapter gives an overview of the members available for the Fader Extension device.
Please read the chapter "Fader Extension" if you would like to know how to add and use this device. As explained in the topic"Object and Member Notation (dot syntax)", all kinds of objects can be addressed in the scripting language by using their members which set (or return if applicable) properties or methods of that object. Please refer to the chapter "Script Language" for more details about scripting in general.
Project.FaderExtension(deviceName or ID) |
Example: Alternative Example: |
This gives access to all further members of the device "FaderExtension" from the Configuration dialog. Using the Project object is an alternative to addressing the device directly by entering its name. The Project object allows to address the device through its name or ID. Substituting the ID with a dynamic variable allows automation. Actions can be performed on many devices of the same type simultaneously, e.g. by using for-loops: |
FaderExtensionName.BottomButtonID.GetState |
Example: Alternative Example: |
This member returns the state of BottomButton3 as a Boolean value (True = pressed state or False = released state). BottomButton3 is located below Fader3, which is the first fader on the Fader Extension as the Jog/Shuttle has two faders. You could also write it into a Widget, e.g. a Label via the script: Label1.Text = FaderExtension.BottomButton3.GetState This member is available for "BottomButton3" - "BottomButton8". |
FaderExtensionName.BottomButtonID.State |
Example: Alternative Example: |
This member returns the state of BottomButton3 as a Boolean value (True = pressed state or False = released state). BottomButton3 is located below Fader3, which is the first fader on the Fader Extension as the Jog/Shuttle has two faders. You could also write it into a Widget, e.g. a Label via the script: Label1.Text = FaderExtension.BottomButton3.State This member is available for "BottomButton3" - "BottomButton8". |
FaderExtensionName.Disable |
Example: Alternative Example: |
This disables the Fader Extension device in the Configuration dialog as if the "Enable" check box in the window was unchecked. Use the .Enable member to reverse this command. |
FaderExtensionName.Enable |
Example: Alternative Example: |
This enables the Fader Extension device in the Configuration dialog as if the "Enable" check box in the window was checked. Use the .Disable member to reverse this command. |
FaderExtensionName.FaderID.GetValue |
Example: Alternative Example: |
This member returns the raw fader position Fader3 as an integer value (0-65535). Fader3 is the first fader on the Fader Extension as the Jog/Shuttle has two faders. You could also write it into a Widget, e.g. a Label via the script: Label1.Text = FaderExtension.Fader3.GetValue This member is available for "Fader3" - "Fader8". |
FaderExtensionName.FaderID.Value |
Example: Alternative Example: |
This member returns the raw fader position Fader3 as an integer value (0-65535). Fader3 is the first fader on the Fader Extension as the Jog/Shuttle has two faders. You could also write it into a Widget, e.g. a Label via the script: Label1.Text = FaderExtension.Fader3.Value This member is available for "Fader3" - "Fader8". |
FaderExtensionName.GetBottomButtonState(id) |
Example: Alternative Example: |
This member returns the state of BottomButton3 as a Boolean value (True = pressed state or False = released state). BottomButton3 is located below Fader3, which is the first fader on the Fader Extension as the Jog/Shuttle has two faders. You could also write it into a Widget, e.g. a Label via the script: Label1.Text = FaderExtension.GetBottomButtonState(3) Alternative commands are: FaderExtension.BottomButtonID.GetState and FaderExtension.BottomButtonID.State |
FaderExtensionName.GetFaderValue(id) |
Example: Alternative Example: |
This member returns the raw fader position Fader3 as an integer value (0-65535). Fader3 is the first fader on the Fader Extension as the Jog/Shuttle has two faders. You could also write it into a Widget, e.g. a Label via the script: Label1.Text = FaderExtension.GetFaderValue(3) |
FaderExtensionName.GetTopButtonBlueLedBrightness(id) |
Example: Alternative Example: |
This member returns the dimmer level of the blue LED of TopButton3 as an integer value (0-255). TopButton3 is located above Fader3, which is the first fader on the Fader Extension as the Jog/Shuttle has two faders. You could also write it into a Widget, e.g. a Label via the script: Label1.Text = FaderExtension.GetTopButtonBlueLedBrightness(3) |
FaderExtensionName.GetTopButtonRedLedBrightness(id) |
Example: Alternative Example: |
This member returns the dimmer level of the red LED of TopButton3 (the button located above Fader3) as an integer value (0-255). TopButton3 is located above Fader3, which is the first fader on the Fader Extension as the Jog/Shuttle has two faders. You could also write it into a Widget, e.g. a Label via the script: Label1.Text = FaderExtension.GetTopButtonRedLedBrightness(3) |
FaderExtensionName.GetTopButtonState(id) |
Example: Alternative Example: |
This member returns the state of TopButton3 as a Boolean value (True = pressed state or False = released state). TopButton3 is located above Fader3, which is the first fader on the Fader Extension as the Jog/Shuttle has two faders. You could also write it into a Widget, e.g. a Label via the script: Label1.Text = FaderExtension.GetTopButtonState(3) Alternative commands are: FaderExtension.TopButtonID.GetState and FaderExtension.TopButtonID.State |
FaderExtensionName.IsConnected |
Example: Alternative Example: |
This member returns the connection status for the Fader Extension device as a Boolean value. The result is "True" if the device is connected and "False" if it is currently disconnected. You could also write it into a Widget, e.g. a Label via the script: Label1.Text = FaderExtension.IsConnected |
FaderExtensionName.IsEnabled |
Example: Alternative Example: |
This member returns the status of the check box "Enable" of the configuration dialog as a string or Boolean value. The result is "True" if the device is enabled and "False" if it is currently not enabled. You could also write it into a Widget, e.g. a Label via the script: Label1.Text = FaderExtension.IsEnabled |
FaderExtensionName.SetTopButtonBlueLedBrightness(id,value) |
Example: Alternative Example: |
This command sets the dimmer level for the blue LED of TopButton3 to 125. Values between 0 (off) and 255 (fully on) are possible. TopButton3 is located above Fader3, which is the first fader on the Fader Extension as the Jog/Shuttle has two faders. An alternative command is: FaderExtension.TopButtonID.SetBlueLedBrightness and FaderExtension.TopButtonID.BlueLedBrightness |
FaderExtensionName.SetTopButtonRedLedBrightness(id,value) |
Example: Alternative Example: |
This command sets the dimmer level for the red LED of TopButton3 to 125. Values between 0 (off) and 255 (fully on) are possible. TopButton3 is located above Fader3, which is the first fader on the Fader Extension as the Jog/Shuttle has two faders. An alternative command is: FaderExtension.TopButtonID.SetRedLedBrightness and FaderExtension.TopButtonID.RedLedBrightness |
FaderExtensionName.TopButtonID.BlueLedBrightness |
Example: Alternative Example: |
This member sets and returns the dimmer level of the blue LED of TopButton3 as an integer value (0-255). TopButton3 is located above Fader3, which is the first fader on the Fader Extension as the Jog/Shuttle has two faders. You could also write it into a Widget, e.g. a Label via the script: Label1.Text = FaderExtension.TopButton3.BlueLedBrightness Alternative commands are: FaderExtension.GetTopButtonBlueLedBrightness(id,value) and FaderExtension.TopButtonID.GetBlueLedBrightness Example2: The second example shows, how to set the dimmer level for the blue LED of TopButton3 to a value of 125. Values between 0 (off) and 255 (fully on) are possible. This member is also available for "TopButton3" - "TopButton8". |
FaderExtensionName.TopButtonID.GetBlueLedBrightness |
Example: Alternative Example: |
This member returns the dimmer level of the blue LED of TopButton3 as an integer value (0-255). TopButton3 is located above Fader3, which is the first fader on the Fader Extension as the Jog/Shuttle has two faders. You could also write it into a Widget, e.g. a Label via the script: Label1.Text = FaderExtension.TopButton3.GetBlueLedBrightness |
FaderExtensionName.TopButtonID.GetRedLedBrightness |
Example: Alternative Example: |
This member returns the dimmer level of the red LED of TopButton3 (the button located above Fader3) as an integer value (0-255). TopButton3 is located above Fader3, which is the first fader on the Fader Extension as the Jog/Shuttle has two faders. You could also write it into a Widget, e.g. a Label via the script: Label1.Text = FaderExtension.TopButton3.GetRedLedBrightness |
FaderExtensionName.TopButtonID.GetState |
Example: Alternative Example: |
This member returns the state of TopButton3 as a Boolean value (True = pressed state or False = released state). TopButton3 is located above Fader3, which is the first fader on the Fader Extension as the Jog/Shuttle has two faders. You could also write it into a Widget, e.g. a Label via the script: Label1.Text = FaderExtension.TopButton3.GetState This member is available for "TopButton3" - "TopButton8". Alternative commands are: FaderExtension.GetTopButtonState(id) and FaderExtension.TopButtonID.State |
FaderExtensionName.TopButtonID.RedLedBrightness |
Example: Alternative Example: |
This member sets and returns the dimmer level of the red LED of TopButton3 as an integer value (0-255). TopButton3 is located above Fader3, which is the first fader on the Fader Extension as the Jog/Shuttle has two faders. You could also write it into a Widget, e.g. a Label via the script: Label1.Text = FaderExtension.TopButton3.RedLedBrightness Alternative commands are: FaderExtension.GetTopButtonRedLedBrightness(id,value) and FaderExtension.TopButtonID.GetRedLedBrightness Example2: The second example shows, how to set the dimmer level for the red LED of TopButton3 to a value of 125. Values between 0 (off) and 255 (fully on) are possible. This member is also available for "TopButton3" - "TopButton8". |
FaderExtensionName.TopButtonID.SetBlueLedBrightness(value) |
Example: Alternative Example: |
This command sets the dimmer level for the blue LED of TopButton3 to 125. Values between 0 (off) and 255 (fully on) are possible. TopButton3 is located above Fader3, which is the first fader on the Fader Extension as the Jog/Shuttle has two faders. This member is also available for "TopButton3" - "TopButton8". |
FaderExtensionName.TopButtonID.SetRedLedBrightness(value) |
Example: Alternative Example: |
This command sets the dimmer level for the red LED of TopButton3 to 125. Values between 0 (off) and 255 (fully on) are possible. TopButton3 is located above Fader3, which is the first fader on the Fader Extension as the Jog/Shuttle has two faders. This member is also available for "TopButton3" - "TopButton8". |
FaderExtensionName.TopButtonID.State |
Example: Alternative Example: |
This member returns the state of TopButton3 as a Boolean value (True = pressed state or False = released state). TopButton3 is located above Fader3, which is the first fader on the Fader Extension as the Jog/Shuttle has two faders. You could also write it into a Widget, e.g. a Label via the script: Label1.Text = FaderExtension.TopButton3.State This member is available for "TopButton3" - "TopButton8". Alternative commands are: FaderExtension.GetTopButtonState(id) and FaderExtension.TopButtonID.GetState |