HISE Logo Forum
    • Categories
    • Register
    • Login
    1. HISE
    2. voxuer1
    3. Topics
    V
    • Profile
    • Following 0
    • Followers 0
    • Topics 7
    • Posts 28
    • Groups 0

    Topics

    • V

      Selling a HISE-based Plugin under GPLv3 – Compliance Questions

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

      @d-healey ok, thank you, that helps

    • V

      Issue with Importing Transparent PNG Logos in HISE on Windows

      Watching Ignoring Scheduled Pinned Locked Moved Newbie League
      4
      0 Votes
      4 Posts
      72 Views
      O

      @voxuer1 This'll most likely be some Windows rendering issue with JUCE. Probably not something Christoph is going to address himself, and it might not be addressable by the JUCE team either.

      All said and done, you're almost certainly going to be much better off rendering out the exactly resolution you need, both in terms of memory efficiency, and also future proofing.

      If you need to support different resolutions, and you can't just turn your SVG's into SVG paths using the Projucer SVG Path converter, then you should export your PNG at different scales and choose the right file to insert at runtime based on a global scale factor.

    • V

      Save Presets in VST Export

      Watching Ignoring Scheduled Pinned Locked Moved Presets / Scripts / Ideas
      3
      0 Votes
      3 Posts
      73 Views
      V

      @d-healey yes, that´s it, thanx

    • V

      Presets

      Watching Ignoring Scheduled Pinned Locked Moved Newbie League
      13
      0 Votes
      13 Posts
      243 Views
      d.healeyD

      @voxuer1 You don't need to split them when selecting/loading the preset, you only need to do that for displaying them.

    • V

      Tooltips

      Watching Ignoring Scheduled Pinned Locked Moved Scripting
      4
      0 Votes
      4 Posts
      81 Views
      V

      @d-healey I did it, broadcaster was the right tool!

    • V

      Combo Box print Value

      Watching Ignoring Scheduled Pinned Locked Moved Scripting
      12
      0 Votes
      12 Posts
      144 Views
      d.healeyD

      @voxuer1 That means the thing on the left side of the dot doesn't have a function with that name. You probably need to get the reference to your module in a different way.

    • V

      Connect Slider Value

      Watching Ignoring Scheduled Pinned Locked Moved Newbie League
      10
      0 Votes
      10 Posts
      176 Views
      V

      @voxuer1 working code

      const var Speed = Content.getComponent("Speed");
      const var SpeedValue = Content.getComponent("SpeedValue");

      inline function onSpeedControl(component, value)
      {
      local formattedValue = Engine.doubleToString(value, 2);
      SpeedValue.set("text", formattedValue);
      Console.print("Slider Value: " + formattedValue);
      };

      Content.getComponent("Speed").setControlCallback(onSpeedControl);