Forum
    • Categories
    • Register
    • Login
    1. Home
    2. flameshower
    3. Topics
    F
    • Profile
    • Following 0
    • Followers 0
    • Topics 3
    • Posts 10
    • Groups 0

    Topics

    • F

      Export failed

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      4
      0 Votes
      4 Posts
      65 Views
      LindonL

      @flameshower you will need to build HISE with ipp if you want to use it.

    • F

      Creating a MIDI copier/transposer in HISE

      Watching Ignoring Scheduled Pinned Locked Moved Scripting
      11
      0 Votes
      11 Posts
      189 Views
      F

      @David-Healey An issue I run into now is when

      function onNoteOn() { for (note in track) { if (note.isNoteOn()) { Console.print(note.dump()); Console.print("Note: " + note.getNoteNumber()); //Synth.playNote(note.getNoteNumber(), note.getVelocity()+1); //Synth.playNote(note.getNoteNumber()+12, note.getVelocity()+1); //Synth.playNote(note.getNoteNumber()-12, note.getVelocity()+1); } //Synth.noteOffByEventId(note.getEventId()); } } function getNoteOn(list, noteOn) { for(note in track) { if(note.isNoteOn() && note.getEventId() == noteOn.getEventId()) return note; } } MIDIPlayer1.flushMessageList(track);

      I uncomment any of the synth.playNote function calls, it plays very distorted, notes playing for far longer than they are supposed to, like I mentioned earlier.

    • F

      Unknown function error

      Watching Ignoring Scheduled Pinned Locked Moved Scripting error function scripting script reference
      3
      0 Votes
      3 Posts
      177 Views
      F

      @d-healey Fixed, thanks!

      I'm new to HISE so I'm bound to do beginner mistakes lol