HISE Logo Forum
    • Categories
    • Register
    • Login
    1. HISE
    2. Recent
    Log in to post
    Load new posts
    • All Topics
    • New Topics
    • Watched Topics
    • Unreplied Topics
    • All categories
    • All tags
    • d.healeyD

      Invalid use of incomplete type vSIMDType

      Watching Ignoring Scheduled Pinned Locked Moved Bug Reports
      9
      0 Votes
      9 Posts
      674 Views
      d.healeyD

      @Christoph-Hart Bump bump

    • Matt_SFM

      Multi Output Tutorial

      Watching Ignoring Scheduled Pinned Locked Moved Documentation
      17
      8 Votes
      17 Posts
      2k Views
      d.healeyD

      @weezycarter make a minimal test plugin with 4 channels. Then we'll have a baseline.

    • B

      random float 0. - 1. how to?

      Watching Ignoring Scheduled Pinned Locked Moved Scripting
      6
      0 Votes
      6 Posts
      214 Views
      iamlampreyI

      @Rognvald No problem 🙂

      This is a bit cleaner:

      inline function onButton6Control(component, value) { if (!value) { return; } // works the same as if (value) but the scope is a little bit cleaner local Knob1_value = Math.randInt(20, 20000); // this is already fine local Knob3_value = Math.random(); // you don't need range here, Math.random() is already within the range you're expecting Knob1.setValue(Knob1_value); Knob1.changed(); // these can be single lines if you prefer Knob3.setValue(Knob3_value); Knob3.changed(); }; Content.getComponent("Button6").setControlCallback(onButton6Control);

      If Knob1 and Knob3 already have their own Control Callbacks, you also don't need to independently call these:

      SimpleGain1.setAttribute(SimpleGain1.Gain, Knob1_value); // already handled by Knob1.changed(); SimpleGain2.setAttribute(SimpleGain2.Gain, Knob3_value); // already handled by Knob3.changed();

      Control.changed() is essentially simulating changing the control with the mouse, so you're basically calling the setAttribute function twice.

    • AGD_A

      parameter properties desappear

      Watching Ignoring Scheduled Pinned Locked Moved Newbie League
      6
      0 Votes
      6 Posts
      184 Views
      AGD_A

      @Chazrox me that I'm confused 😁

    • Oli UllmannO

      Table -> Disable deletion by right-clicking

      Watching Ignoring Scheduled Pinned Locked Moved Solved General Questions
      22
      0 Votes
      22 Posts
      776 Views
      DanHD

      @DanH said in Table -> Disable deletion by right-clicking:

      No, nor me. Having curve nodes would be much more up-to-date. Is there anyone here who could write a new table which can interface with the existing Hise modules (LFO / ShapeFX)? For $$....

      Seriously though, can anyone help with this?!

    • J

      buttonpacks, panels, buttons and midi note fun...HELP! lol

      Watching Ignoring Scheduled Pinned Locked Moved Solved Scripting
      4
      0 Votes
      4 Posts
      213 Views
      J

      @ulrik ahhhhhhh! perfect! thanks so much! this really simplifies everything!

    • ustkU

      Matrix Modulator voice nullptr crash

      Watching Ignoring Scheduled Pinned Locked Moved Bug Reports
      11
      0 Votes
      11 Posts
      694 Views
      ustkU

      @Christoph-Hart oh awesome! Thanks!

      AGI my ass…

      Lol very true 😆

    • D

      Server.callWithPOST callback not triggered

      Watching Ignoring Scheduled Pinned Locked Moved Newbie League
      5
      0 Votes
      5 Posts
      159 Views
      ustkU

      @daniloprates It appears you found it already ☺

    • HISEnbergH

      Free Reverse Delay built in RNBO

      Watching Ignoring Scheduled Pinned Locked Moved Blog Entries
      15
      11 Votes
      15 Posts
      3k Views
      JulesVJ

      @Mighty23 It seems 1000 ms is very short for low bpm and 1 bar.

      Is it possible to increase the max delay time to 5000 ms?

    • Oli UllmannO

      Build failed LAST DEV COMMIT on Mac

      Watching Ignoring Scheduled Pinned Locked Moved Bug Reports
      1
      0 Votes
      1 Posts
      54 Views
      No one has replied
    • 1

      How to build a degradation chain in HISE (Script FX) — need guidance

      Watching Ignoring Scheduled Pinned Locked Moved ScriptNode
      4
      0 Votes
      4 Posts
      300 Views
      LindonL

      @13murderer said in How to build a degradation chain in HISE (Script FX) — need guidance:

      @Lindon Hey, the default bitcrush allows to set 4-16 bits, but i need to set 20,24 bits. Is it possible somehow?

      Are you sure the incoming signal is 24 bits? But in any case if you are degrading the signal further then it will be pretty impossible to tell the difference between 16 bit and 24 bit...

    • pcs800P

      How to get values from script fx node

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      9
      0 Votes
      9 Posts
      537 Views
      HISEnbergH

      @pcs800 Ah ya it is a little hidden. In scriptnode click the arrows icon next to the parameter (on your compressor). Then right click the parameter and select "Copy range to source" and it will set the Macro control to the same values.

      example.png

      example2.png

    • Christoph HartC

      CableBox component - for your modulator synth needs :)

      Watching Ignoring Scheduled Pinned Locked Moved Presets / Scripts / Ideas
      16
      10 Votes
      16 Posts
      4k Views
      RetromelonR

      Here's the updated script

      CableBox Component.js

      CableBox Component_txt.txt

    • ulrikU

      scroll event for script panel mouse callback

      Watching Ignoring Scheduled Pinned Locked Moved Feature Requests
      25
      7 Votes
      25 Posts
      8k Views
      HISEnbergH

      @ulrik said in scroll event for script panel mouse callback:

      Would it be possible to add

      event.scroll and event.scrollValue

      to the Script Panels MouseCallback?

      @Christoph-Hart apologies since it looks like it's T-Shirt season for me--do you think this is a feature you can look at integrating? I am trying to add a Zoom/Scrolling feature to my panels and this is just what I need...

    • P

      Preset Browser closes when preset is selected

      Watching Ignoring Scheduled Pinned Locked Moved Newbie League
      4
      0 Votes
      4 Posts
      245 Views
      P

      @ustk said in Preset Browser closes when preset is selected:

      @Proteus1 your button is probably set to saveInPreset, which triggers it on preset change… just disable that

      solved

    • d.healeyD

      Waveform how to get playback position?

      Watching Ignoring Scheduled Pinned Locked Moved Unsolved Scripting playhead waveform
      19
      0 Votes
      19 Posts
      2k Views
      Christoph HartC

      @HISEnberg said in Waveform how to get playback position?:

      Your version is giving the actual sample value so it seems preferable:

      It also runs if your waveform is not visible.

    • 1

      error C1083. HELP!

      Watching Ignoring Scheduled Pinned Locked Moved Bug Reports
      9
      0 Votes
      9 Posts
      459 Views
      It_UsedI

      @13murderer в лс отправил всё

    • T

      staple process error MAC

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      21
      0 Votes
      21 Posts
      1k Views
      T

      @CatABC ok thank you!!! so it's not only on my end. That's reassuring.

    • LindonL

      Global retriggering Modulators and Pitch......

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      2
      0 Votes
      2 Posts
      93 Views
      LindonL

      @Lindon OK well after another 1/2 an hour randomly dropping nodes into my network ....this seems to work:

      9489b406-9561-4d97-a048-640f3bd31219-image.png

    • ChazroxC

      Check if (!FILE) do this...

      Watching Ignoring Scheduled Pinned Locked Moved Solved Scripting
      4
      0 Votes
      4 Posts
      159 Views
      ChazroxC

      @Oli-Ullmann @iamlamprey I promise you guys I was looking for this. hahaha. Thank You 🙏

      That was it...Thank you guys!