is there a slider interface?

Hi! There's not currently a slider interface, no. If you want to use values on a scale, you could set them up as choice options. This also gives you keyboard shortcuts out-of-the-box, so you can just press 1 for 1, and so on.

Alternatively, you can also easily add your own slider with the html interface and a JavaScript function that adds the selected value to the current task. Here's an example:

<input type="range" id="slider" min="1" max="5" onChange="handleChange(this)" />
function handleChange(slider) {
    window.prodigy.update({ value: slider.value })  // will add key "value"
}
1 Like