• This topic is deleted!

    1
    0 Votes
    1 Posts
    2 Views
    No one has replied
  • Scriptnode Granulator Noise

    3
    0 Votes
    3 Posts
    182 Views
    Adam_GA

    @Christoph-Hart thank you for the reply :)

  • Capture mouse while controlling the knob

    8
    0 Votes
    8 Posts
    528 Views
    VorosMusicV

    @ForeverLive
    In my experience, if @Christoph-Hart or @d-healey don't give a simple and straight answer its probably not a beginner friendly process.

    So like they said I'd also recommend other priorities first.

  • Changing the Grid Size in the Interface Designer?

    Solved
    23
    0 Votes
    23 Posts
    1k Views
    clevername27C

    @Christoph-Hart Preprocessor is perfect. Thank you.

  • Prevent Plug-In broadcasting Undo info to DAW

    18
    0 Votes
    18 Posts
    964 Views
    DanHD

    @Christoph-Hart oh dear!!

    Thanks very much, hugely appreciated :)

  • MacOS Parallels and IPP

    7
    0 Votes
    7 Posts
    424 Views
    hisefiloH

    @Dan-Korneff mmm that explains a couple of things. Do you know Any type 1 hypervisor for mac silicon?

  • Best practices for Custom Look Knob value label

    13
    1 Votes
    13 Posts
    901 Views
    ForeverLiveF

    @ustk Oh thank you for the reply! Yes it is exactly what i looking for.

  • How to add a grid in Table component?

    8
    0 Votes
    8 Posts
    235 Views
    DabDabD

    @ulrik OK.. It should be a feature request.

  • Compiled Standalone doesn't detect MIDI IN messages.

    15
    0 Votes
    15 Posts
    669 Views
    d.healeyD

    @RastaChess

    I guess I was hoping not to have to make changes to every laf button in every project I've built so far. After all, they are all going to need a Midi-Sources window and custom buttons.

    Why not use a single global script that's applied to all your projects?

    Maybe it is possible to create a look and feel for the midi sources window?

    That's what local laf is.

  • CTRL + Backspace Shortcut

    10
    0 Votes
    10 Posts
    554 Views
    Christoph HartC

    @d-healey said in CTRL + Backspace Shortcut:

    @oskarsh Yes but I'm using Linux where HISE shortcuts have been weird for ages.

    You're weird for ages!!1!

  • Can't compile SNEX workbench

    21
    0 Votes
    21 Posts
    1k Views
    Matt_SFM

    Now how do I use it? Add it as a hardcoded FX , remove my ScriptFX network and >change my interface references?

    yes load it in a HCFX, and remove the scriptFX, but keep the name of the module so you won't have to change anything in your code.

    Then if I want to make changes to the network I have to do it all over?

    Yes

    Thank you so much you've made my day, finally feel like I've actually accomplished something this week and learned a bunch on the way.

    You're welcome :)

  • panel - set draggable bounds to arc?

    26
    0 Votes
    26 Posts
    773 Views
    ustkU

    @Dan-Korneff With the new path methods, it is also possible to detect if a mouse is inside or outside a path with Path.contains([x,y])

  • Adventures in scriptnode: amplitude modulation

    9
    0 Votes
    9 Posts
    273 Views
    LindonL

    @modularsamples nice - I hadn't thought of the am stuff...being implemented that way.

  • Button for "Change Sample Folder Location" out settings?

    14
    0 Votes
    14 Posts
    861 Views
    Matt_SFM

    @d-healey oh? Didn't know that

  • saveUserPreset - Asks for Preset Name

    4
    0 Votes
    4 Posts
    328 Views
    trillbillyT

    @Matt_SF THanks, Ill try when I getb ack to the studio!

  • Scriptnode: Granulator

    63
    0 Votes
    63 Posts
    6k Views
    Adam_GA

    @Matt_SF many thanks, i had an older version than i thought opened. i updated again and success :)

  • HISE all listed shortcuts

    4
    0 Votes
    4 Posts
    284 Views
    DabDabD

    @Tania-Ghosh Yes.. That

  • SFZ import - on the fly...

    9
    0 Votes
    9 Posts
    404 Views
    Y

    @Lindon the problem is that after a hundred tests on sfz and sample Maps created manually, the sfz integrates well but once compiled, there is a big problem with the note being held when reading in the daw. I imported my sfz and converted to sample map and compressed to ch1. I tried with 2 sample maps of the same samples. one import sfz and the other manually. in the exported plugin only my impors manuals work correctly

  • Keyboard OctaveNumber Label

    Solved
    6
    0 Votes
    6 Posts
    443 Views
    VorosMusicV

    @d-healey @Christoph-Hart
    ok, than I'll do it that way!
    Thanks!

  • Draw panel / fade edges to alpha?

    7
    1 Votes
    7 Posts
    551 Views
    Christoph HartC

    I find myself using layers less and less because of subtle glitches like this - after all it has to rasterize the graphics context to an image and we're back in pixel land.

    A non layer approach would use g.drawDropShadowFromPath() with a circle path:

    const var Panel1 = Content.getComponent("Panel1"); // that's a poor circle, but the blur will save us... var circlePath = Content.createPath(); circlePath.startNewSubPath(0.5, 0); circlePath.quadraticTo(1.0, 0.0, 1.0, 0.5); circlePath.quadraticTo(1.0, 1.0, 0.5, 1.0); circlePath.quadraticTo(0.0, 1.0, 0.0, 0.5); circlePath.quadraticTo(0.0, 0.0, 0.5, 0.0); Panel1.set("width", Panel1.get("height")); Panel1.setPaintRoutine(function(g) { g.drawDropShadowFromPath(circlePath, this.getLocalBounds(50), Colours.black, 50, [0, 0]); });

38

Online

1.8k

Users

12.0k

Topics

104.8k

Posts