Need help making an IAPS procedure, bundling trials + survey elements together?


Need help making an IAPS procedure, bundling trials + survey elements...
Author
Message
sunm
sunm
Expert (1.4K reputation)Expert (1.4K reputation)Expert (1.4K reputation)Expert (1.4K reputation)Expert (1.4K reputation)Expert (1.4K reputation)Expert (1.4K reputation)Expert (1.4K reputation)Expert (1.4K reputation)
Group: Forum Members
Posts: 11, Visits: 71
Hello! I'm trying to build an IAPS procedure. It basically goes:
Slide1<5 seconds>: "Get Ready to Rate the Next Slide"
Slide2<6 seconds>:  Display a random picture from sets of Pleasant, Neutral and Unpleasant
Slide3: A page with a slider to rate Arousal
Slide4: A page with a slider to rate Valence
Slide5: A page with a slider to rate Dominance
Repeat this 60 times.

I'm a bit stuck :(. Here are my issues:

1. I don't know how to organize the trials within the blocks to display a set of 3 pages of sliders after every picture display trial. (I tried to have the trials put in a list)
2. I want to be able to record what picture category and picture they are rating
3. I want to be able to record in what order they viewed the pictures


Here's my code so far:

<block IAPS>
/trials = [1,3,5,7,9=IAPSdisplayPicture; 2,4,6,8,10 = list.SAM1Ratings]
</block>



****Display the picture****
<trial IAPSdisplayPicture>
/ stimulustimes = [1= IAPSinstruct; 5000=noreplace(IAPSPleasantpic, IAPSNeutralpic)]
/ timeout = 11000
</trial>

<text IAPSinstruct>
/items = ("Get ready to rate the next slide")
/ position = (50%,50%)
</text>

<picture IAPSPleasantPic>
/items = Pleasant
/position = (50%,50%)
/select = sequence
</picture>


<picture IAPSNeutralPic>
/items = Neutral
/position = (50%,50%)
/select = sequence
</picture>



*********SAM*********
<list SAM1Ratings>
/items = (SAMA1, SAMV1, SAMD1)
/ selectionmode = sequence
</list>

***Maybe I should have a survey? but they don't count as trial objects****
<survey SAM1Ratings>
/ pages = [1=SAMA1; 2=SAMV1; 3=SAMD1]
/ showbackbutton = false
</survey>





**********Pages************

<surveypage SAMA1>
/ stimulustimes = [0=SAMAinstruct, SAM.A1, SAM.A2, SAM.A3, SAM.A4, SAM.A5, SAM.A6, SAM.A7, SAM.A8, SAM.A9]
/ questions = [1=SAMA1]
/ showquestionnumbers = false
</surveypage>

<surveypage SAMV1>
/ stimulustimes = [0=SAMVinstruct, SAM.V1, SAM.V2, SAM.V3, SAM.V4, SAM.V5, SAM.V6, SAM.V7, SAM.V8, SAM.V9]
/ questions = [1=SAMV1]
/ showquestionnumbers = false
</surveypage>

<surveypage SAMD1>
/ stimulustimes = [0=SAMDinstruct, SAM.D1, SAM.D2, SAM.D3, SAM.D4, SAM.D5, SAM.D6, SAM.D7, SAM.D8, SAM.D9]
/ questions = [1=SAMD1]
/ showquestionnumbers = false
</surveypage>

*****Slider questions. Will Need as many Sliders as there are pictures******

<slider SAMA1>
/ range = (0, 20)
/ increment = 1
/ position = (10%,55%)
/ showticks = false
/ showtooltips = false
/ slidersize = (100%, 10%)
</slider>

<slider SAMV1>
/ range = (0, 20)
/ increment = 1
/ position = (10%,55%)
/ showticks = false
/ showtooltips = false
/ slidersize = (100%, 10%)
</slider>

<slider SAMD1>
/ range = (0, 20)
/ increment = 1
/ position = (10%,55%)
/ showticks = false
/ showtooltips = false
/ slidersize = (100%, 10%)
</slider>

<text SAMAinstruct>
/ items = ("Please rate your arousal")
/ size = (500px, 200px)
/ fontstyle = ("Verdana", 14pt)
/ position = (50%,40%)
</text>

<text SAMVinstruct>
/ items = ("Please rate your valence")
/ size = (500px, 200px)
/ fontstyle = ("Verdana", 14pt)
/ position = (50%,40%)
</text>

<text SAMDinstruct>
/ items = ("Please rate your dominance")
/ size = (500px, 200px)
/ fontstyle = ("Verdana", 14pt)
/ position = (50%,40%)
</text>


GO

Merge Selected

Merge into selected topic...



Merge into merge target...



Merge into a specific topic ID...





Reading This Topic

Explore
Messages
Mentions
Search