• global time mod invert script

    3
    0 Votes
    3 Posts
    278 Views
    B

    @Lindon of course it is, thankyou.
    I think I tried that with intensity and had to do it the way I posted for it to work so I just went straight to that for inverting.
    Need to stop asking questions at 11pm when I’ve been going since dawn.
    Thanks

  • How to use Modulator.exists?

    8
    0 Votes
    8 Posts
    890 Views
    hujackusH

    @d-healey said in How to use Modulator.exists?:

    Did you try it? I get an error.

    That's very interesting. I spent so much time in the C++ i failed to consider if it even compiles in HISE. I assumed it did, but it doesn't in the onInit() callback. It will compile if you call exists() in any of the other callbacks, but will throw an error at runtime.

    Perhaps exists() is not supposed to be visible in the API and was accidentally added into the documentation?

  • Having a hard time with panel.setValue() syntax

    7
    0 Votes
    7 Posts
    278 Views
    VirtualVirginV

    @d-healey Thank you!

  • How to Create Artificial Notes of a Specific Duration

    Solved
    8
    0 Votes
    8 Posts
    540 Views
    C

    @aaronventure My dude - thank you! This is fantastic…truly appreciate the detail. This is all new to me and incredibly helpful—cheers!

  • LAF how to customize any object?

    4
    0 Votes
    4 Posts
    329 Views
    D

    Great, thanks a lot, guys!

  • Sliderpack first time

    3
    0 Votes
    3 Posts
    238 Views
    B

    @d-healey Thankyou, I had it in my head that the processor id wasn’t in the inspector for slider packs.
    Facepalm.
    Thanks as always

  • How to get around max start offset is 65536?

    17
    0 Votes
    17 Posts
    1k Views
  • Button code scalable ?

    4
    0 Votes
    4 Posts
    364 Views
  • Reserved word root ?

    5
    1 Votes
    5 Posts
    534 Views
    VirtualVirginV

    Ok, I've been getting a lot of strange errors form variables called "root". This has been driving me nuts because I am working with a lot of chord and scale information so many times I need a "root"! I'll just have to start naming them something else apparently.

  • fadeComponent

    13
    3 Votes
    13 Posts
    936 Views
    HISEnbergH

    @aaronventure Okay thanks for confirming everyone. I figured a timer would work just as well but I was hoping to avoid having one run in the background waiting for a fade event. I suppose a combination of a broadcaster and timer would work but not fun to implement.

  • Hadamard Mixing Matrix

    3
    0 Votes
    3 Posts
    338 Views
    M

    @njAudio03 said in Hadamard Mixing Matrix:

    or will I have to do some C++?

    https://faustlibraries.grame.fr/libs/routes/#rohadamard https://forum.hise.audio/topic/11250/this-is-my-reverb-in-faust-what-do-you-think?_=1738742996840

    if you can make a reverb in scriptnode let me see because I'm really curious. Maybe you could start from the delay template?

  • Fake AI menu but flickering issue, any ideas?

    4
    0 Votes
    4 Posts
    310 Views
    rglidesR

    @rglides Now I just need to figure out why it wants to keep selecting ambient drum and bass over and over 😅

  • Index of table point

    8
    0 Votes
    8 Posts
    501 Views
    Oli UllmannO

    @ulrik
    Oh, this is great! Thank you! :-)

  • 0 Votes
    1 Posts
    99 Views
    No one has replied
  • Trouble passing panel.data through an inline function for mouseCallback

    3
    0 Votes
    3 Posts
    159 Views
    VirtualVirginV

    @d-healey I thought in this case the parameter is the address for the data "this.data.test" being a path, not the actual data.
    So I was thinking the path variable is static, but it is just rewriting the contents at that path.
    Anyway, I fixed it by using .getValue() and .setValue():

    p.set("allowCallbacks", "All Callbacks"); p.setMouseCallback(function(event) { altDragAndDrop(); }); inline function altDragAndDrop() { // show "+" cursor when alt/option is pressed local cursor; event.altDown ? cursor = "CopyingCursor" : cursor = "NormalCursor"; this.setMouseCursor(cursor, Colours.white, 1); // alt/option drag copies to clipboard if (event.drag && event.altDown) { Clipboard = this.getValue(); } // releasing the mouse on a panel copies the clipboard to the panel, then clears the clipboard if (!event.clicked && event.altDown && this.getValue() != Clipboard && Clipboard != undefined) { this.setValue(Clipboard); this.repaint(); Clipboard = undefined; } };
  • Shouldn't the existence of data return a "true" in this case?

    2
    0 Votes
    2 Posts
    137 Views
    David HealeyD

    @VirtualVirgin Looks correct to me, we could reduce it to this

    Console.print("TEST" == 1); //0

    If you want to know if a value exists you could use isDefined() or for text specifically you can use != ""

  • Hise - where to include big libraries? (#include)

    Solved
    4
    0 Votes
    4 Posts
    259 Views
    griffinboyG

    @Christoph-Hart

    I'll figure it out. Seems like I still need to add paths somewhere for this kind of lib. Maybe xsimd should be on my external c++ hise feature requests wishlist haha...

    some of my effects would really really benefit from cross-platform simd (useful for filterbanks, fast math approximations, simd for complex numbers, etc) from what i've read it makes a significant difference for more complex dsp, stuff that uses high cpu by nature, for example I'm trying to optimize a BBD chorus at the moment which uses 6% cpu when oversampled by 2x. Even with fast math approximations it's slow because of the 8 filter stages that all need to use complex math.

  • I Need Help with scripting... pls :)

    Unsolved
    3
    0 Votes
    3 Posts
    326 Views
    David HealeyD

    @Davide8075 said in I Need Help with scripting... pls :):

    I leave the code generated by ChatGPT here if it helps

    It doesn't help much. Start at the beginning, go watch my scripting 101 video.

  • Fixed Arp

    Solved
    4
    0 Votes
    4 Posts
    201 Views
    ulrikU

    @Oli-Ullmann Great!

  • Table.setContentCallback() -> undefined parameter 0

    Solved
    11
    1 Votes
    11 Posts
    723 Views
    Oli UllmannO

    @clevername27
    Glad you were able to solve it! :-)

27

Online

2.2k

Users

13.5k

Topics

117.2k

Posts