HISE Logo Forum
    • Categories
    • Register
    • Login
    1. HISE
    2. CatABC
    3. Topics
    • Profile
    • Following 2
    • Followers 0
    • Topics 77
    • Posts 293
    • Groups 0

    Topics

    • CatABCC

      Make the Gain knob smooth the gain?

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      78
      0 Votes
      78 Posts
      3k Views
      CatABCC

      @d-healey @Chazrox
      I'm back. After many days, I reviewed the code again today and finally succeeded!
      We need a loop!
      I would also like to thank all my friends who provided me with help and various solutions! I love you all😘

      function onNoteOn() { local n = Message.getNoteNumber(); local v = Message.getVelocity(); if (n >= knbLoKey.getValue() && n <= knbHiKey.getValue()) lastKs = n; if (Synth.isArtificialEventActive(eventIds.getValue(lastNote))) Synth.addVolumeFade(eventIds.getValue(lastNote), knbFadeTime.getValue(), -100); for (i = 48; i < 127; i++) { local e = eventIds.getValue(i); if (e != -1) Synth.noteOffByEventId(e); if (n == knbKs.getValue() && Synth.isKeyDown(i)) { ADSR.setAttribute(ADSR.Attack, fadeIn.getValue()); lastKs = n; eventIds.setValue(i, Synth.playNote(i, v)); return Message.ignoreEvent(true); }else{ ADSR.setAttribute(ADSR.Attack, knbResetAt.getValue()); } } lastNote = n; if (lastKs != knbKs.getValue()) return Message.ignoreEvent(true); eventIds.setValue(n, Message.makeArtificial()); }
    • CatABCC

      Sampling multiple velocity layers, how to evenly drop the velocity?

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      13
      0 Votes
      13 Posts
      160 Views
      CatABCC

      @Orvillain yes,I already understand the design of HISE, it is more free than Kontakt!😻

    • CatABCC

      How to sign and authenticate VST and AU plug-ins for Mac?

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      3
      0 Votes
      3 Posts
      236 Views
      LindonL

      Ok well I can see this turning into the cluster f*** it usually is so here's how to code sign and notarize and staple your plugin - note this is for distributing plugins - not for distributing installers (like .pkg and .dmg files), also note you will need your apple ID, your team Id and to have made (and kept) a password for your notary tool all in the apple dev web site...you will also need the relevant certificates(A developer ID Installer certificate) in your Keychain Access

      build/compile your plugin. copy your plugin to the desktop open a terminal window move to the desktop with this command:
      cd desktop
      5.codesign your plugin with this command:

      codesign --deep --force --options runtime --sign "Developer ID Application: your dev name ( your dev id)" "/Users/your username/Desktop/your plugin name.vst3"

      zip up your plugin into yourpluginname.zip and leave it on the desktop Notarize your pluginzip with this command:

      xcrun notarytool submit --apple-id "your apple id (an email addess is likely)" --password "your notray tool password" --team-id "your team id" "yourpluginname.zip" --wait

      wait... it will tell you Processing.... and eventually tell you Accepted (if it works) Staple your plugin on the desktop --- no thats not the zip you just sent to Apple, its the plugin from step 2.... use this command:

      xcrun stapler staple "/Users/your user name/Desktop/your plugin name.vst3"

      if this is successful (it will tell you) ... you re done...and you can zip up and ship your plugin....
    • CatABCC

      Is it possible to add effects to samples on individual keys in a Sampler?

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      14
      0 Votes
      14 Posts
      224 Views
      CatABCC

      @d-healey Ahaha, that's it😹

    • CatABCC

      HISE multi-language support

      Watching Ignoring Scheduled Pinned Locked Moved Feature Requests
      2
      0 Votes
      2 Posts
      171 Views
      d.healeyD

      @CatABC I don't think this is on the horizon.

    • CatABCC

      How to convert a number to hexadecimal in HISE?

      Watching Ignoring Scheduled Pinned Locked Moved Scripting
      3
      0 Votes
      3 Posts
      259 Views
      CatABCC

      @d-healey great!very very Thanks David😎

    • CatABCC

      How to use HISE to call system commands?

      Watching Ignoring Scheduled Pinned Locked Moved Scripting
      3
      0 Votes
      3 Posts
      271 Views
      CatABCC

      @d-healey cool!thanks very much

    • CatABCC

      Is it possible for different machines to produce the same machine code?

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      14
      0 Votes
      14 Posts
      1k Views
      CatABCC

      @ustk Nice, I will use this to enhance the machine code generation in future plugins, thank you

    • CatABCC

      How do I connect a knob to a CC controller using code?

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      5
      0 Votes
      5 Posts
      452 Views
      CatABCC

      @VirtualVirgin Cool, thanks for your suggestion, it's very useful

    • CatABCC

      HISE supports gif images

      Watching Ignoring Scheduled Pinned Locked Moved Feature Requests
      11
      0 Votes
      11 Posts
      1k Views
      xxxX

      @LozPetts

      thanks for this

    • CatABCC

      How to draw the rename secondary confirmation window in PresetBrowserDialog?

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      3
      0 Votes
      3 Posts
      362 Views
      CatABCC

      @d-healey I am using Content.createLocalLookAndFeel();
      Tried your method and it worked, thank you very much😘 😘 😘

    • CatABCC

      How do I switch presets in the Preset Browser using buttons?

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      3
      0 Votes
      3 Posts
      244 Views
      CatABCC

      @d-healey Nice! I will try it. Thank you for providing me with learning materials.😘

    • CatABCC

      How to hide images that are beyond the panel range

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      1
      0 Votes
      1 Posts
      96 Views
      No one has replied
    • CatABCC

      How to disable HISE exported APP from requesting microphone permission in MAC system?

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      6
      0 Votes
      6 Posts
      301 Views
      ChazroxC

      @ustk Cool! Just knowing that im gonna have to look into it. 👍 Thanks.

    • CatABCC

      How to use CSS pan button with HISE

      Watching Ignoring Scheduled Pinned Locked Moved Scripting
      11
      0 Votes
      11 Posts
      1k Views
      GabG

      @CatABC Glad you enjoy it!

    • CatABCC

      How to use my own API written in C++ in HISE?

      Watching Ignoring Scheduled Pinned Locked Moved Scripting
      1
      0 Votes
      1 Posts
      112 Views
      No one has replied
    • CatABCC

      How to read file contents using HISE?

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      3
      0 Votes
      3 Posts
      96 Views
      CatABCC

      @d-healey said in How to read file contents using HISE?:

      Ha! I got it. Thank you.

      FileSystem.getFolder(FileSystem.AppData).getChildFile("license");
    • CatABCC

      Where is the logical source code for HISE to obtain machine code?

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      9
      0 Votes
      9 Posts
      336 Views
      CatABCC

      @Christoph-Hart No, my goal is to simplify the user's operation

    • CatABCC

      How to modify these title texts in CustomSettings

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      5
      0 Votes
      5 Posts
      216 Views
      d.healeyD

      @ustk said in How to modify these title texts in CustomSettings:

      so you can just make your own comboboxes

      For those three settings actually I think this is a good idea. For the audio settings though it becomes complicated very quickly.

    • CatABCC

      When the mouse clicks outside the panel, set the button value to 0?

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      11
      0 Votes
      11 Posts
      705 Views
      CatABCC

      @rglides cool🍹