@d-healey
or a possibilty to show the "ValuePopupData" in Label? Problem solved i think
I have already found some similar questions, but nobody seems to understand why you want to do this
creative freedom perhaps
Latest posts made by Xearox73
-
RE: Any possibility to add a fixed size to the ValuePopupData ?
-
RE: Any possibility to add a fixed size to the ValuePopupData ?
@d-healey
the size changes depending on the value that is displayed (x size is not fixed)
the display is smaller at 1/1 as with 1/64T for example.
It is not possible to determine the exact position or fixed size of the ValuePopupData.
Very rudimentary for GUI design, above, below, left, right
it would be cool to be able to say exactly where the message appears.
"above, size wide 60 height 20, X+ 120px Y+ 80px" for example
depending on the design, it does not pop over other gui elements -
Any possibility to add a fixed size to the ValuePopupData ?
Is there any solution for the jumping around of the ValuePopupData mini window?
Fixed Size? No Border? any tricks? -
RE: Help a newbie, i need a solution that a knob (slider) shows both values/modes Frequency and TempoSync
@d-healey
Best Solution for all LFO controlled modulators - solved:inline function onOSC12LFOPitchSyncControl(component, value)
{
local lfo = Synth.getModulator("LFO Modulator3");
lfo.setAttribute(lfo.TempoSync, value);// if needed you can set a defaultValue for the Frequency if(value == 0) { Content.getComponent("pitchLFO12").set("mode", "Frequency"); Content.getComponent("pitchLFO12").set("min", "0.5"); Content.getComponent("pitchLFO12").set("max", "40.0"); } else { Content.getComponent("pitchLFO12").set("mode", "TempoSync"); Content.getComponent("pitchLFO12").set("defaultValue", "5.0"); Content.getComponent("pitchLFO12").set("min", "0.0"); Content.getComponent("pitchLFO12").set("max", "18.0"); }
};
Content.getComponent("OSC12LFOPitchSync").setControlCallback(onOSC12LFOPitchSyncControl);
-
RE: Help a newbie, i need a solution that a knob (slider) shows both values/modes Frequency and TempoSync
@d-healey
Ok, i read many postings, but this has to do with the zoom level of your interface.
The Interface Designer himself never shows a pixel by pixel pictore/preview
I checked all possibility and make screenshots
then imported them into my graphics software and no shot has 100% 2800x1500px ??A 75% in HISE has to be scaled up to 104,56% to show the exact 100% of the Original GUI px by px
-
RE: Help a newbie, i need a solution that a knob (slider) shows both values/modes Frequency and TempoSync
@d-healey
Thanks !!!
Another question, how can i set the start size of the "ZoomHandler.js"
a bit crazy ... HISE shows only in 75% the Original 2800x1500px
At 100% its to big ... zooomed ????namespace ZoomHandler
{
const var MIN_ZOOM = 0.25;
const var MAX_ZOOM = 1.0; //should be 2800x1500 or not ??
const var ZOOM_STEP = 0.10;
const var INTERFACE_WIDTH = 2800;
const var INTERFACE_HEIGHT = 1500;Correction - HISE shows never the exact ZOOM, is it not possible to set the interface at 100% Original ??
-
RE: Help a newbie, i need a solution that a knob (slider) shows both values/modes Frequency and TempoSync
@d-healey
uhhps, the defaultValue function runs only with one
the second will be ignored:inline function onbtnTempoSyncControl(component, value)
{
local lfo = Synth.getModulator("LFO Modulator1");
lfo.setAttribute(lfo.TempoSync, value);if(value == 0) { Content.getComponent("knbLFOFrequency").set("mode", "Frequency"); Content.getComponent("knbLFOFrequency").set("defaultValue", "10.0"); //OK } else { Content.getComponent("knbLFOFrequency").set("mode", "TempoSync"); Content.getComponent("knbLFOFrequency").set("defaultValue", "1.0"); //Ignored }
};
Content.getComponent("btnTempoSync").setControlCallback(onbtnTempoSyncControl);
-
RE: Help a newbie, i need a solution that a knob (slider) shows both values/modes Frequency and TempoSync
@Lindon and Steve
Wow, thats much easier to integrate
How do i set the max and min values, the middle position and possibly the step size?
It`s one knob/slider ? -
RE: Help a newbie, i need a solution that a knob (slider) shows both values/modes Frequency and TempoSync
@Lindon
apparently didn't copy the whole snippet
it will still not be easy to integrate this into an already rather large project.
I'm struggling with it right now