Search found 24 matches
- 25 Apr 2014 18:44
- Forum: General Discussion
- Topic: Any good virtual keyboard template?
- Replies: 5
- Views: 1611
- 01 Feb 2014 22:47
- Forum: General Discussion
- Topic: Triggering a pad from another pad
- Replies: 3
- Views: 1296
Triggering a pad from another pad
I'd like to trigger two pads (pads 2 and 3) from a single pad (pad 1). I tried: On expression x If pad1.x = 1 Then pad2.x =1 pad3.x =1 Endif Problem is that just turns the other pads to their on state. I need the single pad to make the two pads act like they were pressed and then released. I think ...
- 25 Oct 2013 17:12
- Forum: Projects
- Topic: Basic MIDI Keyboard Controller
- Replies: 1
- Views: 1501
Basic MIDI Keyboard Controller
Standard MIDI Keyboard with octave and key shifting. Also includes variable velocity, pitch bend and mod wheels, and two banks of 4 cc knobs.
Download at: http://desertsoundstudios.com/devices
Download at: http://desertsoundstudios.com/devices
- 24 Oct 2013 02:15
- Forum: General Discussion
- Topic: All notes off on button press question
- Replies: 9
- Views: 1507
Re: All notes off on button press question
Thanks for the help. Mat, that's a great idea to use a loop for all notes off. I ended up getting the notes off to work by adding a script to the octave switches. A really simple "on expression" send cc123 out. I had to mess around a little with the trigger modes to get it to work. What would be ...
- 23 Oct 2013 17:15
- Forum: General Discussion
- Topic: All notes off on button press question
- Replies: 9
- Views: 1507
Re: All notes off on button press question
Hi Seriously, adding support for single note shifting to that project would be pretty simple . . . For turning the notes off when you press octave or note shift I would look at using the z variable Basically if z is 1 (object touched) then the velocity equals 0 .. .. How exactly would you shift the ...
- 23 Oct 2013 17:05
- Forum: General Discussion
- Topic: The Lemur manual needs a rewrite
- Replies: 10
- Views: 3318
Re: The Lemur manual needs a rewrite
Hi I helped re-write the manual after Liines release . .(quite a bit of work) .. so am interested to here your comments. Which particular section are you referring to? The connection section is very straightforward. What didn't correspond? And what basic info do you think isn't covered? Explaining ...
- 22 Oct 2013 22:50
- Forum: General Discussion
- Topic: All notes off button
- Replies: 1
- Views: 610
All notes off button
I would like to press a pad object and turn off all currently playing midi notes. I can currently only get a pad to turn off a single midi note at a time using the note off message. Can anyone let me know what exactly to put in the note and velocity fields of a custom midi message to turn all curre ...
- 22 Oct 2013 22:43
- Forum: General Discussion
- Topic: The Lemur manual needs a rewrite
- Replies: 10
- Views: 3318
The Lemur manual needs a rewrite
I first noticed this while setting up Lemur on wifi. The manual made it much more complicated than it actually was. Yesterday I was reading a section and the text didn't correspond to the image. And several times I've needed to look to this forum for basic info that should be covered in the manual ...
- 22 Oct 2013 22:05
- Forum: General Discussion
- Topic: All notes off on button press question
- Replies: 9
- Views: 1507
Re: All notes off on button press question
I already have. I don't like the methodology they used in their code. I will be shifting the keyboard by single notes as well as octaves. The code in the example won't work properly for that.
- 22 Oct 2013 02:11
- Forum: General Discussion
- Topic: All notes off on button press question
- Replies: 9
- Views: 1507
All notes off on button press question
I'm building a MIDI keyboard with pad objects triggering midi note-ons. I have a switch with 5 buttons that I am using to shift the MIDI notes up and down octaves. I am stuck on how to send a note-off or velocity=0 to all currently playing notes whenever the octave shift buttons are pressed (to ...