Millisecond Forums

Image Display Duration

https://forums.millisecond.com/Topic16813.aspx

By rboze - 7/31/2015

I am attempting to display an image of text, and I want the screen to 'lock' for 1 minute so I can be sure that participants are reading the stimulus. I added the 'trialduration' attribute, and I tried to embed the image in the trial as follows:

<image Strategy>
/ items = ("strategies.jpg")
/ position = (20, 10)
</image>

<trial TRAINING.2>
/ stimulusframes = [1=strategy]
/ trialduration = (6000)
</trial>

However, I get an error message saying that the stimulusframes attribute could not locate my image. Please help.
By Dave - 7/31/2015

<image> elements are solely for use on <surveypage>s.

For use in <trial> elements, you need to define a <picture> element:

<picture Strategy>
/ items = ("strategies.jpg")
/ position = (20, 10)
</picture>

<trial TRAINING.2>
/ stimulusframes = [1=strategy]
/ validresponse = (0)
/ trialduration = (60000)
</trial>
By rboze - 8/2/2015

Thank You!