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

    Posts

    Recent Best Controversial
    • RE: Is it possible for different machines to produce the same machine code?

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

      posted in General Questions
      CatABCC
      CatABC
    • 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.

      posted in General Questions
      CatABCC
      CatABC
    • 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

      posted in General Questions
      CatABCC
      CatABC
    • RE: Is it possible for different machines to produce the same machine code?

      @d-healey
      Here is my method

      const var Label1 = Content.getComponent("Label1");
      
      const var machineId = FileSystem.getSystemId();
      
      Label1.set("text", machineId);
      
      posted in General Questions
      CatABCC
      CatABC
    • 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.

      posted in General Questions
      CatABCC
      CatABC
    • 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.

      posted in General Questions
      CatABCC
      CatABC
    • RE: Is it possible for different machines to produce the same machine code?

      @CatABC Please tell me this can't happen.😭

      posted in General Questions
      CatABCC
      CatABC
    • 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,

      posted in General Questions
      CatABCC
      CatABC
    • RE: How do I connect a knob to a CC controller using code?

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

      posted in General Questions
      CatABCC
      CatABC
    • 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);
      	       
      	      
      	    }
      
      posted in General Questions
      CatABCC
      CatABC
    • 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.

      posted in Feature Requests
      CatABCC
      CatABC
    • How do I connect a knob to a CC controller using code?

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

      posted in General Questions
      CatABCC
      CatABC
    • 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.

      posted in Feature Requests
      CatABCC
      CatABC
    • HISE supports gif images

      When will the HISE image component support gif images?

      posted in Feature Requests
      CatABCC
      CatABC
    • 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😘 😘 😘

      posted in General Questions
      CatABCC
      CatABC
    • 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

      posted in General Questions
      CatABCC
      CatABC
    • 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.😘

      posted in General Questions
      CatABCC
      CatABC
    • 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?
      80ba2d83-d6ea-4857-b44f-b4b171c19d4b-image.png

      posted in General Questions
      CatABCC
      CatABC
    • 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;
      	}
      
      posted in General Questions
      CatABCC
      CatABC
    • RE: How to disable HISE exported APP from requesting microphone permission in MAC system?

      @ustk wow,thanks very much🍻

      posted in General Questions
      CatABCC
      CatABC