• Presets

    13
    0 Votes
    13 Posts
    1k 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.

  • My panel disappears after I leave and reload the project?

    2
    0 Votes
    2 Posts
    217 Views
    ustkU

    @TinyHustlr The XML you are saving might not be the same as the one you are opening.
    Be sure you save at this location -> projectFolder/XmlPresetBackups

    Someone just had a quasi-similar issue here https://forum.hise.audio/topic/11995/cannot-reopen-project?_=1740129494821

  • Any possibility to add a fixed size to the ValuePopupData ?

    5
    0 Votes
    5 Posts
    393 Views
    Xearox73X

    @d-healey
    or a possibilty to show the "ValuePopupData" in Label? Problem solved i think
    I have already found some similar questions, but nobody seems to understand why you want to do this πŸ™„
    creative freedom perhaps πŸ˜‚ πŸ˜† πŸ˜‡

  • 0 Votes
    19 Posts
    2k Views
    d.healeyD

    @Xearox73 said in Help a newbie, i need a solution that a knob (slider) shows both values/modes Frequency and TempoSync:

    Content.getComponent("pitchLFO12").set("mode", "Frequency");

    Grab your component references within on init and store them in a const instead of getting them in the callback function.

  • Connect Slider Value

    10
    0 Votes
    10 Posts
    802 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);

  • Compiling / Getting Started on OSX

    4
    0 Votes
    4 Posts
    393 Views
    d.healeyD

    @thrice801 You should use the develop branch if you want the latest features and fixes.

  • GUI Development Question.

    12
    0 Votes
    12 Posts
    1k Views
    d.healeyD

    @tonni Ah fair enough, just looked sus

  • Help with this noob error please.

    16
    0 Votes
    16 Posts
    1k Views
    hujackusH

    @Chazrox said in Help with this noob error please.:

    Im not sure how to apply this.

    That's ok. I just made a code example that would have helped me a month ago when I started learning "HISEscript". By uncommenting each line, you can see the differences in behavior for each combination of keywords used.

  • Setting colors in paint routines. Colours.fromVec4() troubles.

    2
    0 Votes
    2 Posts
    224 Views
    hujackusH

    I added another test panel and I think I figured it out.

    const Panel10 = Content.getComponent("Panel10"); const colorConst10 = 0xffddbbaa; Panel10.setPaintRoutine(function(g) { var vec4 = Colours.toVec4(colorConst10); var c = Colours.fromVec4(vec4); Console.print(colorConst10); //4292721578 Console.print(vec4); //[Array] Console.print(trace(vec4)); //[0.8666666746139526,0.7333333492279053,0.6666666865348816,1.0] Console.print(c); //-2245718 g.setColour(c); g.fillRect([0,0,20,20]); });

    The thing that I was getting wrong this whole time was that the vec4 array contains normalized RGB components. I thought the problem was that the colors were out of scope or something.

  • Hi Hat Choke Script Help

    4
    0 Votes
    4 Posts
    416 Views
    zach.mxZ

    Is there any difference between Piano roll midi events, and Midi events coming in from an external midi keyboard?

    The Choke Group Processor works when I click midi keys on the piano roll using my mouse, but doesn't trigger the choke when I use my midi keyboard πŸ€”

  • Global LFO on effects

    13
    0 Votes
    13 Posts
    987 Views
    elemen8tE

    @Lindon Yes I get that, but the initial problem is that it doesn't work in the DAW when it is exported without a sound generator like the audio loop player.

  • VST3 Export -

    22
    0 Votes
    22 Posts
    3k Views
    E

    @Christoph-Hart
    Haha, i hate to be the bearer of bad news in that case.
    XCode16.2

  • FX chain for a sampled rhodes piano

    6
    0 Votes
    6 Posts
    554 Views
    HISEnbergH

    Oh and I think possibly you might have to have a github account to search for repos on github, but if you are new to all of this then sticking with just basic scriptnode and stock effects is better!

    Also building these types of effects with HISE's stock effects is possible, but would be a lot more difficult than just using scriptnode (which is why I suggest it). Either way, my example contains all three effects you mentioned, Feel free to add more knobs as you see fit.

  • Customer support when releasing my first plugin?

    8
    0 Votes
    8 Posts
    806 Views
    LindonL

    @cassettedeath said in Customer support when releasing my first plugin?:

    Great thread - very helpful, thank you.

    How often do you have to update the plug-in build so it runs on new OS updates? Is this quite regular or do builds generally work on new OS releases?

    Like Dave says - its mainly Apple futzing about with silicon changes every few years - otherwise they should work fine across OSes - winodw sis much more reliable/backwards compatible

    Have you had any customers contact to say the Hise serial key system isn’t working?

    Which key system? RSA - works fine - HISE Authorise - works fine.

    Many thanks

  • Setting predetermined values with knobs

    2

17

Online

1.8k

Users

12.2k

Topics

105.9k

Posts