HISE Logo Forum
    • Categories
    • Register
    • Login
    1. HISE
    2. daniloprates
    3. Topics
    D
    • Profile
    • Following 0
    • Followers 0
    • Topics 24
    • Posts 71
    • Groups 0

    Topics

    • D

      ComboBox is triggered on load

      Watching Ignoring Scheduled Pinned Locked Moved Newbie League
      2
      0 Votes
      2 Posts
      73 Views
      Oli UllmannO

      @daniloprates
      Disable "saveInPreset".

    • D

      `setCurrentExpansion` changes the input paths

      Watching Ignoring Scheduled Pinned Locked Moved Newbie League
      2
      0 Votes
      2 Posts
      88 Views
      bendursoB

      @daniloprates This happens to me sometimes as well. I'm not sure if that's the only reason, since it has occurred on projects without expansions.

      Other than having to move the mouse a bit more, everything works fine :)

    • D

      Label onKeyPress

      Watching Ignoring Scheduled Pinned Locked Moved Newbie League
      5
      0 Votes
      5 Posts
      881 Views
      D

      @d-healey said in Label onKeyPress:

      updateEachKey

      Awesome, thanks so much!

    • D

      How to include the samples when building the plugin?

      Watching Ignoring Scheduled Pinned Locked Moved Newbie League
      20
      0 Votes
      20 Posts
      1k Views
      J

      @d-healey got it working!

    • D

      Expansion not working

      Watching Ignoring Scheduled Pinned Locked Moved Newbie League
      17
      0 Votes
      17 Posts
      576 Views
      D

      @d-healey 🤦 this was the problem, I was editing the XML file manually. It's working now.

      Thanks so much!

    • D

      Instrument groups AND round robins

      Watching Ignoring Scheduled Pinned Locked Moved Newbie League
      13
      0 Votes
      13 Posts
      515 Views
      D

      Makes sense. Thanks a lot @d-healey

    • D

      Panel hover

      Watching Ignoring Scheduled Pinned Locked Moved Newbie League
      2
      0 Votes
      2 Posts
      390 Views
      d.healeyD

      @daniloprates You do the detection in the panel's mouse callback and set a value in the panel's data object. Then in the paint routine you can pickup that value to know if the mouse is over the panel or not.

    • D

      Context to setPaintRoutine

      Watching Ignoring Scheduled Pinned Locked Moved Newbie League
      7
      0 Votes
      7 Posts
      447 Views
      Christoph HartC

      @daniloprates data is not a property that you can set through this call, but directly:

      for(i = 0; i < 5; i++) { var p = Content.addPanel("P"+i, i * 100, 0); p.data.index = i; p.setPaintRoutine(function(g) { g.setColour(Colours.white); g.drawAlignedText(this.data.index, this.getLocalBounds(0), "centred"); }); };
    • D

      Custom borderRadius? e.g. `[0, 0, 5, 5]`

      Watching Ignoring Scheduled Pinned Locked Moved Newbie League
      7
      0 Votes
      7 Posts
      157 Views
      rglidesR

      @Chazrox fr, gonna mess around a bit now

    • D

      HISE crashes when using AudioPlayers

      Watching Ignoring Scheduled Pinned Locked Moved Newbie League
      5
      0 Votes
      5 Posts
      228 Views
      D

      @d-healey I'll give it a go. Will also try to lower the sample rates from 192, as well

    • D

      MIDI player laggy

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      8
      0 Votes
      8 Posts
      154 Views
      dannytaurusD

      @d-healey said in MIDI player laggy:

      Yeah that's what I meant by he might get invalid values, because he wants to check "if something exists" not if it's true or false - or at least that's what I got from the statement.

      Yeah, true (no pun intended). To check if something is defined I'd always use isDefined() because it's more readable and explicit.

      But I do use !! a lot in other places because it's so consistent in what it returns.

      And !! does return false for undefined, for reference.

      Console.print(isDefined(somethingUndefined)); // 0 Console.print(!!somethingUndefined); // 0
    • D

      Forum - Disable fuzzy search

      Watching Ignoring Scheduled Pinned Locked Moved Feature Requests
      3
      0 Votes
      3 Posts
      117 Views
      D

      @d-healey great, thanks!

    • D

      Wrong tooltip text

      Watching Ignoring Scheduled Pinned Locked Moved Bug Reports
      1
      0 Votes
      1 Posts
      59 Views
      No one has replied
    • D

      Audio loops to follow the BPM

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      3
      0 Votes
      3 Posts
      146 Views
      D

      @dannytaurus nice. I'm new to HISE and don't know exactly how the Audio Looper works, but it sounds good, I'll give it a go. Thanks

    • D

      Dynamically choosing the Send Container on a Send Effect

      Watching Ignoring Scheduled Pinned Locked Moved Newbie League
      9
      0 Votes
      9 Posts
      346 Views
      D

      @d-healey worked like a charm. Many thanks!

    • D

      Built HISE, but still getting the "source code has a different commit hash than the HISE build" message

      Watching Ignoring Scheduled Pinned Locked Moved Newbie League
      7
      0 Votes
      7 Posts
      321 Views
      D

      @d-healey yes, that's what was missing.

      Thanks so much!