Millisecond Forums

Need to correct syntax with likert scale + images

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

By inquisituser22 - 6/12/2018

Hello, I am looking for help in integrating this syntax. Currently, this displays the 60 images I would like to display, but does not show the likert scale. The likert scale is only shown with the images when I do "run element" but not "run." It seems to not be integrated into the trial properly.

Thanks very much!

<trial IAPS>
/ stimulusframes = [1=IAPS]
/ inputdevice=keyboard
/ correctresponse = (" ", "1", "2", "3", "4", "5")
/ validresponse = (" ", "1", "2", "3", "4", "5")
/ response = correct </trial>

<likert Pleasantness>
/ anchors = [1="Unpleasant"; 5="Very Pleasant"]
/ stimulusframes = [1=picture.IAPS]
/inputdevice= keyboard
/anchorwidth = 120
/ numframes=1
/ numpoints=5
/ position= (52, 95)
/ fontstyle = ("Arial", 1.5%, false, true, false, false, 5, 0)
</likert>

<picture IAPS>
/numitems = 60
/ items = NeutralIAPS
</picture>

<item NeutralIAPS>
/1 = "1670.jpg"
/2 = "2190.JPG"
By Dave - 6/12/2018

inquisituser22 - Tuesday, June 12, 2018
Hello, I am looking for help in integrating this syntax. Currently, this displays the 60 images I would like to display, but does not show the likert scale. The likert scale is only shown with the images when I do "run element" but not "run." It seems to not be integrated into the trial properly.

Thanks very much!

<trial IAPS>
/ stimulusframes = [1=IAPS]
/ inputdevice=keyboard
/ correctresponse = (" ", "1", "2", "3", "4", "5")
/ validresponse = (" ", "1", "2", "3", "4", "5")
/ response = correct </trial>

<likert Pleasantness>
/ anchors = [1="Unpleasant"; 5="Very Pleasant"]
/ stimulusframes = [1=picture.IAPS]
/inputdevice= keyboard
/anchorwidth = 120
/ numframes=1
/ numpoints=5
/ position= (52, 95)
/ fontstyle = ("Arial", 1.5%, false, true, false, false, 5, 0)
</likert>

<picture IAPS>
/numitems = 60
/ items = NeutralIAPS
</picture>

<item NeutralIAPS>
/1 = "1670.jpg"
/2 = "2190.JPG"

You need a <block> in your script that runs the likert trial 60 times:

<block example>
/ trials = [1-60 = Pleasantness]
</block>
By inquisituser22 - 6/12/2018

[quote]
Dave - Tuesday, June 12, 2018
[quote]
inquisituser22 - Tuesday, June 12, 2018
Thank you very much!! This included the likert scale on every 2-3 images but I should be able to figure out how to implement it consistently from here.
--------------------