Jump to content

dertimo

Member
  • Posts

    19
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

dertimo's Achievements

Newbie

Newbie (1/14)

1

Reputation

1

Community Answers

  1. Hello everybody, I finally found what I was looking for: instachord from w.a.production (https://www.waproduction.com/plugins/view/instachord) does exactly what I wanted and even more and even better. Wish you all the best.
  2. Yes, I plan to use Chord Trigger MIDI FX in the second instance. But in the first instance I have to define the note, what I pan to do with my left foot, and than trigger the note, what I plan with my right foot, and THEN run it though the Chord Trigger...
  3. Thanks for your reply. I totally understand your point of view. In general I'm also a fan of self-education. But right at the moment I'm lacking time and there are so many online courses to finish before I start one about java script. But here is the description of what the script exactly has to do: If I press a key in a certain range the script shall store but not send that note. If I press a second key (=the trigger key) only the first note shall be played and released. For Example: The range is defined from C0 to B0, the trigger ist assigned to C1. I press C0: No event. I release C0: No event. I press C1: C0 plays I release C1: C0 stops I press C#1 (or any other key that isn't assigned as range or trigger key): No event. Second Example: The range is defined from C0 to B0, the trigger ist assigned to C1. I press E0: No event. I hold E0: No event. I press C1: E0 plays. I release E0: No event. I release C1: E0 stops I press C#1 (or any other key that isn't assigned as range or trigger key): No event. So, what is the purpose of the script? I am a musician. I want to play guitar and accompany myself with a midi bass pedal, like the one in the picture below. I would use 2 instances of midi instruments in Logic Pro X. The first is e.g. a bass that ist played without the script. And the second is e.g. a piano. The trigger key shall play the keys in the assignable range wich run through a second instance of a Logic Pro stock MIDI FX that modifies the single note in a complete chord. That's it. Thanks for reading.
  4. Good advice. Thank you. I will check out SteckExchange. As I'd like to make some gigs with the bass pedal I would think it's worth the money. But so far, I couldn't find someone to help me who is experienced with java and logic...
  5. My aim is to accompany myself on a midi bass pedal while playing e.g. a guitar. The idea is to play a bass note in the range of e.g. C0 to C1 and then trigger the fitting chord with e.g. D1 by using an instance of Logics MIDI FX chord trigger. Basically it is similar to most guitar chord libraries like the ones from Ujam or Native Instruments. In a certain range you can define the chord and then there are keys to trigger the notes...
  6. Wow! My original post is already two years old. Unfortunately I did'n find help with this task. Neither here nor on Fiverr or any other platform. But since I don't have enough time to learn java script I want to ask again: Can anybody write a simple midi FX script for me or can tell me where I can gat one?
  7. Ok. Although I asked for this several weeks ago in an extra post. Here ist what I'm looking for: I'm looking for someone who can write me a customized java script for Logic Pro's midi fx scripter. This is what the script hast to do: I want a certain note (that is free assignable) to repeat the note before. E.g. I assign C3 to be the repeat trigger. If I play C2 the script plays C2, if I play C3 after that the script plays again C2. A second Variation of the script should be, that it only plays the second (repeat trigger) note and not the first one.
  8. Hello everybody, does somebody know where I can order a customized Logic Pro midi script or is somebody here in the forum who could make it for a fee? I posted my request on different freelancer sites like Fiverr. But unfortunately without success...
  9. Good to know, that it would be possible and totally comprehensible if you say you don't have the time to write it. Do you know someone I could hire to write it for me? I looked for programmers on fiverr.com or freelancer.com but for now without success.
  10. Thanks for your advice and the detailed comments. Now the script works perfectly well. I posted another topic. viewtopic.php?f=45&t=153444&p=803675 Maby you can help me with that one too?
  11. Hm... Seams you deleted the wrong commands. Now it's only playing the note on kick drum. But I solved the problem by trial and error. Now its only playing the note offs. But anyway thank a lot. Here is the script. Sorry I didn't manage to insert it as code as you did. function HandleMIDI(event) { if ((event instanceof NoteOn) && event.pitch == 36) {} else if ((event instanceof NoteOff) && event.pitch == 36) { var note = new NoteOn; note.pitch = (42); note.velocity = 100; note.send(); } else { event.send(); } } PS: I wrote another topic. Could you help me with that one too?
  12. Thanks a lot. Is there a way to add other note numbers? I'd like to play a Bass along with the kick and have this effect on every note. And would it be possible to just have ne note off sound (hh) without the note on sound (bd)?
×
×
  • Create New...