Can AbleSet Button Be Set to Toggle Instead of Momentary?

Hey @totpband,

For the Click on/off toggle, there’s actually a built-in preset for this. No manual setup needed:

  1. Open your Canvas in edit mode
  2. Press ⌘K (or click the + button) to open the element picker
  3. Search for “Click Track Mute Toggle” and add it

The button will toggle the click on/off and change color to reflect the current state.

If you’d rather build it from scratch (e.g. to customize the look), add a Button element, set the type to OSC, and use:

  • OSC Command on Press: /mixer/click/mute toggle
  • Background Color → Dynamic: ${osc("/mixer/click/muted") ? "red-800" : "red-950"}
  • Label → Dynamic: ${osc("/mixer/click/muted") ? "CLICK OFF" : "CLICK ON"}
    Adjust label text to taste.

Setlist panel font size

The Setlist element in Canvas doesn’t have a built-in font size control — resizing the panel only changes its dimensions, not the text size. You can target text size with Custom Styles (CSS).

Open your styles.css file (AbleSet icon tray → :gear:Show Global Custom Styles) and add:

.setlist-entry button.title {
  font-size: 1.3rem;
}

Adjust the value to your liking. Note that this will also affect the text size in the main Setlist view, not just the Canvas element.

Hope that helps!

1 Like