Forum
    • Categories
    • Register
    • Login
    1. Home
    2. Tags
    3. scripting
    Log in to post
    • All categories
    • David HealeyD

      HISE Scripting Foundations - Beginners' scripting course, now available.

      Watching Ignoring Scheduled Pinned Locked Moved Scripting hise scripting course beginner
      6
      5 Votes
      6 Posts
      93 Views
      David HealeyD

      @Yinxi said in HISE Scripting Foundations - Beginners' scripting course, now available.:

      @David-Healey
      Sometimes there are discounts for students, which is why I'm asking, but I hadn’t seen the initial launch discount.

      Ah ok, yeah the launch bundle and discount is for everyone.

    • E

      Button Script not working...

      Watching Ignoring Scheduled Pinned Locked Moved Scripting scripting button vst3
      4
      0 Votes
      4 Posts
      80 Views
      ustkU

      @d-healey seeing the number of people legitimately falling in that trap, it's a pity there's still no warning in the console

    • F

      Unknown function error

      Watching Ignoring Scheduled Pinned Locked Moved Scripting error function scripting script reference
      3
      0 Votes
      3 Posts
      166 Views
      F

      @d-healey Fixed, thanks!

      I'm new to HISE so I'm bound to do beginner mistakes lol

    • oskarshO

      Can we draw Path in CSS ?

      Watching Ignoring Scheduled Pinned Locked Moved General Questions css scripting style svg icon
      4
      0 Votes
      4 Posts
      590 Views
      Christoph HartC

      Let us know more about what you’re trying to achieve and we can give better advice.

      Damn, bots are getting better but this gave it away.

    • R

      Granulator audio file

      Watching Ignoring Scheduled Pinned Locked Moved General Questions granulator audio file scripting
      11
      0 Votes
      11 Posts
      938 Views
      R

      @Lindon I just found this thread which seems to be exactly what I am looking for.

      https://forum.hise.audio/topic/7812/audioloop-player-granulator-file-handling/4?_=1722250501048

      I shall try this out when I get home but from reading it through it looks like it should give me enough to get to where I need to get to and build from there.

    • A

      Sustain Pedal Question

      Watching Ignoring Scheduled Pinned Locked Moved Scripting sustain pedal scripting basic
      15
      0 Votes
      15 Posts
      2k Views
      David HealeyD

      @ATWAW said in Sustain Pedal Question:

      What function would I use to turn on a sustain pedal via a button on the interface,

      If you're only using the sustain pedal for standard sustain pedal sustaining, then you just need to send a CC64 message.

      In the button's callback you could use.

      Synth.sendController(64, component.getValue() == 0 ? 1 : 80);

    • R

      Set sample length via script

      Watching Ignoring Scheduled Pinned Locked Moved General Questions sampleend sample length scripting
      10
      0 Votes
      10 Posts
      1k Views
      David HealeyD

      @rzrsharpeprod said in Set sample length via script:

      Or did you mean for the reverse samplemap? That would work for that definitely.

      Yes this. One sample map forward, one reversed. Auto trim the reversed one, two minutes of work.

      Is it possible to do it via script or was I chasing an impossible task from the offset?

      Yes it's possible, but it seems like more effort than it's worth.

    • trillbillyT

      Display Value Rounding

      Watching Ignoring Scheduled Pinned Locked Moved General Questions label display value scripting
      8
      0 Votes
      8 Posts
      743 Views
      trillbillyT

      @Natan Thanks! I got it, I was just blanking for a bit.