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

    Topics

    • D

      Expansion not working

      Watching Ignoring Scheduled Pinned Locked Moved Newbie League
      17
      0 Votes
      17 Posts
      91 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
      113 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
      75 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
      122 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
      99 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
      111 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
      127 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
      97 Views
      D

      @d-healey great, thanks!

    • D

      Wrong tooltip text

      Watching Ignoring Scheduled Pinned Locked Moved Bug Reports
      1
      0 Votes
      1 Posts
      51 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
      124 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
      184 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
      233 Views
      D

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

      Thanks so much!

    • D

      Velocity not working

      Watching Ignoring Scheduled Pinned Locked Moved Newbie League
      3
      0 Votes
      3 Posts
      135 Views
      D

      @d-healey great, thanks!

    • D

      Can't find the Routing Matrix icon

      Watching Ignoring Scheduled Pinned Locked Moved Scripting
      3
      0 Votes
      3 Posts
      81 Views
      D

      @daniloprates great, thanks David!

    • D

      setControlCallback() - "Control Callback function must be an inline function" Error

      Watching Ignoring Scheduled Pinned Locked Moved Scripting
      4
      0 Votes
      4 Posts
      150 Views
      Christoph HartC

      At some point we have to address that problem, I notice more and more posts just pasting the rubbish GPT output which dilutes the prestine information set available here in the forum.

      Regarding the problem at hand, a single look at one of the many snippets / code examples from a good source should solve that problem, tuck inline before the function definition and pass it into the call.

    • D

      LAF how to customize any object?

      Watching Ignoring Scheduled Pinned Locked Moved Scripting
      4
      0 Votes
      4 Posts
      127 Views
      D

      Great, thanks a lot, guys!