This prevents me from using this feature properly
Best posts made by CatABC
-
When I clicking this button, a bug occurs
-
RE: User-defined background?
@Oli-Ullmann Yes, thank you very much for your help.
-
RE: How to set the text color of Combobox?
@mmprod They are universal, you just use LAF
-
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.
-
RE: How to customize the viewport row background color?
@Soundavid Thank you so much, I learned it and I'm so excited!:beating_heart:
-
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~! -
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);
-
RE: How to control the parameters of each key individually?
@ulrik I succeeded, thank you very much, give you :red_heart:
Latest posts made by CatABC
-
RE: User-defined background?
@Oli-Ullmann Yes, thank you very much for your help.
-
RE: User-defined background?
@Oli-Ullmann Great, it works fine in the compiled plugin, but there is a problem, how to make any size of the picture can cover the entire interface
-
User-defined background?
How to implement user-defined background? Click a button to open the user's folder and let the user choose the picture they like as the plugin background
-
RE: Problems with mono and stereo sample files
@d-healey Well, since I was mixing old samples with more recent ones, I ended up converting the mono files to stereo.
-
RE: Problems with mono and stereo sample files
@d-healey Yes, although I know this is unconventional
-
Problems with mono and stereo sample files
When I put both mono and stereo sample files into a Sampler, the mono sample file is only output through the left channel. Is there a way to set the Sampler to mono output?
-
RE: Show info panel when hovering over component?
@d-healey Great~ This makes me very excited, ლ(°◕‵ƹ′◕ლ)
-
Show info panel when hovering over component?
Show panel when hovering over component?
I want to display a function introduction panel when the user hovers the mouse over any UI component. How can I do this? -
RE: How to set the text color of Combobox?
@mmprod They are universal, you just use LAF