Group: Forum Members
Posts: 8,
Visits: 30
|
I'm trying to program the Inclusion of Others in Self on Inquisit with 7 existing choices instead of the Continuous Inclusion of Self Scale that is available on the Millisecond Test Library.
My lab used to use this script below and it ran well with Inquisit 4 & 5 but somehow is not working on Inquisit 6. Is there any existing similar Inquisit 6 script that I can check out that uses more than 5 pictures as options?
****************************************************************
<defaults> / screencolor = (255, 255, 255) / txcolor = (0, 0, 0) / fontstyle = ("Arial", 3%, false) / quitcommand =(Ctrl+Alt+18) </defaults>
*************************************************************** <expressions> /venncount = checkboxes.vennM1.checked.1 + checkboxes.vennM2.checked.1 + checkboxes.vennM3.checked.1 + checkboxes.vennM4.checked.1 + checkboxes.vennM5.checked.1 + checkboxes.vennM6.checked.1 + checkboxes.vennM7.checked.1 </expressions>
<checkboxes vennM1> / options = ("") / optionvalues = ("1") / position = (10%, 19%) / required = false </checkboxes>
<checkboxes vennM2> / options = ("") / optionvalues = ("2") / position = (10%, 30%) / required = false </checkboxes>
<checkboxes vennM3> / options = ("") / optionvalues = ("3") / position = (10%, 41%) / required = false </checkboxes>
<checkboxes vennM4> / options = ("") / optionvalues = ("4") / position = (10%, 52%) / required = false </checkboxes>
<checkboxes vennM5> / options = ("") / optionvalues = ("5") / position = (10%, 63%) / required = false </checkboxes>
<checkboxes vennM6> / options = ("") / optionvalues = ("6") / position = (10%, 74%) / required = false </checkboxes>
<checkboxes vennM7> / options = ("") / optionvalues = ("7") / position = (10%, 85%) / required = false </checkboxes>
<item vennM1> /1="vennM1.jpg" </item>
<item vennM2> /1="vennM2.jpg" </item>
<item vennM3> /3="vennM3.jpg" </item>
<item vennM4> /1="vennM4.jpg" </item>
<item vennM5> /1="vennM5.jpg" </item>
<item vennM6> /1="vennM6.jpg" </item>
<item vennM7> /1="vennM7.jpg" </item>
<picture vennM1> / items = vennM1 /size = (280, 280) /position = (23%, 20%) </picture>
<picture vennM2> / items = vennM2 /size = (280, 280) /position = (23%, 31%) </picture>
<picture vennM3> / items = vennM3 /size = (280, 280) /position = (23%, 42%) </picture>
<picture vennM4> / items = vennM4 /size = (280, 280) /position = (23%, 53%) </picture>
<picture vennM5> / items = vennM5 /size = (280, 280) /position = (23%, 64%) </picture>
<picture vennM6> / items = vennM6 /size = (280, 280) /position = (23%, 75%) </picture>
<picture vennM7> / items = vennM7 /size = (280, 280) /position = (23%, 86%) </picture>
<surveypage Mentor_overlap> /caption= "INSTRUCTION: Which of the pictures below best describes the relationship between YOU as the student and your MENTOR in the science program (select only one option)?" / questions = [1=vennM1, vennM2, vennM3, vennM4, vennM5, vennM6, vennM7] / stimulusframes = [1=vennM1, vennM2, vennM3, vennM4, vennM5, vennM6, vennM7] / branch = [if (expressions.venncount != 1) surveypage.Mentor_overlap; ] / fontstyle = ("Arial", 3%, false) / showbackbutton = false / finishlabel = "Continue" </surveypage>
<survey Mentor_overlap> / pages = [1= Mentor_overlap] / responsefontstyle = ("Verdana", -12, false, false, false, false, 5, 0) / itemfontstyle = ("Verdana", -13, false, false, false, false, 5, 0) / showpagenumbers = false / showquestionnumbers = false / showbackbutton = false / finishlabel = "Continue" </survey>
*******************************************************************************************************
|