• Look and Fail

    2
    0 Votes
    2 Posts
    167 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
    324 Views
    d.healeyD

    @MusoCity I don't think it's possible

  • Smooth modulator with .getCurrentLevel();

    4
    0 Votes
    4 Posts
    215 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
    334 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
    607 Views
    T

    @Christoph-Hart thank you!

  • Scripting MPE

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

    1
    0 Votes
    1 Posts
    181 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
    305 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
    440 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
    4k 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
    118 Views
    d.healeyD

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

  • Images from server

    64
    0 Votes
    64 Posts
    4k Views
    d.healeyD

    @DanH

    how does one go about this in Xcode?

    YouTube

  • delete a property from an Object

    3
    0 Votes
    3 Posts
    156 Views
    ulrikU

    @d-healey thank you David

  • FileSystem Question - Make a directory that doesn't exist

    12
    0 Votes
    12 Posts
    534 Views
    Casey KolbC

    @d-healey @dustbro Forgive me, my Git fork is an absolute mess :face_screaming_in_fear:

  • This topic is deleted!

    1
    0 Votes
    1 Posts
    1 Views
    No one has replied
  • case range for switch statements?

    6
    0 Votes
    6 Posts
    300 Views
    ustkU

    @iamlamprey you should be able do use a switch this way:

    case (x >= 5 && x < 9):
  • This topic is deleted!

    1
    0 Votes
    1 Posts
    3 Views
    No one has replied

22

Online

1.8k

Users

12.0k

Topics

104.8k

Posts