Hi all,
I’m currently in the process of converting my experiment to run online (Pavlovia), but I can’t seem to figure out how to get the “mouse.isPressedIn” function working there. I’m currently only familiar with using the Builder view, but I’m hoping there might be another way of doing this so I can get the online version of my experiment to run the same as the offline version.
In my offline experiment, I use the “mouse.isPressedIn” function to briefly change the colour of buttons when they are clicked - my white buttons will briefly flash black when they are clicked, to signify that they have indeed been clicked. Whilst this might seem purely aesthetical, I have found it helps my older adult participants to use the experiment when they receive some visual feedback and the buttons ‘light up’ when clicked.
To do this in the offline version, there’s a fairly simple (if inelegant) solution:
I have a regular, ‘unclicked’ white version of the button (image stim), and a second hidden, ‘clicked’ black version. The image stim are identical in size / position etc., they are just different colours. This hidden version of the button is only made visible when the mouse is clicked in on the ‘unclicked’ version:
$Mouse_1.isPressedIn(Next_Unclicked_1)
I then use a separate code component to check if this ‘clicked’ version has run, and if so, continue on to the next page:
if Next_Clicked_1.status == FINISHED:
continueRoutine = False
I’m trying to replicate this online, but I keep getting the following error:
- TypeError: Mouse_1.isPressedIn is not a function
I found this post which explains I might need to translate my code to JS (mouse.isPressedIn()). But I’m not exactly sure how to do that…and if I change the code within PsychoPy, will that stop my experiment running normally ‘offline’?
Any help would be appreciated!
Jamie