Page 2 of 2
Re: toolkit Nubeat7
Posted: Sat Jan 28, 2017 9:00 pm
by Jay
Hey Newbeat7
Just a wee heads up m8, i found a little bug in your multi function slider! if you double click on it by accident it crashes the ruby part inside!
cheers!
Re: toolkit Nubeat7
Posted: Sat Jan 28, 2017 10:57 pm
by Nubeat7
oh yes, default was not connected to the slider, anyways i changed the slider to the stock one and also i changed the wireless "set connector" to a "real" set connection inside the preset module, for easier usage
you can use any slider or knob instead, the importand thing is the presetmodule.....
Re: toolkit Nubeat7
Posted: Sun Jan 29, 2017 5:56 am
by RJHollins
Hi NuBeat,
The one I was talking of was the KNOB with the numeric entry that doesn't reset with a default.
I remember you showed this to me way back when. Was it an entry in the Knob's RUBY section that needed to add a 'reset to default' ? I can't remember what you said before

Re: toolkit Nubeat7
Posted: Sun Jan 29, 2017 2:51 pm
by Nubeat7
@RJHollins
i meant the bug jay found, in the old slider there was a default function with doubleclick implemented but the default input wasn't there so it bugged...
about the editable readout, also there you can use your own knobs and sliders or implement a set to default function into the stock one... but you need to use the modified preset-, scale- and readoutmodules together!
i personally prefer a doubleclick to reset control to their default values, just add a default input and use something like this..
Code: Select all
def mouseLDouble x,y
@value = @default
output 0,@default
redraw
end