• Arp Force Repaint?

    8
    0 Votes
    8 Posts
    287 Views
    ?

    @MikeB I guess a scriptpanel with custom paintroutine would solve everything, but it would take a lot of coding which I don't really want to do if I can avoid it 😂

  • Engine.getHostBpm() doesn't work in a deferred script

    2
    0 Votes
    2 Posts
    256 Views
    Christoph HartC

    Hi Ben,

    that‘s rather surprising - the tempo gets detected in the audio thread but it will be stored and should be accessible from any thread.

    Can you use it in another function that is run on the UI thread? Eg. a panel paint routine (or a slider callback)?

  • Sample folder button customization

    2
    0 Votes
    2 Posts
    143 Views
    d.healeyD

    @tomekslesicki I think you can already do this manually using the file api and file system api to write the link file.

  • About The Splitter Matrix By RemarkableX

    9
    0 Votes
    9 Posts
    328 Views
    NatanN

    @iamlamprey said in About The Splitter Matrix By RemarkableX:

    so don't wait cause decent chance it wont ever get finished)

    Thanks Man, Appreciate Your Example

  • What is eco mode?

    3
    0 Votes
    3 Posts
    377 Views
    hisefiloH

    @d-healey discovered that some time ago in raw api. Commented as // Not needed anymore

  • Randomizer on 3 Grouped buttons, How?

    97
    0 Votes
    97 Posts
    5k Views
    DanHD

    @d-healey :clapping_hands_light_skin_tone: Thank you!

  • Look and Fail

    2
    0 Votes
    2 Posts
    175 Views
    ?

    Ok got it, updating the code if anyone else wants it :) (I needed obj.valueNormalized not just valueNormalized)

  • panel value privacy?

    27
    0 Votes
    27 Posts
    1k Views
    ?

    @d-healey Yeh nice, doesn't seem too bad :)

  • Is This Possible with HISE ?

    3
    0 Votes
    3 Posts
    368 Views
    d.healeyD

    @MusoCity I don't think it's possible

  • Smooth modulator with .getCurrentLevel();

    4
    0 Votes
    4 Posts
    229 Views
    LindonL

    @tomekslesicki in your timer call back:

    instead of using the LFO value - add the LFO value to an array (of say 5 values) and us the average of these 5 values

    Might work - might not but its pretty simple to build and try...

  • This topic is deleted!

    1
    0 Votes
    1 Posts
    1 Views
    No one has replied
  • Need help with panel

    9
    0 Votes
    9 Posts
    353 Views
    ?

    @d-healey Yeh your code works for me too, maybe the area is wrong or some other part of my code is overriding something or hiding it... time to dig

  • Fade out audio on button press

    15
    0 Votes
    15 Posts
    657 Views
    T

    @Christoph-Hart thank you!

  • Scripting MPE

    1
    0 Votes
    1 Posts
    101 Views
    No one has replied
  • Encrypted part of console messages?

    1
    0 Votes
    1 Posts
    193 Views
    No one has replied
  • How to get event ids for artificial events?

    28
    0 Votes
    28 Posts
    2k Views
    B

    Cool, yep it gets initialized in the onInit

  • Getting the play positions of held notes

    3
    0 Votes
    3 Posts
    326 Views
    B

    Ok, to answer my own question :winking_face_with_tongue:

    // onInit const timerInterval = 0.05; Synth.startTimer(timerInterval); const sampleLength = (60 / 110) * 16; var keyDown = Engine.createMidiList(); var legatoPlayPos = 0; function onNoteOn() { keyDown.setValue(Message.getNoteNumber(), 1); if (keyDown.getValueAmount(1) == 1) { Console.print("first note played"); legatoPlayPos = 0; }; }; function onNoteOff() { keyDown.setValue(Message.getNoteNumber(), 0); }; function onTimer() { if (keyDown.getValueAmount(1) >= 1) { normalizedIntensity = (legatoPlayPos * timerInterval) / sampleLength; // set the intensity of sample start constants here legatoPlayPos++; }; };
  • Adding and removing notes from the buffer

    7
    0 Votes
    7 Posts
    468 Views
    B

    @Christoph-Hart If you delay the note off in the onNoteOff using the same offset as when you added the note in the onNoteOn, it will put the note off after the note on.
    I'm trying to make it so that if you let go of the key before the note on, it doesn't play the delayed note on.

    Of course, just use a PitchFade! Thanks for the tip.

  • Change order of childComponents inside panel?

    41
    0 Votes
    41 Posts
    5k Views
    SteveRiggsS

    @Lindon Amazing mate! Thanks. I'll look into this properly :beaming_face_with_smiling_eyes:

  • setNumAllowedDownloads not found

    2
    0 Votes
    2 Posts
    120 Views
    d.healeyD

    Solved it. This was missing in the source ADD_API_METHOD_1(setNumAllowedDownloads); I'll make a pull request.

19

Online

1.9k

Users

12.5k

Topics

108.9k

Posts