Forum
    • Categories
    • Register
    • Login
    1. Home
    2. David Healey
    3. Posts
    • Profile
    • Following 1
    • Followers 84
    • Topics 1,084
    • Posts 25,462
    • Groups 1

    Posts

    Recent Best Controversial
    • RE: Testers Needed for Rhapsody v3

      @jeffd Click this

      e0982ea8-d91e-4899-bd05-93f7c065044b-image.png

      Then I think you go to Installed > Generators

      But before you do that, open the plugin manager (it's in one of the menus at the top) and rescan plugins.

      posted in General Questions
      David HealeyD
      David Healey
    • RE: Testers Needed for Rhapsody v3

      Anyone else with FL Studio able to give it a try?

      posted in General Questions
      David HealeyD
      David Healey
    • RE: The Legato between samplers

      @Felix-W Break it down. Make a minimal project with one sampler where notes only trigger during legato transitions. Once you get that working you can start to incorporate it into your project.

      posted in General Questions
      David HealeyD
      David Healey
    • RE: Get, post API Hise language.

      @Yannrog said in Get, post API Hise language.:

      if the payment is valid, the plugin is activate. if the payment is unvalid, the plugin is greyed out.

      This will be easy to hack - you might consider something like Moonbase which supports subscriptions.

      posted in General Questions
      David HealeyD
      David Healey
    • RE: Stop pruning default values from XML?

      @dannytaurus said in Stop pruning default values from XML?:

      because I'm setting some values in script that happen to be default values.

      Hmm this might be the source of an issue I was having too, I might try it.

      posted in General Questions
      David HealeyD
      David Healey
    • RE: Animated modulation

      @ustk said in Animated modulation:

      Have you had a look at the PR count lately?

      Yes, I'm trying to restrict myself from piling too much on Christoph.

      posted in General Questions
      David HealeyD
      David Healey
    • RE: Animated modulation

      @ustk https://github.com/christophhart/HISE/pull/986

      posted in General Questions
      David HealeyD
      David Healey
    • RE: Animated modulation

      @ustk said in Animated modulation:

      @David-Healey unfortunately no it's not tied to the plotter methods...

      I've got Claude on the case

      posted in General Questions
      David HealeyD
      David Healey
    • RE: How can i have a button that makes me go to a different section/page on my synth. Just like serum does with osc mix matrix and global pages

      @chimaera_09

      https://youtu.be/_s7LTRz8pEc

      posted in Newbie League
      David HealeyD
      David Healey
    • RE: Animated modulation

      @ustk drawpopupmenu ?

      posted in General Questions
      David HealeyD
      David Healey
    • RE: Animated modulation

      @Oriah-Beats Use a plotter floating tile

      posted in General Questions
      David HealeyD
      David Healey
    • RE: HISE 4.1: Obtaining Peak/RMS Values from Script to a Scripted UI Meter?

      @brucerothwell Yes, first you need to learn how to use custom look and feel (laf). Then search the forum for peak meter laf, or vu meter laf.

      Also there's a snippet here that shows how to do it without using filmstrips which is usually a better way to go if it fits your design: https://forum.hise.audio/topic/13154/knob-web-studio/66?_=1781298298486

      posted in Scripting
      David HealeyD
      David Healey
    • RE: Anyone doing factory presets only, with no Save button?

      @dannytaurus I'm doing this for my Sordina effect plugin, for my sample libraries I let them save though.

      posted in General Questions
      David HealeyD
      David Healey
    • RE: The Legato between samplers

      @Felix-W in the legato sampler add a script that plays notes when there is a legato transition. You make it work independently of the other samplers.

      posted in General Questions
      David HealeyD
      David Healey
    • RE: Linux

      @zachhealy1005 said in Linux:

      so compiling hise on my laptop is in fact impossible.

      If you reduce the number of compile threads to 1 or 2 it might still compile.
      make CONFIG=Release -j 2

      posted in General Questions
      David HealeyD
      David Healey
    • RE: Logic crashes on startInternalDrag

      @Oli-Ullmann said in Logic crashes on startInternalDrag:

      You can also use pluginval to test AU plug-ins.

      Ah that's good to know!

      posted in Scripting
      David HealeyD
      David Healey
    • RE: Logic crashes on startInternalDrag

      @Oli-Ullmann said in Logic crashes on startInternalDrag:

      pluginval

      I think that only handles VST, I'm talking about AUVal which is included with macOS

      Moonbase have a little article about it: https://moonbase.sh/articles/debugging-your-audio-unit-plugin-with-auval-aka-auvaltool/

      posted in Scripting
      David HealeyD
      David Healey
    • RE: Logic crashes on startInternalDrag

      @Oli-Ullmann Does AUVal provide any insight?

      posted in Scripting
      David HealeyD
      David Healey
    • RE: Show default preset name on first launch

      @dannytaurus

      	inline function updatePresetLabel(nameOnly: number)
      	{
      		if (!isDefined(currentPresetFile))
      			return;
      
      		local category = currentPresetFile.getParentDirectory().toString(currentPresetFile.NoExtension);
      		local name = currentPresetFile.toString(currentPresetFile.NoExtension);
      
      		if (nameOnly)
      			btnPresetBrowser.set("text", name);
      		else
      			btnPresetBrowser.set("text", category + " | " + name);
      	}
      

      I also call this in the post save callback too.

      posted in General Questions
      David HealeyD
      David Healey
    • RE: Logic crashes on startInternalDrag

      @Oli-Ullmann said in Logic crashes on startInternalDrag:

      Both versions (AU and VST3) work in Reaper. So it seems to be a Logic issue. :-(

      Can you recreate the issue in a minimal snippet?

      posted in Scripting
      David HealeyD
      David Healey