HISE Logo Forum
    • Categories
    • Register
    • Login
    1. HISE
    2. CatABC
    3. Best
    • Profile
    • Following 2
    • Followers 0
    • Topics 73
    • Posts 221
    • Groups 0

    Posts

    Recent Best Controversial
    • 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
    • When I clicking this button, a bug occurs

      1.png
      This prevents me from using this feature properly

      posted in Bug Reports
      CatABCC
      CatABC
    • RE: Directly fade in and out samples from two samplers on one MIDI note?

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

      posted in General Questions
      CatABCC
      CatABC
    • RE: Setting the alpha of a color individually?

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

      posted in General Questions
      CatABCC
      CatABC
    • RE: User-defined background?

      @Oli-Ullmann Yes, thank you very much for your help.

      posted in General Questions
      CatABCC
      CatABC
    • RE: How to set the text color of Combobox?

      @mmprod They are universal, you just use LAF

      posted in General Questions
      CatABCC
      CatABC
    • RE: How to set the text color of Combobox?

      @Oli-Ullmann cool,I don't know what I did wrong, my

      g.setColour();
      

      didn't work, but I deleted all the code and rewrote it according to the code snippet you gave, and it worked. I want to give you a hug to express my endless gratitude.🍔

      posted in General Questions
      CatABCC
      CatABC
    • RE: CustomSetting LAF?

      @mmprod marvelous,I success,thanks for you😆

      posted in General Questions
      CatABCC
      CatABC
    • RE: How to customize the sound library location interface?

      @DabDab thaks very much!

      posted in General Questions
      CatABCC
      CatABC
    • How to customize the sound library location interface?

      How to customize the sound library location interface?
      The button is too small, I wish it was bigger
      c4a7fd08-deef-49f6-825e-2e6b7a9dc889-image.png

      posted in General Questions
      CatABCC
      CatABC
    • RE: How to customize the viewport row background color?

      @Soundavid Thank you so much, I learned it and I'm so excited!:beating_heart: 💋

      posted in General Questions
      CatABCC
      CatABC
    • How to use a knob to change the SampleStart values of all samples in a sampler?

      How to use a knob to change the SampleStart values of all samples in a sampler?
      Please help me. I want to use the CC controller to control the SampleStart values of all samples in a certain sampler. I hope I can get a code snippet. I will be very grateful~!

      posted in General Questions
      CatABCC
      CatABC
    • RE: How to control the parameters of each key individually?

      @ulrik I succeeded,I put Sampler1.selectSounds(""); into oncmbSampleMapControl and it works fine

       inline function onknbVolC1Control(component, value)
       {
      	
      
       	Sampler1.setSoundProperty(0, Sampler1.Volume, value);
       	
       };
       
       Content.getComponent("knbVolC1").setControlCallback(onknbVolC1Control);
       
       
      
       
      
       //change samplemap   -------------
       const var sampleMaps = Sampler.getSampleMapList();
       const var fltPreset = Content.getComponent("fltPreset");
       const var cmbSampleMap = Content.getComponent("cmbSampleMap");
      
       cmbSampleMap.set("items", sampleMaps.join("\n"));
       
       
       
       inline function oncmbSampleMapControl(component, value)
       {
       	GFRNB.asSampler().loadSampleMap(sampleMaps[value-1]);
       	//updateSelectedSounds  ----------
       	Sampler1.selectSounds("");
       };
       
       Content.getComponent("cmbSampleMap").setControlCallback(oncmbSampleMapControl);
       
      
      posted in General Questions
      CatABCC
      CatABC
    • RE: How to control the parameters of each key individually?

      @ulrik I succeeded, thank you very much, give you :red_heart:

      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: 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
    • RE: When the mouse clicks outside the panel, set the button value to 0?

      @rglides cool🍹

      posted in General Questions
      CatABCC
      CatABC
    • RE: After a while, I want to know if this problem has been solved.

      @Soundavid You are my God, hahahaha, this problem has troubled me for a long time and finally got solved~!😀 😀 😀

      posted in Bug Reports
      CatABCC
      CatABC
    • RE: Custom Knob works only by dragging from the top.

      @ulrik HISE-develop before June did not have this problem.

      posted in Bug Reports
      CatABCC
      CatABC