Slider not showing online

OS: Win10):
PsychoPy version: 2020.2.2

What are you trying to achieve?:
I am using a slider in Builder where selection on the slider itself does not end the routine, but, rather, clicking on a ‘next’ button (an image of a tick) does.

What did you try to make it work?:
In the ‘Each Frame’ component of the code, I have inserted:
if mouse.clicked_name ==‘nextButton’:
continueRoutine = True

What specifically went wrong when you tried that?:
This works perfectly when run locally, but not when uploaded to Pavlovia. It just skips the routines which contain sliders.

I’m a newbie to using code so any help is greatly appreciated!

Hi There,

Try this in your each frame tab:

if not mouse.isPressedIn(button):
    continueRoutine=True

Here is a demo file https://gitlab.pavlovia.org/lpxrh6/slider-basic/tree/master

Becca