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
    • LindonL

      Setting slider pack value at position(index) when its in a ScriptProcessor....

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      4
      0 Votes
      4 Posts
      35 Views
      LindonL

      @d-healey thanks. I ended up going back to Globals and FixObjectArrays as Im actually using values all over the place...., it makes me shiver a bit but hey .....

    • OrvillainO

      User presets not showing up in exported plugin

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      5
      0 Votes
      5 Posts
      39 Views
      OrvillainO

      @Lindon said in User presets not showing up in exported plugin:

      @Orvillain did you changee the name? even slightly?

      Tell her to remove the contents of AppData for the plugin and try reinstalling...

      Of the plugin? I didn't no.

    • It_UsedI

      Hise can't save hr file with hxi metadata.

      Watching Ignoring Scheduled Pinned Locked Moved Bug Reports
      13
      0 Votes
      13 Posts
      103 Views
      It_UsedI

      @d-healey yeah

    • dannytaurusD

      TooltipPanel new Fade and ShowIcon data properties (PR help please!)

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      3
      0 Votes
      3 Posts
      16 Views
      dannytaurusD

      @d-healey Thanks, will do πŸ˜€

    • ustkU

      Modulation Matrix issues and improvements

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      2
      2 Votes
      2 Posts
      133 Views
      ustkU

      @Christoph-Hart Bumpy bump ☺ This is unusable as is...

    • pcs800P

      Muting bands in a script fx network

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      8
      0 Votes
      8 Posts
      125 Views
      ustkU

      @resonant Not on happening on my end but, perhaps just interfacing a control.smoothed_parameter can help.

    • whereami518W

      Wavetable Synth Crash on note played

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      2
      0 Votes
      2 Posts
      27 Views
      ChazroxC

      @whereami518 Do you have anything scripted in onNoteOn?

    • RetromelonR

      CableBox

      Watching Ignoring Scheduled Pinned Locked Moved Scripting
      18
      0 Votes
      18 Posts
      196 Views
      RetromelonR

      Hey @Orvillan,

      No big deal if I didn’t know how to post a snippet. Better to ask than mess around blindly, right? I’m really new to coding, mostly picking it up bit by bit.

      I love making my own tools and plugins, experimenting with sounds, and sharing my stuff for free with the community. I started with Synthedit, but it’s not really modernized, so that’s why I decided to switch to HISE.

      Honestly, I’m mainly a music producer, graphic designer, and sound engineer, and I want to put all of my passions together to create the plugins that I want to make. Since coding isn’t one of my skills, I have no choice but to learn it step by step to help me further with plugin development, since HISE requires some coding knowledge to work around.

    • DanHD

      License Manager (Wordpress) Deactivation help

      Watching Ignoring Scheduled Pinned Locked Moved Scripting
      11
      0 Votes
      11 Posts
      149 Views
      It_UsedI

      @Christoph-Hart Thanks, I just don't know how to make my problem noticed, it doesn't bother me, but I had no other way out. I could write to you in private messages, but that's even worse than doing it in another post. I heard you, thanks again, and sorry again!

    • dannytaurusD

      Imgur not working in the UK is really starting to piss me off! πŸ˜‚

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      7
      2 Votes
      7 Posts
      64 Views
      dannytaurusD

      @Christoph-Hart πŸ˜‚πŸ˜‚πŸ˜‚

    • S

      Compile errors on Ubuntu 24.04

      Watching Ignoring Scheduled Pinned Locked Moved Newbie League
      15
      0 Votes
      15 Posts
      128 Views
      S

      @d-healey Thanks David - that worked and I was able to compile the DebugWithFaust version and run it....
      Now to try a ReleaseWith Faust.....
      Thanks again for your time, help and patience 😁

    • ulrikU

      selection.set(Sampler.FileName, new path);

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

      Envelope follower signal domain

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      4
      0 Votes
      4 Posts
      67 Views
      Christoph HartC

      signal detection = mod output (minus smoothing), so still not clear what's the problem, but glad you solved it :)

    • C

      Export Samples for Installer - hanging at Compressing 100%

      Watching Ignoring Scheduled Pinned Locked Moved Unsolved General Questions
      21
      2 Votes
      21 Posts
      2k Views
      It_UsedI

      @Christoph-Hart need your help. This really needed part for big projects.
      https://github.com/christophhart/HISE/issues/798

    • d.healeyD

      Invalid use of incomplete type vSIMDType

      Watching Ignoring Scheduled Pinned Locked Moved Bug Reports
      9
      0 Votes
      9 Posts
      400 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.

    • R

      random float 0. - 1. how to?

      Watching Ignoring Scheduled Pinned Locked Moved Scripting
      6
      0 Votes
      6 Posts
      52 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
      41 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
      114 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
      87 Views
      J

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