• Expansions on external hard drive

    4
    0 Votes
    4 Posts
    189 Views
    DanHD

    @BWSounds fyi installing expansions via the hr1 method causes issues with permissions on OS X. Me and others have stopped using it for this reason.

  • Scripnode 101

    157
    8 Votes
    157 Posts
    14k Views
    C

    @Christoph-Hart Got it. Thanks

  • The sample directory does not exist - dialog - more changes...

    14
  • Linking parameters to SNEX

    25
    0 Votes
    25 Posts
    2k Views
    ustkU

    @Steve-Mohican @dustbro It's easier to use an enum:

    enum MyParameters { Gain = 0, whatever1, whatever2 } template <int P> void setParameter(double v) { if (P == MyParameters::Gain) { a = (float)v; } else if (P == MyParameters::whatever1) { b = (float)v * 2.0f; } else if (P == MyParameters::whatever2) { c = (float)v / 4.5f; } }
  • Compressor reduction reset

    6
    0 Votes
    6 Posts
    564 Views
    I

    @dustbro :crying_face:

  • [video] A guided tour of HISE

    4
    10 Votes
    4 Posts
    447 Views
    callybeatC

    @d-healey Great presentation David. These startup videos are perfect for all of us just starting out at Hise. :smiling_face_with_sunglasses: :thumbs_up_medium-light_skin_tone:

  • Monophonic retriggering behavior within Wavetable Synth?

    9
    0 Votes
    9 Posts
    534 Views
    FatMitchellF

    Update: a combo box linked to the voice limit, set to 1 will force mono on wavetable synth module. Thanks!!!

  • Simple button conundrum...

    22
    0 Votes
    22 Posts
    1k Views
    S

    @d-healey Update and working! Thanks

  • Control PolyshapeFX Table - Asymetrical

    2
    0 Votes
    2 Posts
    185 Views
    FatMitchellF

    SOLVED:

    under component-specific properties change the index to 1 and it works, rejoice!

  • Projucer issue

    5
    0 Votes
    5 Posts
    354 Views
    ?

    @orange & @d-healey Thank you so much! You guys are like Swedish Knifes whom are multi-talented developers :beaming_face_with_smiling_eyes:

  • Paint Routine Graphics and Mouse Callback in a Function

    6
    0 Votes
    6 Posts
    303 Views
    FortuneF

    @orange Whoohoo I didn't know if that is possible. Thank you so much, man!

  • Windows Debug Question

    4
    0 Votes
    4 Posts
    163 Views
    d.healeyD

    @DanH

    Yes and yes.

  • Call a function after the plugin loaded

    14
    0 Votes
    14 Posts
    414 Views
    ?

    @ulrik No problem.

    I think I found a bug, Settings.isOpenGLEnabled() returns always true o the compiled plugin, but it works on Hise.

    If you set the OpenGL "No" on the CustomSettings FT, GeneralSettings.xml shows OPEN_GL="0" when the plugin is closed, as it supposed to be. That's ok.

    But when you load the plugin again, even the OPEN_GL is set to 0 on the GeneralSettings.xml, Settings.isOpenGLEnabled() returns always true.

  • event.drag x, y data for multiple points

    5
    0 Votes
    5 Posts
    242 Views
    ustkU

    @harris-rosendahl

    Line 53, column 35: This expression is not a function!

    Can you spot why?

    Once this is fixed, you'll see that anywhere you click/drag, all of the 8 parameters are changing. This is because you don't know which point is being clicked/dragged.

    The reason for this is that the overall approach isn't the good one.
    Don't try to set any parameters at first, and just focus on the widget itself. Put your knobs aside, the parameters will come later. For the moment, you need a way to store the nodes so you can find one reliably when you click on it based on a certain area around its coordinates. Hint -> store them in an array of objects that represents their position (but not only, you need to know if the node is clicked or not).

    Then and only then, you can start to think a mouse CB that can detect where you have clicked, and resolve the "is there a node under the cursor?" question so the node in question can be focused and updated

    Then once you have this and are able to update the coordinates and repaint the nodes, you are ready to implement the parameters you want

  • Granular Synth

    13
    0 Votes
    13 Posts
    913 Views
    ?

    @Christoph-Hart Is there a way to use the granulator node polyphonically in scriptnode?? It has been improved upon quite a bit since the last time I checked!

  • [SOLVED] Changing Key Colors with Samplemaps

    3
    0 Votes
    3 Posts
    313 Views
    S

    @d-healey You were Right! I tried this code in a hidden Panel and works Perfectly! Thanks man.

    ScriptPanel1.setLoadingCallback(function(isPreloading) { if(!isPreloading) for (i = 0; i < 127; i++) { Engine.setKeyColour(i, Colours.withAlpha(Colours.black, 0.6)); if (Sampler.asSampler().isNoteNumberMapped(i)) Engine.setKeyColour(i, Colours.withAlpha(Colours.dodgerblue, 0.4)); } });
  • 0 Votes
    2 Posts
    182 Views
    ustkU

    @ustk Sometimes I just think too much...
    Or not enough! 🤣

    inline function load() { if (!prefFile.isFile()) prefFile.writeEncryptedObject(preferences, PREF_FILE_PIN); local decryptedPrefFile = prefFile.loadEncryptedObject(PREF_FILE_PIN); if (isDefined(decryptedPrefFile.showInfo)) { // whatever } } load();
  • Transient Designer/Shaper?

    5
    0 Votes
    5 Posts
    577 Views
    FatMitchellF

    @pluginboi DUUUUDEEEE thank you. This is so amazing. Thank you so much and thank you to @Christoph-Hart !!!!!

  • Favorite icon with LAF

    7
    0 Votes
    7 Posts
    432 Views
    DanHD

    @DanH ah:

    Link Preview Image Star / Favourite Icon In Preset Browser / Look And Feel

    @d-healey said in Star / Favourite Icon In Preset Browser / Look And Feel: I've been trying to figure this out too, I can do it easily in the HISE source bu...

    favicon

    Forum (forum.hise.audio)

  • Disconnected master fader from the master container, after saving as XML

    4
    0 Votes
    4 Posts
    215 Views
    d.healeyD

    @gorangrooves I always save as XML (been bitten by .hip many times) and it's always been the same that the master chain has the same name as the XML so I guess I'm used to it.

62

Online

1.7k

Users

11.7k

Topics

101.5k

Posts