Group: Forum Members
Posts: 10,
Visits: 41
|
Hey! I programmed the following (see below). The idea is, that the experiment ends, if people tick "3" in the PHQ-Item Nr. 9, so the next page will be the "say goodbye"- page. The filter works perfektly - the only problem is, that after PHQ1 I need to press the next button twice to come to the PHQ2 page. Any idea why this is? Also: sometimes after a last page nothing happens, when I press the Finish-label (page remains as it is) - sometimes I automatically getback to the inquisit-programming page? Any idea why?
<surveypage PHQ1> / caption = "Wie oft fühlten Sie sich im Verlauf DER LETZTEN 2 WOCHEN durch die folgenden Beschwerden beeinträchtigt:" / fontstyle = ("Verdana", 2%, true, false, false, false, 5, 0) / itemfontstyle = ("Verdana", 2%, false, false, false, false, 5, 0) / responsefontstyle = ("Calibri", 2%, false, false, false, false, 5, 0) / itemspacing = 4% / questions = [1=phq1; 2=phq2; 3=phq3; 4=phq4; 5=phq5] / showpagenumbers = false / showquestionnumbers = false / finishlabel = "Weiter" / navigationbuttonfontstyle = ("Verdana", -18, true, false, false, false, 5, 0) / nextbuttonposition = (46%, 90%) </surveypage>
<surveypage PHQ2> / caption = "Wie oft fühlten Sie sich im Verlauf DER LETZTEN 2 WOCHEN durch die folgenden Beschwerden beeinträchtigt:" / fontstyle = ("Verdana", 2%, true, false, false, false, 5, 0) / itemfontstyle = ("Verdana", 2%, false, false, false, false, 5, 0) / responsefontstyle = ("Calibri", 2%, false, false, false, false, 5, 0) / branch = [if(radiobuttons.phq9.response=="3") surveypage.PHQ_Suizid_Text] / itemspacing = 4% / questions = [1=phq6; 2=phq7; 3=phq8; 4=phq9] / showpagenumbers = false / showquestionnumbers = false / finishlabel = "Weiter" / navigationbuttonfontstyle = ("Verdana", -18, true, false, false, false, 5, 0) / nextbuttonposition = (46%, 90%) </surveypage>
|