Forum
    • Categories
    • Register
    • Login
    1. Home
    2. voxuer1
    3. Topics
    V
    • Profile
    • Following 0
    • Followers 0
    • Topics 9
    • Posts 45
    • Groups 0

    Topics

    • V

      Stuck in Wizard / VST SDK Error - Path is correct but no "Green Checkmarks"

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      5
      0 Votes
      5 Posts
      98 Views
      V

      @David-Healey I finally managed to get a successful VST3 export! "BUILD SUCCEEDED" in the terminal.

      What fixed the SDK error: The issue was indeed the VST3 SDK path. I had to point it exactly to the folder containing the base, public.sdk, and pluginterfaces directories. After correcting this in the Projucer Global Paths, the "SDK missing" error disappeared.

    • V

      RNBO Integration in HISE 4.1.0: Updated Workflow for Hardcoded-style DSP Networks?

      Watching Ignoring Scheduled Pinned Locked Moved C++ Development
      25
      0 Votes
      25 Posts
      664 Views
      DanHD

      @DanH said in RNBO Integration in HISE 4.1.0: Updated Workflow for Hardcoded-style DSP Networks?:

      @voxuer1 so I'm on RNBO 1.4.2 and everything works fine

    • V

      Selling a HISE-based Plugin under GPLv3 – Compliance Questions

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      3
      0 Votes
      3 Posts
      430 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
      647 Views
      OrvillainO

      @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
      554 Views
      V

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

    • V

      Presets

      Watching Ignoring Scheduled Pinned Locked Moved Newbie League
      13
      0 Votes
      13 Posts
      2k Views
      David 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
      442 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
      1k Views
      David 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
      1k 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);