Dear all,
I designed an IAT (Implicit Association Test) script to compare students' response towards two universities. I also designed the demographic scripts for further sub-group analysis (thanks for the wonderful functions of Inquisit 3). Now I do not know how to link these two scripts, and let it run from the IAT to the demographic questions without interruption or transfer.
Here is the beginning of IAT Inquisit:
<expt>
/ subjects = (1 of 2)
/ preinstructions = (overview1, overview2, overview4, overview5, consent, begin1, begin2)
/ postinstructions = (end)
/ blocks = [1=Target1_practice;
2=ATTRIB_practice;
3=Pairing1_practice;
4=Pairing1_test;
5=Target2_practice_Pairing1_1st;
6=Pairing2_practice;
7=Pairing2_test]
</expt>
<expt>
/ subjects = (2 of 2)
/ preinstructions = (overview1, overview2, overview4, overview5, consent, begin1, begin2)
/ postinstructions = (end)
/ blocks = [1=Target2_practice;
2=ATTRIB_practice;
3=Pairing2_practice;
4=Pairing2_test;
5=Target1_practice_Pairing2_1st;
6=Pairing1_practice;
7=Pairing1_test]
</expt>
Here is part of the demographic script:
<dropdown gender>
/ caption = "Gender"
/ options = ("female", "male")
</dropdown>
<textbox age>
/ caption = "Age"
/ mask = positiveinteger
/ range = (7, 110)
</textbox>
<surveypage demographics1>
/ caption = "Please answer the following demographic questions"
/ fontstyle = ("Verdana", -16, true, false, false, false, 5, 0)
/ questions = [1=gender; 2=age; 3=degree; 4=living; 5=alumni; 6=relationship]
</surveypage>
Your help is highly appreciated!
Penny