Forum
    • Categories
    • Register
    • Login
    1. Home
    2. veryveryhaps
    3. Topics
    V
    • Profile
    • Following 0
    • Followers 0
    • Topics 6
    • Posts 13
    • Groups 0

    Topics

    • V

      Successfully Compiled VSTs disappear in DAW

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      3
      0 Votes
      3 Posts
      55 Views
      V

      @David-Healey

      Thank you, I think that was it!

    • V

      HISE Quits Unexpectedly on Mac

      Watching Ignoring Scheduled Pinned Locked Moved Solved Bug Reports
      3
      0 Votes
      3 Posts
      96 Views
      V

      @ustk

      Thank you, that worked! I needed to delete the contents of the HISE Application Support folder.

    • V

      Play an Audio File?

      Watching Ignoring Scheduled Pinned Locked Moved Newbie League
      8
      0 Votes
      8 Posts
      244 Views
      dannytaurusD

      @veryveryhaps The Audio Loop Player responds to MIDI like any other sound generator.

      If you only want to trigger it from the UI try playNoteFromUI. It's meant for triggering sound generators from UI elements. It simulates pressing a key on the virtual keyboard.

      There's also the cunningly-slightly-differently-named noteOffFromUI to stop playback.

      As for pausing playback and continuing from the same point, I'm not sure.

      const var loopNote = 60; const var channel = 1; inline function onPlayButton(component, value) { if (value) // button ON Synth.playNoteFromUI(channel, loopNote, 127); else // button OFF Synth.noteOffFromUI(channel, loopNote); } Content.getComponent("Button1").setControlCallback(onPlayButton);
    • V

      Standalone Crashing on Mac

      Watching Ignoring Scheduled Pinned Locked Moved Unsolved Newbie League
      1
      0 Votes
      1 Posts
      91 Views
      No one has replied
    • V

      Host DAW for Pre-Compiled Plugin Version Constantly Crashing

      Watching Ignoring Scheduled Pinned Locked Moved Newbie League
      2
      0 Votes
      2 Posts
      76 Views
      David HealeyD

      @veryveryhaps Use the standalone version of HISE, and definitely compile it yourself, you don't need be particularly smart to do it, it's like everything - it's hard until it becomes easy.

      I show you all the steps in the free Bootcamp: https://audiodevschool.com/courses/hise-bootcamp/

    • V

      Duplicate UI Elements without Keyboard?

      Watching Ignoring Scheduled Pinned Locked Moved Newbie League
      5
      0 Votes
      5 Posts
      124 Views
      V

      Nevermind, I think I fixed it! Thank you for the help!