Group: Administrators
Posts: 13K,
Visits: 104K
|
> Is there any way to use the setstimulustime to present two items at once (the rectangle and the image on top of it)?
Yes. You do
/ ontrialbegin = [if (values.t_streamposition==3) {trial.rsvp.setstimulustime(shape.border,200); trial.rsvp.insertstimulustime(picture.target, 200)}; ] ...
> And relatedly, is there a way to timeout the border so that it only presents with the target image (and not with the fillers)? > I assume I will have to make some kind of invisible rectangle to put around the fillers that the "border" disappears behind?
Yes. You need to make sure the border gets overwritten by a subsequent stimulus. You can simply put a shape with its color set to the screencolor behind every filler in your /stimulustimes.
/ stimulustimes = [0=bgshape, f00; 100=bgshape, f100; 200=bgshape, f200; 300=bgshape, f300; 400=bgshape, f400; ...]
For reference, see the "How to erase stimuli" topic in the documentation.
|