HISE Logo Forum
    • Categories
    • Register
    • Login
    1. HISE
    2. MidiOut
    M
    • Profile
    • Following 0
    • Followers 0
    • Topics 2
    • Posts 6
    • Groups 0

    MidiOut

    @MidiOut

    0
    Reputation
    5
    Profile views
    6
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online

    MidiOut Unfollow Follow

    Latest posts made by MidiOut

    • RE: Interface Keyboard Color in condition to played chord / midinotes

      @Lindon

      Hey Lindon, sorry, for the wrong format, and thanks for your tip! i´m new to this =) sat a lot of hours yesterday to figure this small piece of code out. :D

      We build some kind of chord trigger, that get´s chord arrays from atm a json.

      So you have around 8-10 chords in one set, that are mapped onto the keys. everything still pretty raw.

      I defined a global var in the scriptprocessor, that holds the currently played "artificial" notes to get the current mapped notes into the interfacescript. Thats "chord".

      The script is doing what i intended inside the HISE Environment but not after exporting.

      That so far.

      posted in General Questions
      M
      MidiOut
    • Interface Keyboard Color in condition to played chord / midinotes

      Hey there, i was inspired by @d-healey Youtubevideo on custom Keyboard Color and wanted to build something, that displays the currently played notes on the keyboard in the interface. Again it´s working inside HISE, but not when exported to Midi FX AU and used in Logic.

      Here´s my Interface onNoteOn function:

      function onNoteOn()
      {
      
      	
      
      for (i = 0; i < 128; i++)
      
      {
      	if (chord.contains(i))
      	{
      		Engine.setKeyColour(i, Colours.withAlpha(Colours.blue, 0.4));
      	}
       }
      }
      

      Anyone any Idea, why it´s working inside HISE but not on the PluginInterface?

      posted in General Questions
      M
      MidiOut
    • RE: Midi Out Chord Trigger

      @ulrik Thanks. Putting the Message.sendToMidiOut inside both the functions did the trick. I think in the former version we had it in a sinegenerator chainelement. now i put it directly in a new project into the Mainelement Midiprocessor. Hope this makes sense.
      Thanks for the info about ableton and reaper. Will be helpfull in the future! And generally thanks to both of you for helping out!
      All the best

      posted in General Questions
      M
      MidiOut
    • RE: Midi Out Chord Trigger

      @d-healey thanks for your quick replys! Thats amazing.

      The thing is, inside hise the compiled script works, but as soon as i export it as midifx plugin it does not work inside logic pro

      We build this script up on the chord trigger script, provided by HISE in the Documentation, and even this example does not work when exported. =/

      posted in General Questions
      M
      MidiOut
    • Midi Out Chord Trigger

      Hey there, does anyone know if its possible to get MIDI OUT? We´re trying to make a kind of chordtrigger. And i read in some other threads, that its not possible?

      all the best
      J

      posted in General Questions
      M
      MidiOut