Jump to content

AlexBerty

Member
  • Posts

    17
  • Joined

  • Last visited

AlexBerty's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. UPDATE (which will propably make things simpler): the note number of the PolyPressure can also be fixed (one note number ONLY) and the value doesn't matter! Only the midi channel (12) has to be the same.
  2. Thanks, but I've checked this approach. Does not work for me: getting super annoying midi feedbacks and crashes... I'm sure: I just need the script.
  3. Still need the script (as the Transformer thing and assigning midi channels instead of input devices /viewtopic.php?f=1&t=157237&p=824408#p824408 doesn't work for me because of use of virtual devices (IAC driver)). I will donate for it.
  4. I can't find this: always all listed midi devices feed the input of an instrument track. BUT I want to have a choice: e.g. I want to assign only one of the listed and activated midi devices to feed the input of a certain instrument track and a different device shall be assigned to a further instrument track. I can't see an option to choose the device in the track editor. Do you know how to set this up? Thanks in advance! Alex
  5. Yes, this would work if I could have a choice of a dedicated midi device (or several dedicated midi devices) feeding the input of an instrument track. But I can't find this: always all listed midi devices feed the input of an instrument track. Do you know how to set this up?
  6. Can you experts please help me to create a midi engine with Scripter?: I need additional PolyPressure (Polyphonic Aftertouch) events when one of these midi note numbers (sent on midi channel 12) come in: 36, 38, 40 and 42 (the PolyPressure events shall be created only on NoteON events). The mentioned notes shall also pass through. The additionally created PolyPressure events shall feature the current note number (and shall share the same midi channel) and the value shall always be fixed to 127. (UPDATE: the note number of the PolyPressure can also be fixed (one note number ONLY) and the value doesn't matter! Only the midi channel (12) has to be the same). All other midi events shall pass through (which will be noteON + noteOFF, CC, PolyPressure (all these events are on different midi channels)). So propably scripting this is easy for you but I cannot bring this to work. Please help. Thanks soooo much in advance! Alex.
  7. Hey experts, I'm looking for a script that can individually change the velocity curve (multipy by factor will be sufficient) of selected midi notes: Example: Sixteen Midi note numbers (4 -19) shall be available for a dynamic operation (with multiplication); all other notes and other midi messages shall pass through unaffected. The midi channel shall not matter for notes meant to be affected and also for notes that shall pass through unaffected ( = the midi channel of the output note shall stay the same as the midi channel of the input note). (i.e. I want to multiply the incoming velocity of note number 4 by factor 1.25 ; then note note number 5 by factor 1.5 ; then note number 6 by factor 1.12 ; then note number 7 by factor 2.3; .... Does such a script exist or can you help me by posting one? (It has to be a Scripter operation and not a midi edit in the environment) Thanks very much in advance!
  8. var disabled=false; function HandleMIDI(event) { if(event instanceof ControlChange && event.number == 20) { if(event.value < 64) { disabled=true; } else { disabled=false; } return; } if(disabled) { event.send(); return; } . . // rest of your code here } Can you please make this happen with noteON event (velocity and channel of this noteON event shall not matter): NoteON event (note number 3 (D#-2)) shall switch the further script on. Then the next (same (= note number 3)) noteON event shall bypass it (all MIDI passes through unaffected). Then again the next same noteON event shall switch it on again... (and so on) That would be great. Thanks so much in advance! Alex
  9. Thank you very much. I got that right with "Smart Controls". The only issue: it will lose functionality when the track (with Scripter inserted) is not seclected/highlighted. How can I get it right to have the midi control function with a different track selected/highlighted?
  10. Hey Logic experts, I need your help: I can easily midi-control sliders and knobs from a Logic-onboard EQ plugin but I'm not able to map the ON/OFF button (EQ-plugin active/inactive)... I dont want to midi-control the EQ plugin but the midi plugin "Scripter" inserted in an instrument track: one NoteON event shall switch it on and then the next NoteON even shall switch it OFF and so on (dedicated midi note, NoteOn velocity shall not matter) How can I get this right? Thanks in advance for your answers!
  11. I think it just has to be the "Note Stepper" from the Scripter. But how can I set it in order to only affect note number 36? (all other notes and events should be unaffected). Every note will step using the "Note Stepper" default script. So can you please give a hint how to modify the script?
  12. Here is another challange for a latency-free (real time e-drum) script: Incoming note 36 shall alternate between output 36 and 35. incoming note 36 ---> output note 36, after then incoming note 36 ---> output note 35, after then incoming note 36 ---> output note 36 again, after then incoming note 36 ---> output note 35 again, and so on... All other midi events should run through unaffected. Thanks in advance! I'll donate for a helping hand!
  13. Hey Dewdman42, thanks soooo much! I'll try tomorrow and report back.
×
×
  • Create New...