• Indie license

    22
    0 Votes
    22 Posts
    2k Views
    bendursoB

    @Christoph-Hart Oh got it, you can use Juce 6, but you have to follow the rules of Juce 8 (whatever starter, indie or pro)

  • How to connect panels to FX assigned radio group toggles?

    13
    1 Votes
    13 Posts
    602 Views
    LindonL

    @JulesV said in How to connect panels to FX assigned radio group toggles?:

    @Lindon said in How to connect panels to FX assigned radio group toggles?:

    they are not really (IMHO) set up for real-time modulation - so when the user changes a filter freq value I turn the audio off...and reinstate it on mouse up

    But this wouldn't be a very pleasant situation in practice, would it?

    I've never had a user complain...

    Because all multi-band plugins on the market do this without any problems.

    No they dont - dynamic multiband effects seems like almost a silly idea.... you set the bands you want and then apply dynamic effects in the band, not to the band itself.

    @Christoph-Hart is there any way to solve the unpleasant glitchy pop problem when performing frequency automation in low frequencies? Otherwise, these linkwitz-riley filters will not be really useful.

  • Samplemap Loads; Samplemap Broadcaster Doesn't Fire

    Solved
    8
    0 Votes
    8 Posts
    185 Views
    C

    @d-healey I understand and appreciate that (truly). I've been trying to do that for 5 weeks — all the data is dynamic – it can't be reduced like that, unfortunately.

  • Building HISE plugin virus alert?

    5
    0 Votes
    5 Posts
    286 Views
    mmprodM

    @Christoph-Hart Ah ok - thanks!

  • Compile DSP > Can't find connection

    Unsolved
    1
    0 Votes
    1 Posts
    76 Views
    No one has replied
  • Replacing stock button image

    9
    0 Votes
    9 Posts
    250 Views
    d.healeyD

    @VirtualVirgin said in Replacing stock button image:

    The entire transparent area

    What about if it's 50% transparent? And you didn't want that part affected by the background colour.

    You can do this with look and feel though - including using an image.

  • Packages, VST3/AU and samples

    7
    1 Votes
    7 Posts
    758 Views
    S

    @DanH Yes, I'm a subscriber to Davids patreon page, and he's very helpful! Probably build a installer for just the VST3/AU files and then include the samples on the side. Not that complicated to do the process of installing the samples

  • AAXVersion.h missing, build failed

    21
    0 Votes
    21 Posts
    778 Views
    MorphoiceM

    @Lindon good to hear from you all about this, exactly my initial experience, good to know I can save myself the effort for a free plugin, although my 2 pro-tools friends are crying for me to make it AAX. they can get a vst wrapper ;))))

  • Font

    9
    0 Votes
    9 Posts
    434 Views
    d.healeyD

    @udalilprofile I think onl Oxygen and Source code pro - just always include the fonts you want to be safe.

  • HISE Interpreter Speed

    6
    1 Votes
    6 Posts
    345 Views
    C

    @d-healey 😂😂😂

  • htonl : identifier not found - VST3 compiling issue

    Solved
    2
    0 Votes
    2 Posts
    182 Views
    Matt_SFM

    Apparently, enabling "Compile with Perfetto" in the project's settings is causing this issue.

    I must add that it's happenning only on windows. It compiles just fine on MacOS with the option enabled.

  • How can I change the range slider default values?

    22
    0 Votes
    22 Posts
    2k Views
    d.healeyD

    @VirtualVirgin said in How can I change the range slider default values?:

    Is this feature not in common use by the HISE community?

    I don't know about anyone else but I've only used it to browse the example snippets.

  • Getting copy protection to work...

    5
    0 Votes
    5 Posts
    323 Views
    ustkU

    @Morphoice As @Dan-Korneff says an existing license manager with your own endpoint for license file encryption is a good starting point.

    @Christoph-Hart posted this php snippet a while ago which is easy to get you on track seeing you're comfortable with php
    https://forum.hise.audio/topic/5369/build-failed-with-copy-protection-enabled/11?_=1730596423891

  • Simple question: How do I change the color of the button state light?

    13
    0 Votes
    13 Posts
    512 Views
    VirtualVirginV

    @ustk said in Simple question: How do I change the color of the button state light?:

    @VirtualVirgin just use the alpha for the background as well

    laf.registerFunction("drawToggleButton", function(g, obj) { //g.setColour(obj.bgColour); g.setColour(Colours.withAlpha(obj.bgColour, obj.value ? 1.0 : 0.5)); // <= this instead g.fillRoundedRectangle(obj.area, 4.0); /* This is not needed since you do it right above, no matter if the button is clicked/hover or not if(obj.over) g.fillRoundedRectangle(obj.area, 4.0); if(obj.down) g.fillRoundedRectangle(obj.area, 4.0); */ g.setColour(Colours.withAlpha(obj.textColour, obj.value ? 1.0 : 0.5)); g.setFont("Arial Bold", 14.0); g.drawAlignedText(obj.text, obj.area, "centred"); });

    Thanks! This works just as I expected.

  • Change envelope step size?

    Solved
    11
    0 Votes
    11 Posts
    612 Views
    DWD

    @d-healey Makes sense thank you! 👍

  • Very newb question: how do I load an image file?

    7
    0 Votes
    7 Posts
    279 Views
    VirtualVirginV

    @orange said in Very newb question: how do I load an image file?:

    @VirtualVirgin Copy the image file to the project's Images folder. After that, you can change all of the properties with setPropertiesFromJSON easily. I also added Width and Height for example.

    const var VVLogo = Content.getComponent("VVLogo"); Content.setPropertiesFromJSON("VVLogo", { "width": 150, "height": 150, "fileName": "{PROJECT_FOLDER}VV_logo.jpg" });

    Thank you :)
    Yes, this solved it!

  • Hise Job

    1
    1 Votes
    1 Posts
    155 Views
    No one has replied
  • Console.blink() not blinking?

    17
    0 Votes
    17 Posts
    997 Views
    CyberGenC

    @d-healey yes. The project needs at least one expansion.

  • Style Value Popup?

    17
    0 Votes
    17 Posts
    1k Views
    MorphoiceM

    @d-healey said in Style Value Popup?:

    @Straticah I don't think there are any other properties you can change. The popup should be horizontally centred by default, it could be that the width of your knob is not evenly divisible by 2.

    You could instead create the popup using laf. In Sordina I replaced the text label with the value, but you could place it above the knob like a popup - this means the clickable area of your knob will be larger though which isn't always desirable.

    Peek 2024-07-26 10-24.gif

    damn that's beautiful! brilliant usability and clarity

  • Preset browser in one line height?

    5
    0 Votes
    5 Posts
    461 Views
    d.healeyD

    I think Christoph's post was about a custom preset system in addition to a custom preset browser - I can't remember.

    It's quite simple to do what you want though I think.

    Start by adding a combo box that shows the list of presets.

    Engine.getUserPresetList() will probably be your friend here.

    Then add a save button, if that's something you need. I made a video about this:

    https://youtu.be/NMtOAhvK0Qo

12

Online

2.0k

Users

12.8k

Topics

110.7k

Posts