• Weird transposition problem

    7
    0 Votes
    7 Posts
    1k Views
    d.healeyD

    I figured out why my code had been pasted in the on Controller callback. I'd put the timer callback before the controller callback in my script - I think I've done this in a lot of scripts because I setup a template for it... time for some revision :)

  • Auto Complete

    5
    0 Votes
    5 Posts
    1k Views
    Christoph HartC

    Escape is the native shortcut for Autocomplete on OS X's Xcode, but this may be not obvious for Windows people :)

  • Merging scripts

    14
    0 Votes
    14 Posts
    2k Views
    d.healeyD

    Oh now why didn't I think of that! That's the perfect solution, thanks again!

  • Dynamically adding effects

    8
    0 Votes
    8 Posts
    2k Views
    LindonL

    Nice, well done, and thanks.

  • Calling child functions

    8
    0 Votes
    8 Posts
    1k Views
    d.healeyD

    Coming from Kontakt I think of it this way, each sampler you use in HISE is essentially what you get when you have a single NKI in Kontakt. Each sampler can have groups, just like a Kontakt instrument, into which you can map your RR or dynamic layer samples.

  • Refresh Map

    2
    0 Votes
    2 Posts
    608 Views
    Christoph HartC

    onInit is enough (actually you only need to call it when the mapping changes)...

  • Connecting a table to multiple processors

    3
    0 Votes
    3 Posts
    792 Views
    d.healeyD

    My use case was to put a CC modulator in each sampler to control gain via expression and then have a table on the interface that controls the table of each modulator. After playing with it some more I realised I could just grab the CC value in the script and scale it to the table setting, then forward that to the modulator. This saves me having to specify the modulators in the script too.

  • Purging all samplers

    5
    0 Votes
    5 Posts
    1k Views
    d.healeyD

    Wow that was fast! I'll try it out soon

  • MidiProcessor Exists

    1
    0 Votes
    1 Posts
    483 Views
    No one has replied
  • Already included error

    1
    0 Votes
    1 Posts
    554 Views
    No one has replied
  • Includes absolute path

    2
    0 Votes
    2 Posts
    701 Views
    Christoph HartC

    Fixed in the latest commits.

  • numPressedKeys and isLegatoInterval with ignoreEvent

    3
    0 Votes
    3 Posts
    695 Views
    d.healeyD

    Aha! I misunderstood what was happening. The current behaviour is fine :)

  • Timer callback in multiple scripts

    4
    0 Votes
    4 Posts
    1k Views
    Christoph HartC

    It creates an extra timer but it runs in the message thread, so I would use it for audio stuff, and actually since ScriptPanels also have a timer for animation it became pretty useless - I think I added it before I added timers to the Panels but left it in the code base for some weirder use cases. Somehow the API doc didn't make it in the autocomplete list, but this is the usage:

    const var timer = Engine.createTimerObject(); timer.startTimer(150); // in milliseconds timer.callback = function() { Console.print("tut"); };
  • How to check if a key is held

    4
    0 Votes
    4 Posts
    842 Views
    Christoph HartC

    I thought it was there, but it wasn't. But I added it now, this is a reasonable request.

  • Setting filter gain in script

    3
    0 Votes
    3 Posts
    773 Views
    Christoph HartC

    Alright, it's fixed.

  • GUI in non-deferred script

    6
    0 Votes
    6 Posts
    1k Views
    d.healeyD

    That makes sense, thanks for confirming

  • Loading external script files with includes

    4
    0 Votes
    4 Posts
    923 Views
    d.healeyD

    ok cool, thanks

  • Pause, Wait, Sleep?

    6
    0 Votes
    6 Posts
    1k Views
    d.healeyD

    Thanks, really easy :)

  • Set volume for message

    8
    0 Votes
    8 Posts
    2k Views
    d.healeyD

    Brilliant, thanks :) this will be very helpful

  • This topic is deleted!

    1
    0 Votes
    1 Posts
    4 Views
    No one has replied

33

Online

1.7k

Users

11.6k

Topics

100.8k

Posts