HISE Logo Forum
    • Categories
    • Register
    • Login
    1. HISE
    2. alfaholic
    A
    • Profile
    • Following 0
    • Followers 0
    • Topics 14
    • Posts 58
    • Groups 0

    alfaholic

    @alfaholic

    0
    Reputation
    4
    Profile views
    58
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online

    alfaholic Unfollow Follow

    Latest posts made by alfaholic

    • RE: Two modulators for one LFO?

      @Lindon

      Thanks, with this script it works on 129, but with the CC it works on 128.

      posted in General Questions
      A
      alfaholic
    • RE: Two modulators for one LFO?

      Ah, sorry. It works, thanks.

      posted in General Questions
      A
      alfaholic
    • RE: Two modulators for one LFO?

      @ulrik It is 1 and 129 here:

      Screenshot 2024-11-29 at 10.04.23.png

      Thanks, I will try this now.

      posted in General Questions
      A
      alfaholic
    • RE: Two modulators for one LFO?

      @ulrik Actually no, aftertouch is CC128, Pitch Bend is a separate controller.

      Yes, aftertouch goes from 0 to 127.

      posted in General Questions
      A
      alfaholic
    • RE: Two modulators for one LFO?

      @ulrik No, this is LFO and the amount is controlled with the Modulation Wheel at CC1 as usual, however I want the AfterTouch to do the same, which is CC128.

      I tried to remap the 128 to 1 with the CC Swapper, but it goes only to 127.

      I also tried with the script processor but no success:

      // This function is called when a Control Change (CC) message is received
      function onControlChange(event)
      {
          // Get the CC number (controller number) from the event
          var ccNumber = event.getControllerNumber();
      
          // Debugging: Print the received CC number to the console
          Console.print("Received CC: " + ccNumber);
      
          // If the CC number is 128, remap it to CC1
          if (ccNumber == 128)
          {
              event.setControllerNumber(1); // Remap CC128 to CC1
              Console.print("Mapped CC128 to CC1");
          }
      
          // Send the (modified or unmodified) MIDI event to the next processor
          event.send();
      }
      

      I can create another LFO and control it with the CC128, but this is a brute force solution.

      posted in General Questions
      A
      alfaholic
    • RE: Two modulators for one LFO?

      @ulrik Well, when I say before I mean any other hardware and software synth I worked with in the past.
      Is there any other way to achieve this?

      posted in General Questions
      A
      alfaholic
    • RE: Two modulators for one LFO?

      @ulrik Sure:

      HiseSnippet 1186.3oc2XEsaiSDEcbRlUztvJ5REhG8C7PWX0Jml1Rq3gl1zlkHZZC0Y6hDOrL0dbxnZOiY73BUHdfu.9E3y.IdgOA9D3SX+Cf6X6Da20aaZ1tU.tRQdtyb8bl68bOyUcfT3PihDRjwhCuHjhLdWr8Eb03NiILNp2dHiGf6ShTToYpocuHjDEQcQFF0ep1fwBMPIOub6cI9DtCM2DBchf4POfEvT4VGz9KY99cItzgrfBqds18bD7NBeQLfm5XKTHw4LxH5gD8xpgQeAIZLx3SvqtpmylVVa1p05VDRKWBYslzVaQ81vyYcqsrbOccK3uMPF2aeWlRHsUDEMBYzXWg6E1iEeOOcCNgEwN0mpGzDYC6bp4tBeW8QT+NpyXlu6fIApHDx.OHOrUOMrsLtOykM0dd368SlvL2ihAPiZkgW8Rvq4qCdU.IiBPpQJjVBa6HYgp7Yz3493dbHa5Qf7TQnjtVjwef6HfEvUOIfbFsqDFL0gU1vx5wlvOO5y8h4NJlfaJ3GJTzi3q7nE+wEWXweZQyKOkmWkyo2Fov2mJqbZM0PdUNtBON3Tp7wlmS7ioSWHb7KGSu2rEScRO0EVnf2iyTGERyFmSJZVQF.kE1f2dVu8HJhNojYCVWHUpXZ3XrG8bnjHMEs.dOZzYJQHTT7J4Of4Hbi8IpxzIcQW1DP7nTNTmn3QL0EEKJuLGqwqOdXUYIPkm1YDtKgGvTNiqFu0p.uPT6sMdypXeO79ddTGUNXaf690WY44sNTdPJTtO1lwoI5tI.4CSFa9bx4TymR4ToNn17Jjd+yYU5MblkdOxQAa+PIgGEJhJ8gsoArgBtNhja7YQfXA86NVmkKZuifHqbpWtcW3PVoO1DUrLgtrSfHlqJQOpOy4jhk2kqZJr9JzRa71Rd+Nsz6MWon9rA2q41nElfQaVPnOce94TePNLAiODz+7Hw9pIVKSx6K3hvwBNyoHC3XpRxFMhJKh8JOP6nTPCD4VVt8wTeJoHa9iae.vBIRHNQmyXwM+l4JyWeDNEtl5JSy+envW+MUg+FzTVw37Ro.FiOn6QYECvalSgeyqDj+5Oe3uu8trPgOQpulRqQES4NSl+u9pe6gs0Zn8xkfa+Ks0x0dBYP1U6SSOGPGA6YQKCoAgBPtuDs1NPHTiY7QkUlWt8ABQ39bBDQbK9QFLFHxPyUQzR5i5O6PQZK6c7EEo+HTuQbgjl1vVIQ53HkHXxAHoUaaEMLoMFiuAuwZOAd79T8ua0A9o0Q2NiQ2dkY0lQ95GjvDllx0bha0Jra.isVUpj5qSxaMNSkL4NlbqMudDCWGOjj.oBYePjUpJxhR6ZM8idXR6zE+FoLxxzQV6LE6SzcceUU0ycpDMugkUuKBKea6+EDVtdB9TMqacB9+Ma59XQrBzV6SfdG9A3lAHsZC855PAjv4TeXivF0zY9zwV5woM6xcSF72vS1jM0iMxlr4jIuS1i.hiT7BmT5oVD4cRr.madx+jjEv80iMahN+xLw.nZ4ENNk+TuhiqNuN1Zdcbs40w0mWG2Xdc7ylWG275cTKlsSLbMbZWTHT+A6mdArwza+Mpi9G.U1UKKC
      
      posted in General Questions
      A
      alfaholic
    • Two modulators for one LFO?

      I set CC01 and CC128 to control modulation for a LFO, but they work only if both are engaged. It is a simple thing, I did it million times before, is it somehow different here?

      posted in General Questions
      A
      alfaholic
    • VST with sampler interface

      Is it possible to create a VST with the sampler being visible so the SFZ or samples can be imported and mapped directly in the plugin?

      posted in General Questions
      A
      alfaholic
    • RE: Simple mono portamento question?

      Thanks, I just compiled the latest Hise, this is now ok.

      Still not perfect, for example:

      While holding D3 and playing (legato also) G3 and A3 back and forth, it plays the G3 and A3 just for a millisecond, and again returns to D3 no matter you hold the G3 or A3 as well.

      posted in Scripting
      A
      alfaholic