toolkit Nubeat7

Post any examples or modules that you want to share here
Jay
Posts: 276
Joined: Tue Jul 13, 2010 5:42 pm

Re: toolkit Nubeat7

Post 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!
User avatar
Nubeat7
Posts: 1347
Joined: Sat Apr 14, 2012 9:59 am
Location: Vienna
Contact:

Re: toolkit Nubeat7

Post 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.....
RJHollins
Posts: 1573
Joined: Thu Mar 08, 2012 7:58 pm

Re: toolkit Nubeat7

Post 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 :|
User avatar
Nubeat7
Posts: 1347
Joined: Sat Apr 14, 2012 9:59 am
Location: Vienna
Contact:

Re: toolkit Nubeat7

Post 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
Post Reply