Presenting images from a random image selection #1876
-
Hi there, Below is the code for drawing images for the free-sort and my attempt at adding the liking trial.
This does present the same images used for the main part of the experiment which is good. Does this make sense? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 7 replies
-
Can you just put all of the stimulus names into an array...?
You can then randomise the order using your preferred method (e.g., shuffle). Finally, you just add them onto the timeline using a for loop...
Would this work? Cai |
Beta Was this translation helpful? Give feedback.
Can you just put all of the stimulus names into an array...?
var liking = ['stim1', 'stim2', ..., 'stim10']
You can then randomise the order using your preferred method (e.g., shuffle).
Finally, you just add them onto the timeline using a for loop...
Would this work?
Cai