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

Posts
-
RE: Is it possible for different machines to produce the same machine code?
-
RE: Is it possible for different machines to produce the same machine code?
@d-healey So I need a positive answer from my fellow forum members to encourage my guess. Now I am relieved. Someone must be lying.
-
RE: Is it possible for different machines to produce the same machine code?
@ustk I am using RSA and generate different key pairs for different products
-
RE: Is it possible for different machines to produce the same machine code?
@d-healey
Here is my methodconst var Label1 = Content.getComponent("Label1"); const var machineId = FileSystem.getSystemId(); Label1.set("text", machineId);
-
RE: Is it possible for different machines to produce the same machine code?
@d-healey I've verified that this has never happened.But the words of these two people were so certain that I doubted myself.
-
RE: Is it possible for different machines to produce the same machine code?
@d-healey I distributed the plugin to a lot of people and the same plugin on two of them gave the same machine code. I think someone is lying, but neither admitted they had any communication.
-
RE: Is it possible for different machines to produce the same machine code?
@CatABC Please tell me this can't happen.
-
Is it possible for different machines to produce the same machine code?
Using FileSystem.geSystemId(),If the user uses the same cracked version of Windows system, is it possible for different machines to generate the same machine code?I didn't think it was possible, but this happened,
-
RE: How do I connect a knob to a CC controller using code?
@VirtualVirgin Cool, thanks for your suggestion, it's very useful
-
RE: How do I connect a knob to a CC controller using code?
@d-healey Thanks a lot for the tip, I succeeded,
Treat you to watermelon, even though it's just an Emoji,But I really mean it.
local number = Message.getControllerNumber(); if (number == 1) { local ccValue = Message.getControllerValue(); Console.print(ccValue); local inputValue = ccValue / 127; Console.print(inputValue); knb1.setValue(inputValue); }
-
RE: HISE supports gif images
@dannytaurus For example, if I want to show the atmosphere of a PAD sound, I can use a dynamic picture of rain or waterfall, which will make you feel more vivid.
-
How do I connect a knob to a CC controller using code?
How do I connect a knob to a CC controller using code?
-
RE: HISE supports gif images
@LozPetts Thank you for the information. My idea is that if HISE can support dynamic images by itself, some image displays will become more vivid.
-
HISE supports gif images
When will the HISE image component support gif images?
-
RE: How to draw the rename secondary confirmation window in PresetBrowserDialog?
@d-healey I am using Content.createLocalLookAndFeel();
Tried your method and it worked, thank you very much -
How to draw the rename secondary confirmation window in PresetBrowserDialog?
How to draw the rename secondary confirmation window in PresetBrowserDialog?
if (obj.text == "Are you sure you want to replace the file ?") { obj.text = "replace the file"; g.fillAll(0x88000000); if(obj.over) g.fillAll(0x22000000); if(obj.down) g.fillAll(0x22000000); g.setFont("myhtw17", 25.0); g.setColour(Colours.white); g.drawAlignedText(obj.text, obj.area, "centred"); }
This hasn't changed anything
-
RE: How do I switch presets in the Preset Browser using buttons?
@d-healey Nice! I will try it. Thank you for providing me with learning materials.
-
How do I switch presets in the Preset Browser using buttons?
How can I use a button to switch presets in the preset browser and display the preset name in a Label?
-
How to hide images that are beyond the panel range
I used CSS to set the panel to a circle and set the overflow to hide, but the pictures in the panel are still displayed.
#pnlImgL{ border: 1px solid #FFF; border-radius:50%; overflow: hidden; margin:5px; }