I'm making a macro that generates palettes. The palettes are GLOBAL so even though I'm making them as CMY they should match everything. To generate the right colors I created a new dummy device (manufacturer: dummy, device name: Fixture 1, mode name: Mode 1) that contains Cyan, Magenta, Yellow, White, CTO and it is automatically patched when the macro is called.
Below is a fragment of the code because I didn't throw in all the colors.
The code needs to be improved because I have a problem with CTO - the colors are generated but it doesn't match them to other devices - maybe someone can help me improve and finish my idea?
Code: Select all
<?xml version="1.0" encoding="utf-8"?>
<avolites.macros>
<!-- Daniel Sipowicz, 2025 -->
<!-- tested in Titan v17.1 -->
<macro id="__Pallets" name="Make color pallets">
<description>kolory</description>
<sequence>
<!-- patch an dummy fixture -->
<step>ActionScript.SetProperty("Patch.CurrentUserNumber", userNumber:999)</step>
<step>Fixtures.PatchFixturesToVacantHandles("Fixtures", "dummy", "Fixture 1", "Mode 1", 1, 1, "")</step>
<step>Handles.SetSourceHandleFromHandle("fixtureHandleUN=999")</step>
<step>ActionScript.SetProperty.Enum("Handles.OperationMode", "move")</step>
<step>Handles.CopyDestination("Fixtures", 99)</step>
<step>Handles.ClearSelection()</step>
<!-- select fixture -->
<step pause="0.1">Programmer.Editor.Selection.SelectFixture(handle:"fixtureHandleUN=999")</step>
<!-- set some colour values and quick-create palettes -->
<!-- white -->
<step>Programmer.Editor.Fixtures.SetControlValueById(64, 1, 0.0, true, true)</step>
<step>Programmer.Editor.Fixtures.SetControlValueById(80, 1, 0.0, true, true)</step>
<step>Programmer.Editor.Fixtures.SetControlValueById(96, 1, 0.0, true, true)</step>
<step>Programmer.Editor.Fixtures.SetControlValueById(274, 1, 1.0, true, true)</step>
<step>Programmer.Editor.Fixtures.SetControlValueById(276, 1, 0.0, true, true)</step>
<step pause="0.1">Palette.QuickCreatePalette(Handles.CreateHandleReference("Colours", 0, 0), "C", userNumber:1, "", 0)</step>
<!-- yellow 100% , magenta 0-100, cyan 0 -->
<step>Programmer.Editor.Fixtures.SetControlValueById(64, 1, 0.0, true, true)</step>
<step>Programmer.Editor.Fixtures.SetControlValueById(80, 1, 0.0, true, true)</step>
<step>Programmer.Editor.Fixtures.SetControlValueById(96, 1, 1.0, true, true)</step>
<step>Programmer.Editor.Fixtures.SetControlValueById(274, 1, 0.0, true, true)</step>
<step>Programmer.Editor.Fixtures.SetControlValueById(277, 1, 0.0, true, true)</step>
<step pause="0.1">Palette.QuickCreatePalette(Handles.CreateHandleReference("Colours", 0, 1), "C", userNumber:2, "", 0)</step>
<step>Programmer.Editor.Fixtures.SetControlValueById(64, 1, 0.0, true, true)</step>
<step>Programmer.Editor.Fixtures.SetControlValueById(80, 1, 0.25, true, true)</step>
<step>Programmer.Editor.Fixtures.SetControlValueById(96, 1, 1.0, true, true)</step>
<step>Programmer.Editor.Fixtures.SetControlValueById(274, 1, 0.0, true, true)</step>
<step>Programmer.Editor.Fixtures.SetControlValueById(277, 1, 0.0, true, true)</step>
<step pause="0.1">Palette.QuickCreatePalette(Handles.CreateHandleReference("Colours", 0, 2), "C", userNumber:3, "", 0)</step>
.
.
.
.
<!-- CTO 0-100% 10 steps -->
<step>Programmer.Editor.Fixtures.SetControlValueById(64, 1, 0.0, true, true)</step>
<step>Programmer.Editor.Fixtures.SetControlValueById(80, 1, 0.0, true, true)</step>
<step>Programmer.Editor.Fixtures.SetControlValueById(96, 1, 0.0, true, true)</step>
<step>Programmer.Editor.Fixtures.SetControlValueById(274, 1, 0.0, true, true)</step>
<step>Programmer.Editor.Fixtures.SetControlValueById(277, 1, 0.1, true, true)</step>
<step pause="0.1">Palette.QuickCreatePalette(Handles.CreateHandleReference("Colours", 0, 31), "C", userNumber:32, "", 0)</step>
<step>Programmer.Editor.Fixtures.SetControlValueById(64, 1, 0.0, true, true)</step>
<step>Programmer.Editor.Fixtures.SetControlValueById(80, 1, 0.0, true, true)</step>
<step>Programmer.Editor.Fixtures.SetControlValueById(96, 1, 0.0, true, true)</step>
<step>Programmer.Editor.Fixtures.SetControlValueById(274, 1, 0.0, true, true)</step>
<step>Programmer.Editor.Fixtures.SetControlValueById(277, 1, 0.2, true, true)</step>
<step pause="0.1">Palette.QuickCreatePalette(Handles.CreateHandleReference("Colours", 0, 32), "C", userNumber:33, "", 0)
</step>
<step>Programmer.Editor.Fixtures.SetControlValueById(64, 1, 0.0, true, true)</step>
<step>Programmer.Editor.Fixtures.SetControlValueById(80, 1, 0.0, true, true)</step>
<step>Programmer.Editor.Fixtures.SetControlValueById(96, 1, 0.0, true, true)</step>
<step>Programmer.Editor.Fixtures.SetControlValueById(274, 1, 0.0, true, true)</step>
<step>Programmer.Editor.Fixtures.SetControlValueById(277, 1, 0.3, true, true)</step>
<step pause="0.1">Palette.QuickCreatePalette(Handles.CreateHandleReference("Colours", 0, 33), "C", userNumber:34, "", 0)</step>
<step>Programmer.Editor.Fixtures.SetControlValueById(64, 1, 0.0, true, true)</step>
<step>Programmer.Editor.Fixtures.SetControlValueById(80, 1, 0.0, true, true)</step>
<step>Programmer.Editor.Fixtures.SetControlValueById(96, 1, 0.0, true, true)</step>
<step>Programmer.Editor.Fixtures.SetControlValueById(274, 1, 0.0, true, true)</step>
<step>Programmer.Editor.Fixtures.SetControlValueById(277, 1, 0.4, true, true)</step>
<step pause="0.1">Palette.QuickCreatePalette(Handles.CreateHandleReference("Colours", 0, 34), "C", userNumber:35, "", 0)</step>
<step>Programmer.Editor.Fixtures.SetControlValueById(64, 1, 0.0, true, true)</step>
<step>Programmer.Editor.Fixtures.SetControlValueById(80, 1, 0.0, true, true)</step>
<step>Programmer.Editor.Fixtures.SetControlValueById(96, 1, 0.0, true, true)</step>
<step>Programmer.Editor.Fixtures.SetControlValueById(274, 1, 0.0, true, true)</step>
<step>Programmer.Editor.Fixtures.SetControlValueById(277, 1, 0.5, true, true)</step>
<step pause="0.1">Palette.QuickCreatePalette(Handles.CreateHandleReference("Colours", 0, 35), "C", userNumber:36, "", 0)</step>
<step>Programmer.Editor.Fixtures.SetControlValueById(64, 1, 0.0, true, true)</step>
<step>Programmer.Editor.Fixtures.SetControlValueById(80, 1, 0.0, true, true)</step>
<step>Programmer.Editor.Fixtures.SetControlValueById(96, 1, 0.0, true, true)</step>
<step>Programmer.Editor.Fixtures.SetControlValueById(274, 1, 0.0, true, true)</step>
<step>Programmer.Editor.Fixtures.SetControlValueById(277, 1, 0.6, true, true)</step>
<step pause="0.1">Palette.QuickCreatePalette(Handles.CreateHandleReference("Colours", 0, 36), "C", userNumber:37, "", 0)</step>
<step>Programmer.Editor.Fixtures.SetControlValueById(64, 1, 0.0, true, true)</step>
<step>Programmer.Editor.Fixtures.SetControlValueById(80, 1, 0.0, true, true)</step>
<step>Programmer.Editor.Fixtures.SetControlValueById(96, 1, 0.0, true, true)</step>
<step>Programmer.Editor.Fixtures.SetControlValueById(274, 1, 0.0, true, true)</step>
<step>Programmer.Editor.Fixtures.SetControlValueById(277, 1, 0.7, true, true)</step>
<step pause="0.1">Palette.QuickCreatePalette(Handles.CreateHandleReference("Colours", 0, 37), "C", userNumber:38, "", 0)</step>
<step>Programmer.Editor.Fixtures.SetControlValueById(64, 1, 0.0, true, true)</step>
<step>Programmer.Editor.Fixtures.SetControlValueById(80, 1, 0.0, true, true)</step>
<step>Programmer.Editor.Fixtures.SetControlValueById(96, 1, 0.0, true, true)</step>
<step>Programmer.Editor.Fixtures.SetControlValueById(274, 1, 0.0, true, true)</step>
<step>Programmer.Editor.Fixtures.SetControlValueById(277, 1, 0.8, true, true)</step>
<step pause="0.1">Palette.QuickCreatePalette(Handles.CreateHandleReference("Colours", 0, 38), "C", userNumber:39, "", 0)</step>
<step>Programmer.Editor.Fixtures.SetControlValueById(64, 1, 0.0, true, true)</step>
<step>Programmer.Editor.Fixtures.SetControlValueById(80, 1, 0.0, true, true)</step>
<step>Programmer.Editor.Fixtures.SetControlValueById(96, 1, 0.0, true, true)</step>
<step>Programmer.Editor.Fixtures.SetControlValueById(274, 1, 0.0, true, true)</step>
<step>Programmer.Editor.Fixtures.SetControlValueById(277, 1, 0.9, true, true)</step>
<step pause="0.1">Palette.QuickCreatePalette(Handles.CreateHandleReference("Colours", 0, 39), "C", userNumber:40, "", 0)</step>
<step>Programmer.Editor.Fixtures.SetControlValueById(64, 1, 0.0, true, true)</step>
<step>Programmer.Editor.Fixtures.SetControlValueById(80, 1, 0.0, true, true)</step>
<step>Programmer.Editor.Fixtures.SetControlValueById(96, 1, 0.0, true, true)</step>
<step>Programmer.Editor.Fixtures.SetControlValueById(274, 1, 0.0, true, true)</step>
<step>Programmer.Editor.Fixtures.SetControlValueById(277, 1, 1.0, true, true)</step>
<step pause="0.1">Palette.QuickCreatePalette(Handles.CreateHandleReference("Colours", 0, 40), "C", userNumber:41, "", 0)</step>
<!-- clear programmer -->
<step>Programmer.Editor.ClearAll(false, false)</step>
</sequence>
</macro>
</avolites.macros>