[open] compound stimulus
I am working on an experiment that uses a button composed of two images displayed side by side.
I have defined two image_button widgets and ideally, I would place them in the same widget column-row form. (But that does not work, only the last one is displayed).
Another approach would be to dynamically join the two images into a third one and use that one.
I was also wondering if OpenSesame supports the notion of group (multiple stimuli attached to the same "button"). I suppose I could implement this by attaching the same callback to multiple images.
Do you have any suggestions to implement this compound stimulus feature?
Thanks
Christophe
Comments
Hi Christophe,
As it is now, the image_button only supports a single image at a time, I'm afraid. You could go for either of two approaches:
1) Merge the images. You could do this beforehand, but this would be feasible only if you have a limited number of possible image combinations. You could also merge the images online, but you would have to save the combined image as a (temporary) file for it to work with the image_button, so you will be making a lot of image files anyway.
2) Use two adjacent image_buttons, and give them the exact same response variable:
Good luck!
Edwin