Skip to content
Welcome to the new SynthEdit website. The old site is still available — visit the old site.

Slider2

Slider2 module

Slider2 is the slider you’ll use in practice: a draggable control that puts out a voltage, and remembers its position in the patch. It’s under Controls in the Module Browser.

Unlike most entries in the browser, Slider2 is a prefab rather than a single module — a small ready-made container holding a slider sub-control wired to a patch-memory module. That detail explains most of its behaviour, and one export gotcha.

PinTypeDescription
VisibleBoolShows or hides the control on the panel
SliderControlThe slider’s value — wire this to whatever you want to control
SpareThe container’s spare input, for adding your own connections inside

Connect Slider to the input you want to drive: an oscillator’s Pitch, a filter’s cutoff, a VCA’s Volume. Your First Synth uses one to sweep a filter.

The patch-memory module inside is what makes the slider more than a knob on screen:

  • Its position is saved with the patch and restored with presets
  • It is registered as a parameter, so a host DAW can automate it — with no Patch Automator needed
  • The parameter takes its name from the pin it drives. Wire a Slider2 to a StateVar Filter’s Pitch and the host sees a parameter called StateVar Filter Pitch.

Select the module and the properties panel shows the parameter behind it:

PropertyDescription
ValueThe slider’s current position, in volts
LowValue at the bottom of travel (default 0.0)
HighValue at the top of travel (default 10.0)
HintTooltip text
MIDIMIDI controller assignment for the parameter
Ignore Program ChangeLeave this control alone when the patch changes
PrivateHide the parameter from the host
StatefulSave the value with the patch (on by default)

Low and High are the ones you’ll reach for most: a slider driving a filter cutoff wants the full 0–10 V, while one trimming a level may want a much narrower range.

The container’s own pins — Controls on Module, Visible and Ignore Program Change — appear above the parameters, along with the usual container properties.

For the older, plain slider module see Slider.