Difference between revisions of "PresetDocFixtureView:DispatchAction"
(Added Page - In Progress.) |
m |
||
Line 48: | Line 48: | ||
===Display Last Preset Photo=== | ===Display Last Preset Photo=== | ||
Will display the last preset photo for the selected preset. | Will display the last preset photo for the selected preset. | ||
+ | |||
+ | ===Display Next Photo=== | ||
+ | |||
+ | ===Display Previous Photo=== | ||
+ | |||
+ | ===Display Channel=== | ||
+ | :parameter (string) = channel number. | ||
+ | |||
+ | ===Display Fixture=== | ||
+ | :parameter (string) = fixture number. | ||
+ | |||
+ | ===Display Next Channel/Fixture=== | ||
+ | |||
+ | ===Display Previous Channel/Fixture=== | ||
+ | |||
+ | ===Set Hide Ignored=== | ||
+ | :parameter (string) = checkbox state (True or False). | ||
===Sort By=== | ===Sort By=== | ||
:parameter (string) = sort by item. | :parameter (string) = sort by item. | ||
− | + | ||
− | Will set the Sort for the | + | Will set the Sort for the Fixtures Preset list.<br> |
Sort Items...<br> | Sort Items...<br> | ||
− | :<code> | + | :<code>Focus Order</code><br> |
:<code>Preset ID</code><br> | :<code>Preset ID</code><br> | ||
:<code>Focus Cue</code><br> | :<code>Focus Cue</code><br> | ||
:<code>Set</code><br> | :<code>Set</code><br> | ||
− | |||
:<code>Priority</code><br> | :<code>Priority</code><br> | ||
− | + | ||
Example.<br> | Example.<br> | ||
− | :<code> | + | :<code>PresetDocFixtureView:DispatchAction("Sort By", "Preset ID")</code> |
Revision as of 09:50, 29 September 2016
Contents
- 1 DispatchAction( action, optionalParameter )
- 2 Action Strings
- 2.1 Select First Preset
- 2.2 Select Last Preset
- 2.3 Select Next Preset
- 2.4 Select Previous Preset
- 2.5 Select Preset
- 2.6 Display Preset Photo
- 2.7 Display First Preset Photo
- 2.8 Display Last Preset Photo
- 2.9 Display Next Photo
- 2.10 Display Previous Photo
- 2.11 Display Channel
- 2.12 Display Fixture
- 2.13 Display Next Channel/Fixture
- 2.14 Display Previous Channel/Fixture
- 2.15 Set Hide Ignored
- 2.16 Sort By
DispatchAction( action, optionalParameter )
- action is a string.
- optionalParameter is a string (only some actions require the optionalParameter).
Available in MLA v1.3 onwards.
This function sends a user interface action to the Preset Documentation Fixture view. These actions would normally by triggered by clicking on the user interface, i.e. selecting a Preset in the Fixtures Preset table.
Example.
PresetDocFixtureView:DispatchAction("Select First Preset")
This would send an action that would be the same as clicking on the first preset in the preset list for a fixture.
PresetDocFixtureView:DispatchAction("Set Hide Ignored", "False")
This function with an optional parameter would be the same as clicking on the Hide Ignored checkbox. In this case, the it will set to False (off).
Action Strings
Select First Preset
Will select the first Preset in the Fixtures Preset table in the Preset Documentation Fixture view. It is the same as if you had clicked on the first Preset in the Preset table. Note that table will not scroll to show the selection.
Select Last Preset
Will select the last Preset in the Fixtures Preset table in the Preset Documentation Fixture view. It is the same as if you had clicked on the last Preset in the Preset table. Note that table will not scroll to show the selection.
Select Next Preset
Will select the next Preset in the Fixtures Preset table in the Preset Documentation Fixture view. If no Preset was previously selected, it will select the first Preset. Note that table will not scroll to show the selection.
Select Previous Preset
Will select the previous Preset in the Fixtures Preset table in the Preset Documentation Fixture view. If no Preset was previously selected, it will not do anything. Note that table will not scroll to show the selection.
Select Preset
- parameter (string) = Preset Type and/or Preset ID. i.e.
Preset,27
.
Will select the specified Preset in the Fixtures Preset table in the Preset Documentation Fixture view. Note that table will not scroll to show the selection.
- Examples.
PresetDocFixtureView:DispatchAction("Select Preset", "Preset,27")
- This will select specifically Preset Type
Preset
with the Preset ID of27
.
PresetDocFixtureView:DispatchAction("Select Preset", "46")
- This will select the first Preset, regardless of Preset Type with a Preset ID of
46
.
Display Preset Photo
- parameter (string) = Photo number (1-4).
Will display the specified preset photo for the selected preset. If the photo number is greater than the number of photos, then the last photo will be displayed.
Display First Preset Photo
Will display the first preset photo for the selected preset.
Display Last Preset Photo
Will display the last preset photo for the selected preset.
Display Next Photo
Display Previous Photo
Display Channel
- parameter (string) = channel number.
Display Fixture
- parameter (string) = fixture number.
Display Next Channel/Fixture
Display Previous Channel/Fixture
Set Hide Ignored
- parameter (string) = checkbox state (True or False).
Sort By
- parameter (string) = sort by item.
Will set the Sort for the Fixtures Preset list.
Sort Items...
Focus Order
Preset ID
Focus Cue
Set
Priority
Example.
PresetDocFixtureView:DispatchAction("Sort By", "Preset ID")