Hi everyone,
I'm programming an autobiographical RT-CIT following the script I found in the library (
https://www.millisecond.com/download/library/rtcit/) and I'm running into some problems. I would be very happy if someone could help me out.
In the beginning, participants have to indicate their name and mother's name which we use as probes (and insert in probeItems).
As it is important that this is written correctly, we want the participants to verify their answers. To do this, we want to show them the question again, and their response should be shown as a default response. If they think it's not correct they should be able to correct it.
Now I wrote it like this but the defaultresponse (in bold) does not seem to work:
<textbox verifyFirstname>
/ caption = "verify first name"
/ defaultresponse = probeItems/ required = true
/ textboxsize = (80%,4%)
/ multiline = false
</textbox>
<textbox verifyMothername>
/ caption = "verify mother name"
/ defaultresponse = probeItems/ required = true
/ textboxsize = (80%,4%)
/ multiline = false
</textbox>
<surveypage verifyProbes>
/ caption = "כעת את/ה מתבקש/ת לאשר כי הפרטים רשומים נכון, במידה ולא, נא תקן/י כעת:"
/ questions = [1=verifyFirstname; 2=verifyMothername]
/ fontstyle = ("Arial", 3%, false, false, false, false, 5, 1)
/ itemfontstyle = ("Arial", 3%, true, false, false, false, 5, 1)
/ responsefontstyle = ("Arial", 2.5%, false, false, false, false, 5, 1)
/ txcolor = (0, 0, 0)
/ showpagenumbers = false
/ showquestionnumbers = false
/ ontrialend =
[item.probeItems.insertitem(textbox.verifyFirstname.response, 1)]
/ ontrialend =
[item.probeItems.insertitem(textbox.verifyMothername.response, 2)]
</surveypage>
Afterward, participants have to indicate in a checkbox list (with control items that we will later use in the experiment) if one or some of those items are significant to them (e.g., if it's the name of their brother). If this would be the case we would like to replace the particular control item with an alternative item. However, I have no idea how to do this.
Thank you so much!
Ine