Visual Productions forum

Author Topic: Midicon Midimap  (Read 2542 times)

July 05, 2013, 07:33:45 PM
Read 2542 times

Simon90

  • Member
  • *
  • Posts: 56
Hi
Can anybody help me?
I want to change Button 25-32 on my midicon
I want on Button 25 Playbak Bank 1
On Button 26 Playback Bank 2
On Button 27 ........
......
Direkt Control of all Playback Banks
But how should i Write the XML file
Thank you
Simon

July 08, 2013, 10:00:05 AM
Reply #1

Dennis Kromhout

  • Member
  • *
  • Posts: 838
Hello simon,

Here is the document explaining the format, the midicon is one of the few controllers that actually have the note (index) numbers documented in the manual.

For example to change button 25 & 26:
Code: [Select]
<action>
    <trigger type="Midi" specifier="Change">Channel X - Message 9 - Index 77</trigger>
    <tasks>
        <task type="Playback Button 1" feature="ButtonPrimair" function ="Control"/>
    </tasks>
</action>
<action>
    <trigger type="Midi" specifier="Change">Channel X - Message 9 - Index 78</trigger>
    <tasks>
        <task type="Playback Button 2" feature="ButtonPrimair" function ="Control"/>
    </tasks>
</action>
To page select 1 & 2 (argument is zero based):
Code: [Select]
<action>
    <trigger type="Midi" specifier="Change">Channel X - Message 9 - Index 77</trigger>
    <tasks>
        <task type="Playback Fader 1" function="Set" feature="Bank">
            <argument type="Unsigned">0</argument>
        </task>
    </tasks>
</action>
<action>
    <trigger type="Midi" specifier="Change">Channel X - Message 9 - Index 78</trigger>
    <tasks>
        <task type="Playback Fader 1" function="Set" feature="Bank">
            <argument type="Unsigned">1</argument>
        </task>
    </tasks>
</action>
Dennis Kromhout

July 08, 2013, 10:44:52 AM
Reply #2

Simon90

  • Member
  • *
  • Posts: 56
Okay thank you i will Try it later

July 11, 2013, 07:24:40 AM
Reply #3

Simon90

  • Member
  • *
  • Posts: 56
I have tried it but it doesn't work. What wrong? If i Push one of the Buttons, cuelux jumps at all
Buttons to Bank 1.
the XML is the Same as Jump to programmer Pages or Not?
Or like the program for the lounchpad.


July 11, 2013, 08:55:37 AM
Reply #4

Dennis Kromhout

  • Member
  • *
  • Posts: 838
Can you post your XML map?
Yes, its very similar as the launchpad. Only the "Channel X - Message 9 - Index ##" will be different.
Dennis Kromhout

 

SMF spam blocked by CleanTalk