Need help with fast presentation of stimuli
Hi there,
I am relatively new to OpenSesame and need some help. I am trying to present a set of 60 images really fast so that it looks like a moving picture. I was wondering if there was an easy way OpenSesame can pull up each image in succession so I don't have to create a sketchpad item for each image? Any help is appreciated!
Comments
Hi,
You could create a list of
Canvasobjects in aninline_scriptitem (in the Prepare phase probably). Here's an example of a series ofCanvasobjects with different strings of text, but you can do it analogously for different images, usingcanvas.image().And then you would later show all these
Canvasobjects (in the Run phase), possibly with a delay in between:Alternatively, you could create a movie from your images, and use the
media_player_mpyitem to play it. That might be easier.Cheers!
Sebastiaan
Check out SigmundAI.eu for our OpenSesame AI assistant!
Thank you!