Hi,
I’m a beginner trying to construct an experiment in Builder, but has quickly run into problems.
The gist of it is that the participant will be presented with an image. The image contains several discrete components (geometrical figures), and the point of the task is to click on the correct component (which one/s that are correct depends on some prior information).
I know what I’d like to do – define certain areas of an image as clickable. Then, if possible, define some clicks as correct answers, and the others as wrong answers.
The options under Responses->Mouse->Properties indicates that something of the sort should be possible. But as how to actually do it I’m really quite lost! Very thankful for all and any advice.
In Builder, the easiest way to do this is to create specific stimuli that correspond to the clickable region of your main image stimulus. For example, you could create a polygon stimulus (like a rectangle, or with say 99 sides, effectively a circle) and overlay it upon your background image, one for each clickable region. Initially, give the polygons a colour so you can see if they overlap correctly, but when you know they are in place, you can set them to be invisible.
Then you put the names of those clickable polygons in the “clickable stimuli” field of a mouse component. Then you can specify that the routine ends on a “valid click” (i.e. one that falls within one of the clickable stimuli). That name of the clicked stimulus will be recorded in the data. If you need more info recorded, you can add the attribute names (like pos
) to the field 'Store params for clicked".
1 Like
This solved it perfectly, thank you very much!