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

    Topics

    • 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
      67 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
      268 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
      129 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
      51 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
      40 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
      149 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
      364 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
      39 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
      65 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
      268 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
      175 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
      214 Views
      CatABCC

      @rglides cool🍹

    • CatABCC

      Using HISE to request server issues

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

      @d-healey 😮 Well, this seems to be a dangerous approach.Thanks for the reminder

    • CatABCC

      Generate RSA activation code for machine code on the web page?

      Watching Ignoring Scheduled Pinned Locked Moved Scripting
      5
      0 Votes
      5 Posts
      142 Views
      CatABCC

      @Christoph-Hart I think I succeeded, thanks

      const d = BigInt('0x' + dHex); const n = BigInt('0x' + nHex); const modulusBits = n.toString(2).length; const modulusBytes = Math.ceil(modulusBits / 8); const requiredHexLength = modulusBytes * 2; const messageBuffer = Buffer.from(machineCode); const reversedBuffer = Buffer.from(messageBuffer).reverse(); let value = BigInt('0x' + reversedBuffer.toString('hex')); let result = 0n; const modulus = n; while (value > 0n) { const remainder = value % modulus; value = value / modulus; const encryptedChunk = modExp(remainder, d, modulus); result = result * modulus + encryptedChunk; } let hexStr = result.toString(16).padStart(requiredHexLength, '0'); const finalBuffer = Buffer.from(hexStr, 'hex'); return { activationCode: finalBuffer.toString('hex') }; function modExp(base, exp, mod) { let result = 1n; base = base % mod; while (exp > 0n) { if (exp & 1n) result = (result * base) % mod; exp = exp >> 1n; base = (base * base) % mod; } return result; }
    • CatABCC

      Directly fade in and out samples from two samplers on one MIDI note?

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      7
      0 Votes
      7 Posts
      231 Views
      CatABCC

      @d-healey OK, thank you for your guidance. I think I can achieve the effect I want in the near future.😎

    • CatABCC

      Has anyone tried to make a production client using HISE?

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      10
      0 Votes
      10 Posts
      338 Views
      CatABCC

      @Lindon Ahaha, through our communication I think I have some ideas, I will try it,👨‍🍳

    • CatABCC

      Is it possible to set the font of HISE itself?

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

      @d-healey All right🤔

    • CatABCC

      Setting the alpha of a color individually?

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      16
      0 Votes
      16 Posts
      191 Views
      CatABCC

      @d-healey Ahaha,god,It's so simple
      Feeling mine so stupid。,Thanks very much David, you solved my problem again.😙 😙 😙

    • CatABCC

      How to make a button control the keyboard press?

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

      @ulrik Ahaha, that's a great idea!👍

    • CatABCC

      How to achieve multi-channel output?

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

      @Orvillain Wow, if there is a code snippet for me to learn, I don't know how to express my gratitude, anyway, I am looking forward to it.