Pad send chord Simple example?

Discuss problems and solutions.
Post Reply
shougan
Newbie
Posts: 3
Joined: 28 Jan 2015 05:00

Pad send chord Simple example?

Post by shougan »

Hello everyone, I want to make a pad that send chord to midi 1, can't find a simple example of this, all examples that I found are rocket science for me, just one pad, 3 notes. help?
Softcore
Regular
Posts: 1613
Joined: 04 Nov 2012 08:34

Re: Pad send chord Simple example?

Post by Softcore »

Hello try this one - it should work!

Logic:

Create an expression to store the 3 note values (in the example, notes 64,66,68 are used).
Create a custom MIDI out.

Use x as a vector to trigger them - perhaps a single 'x' woudl work too, but in any case I used {x,x,x} to be sure that ALL notes are triggered.

Use {x,x,x} in the velocity field of custom midi so that when the Pad is pressed (x = 1) a note ON with velocity 127 will be sent - when x = 0, a Note "ON" with velocity 0 will be sent - WHICH is essentially a NoteOFF
Attachments
Pad-ChordOut.jzml
(2.82 KiB) Downloaded 56 times
Last edited by Softcore on 29 Jan 2015 07:35, edited 1 time in total.
shougan
Newbie
Posts: 3
Joined: 28 Jan 2015 05:00

Re: Pad send chord Simple example?

Post by shougan »

Softcore wrote:Hello try this one - it should work!
Thank you, works great.
Softcore
Regular
Posts: 1613
Joined: 04 Nov 2012 08:34

Re: Pad send chord Simple example?

Post by Softcore »

And just in case you need it, here's ONE way to "set" the desired Notes of the chord, right from the interface.

;)
Attachments
Pad-ChordOut-withNoteselection.jzml
(5.43 KiB) Downloaded 61 times
Post Reply