Group: Forum Members
Posts: 12,
Visits: 71
|
Hi Dave,
Below is the code. I am still working on this thing to find the proposed problems with it, but I have a feeling it's one of those, "If it were a snake, it would've bitten you" scenarios. If you have time, mind checking it to see what I did wrong?
q--------------------------------------------- EXPERIMENT --------------------------------------------- <expt PsychMedBias> / subjects = (1 of 32) / blocks = [1=consent; 2=parcode; 3=statemood; 4=Demoblock; 5=personal_pain; 6=patientvideoinstructions; 7-10=myblockMac; 11=iri_section; 12=srp_section; 13=ClosingPage] </expt>
<defaults> / fontstyle = ("Arial", 2%) / screencolor = (209,203,199) / txbgcolor = (195,195,195) / txcolor = (0, 0, 0) / minimumversion = "3.0.0.0" / windowsize = (100,90) </defaults>
------------------------------------------------------------------------------------------------------- PAGE: CONSENT -------------------------------------------------------------------------------------------------------
<block Consent> /trials = [1=UNTInformedConsentP1; 2=UNTInformedConsentP2] / screencolor = (209,203,199) </block>
<trial UNTInformedConsentP1> / stimulusframes = [1=UNTInformedConsent1; 2=ContinueButton] / inputdevice = mouse / validresponse = (ContinueButton) </trial>
<trial UNTInformedConsentP2> / stimulusframes = [1=UNTInformedConsent2; 2=Agree; 3=Decline] / inputdevice = mouse / validresponse = (Agree, Decline) / correctresponse = (Decline) / branch = [if (trial.UNTInformedConsentP2.correct) trial.noconsentexit] </trial>
<trial noconsentexit> / ontrialend= [if ( trial.noconsentexit.response == 57 ) script.abort();] / stimulusframes = [1=noconsentexit] / validresponse = (noconsentresponse) </trial>
<picture UNTInformedConsent1> / items = ("UNTInformedConsent1.jpg") / size = (95%, 95%) </picture>
<item UNTInformedConsent1> / 1 = ("UNTInformedConsent1.jpg") </item>
<picture UNTInformedConsent2> / items = ("UNTInformedConsent2.jpg") / size = (95%, 95%) </picture>
<item UNTInformedConsent2> / 1 = "UNTInformedConsent2.jpg" </item>
<picture noconsentexit> / items = ("noconsentexit.jpg") / position = (50%, 50%) </picture>
<item noconsentexit> / 1 = ("noconsentexit.jpg") </item>
<picture noconsentexitresponse> / items = ("noconsentexit.jpg") / position = (90%, 90%) </picture>
<item noconsentexitresponse> / 1 = "noconsentexit.jpg" </item>
<picture agree> / items = ("Agree.jpg") / position = (33%, 86%) </picture>
<picture decline> / items = ("Decline.jpg") / position = (66%, 86%) </picture>
<picture ContinueButton> / items = ("ContinueButton.jpg") / position = (90%, 90%) </picture>
------------------------------------------------------------------------------------------------------- PAGE: PARTICIPANT CODE ------------------------------------------------------------------------------------------------------- <block ParCode> / trials=[1=ParticipantCode] / screencolor = (209,203,199) </block>
<surveypage ParticipantCode> / questions=[1=codetext; 2=code1; 3=code2; 4=code3; 5=code4] / showquestionnumbers = false / showpagenumbers = false / finishlabel = "Continue" / nextbuttonposition = (85,90) / showbackbutton = false / fontstyle = ("Cambria") </surveypage>
<textbox code1> / caption = "Enter your mother's first initial." / subcaption = "(e.g., if your mother's name is Maria, you would enter 'M'. If you do not know your mother's name, enter 'X'.)" / textboxsize = (3, 3) / fontstyle = ("Cambria", 15, true) / subcaptionfontstyle = ("Cambria", 14, false, true) / responsefontstyle = ("Cambria", 14, false) / mask = alphabetic / maxchars = 1 / minchars = 1 </textbox>
<textbox code2> / caption = "Enter your father's first initial." / subcaption = "(e.g., if your father's name is Robert, you would enter 'R'. If you do not know your father's name, enter 'X'.)" / textboxsize = (3, 3) / fontstyle = ("Cambria", 15, true) / subcaptionfontstyle = ("Cambria", 14, false, true) / responsefontstyle = ("Cambria", 14, false) / mask = alphabetic / maxchars = 1 / minchars = 1 </textbox>
<textbox code3> / caption = "Enter your month of birth." / subcaption = "(e.g., if you were born in May, you would enter '05'.)" / fontstyle = ("Cambria", 15, true) / subcaptionfontstyle = ("Cambria", 14, false, true) / responsefontstyle = ("Cambria", 14, false) / textboxsize = (3, 3) / range = (1, 12) / maxchars = 2 / minchars = 2 </textbox>
<textbox code4> / caption = "Enter your day of birth." / subcaption = "(e.g., if you were born on November the 7th, you would enter '07'.)" / fontstyle = ("Cambria", 15, true) / subcaptionfontstyle = ("Cambria", 14, false, true) / responsefontstyle = ("Cambria", 14, false) / textboxsize = (3, 3) / range = (1, 31) / maxchars = 2 / minchars = 2 </textbox>
<image codetext> / items = ("codetext.jpg") </image>
------------------------------------------------------------------------ Block: STATE MOOD (POMS) ------------------------------------------------------------------------ <block StateMood> / trials=[1=statemood] </block>
<surveypage statemood> / fontstyle = ("Arial", 2%, true, false, false, false, 5) /questions = [1=sad; 2=discouraged; 3=hopeless; 4=angry; 5=hostile; 6=irritable; 7=anxious; 8=afraid; 9=worried; 10=happy; 11=delighted; 12=joyful; 13=MoodText] / showquestionnumbers = false / showpagenumbers = false / finishlabel = "Continue" / nextbuttonposition = (85,90) / fontstyle = ("Cambria", 17, true) / responsefontstyle = ("Cambria", 16, true) </surveypage>
<textbox Sad> /caption = "1. Sad" /range = (0, 10) /position = (15%, 32%) / textboxsize = (2.1, 3.1) </textbox>
<textbox Discouraged> /caption = "2. Discouraged" /range = (0, 10) /position = (15%, 44%) / textboxsize = (2.1, 3.1) </textbox>
<textbox Hopeless> /caption = "3. Hopeless" /range = (0, 10) /position = (15%, 56%) / textboxsize = (2.1, 3.1) </textbox>
<textbox Angry> /caption = "4. Angry" /range = (0, 10) /position = (15%, 68%) / textboxsize = (2.1, 3.1) </textbox>
<textbox Hostile> /caption = "5. Hostile" /range = (0, 10) /position = (40%, 32%) / textboxsize = (2.1, 3.1) </textbox>
<textbox Irritable> /caption = "6. Irritable" /range = (0, 10) /position = (40%, 44%) / textboxsize = (2.1, 3.1) </textbox>
<textbox Anxious> /caption = "7. Anxious" /range = (0, 10) /position = (40%, 56%) / textboxsize = (2.1, 3.1) </textbox>
<textbox Afraid> /caption = "8. Afraid" /range = (0, 10) /position = (40%, 68%) / textboxsize = (2.1, 3.1) </textbox>
<textbox Worried> /caption = "9. Worried" /range = (0, 10) /position = (68%, 32%) / textboxsize = (2.1, 3.1) </textbox>
<textbox Happy> /caption = "10. Happy" /range = (0, 10) /position = (68%, 44%) / textboxsize = (2.1, 3.1) </textbox>
<textbox Delighted> /caption = "11. Delighted" /position = (68%, 56%) /range = (0, 10) / textboxsize = (2.1, 3.1) </textbox>
<textbox Joyful> /caption = "12. Joyful" /range = (0, 10) /position = (68%, 68%) / textboxsize = (2.1, 3.1) </textbox>
<image MoodText> / items = ("MoodText.jpg") / position = (15%, 10%) </image>
------------------------------------------------------------------------ Block: Demographics ------------------------------------------------------------------------ <block DemoBlock> / trials=[1=demographics1;2=demographics2; 3=patient_pain; 4=patient_pain_addiction] / screencolor = (209,203,199) </block>
<surveypage demographics1> / questions=[1=sex; 2=race; 3=age; 4=incomea; 5=incomeb] / showquestionnumbers = false / showpagenumbers = false / finishlabel = "Continue" / nextbuttonposition = (85,90) / showbackbutton=false </surveypage>
<surveypage demographics2> / questions=[1=yearinschool; 2=graduate_specialty; 3=paineducation] / showquestionnumbers = false / showpagenumbers = false / finishlabel = "Continue" / nextbuttonposition = (85,90) / showbackbutton=false </surveypage>
<surveypage patient_pain> / questions=[1=c_pain3; 2=number_patients] / showquestionnumbers = false / showpagenumbers = false / finishlabel = "Continue" / nextbuttonposition = (85,90) / showbackbutton=false </surveypage>
<surveypage patient_pain_addiction> / questions=[1=ssdi_exp; 2=ssdi_patients; 3=addicted_patients; 4=med_seeking_patients] / showquestionnumbers = false / showpagenumbers = false / finishlabel = "Continue" / nextbuttonposition = (85,90) / showbackbutton=false </surveypage>
<radiobuttons sex> / caption = "Sex" / options = ("female", "male") / fontstyle = ("Verdana", 16, true) / responsefontstyle = ("Verdana", 15, false) / orientation = horizontal </radiobuttons>
<checkboxes race> / caption = "Please specify your race, checking all that apply." / options = ("American Indian or Alaska Native", "Asian", "Black or African American", "Hispanic or Latino", "Native Hawaiian or Other Pacific Islander", "White") / other = "Other" / fontstyle = ("Verdana", 16, true) / responsefontstyle = ("Verdana", 15, false) </checkboxes>
<textbox age> / caption = "Age" / mask = positiveinteger / range = (14, 90) / fontstyle = ("Verdana", 16, true) / responsefontstyle = ("Verdana", 15, false) / textboxsize = (2.9, 2.8) </textbox>
<dropdown incomea> / caption = "What was your household income when you were growing up?" / fontstyle = ("Verdana", 16, true) / responsefontstyle = ("Verdana", 15, false) / options = ( "Less than $10,000", "$10,000-$19,999", "$20,000-$29,999", "$30,000-$39,999", "$40,000-$49,999", "$50,000-$59,999", "$60,000-$69,999", "$70,000-$79,999", "$80,000-$89,999", "$90,000-$99,999", "$100,000-$149,999", "$150,000 or more") </dropdown>
<dropdown incomeb> / fontstyle = ("Verdana", 16, true) / responsefontstyle = ("Verdana", 15, false) / caption = "What is your current household income?" / options = ( "Less than $10,000", "$10,000-$19,999", "$20,000-$29,999", "$30,000-$39,999", "$40,000-$49,999", "$50,000-$59,999", "$60,000-$69,999", "$70,000-$79,999", "$80,000-$89,999", "$90,000-$99,999", "$100,000-$149,999", "$150,000 or more") </dropdown>
<dropdown yearinschool> / fontstyle = ("Verdana", 16, true) / responsefontstyle = ("Verdana", 15, false) / caption = "What year are you in your healthcare program?" / options = ("First year", "Second year", "Third year", "Fourth year", "Other") / fontstyle = ("Verdana", 16, true) / responsefontstyle = ("Verdana", 15, false) </dropdown>
<dropdown graduate_specialty> / caption = "When you graduate, what specialty do you intend to enter?" / options = ( "Anesthesiology", "Cardiology", "Dermatology", "Emergency Medicine", "Endocrinology", "ENT", "Family Practice/Internal Medicine/Preventive Health", "Gastroenterology", "Geriatrics", "Infectious Disease", "Nephrology", "OB/GYN", "Oncology", "Opthamology", "Orthopedics", "Pathology", "Pediatrics", "Pharmacy", "Physical Therapy" "Psychiatry", "Pulmonology", "Radiology", "Rheumatology", "Surgery", "Urology", "Undecided" ) / fontstyle = ("Verdana", 16, true) / responsefontstyle = ("Verdana", 15, false) </dropdown>
<radiobuttons paineducation> / caption = "Have you had any courses in pain management?" / options = ("yes", "no") / fontstyle = ("Verdana", 16, true) / responsefontstyle = ("Verdana", 15, false) / orientation = horizontal </radiobuttons>
-------------------------------------------------------------------------- QUESTIONS - PATIENT PAIN -------------------------------------------------------------------------- <dropdown c_pain3> / caption = "In your clinical experience, including work, clinical exposure through your program, unpaid internships, or research, how often have you encountered patients with chronic pain?" / options = ("Never", "Once or twice", "Several times", "Regularly", "Very often", "Don't know") / fontstyle = ("Verdana", 16, true) / responsefontstyle = ("Verdana", 15, false) </dropdown>
<textbox number_patients> / caption = "How many chronic pain patients have you worked with? Please provide your best estimate." / mask = positiveinteger / fontstyle = ("Verdana", 16, true) / responsefontstyle = ("Verdana", 15, false) / textboxsize = (2.9 2.9) </textbox>
<slider ssdi_exp> / caption = "In your clinical experience, including work, clinical exposure through your program, unpaid internships, or research, how often have you encountered patients who collect disability benefits?" / fontstyle = ("Verdana", 16, true) / responsefontstyle = ("Cambria", 16, true) / txcolor = (0, 0, 0) /labels = ("Never", "Very frequently") / showticks = true / showtooltips = false / range = (0, 100) / increment = 1 / slidersize = (10 cm, 1.5 cm) </slider>
<textbox ssdi_patients> /caption = "Of the patients who collected disability benefits, what percentage has received benefits as a result of chronic pain?" / subcaption = "(If you havenât seen chronic pain patients, write âNAâ.)" / fontstyle = ("Verdana", 16, true) / responsefontstyle = ("Verdana", 15, false) / textboxsize = (2.9 2.9) /minchars = 1 /maxchars = 3 </textbox>
<textbox addicted_patients> / caption = "Of the patients with chronic pain youâve seen, what percentage do you feel may have had an addiction to pain medication?" / subcaption = "(If you havenât seen chronic pain patients, write âNAâ.)" / fontstyle = ("Verdana", 16, true) / responsefontstyle = ("Verdana", 15, false) / textboxsize = (2.9 2.9) /minchars = 1 /maxchars = 3 </textbox>
<textbox med_seeking_patients> / caption = "Of the chronic pain patients youâve seen, what percentage do you feel had been âmedication-seekingâ?" / subcaption = "(If you havenât seen chronic pain patients, write âNAâ.)" / fontstyle = ("Verdana", 16, true) / responsefontstyle = ("Verdana", 15, false) / textboxsize = (2.9 2.9) /minchars = 1 /maxchars = 3 </textbox>
________________________________________________________________________ Block: Personal Pain ________________________________________________________________________
<block personal_pain> / trials=[1=PersonalPain; 2=FamilyandPersonalPain; 3=CurrentPain; 4=pcs1; 5=pcs2; 6=pairs_statements1; 7=pairs_statements2] / screencolor = (209,203,199) </block>
<surveypage PersonalPain> / questions=[1=personalpain1; 2=personalpain2; 3=personalpain3] / showquestionnumbers = false / showpagenumbers = false / finishlabel = "Continue" / nextbuttonposition = (85,90) / showbackbutton=false / fontstyle = ("Cambria", 17, true) </surveypage>
<radiobuttons personalpain1> / caption = "Have you ever sought treatment for chronic pain (pain lasting more than 3 months)?" / options = ("Yes", "No") / fontstyle = ("Cambria", 17, true) / responsefontstyle = ("Cambria", 16, true) / orientation = horizontal </radiobuttons>
<textbox personalpain2> / fontstyle = ("Cambria", 17, true) / responsefontstyle = ("Cambria", 16, true) / caption = "If you indicated YES, please specify the type and location of pain you experience(d) (e.g., cancer pain, herniated disk in lower back, arthritis, migraines). If this doesn't apply to you, write 'NA'." / mask = alphabetic </textbox>
<slider personalpain3> / caption = "If you indicated YES, how severe would you describe your pain experience? (Do not respond if not applicable.)" / fontstyle = ("Cambria", 17, true) / responsefontstyle = ("Cambria", 16, true) / txcolor = (0, 0, 0) /labels = ("No pain", "Worst possible pain") / showticks = true / showtooltips = false / range = (0, 100) / increment = 1 / slidersize = (10 cm, 1.5 cm) </slider>
**********************************page break*******************************
<surveypage FamilyandPersonalPain> / questions=[1=familypain1; 2=familypain2; 3=personalfamilypain4; 4=personalfamilypain5] / showquestionnumbers = false / showpagenumbers = false / finishlabel = "Continue" / nextbuttonposition = (85,90) / showbackbutton=false / fontstyle = ("Cambria", 17, true) </surveypage>
<radiobuttons familypain1> / caption = "Has anyone in your family ever been diagnosed with or sought treatment for chronic pain (pain lasting more than 3 months)?" / options = ("Yes", "No") / fontstyle = ("Cambria", 17, true) / responsefontstyle = ("Cambria", 16, true) / orientation = horizontal </radiobuttons>
<textbox familypain2> / fontstyle = ("Cambria", 17, true) / responsefontstyle = ("Cambria", 16, true) / caption = "If you indicated YES, please specify the type and location of the pain (e.g., cancer pain, herniated disk in lower back, arthritis, migraines). If this doesn't apply to you, write 'NA'." / mask = alphabetic </textbox>
<radiobuttons personalfamilypain4> / caption = "Have you or anyone in your family ever collected SSDI (Social Security Disability Insurance) or other disability benefits?" / options = ("Yes", "No") / fontstyle = ("Cambria", 17, true) / responsefontstyle = ("Cambria", 16, true) / orientation = horizontal </radiobuttons>
<radiobuttons personalfamilypain5> / caption = "If YES, were benefits related to a chronic pain problem?" / options = ("Yes", "No", "NA") / fontstyle = ("Cambria", 17, true) / responsefontstyle = ("Cambria", 16, true) / orientation = horizontal </radiobuttons>
------------------------------------------------------------------------------------ PAGE: CURRENT PAIN ------------------------------------------------------------------------------------
<surveypage currentpain> /questions = [1=currentpainlevel; 2=twoweeks; 3=worstpain; 4=typepain] / showquestionnumbers = false / showpagenumbers = false / finishlabel = "Continue" / nextbuttonposition = (85,90) / fontstyle = ("Cambria", 17, true) / responsefontstyle = ("Cambria", 16, true) </surveypage>
<slider currentpainlevel> / caption = "Please indicate your CURRENT level of pain" / labels = ("No Pain", "Worst Possible Pain") / showticks = true / showtooltips = false / range = (0, 100) / increment = 1 / slidersize = (10 cm, 1 cm) </slider>
<slider twoweeks> / caption = "Please indicate your AVERAGE pain level over THE PAST TWO WEEKS" / labels = ("No Pain", "Worst Possible Pain") / showticks = true / showtooltips = false / range = (0, 100) / increment = 1 / slidersize = (10 cm, 1 cm) </slider>
<slider worstpain> / caption = "Please indicate your WORST level of pain in THE PAST TWO WEEKS" / labels = ("No Pain", "Worst Possible Pain") / showticks = true / showtooltips = false / range = (0, 100) / increment = 1 / slidersize = (10 cm, 1 cm) </slider>
<textbox typepain> /caption = "If you currently have pain, please specify the type of pain you are having (e.g., leg cramps, back pain). If not, please write 'NA.'" / mask = alphabetic </textbox>
-------------------------------------------------------------------------------- PAGE: PAIN CATASTROPHIZING SCALE --------------------------------------------------------------------------------
<surveypage pcs1> /showpagenumbers = false /questions = [1=Q1; 2=Q2; 3=Q3; 4=Q4; 5=Q5; 6=Q6; 7=PCS_Scale; 8=PCS_Text] /finishlabel = "Continue" / nextbuttonposition = (85,90) / fontstyle = ("Cambria", 17, true) / responsefontstyle = ("Cambria", 16, true) / showquestionnumbers = false </surveypage>
<surveypage pcs2> /showpagenumbers = false /questions = [1=Q7; 2=Q8; 3=Q9; 4=Q10; 5=Q11; 6=Q12; 7=Q13; 8=PCS_Text; 9=PCS_Scale] /finishlabel = "Continue" / nextbuttonposition = (85,90) / fontstyle = ("Cambria", 17, true) / responsefontstyle = ("Cambria", 16, true) / showquestionnumbers = false </surveypage>
<textbox Q1> /caption = "I worry all the time about whether the pain will end." / position = (20%, 48%) / orientation = horizontal / textboxsize = (1.3, 3) / mask = ^0*[0-4]?$ </textbox>
<textbox Q2> /caption = "I feel I can't go on." /position = (20%, 54%) /orientation = horizontal /textboxsize = (1.3, 3) / mask = ^0*[0-4]?$ </textbox>
<textbox Q3> /caption = "It's terrible and I think it's never going to get any better." /position = (20%, 60%) /orientation = horizontal /textboxsize = (1.3, 3) / mask = ^0*[0-4]?$ </textbox>
<textbox Q4> /caption = "It's awful and I feel that it overwhelms me." /position = (20%, 66%) /orientation = horizontal /textboxsize = (1.3, 3) / mask = ^0*[0-4]?$ </textbox>
<textbox Q5> /caption = "I feel I can't stand it anymore." /position = (20%, 72%) /orientation = horizontal /textboxsize = (1.3, 3) / mask = ^0*[0-4]?$ </textbox>
<textbox Q6> /caption = "I become afraid that the pain will get worse." /position = (20%, 78%) / orientation = horizontal /textboxsize = (1.3, 3) / mask = ^0*[0-4]?$ </textbox>
<textbox Q7> /caption = "I keep thinking of other painful events." /position = (20%, 46%) / orientation = horizontal /textboxsize = (1.3, 3) / mask = ^0*[0-4]?$ </textbox>
<textbox Q8> /caption = "I anxiously want the pain to go away." /position = (20%, 52%) / orientation = horizontal /textboxsize = (1.3, 3) / mask = ^0*[0-4]?$ </textbox>
<textbox Q9> /caption = "I can't seem to keep it out of my mind." /position = (20%, 58%) / orientation = horizontal /textboxsize = (1.3, 3) / mask = ^0*[0-4]?$ </textbox>
<textbox Q10> /caption = "I keep thinking about how much it hurts." /position = (20%, 64%) / orientation = horizontal /textboxsize = (1.3, 3) / mask = ^0*[0-4]?$ </textbox>
<textbox Q11> /caption = "I keep thinking about how badly I want the pain to stop." /position = (20%, 70%) / orientation = horizontal /textboxsize = (1.3, 3) / mask = ^0*[0-4]?$ </textbox>
<textbox Q12> /caption = "There's nothing I can do to reduce the intensity of the pain." /position = (20%, 76%) / orientation = horizontal /textboxsize = (1.3, 3) / mask = ^0*[0-4]?$ </textbox>
<textbox Q13> /caption = "I wonder whether something serious may happen." /position = (20%, 82%) / orientation = horizontal /textboxsize = (1.3, 3) / mask = ^0*[0-4]?$ </textbox>
<image PCS_Scale> / items = ("PCS_Scale.jpg") / position = (20%, 33%) / size = (50%, 50%) </image>
<image PCS_Text> / items = ("PCS_Text.jpg") / position = (10%, 4%) / size = (50%, 50%) </image>
--------------------------------------------------------------------------------------- PAGE: PAIRS ---------------------------------------------------------------------------------------
<surveypage pairs_statements1> /questions = [1=PRI_1; 2=PRI_2; 3=PRI_3; 4=PRI_4; 5=PRI_5; 6=PRI_6; 7=PAIRS_Scale; 8=PAIRS_Text] / finishlabel = "Continue" / nextbuttonposition = (85,90) / showquestionnumbers = false / showpagenumbers = false / fontstyle = ("Cambria", 17, true) / responsefontstyle = ("Cambria", 16, true) </surveypage>
<surveypage pairs_statements2> / fontstyle = ("Cambria", 1.6%) /questions = [1=PRI_7; 2=PRI_8; 3=PRI_9; 4=PRI_10; 5=PRI_11; 6=PRI_12; 7=PRI_13; 8=PAIRS_Scale; 9=PAIRS_Text] / finishlabel = "Continue" / nextbuttonposition = (85,90) / showquestionnumbers = false / showpagenumbers = false / fontstyle = ("Cambria", 17, true) / responsefontstyle = ("Cambria", 16, true) </surveypage>
<textbox PRI_1> /caption = "Patients with chronic back pain can still be expected to fulfill work and family responsibilities despite pain." /position = (5%, 45%) / orientation = horizontal /textboxsize = (1.3, 3) / mask = ^1*[1-6]?$ </textbox>
<textbox PRI_2> /caption = "An increase in pain is an indicator that a patient with chronic back pain should stop what he is doing until the pain decreases." /position = (5%, 50%) / orientation = horizontal /textboxsize = (1.3, 3) / mask = ^1*[1-6]?$ </textbox>
<textbox PRI_3> /caption = "Patients with chronic back pain cannot go about normal life activities when they are in pain." /position = (5%, 55%) / orientation = horizontal /textboxsize = (1.3, 3) / mask = ^1*[1-6]?$ </textbox>
<textbox PRI_4> /caption = "If their pain would go away, patients with chronic back pain would be every bit as active as they used to be. " /position = (5%, 60%) / orientation = horizontal /textboxsize = (1.3, 3) / mask = ^1*[1-6]?$ </textbox>
<textbox PRI_5> /caption = "Patients with chronic back pain owe it to themselves and those around them to perform their usual activities even when their pain is bad." /position = (5%, 66%) / orientation = horizontal /textboxsize = (1.3, 3) / mask = ^1*[1-6]?$ </textbox>
<textbox PRI_6> /caption = "Patients with chronic back pain should have the same benefits as the handicapped because of their chronic pain problem." /position = (5%, 71%) / orientation = horizontal /textboxsize = (1.3, 3) / mask = ^1*[1-6]?$ </textbox>
<textbox PRI_7> /caption = "Most people expect too much of patients with chronic back pain, given their pain." /position = (5%, 45%) / orientation = horizontal /textboxsize = (1.3, 3) / mask = ^1*[1-6]?$ </textbox>
<textbox PRI_8> /caption = "Patients with chronic back pain have to be careful not to do anything that might make their pain worse." /position = (5%, 50%) / orientation = horizontal /textboxsize = (1.3, 3) / mask = ^1*[1-6]?$ </textbox>
<textbox PRI_9> /caption = "As long as they are in pain, patients with chronic back pain will never be able to live as well as they did before." /position = (5%, 55%) / orientation = horizontal /textboxsize = (1.3, 3) / mask = ^1*[1-6]?$ </textbox>
<textbox PRI_10> /caption = "Patients with chronic back pain have to accept that they are disabled people due to their chronic pain." /position = (5%, 60%) / orientation = horizontal /textboxsize = (1.3, 3) / mask = ^1*[1-6]?$ </textbox>
<textbox PRI_11> /caption = "There is no way that a patient with chronic back pain can return to doing the things they used to do unless they first find a cure for their pain." /position = (5%, 65%) / orientation = horizontal /textboxsize = (1.3, 3) / mask = ^1*[1-6]?$ </textbox>
<textbox PRI_12> /caption = "Even though their pain is always there, patients with chronic back pain often don't notice it at all when they are keeping themselves busy." /position = (5%, 70%) / orientation = horizontal /textboxsize = (1.3, 3) / mask = ^1*[1-6]?$ </textbox>
<textbox PRI_13> /caption = "All of the problems of patients with chronic back painwould be solved if their pain would go away." /position = (5%, 75%) / orientation = horizontal /textboxsize = (1.3, 3) / mask = ^1*[1-6]?$ </textbox>
------------------------- Images ------------------------- <image PAIRS_Scale> /items = ("PAIRS_Scale.jpg") / position = (5%, 23%) </image>
<image PAIRS_Text> /items = ("PAIRS_Text.jpg") / position = (5%, 5%) </image>
-------------------------------------------------------------------------------- PAGE: PATIENT VIDEO INSTRUCTIONS- -------------------------------------------------------------------------------- <block PatientVideoInstructions> / trials=[1=patientvideoinstructions] / screencolor = (209,203,199) </block>
<surveypage patientvideoinstructions> / fontstyle = ("Cambria", 1.6%) /questions = [1=videoinstructionstext] / finishlabel = "Continue" / nextbuttonposition = (85,90) / showquestionnumbers = false / showpagenumbers = false / fontstyle = ("Cambria", 17, true) / responsefontstyle = ("Cambria", 16, true) </surveypage>
<image videoinstructionstext> /items = ("videoinstructionstext.jpg") / position = (8%, 8%) / size = (10%, 10%) </image>
-------------------------------------------------------------------------- PAGE: VIGNETTES AND VIDEOS (MAC) ------------------------------------------------------------------------- <block myblockMac> / trials = [1=pictureandvignetteMac; 2=ptvideoMac; 3=RatingPage1aMac; 4=RatingPage1bMac; 5=RatingPage1cMac; 6=RatingPage2Mac; 7=RatingPage3aMac; 8=RatingPage3bMac; 9=RatingPage3cMac; 10=RatingPage4Mac] / screencolor = (209, 203, 199) </block>
<trial pictureandvignetteMac> / stimulusframes = [1=person1Mac, vignetteMac] / validresponse = (57) </trial> ********Make sure to include instructions for participant to press "Space" to continue on to the video in the vignette**********
<picture vignetteMac> / items = ("VignetteCameron.jpg", "VignetteAlex.jpg", "VignetteJordan.jpg", "VignetteSam.jpg") / select = noreplace / resetinterval = 0 / selectionrate = block / position = (40%, 50%) / size = (58%, 58%) </picture>
<picture person1Mac> / items = ("Man1b.jpg", "Man2b.jpg", "Woman1b.jpg", "Woman2b.jpg") / select = noreplace / resetinterval = 0 / selectionrate = block / position = (85%, 55%) / size = (65%, 65%) </picture>
************************************************
<block ptvideosMac> / trials = [1=ptvideoMac] / screencolor = (209,203,199) </block>
<trial ptvideoMac> / stimulusframes = [1=ptvideoMac] / validresponse = (anyresponse) / correctresponse = (noresponse) / timeout = 1000 </trial>
<video ptvideoMac> / items = ("Man1.mov", "Man2.mov", "Woman1.mov", "Woman2.mov") / playthrough = true / select = noreplace / resetinterval = 0 / selectionrate = block / select = picture.person1Mac.currentindex / position = (50%, 45%) / size = (50%, 50%) </video>
-------------------------------------------------------------------------- RATING PAGE 1: PAIN AND DISABILITY (MAC) -------------------------------------------------------------------------- <surveypage RatingPage1aMac> / questions = [1=R1_1Mac; 2=R1_2Mac; 3=R1_3Mac] / stimulusframes = [1=person1Mac] / fontstyle = ("Cambria", 17, true) / responsefontstyle = ("Cambria", 16.5, false) / finishlabel = "Continue" / nextbuttonposition = (85,90) / showquestionnumbers = false / showpagenumbers = false </surveypage>
<surveypage RatingPage1bMac> / questions = [1=R1_4Mac; 2=R1_5Mac; 3=R1_6Mac] / stimulusframes = [1=person1Mac] / finishlabel = "Continue" / nextbuttonposition = (85,90) / fontstyle = ("Cambria", 17, true) / responsefontstyle = ("Cambria", 16.5, false) / showquestionnumbers = false / showpagenumbers = false </surveypage>
<surveypage RatingPage1cMac> / questions = [1=R1_ECS1Mac; 2=R1_ECS2Mac; 3=R1_ECS3Mac; 4=R1_ECS4Mac; 5=R1_ECS5Mac; 6=R1_ECS6Mac; 7=R1_ECS7Mac; 8=ECSimageMac] / stimulusframes = [1=person1Mac] / finishlabel = "Continue" / nextbuttonposition = (85,90) / fontstyle = ("Cambria", 17, true) / responsefontstyle = ("Cambria", 16.5, false) / showquestionnumbers = false / showpagenumbers = false </surveypage>
<slider R1_1Mac> / caption = "How much pain do you think this person was experiencing?" / labels = ("No pain ", "Worst possible pain") / increment = 1 / range = (1, 100) / slidersize = (40%, 3%) / showtooltips = false </slider>
<slider R1_2Mac> / caption = "To what degree do you think that the pain interferes with the daily functioning of this patient?" / labels = ("No interference ", "A great deal of interference") / increment = 1 / range = (1, 100) / slidersize = (40%, 3%) / showtooltips = false </slider>
<slider R1_3Mac> / caption = "How much sympathy do you feel for this patient?" / labels = ("No sympathy ", "A great deal of sympathy") / increment = 1 / range = (1, 100) / slidersize = (40%, 3%) / showtooltips = false </slider>
<slider R1_4Mac> / caption = "To what degree do you think this patient is exaggerating their pain?" / labels = ("No exaggeration at all", "A great deal of exaggeration") / increment = 1 / range = (1, 100) / slidersize = (40%, 3%) / showtooltips = false </slider>
<slider R1_5Mac> / caption = "How confident would you be in our ability to help this patient?" / labels = ("Not at all confident ", "Extremely confident") / increment = 1 / range = (1, 100) / slidersize = (40%, 3%) / showtooltips = false </slider>
<radiobuttons R1_6Mac> / caption = "How much time do you think you would need to make a complete assessment of this patient?" / options = ("10 min", "20 min", "30 min", "40 min", "50 min", "60 min") / orientation = horizontal </radiobuttons>
<textbox R1_ECS1Mac> / caption = "Tender" /range = (1, 7) /position = (25%, 35%) / textboxsize = (2.5, 3.5) / maxchars = 1 </textbox>
<textbox R1_ECS2Mac> / caption = "Softhearted" / range = (1, 7) / position = (40%, 35%) / textboxsize = (2.5, 3.5) / maxchars = 1 </textbox>
<textbox R1_ECS3Mac> / caption = "Warm" / range = (1, 7) / textboxsize = (2.5, 3.5) / position = (55%, 35%) / maxchars = 1 </textbox>
<textbox R1_ECS4Mac> / caption = "Compassionate" / textboxsize = (2.5, 3.5) / position = (25%, 50%) / range = (1, 7) / maxchars = 1 </textbox>
<textbox R1_ECS5Mac> / caption = "Moved" / textboxsize = (2.5, 3.5) / range = (1, 7) / position = (40%, 50%) / maxchars = 1 </textbox>
<textbox R1_ECS6Mac> / caption = "Concerned" / textboxsize = (2.5, 3.5) / range = (1, 7) / position = (55%, 50%) / maxchars = 1 </textbox>
<textbox R1_ECS7Mac> / caption = "Sympathetic" / textboxsize = (2.5, 3.5) / range = (1, 7) / position = (25%, 65%) / maxchars = 1 </textbox>
<image ECSimageMac> / items = ("ECSimageMac.jpg") / position = (10%, 2%) / imagesize = (125%, 125%) </image>
-------------------------------------------------------------------------- RATING PAGE 2: SOURCE OF PATHOLOGY (MAC) -------------------------------------------------------------------------- <surveypage RatingPage2Mac> / questions = [1=R2_1Mac; 2=R2_2Mac; 3=R2_3Mac] / stimulusframes = [1=person1Mac] / fontstyle = ("Cambria", 17, true) / responsefontstyle = ("Cambria", 16.5, false) / showquestionnumbers = false / showpagenumbers = false / finishlabel = "Continue" / nextbuttonposition = (85,90) </surveypage>
<slider R2_1Mac> / caption = "In your opinion, what proportion of the patientâs pain is likely due to medical factors (e.g., nerve or muscle damage)?" / labels = ("0%", "50%", "100%") / increment = 1 / range = (1, 100) / slidersize = (40%, 3%) / showtooltips = false </slider>
<slider R2_2Mac> / caption = "In your opinion, what proportion of the patientâs pain is likely due to lifestyle factors (e.g., diet, exercise)?" / labels = ("0%", "50%", "100%") / increment = 1 / range = (1, 100) / slidersize = (40%, 3%) / showtooltips = false </slider>
<slider R2_3Mac> / caption = "In your opinion, what proportion of the patientâs pain is likely due to psychological factors (e.g., depression, personality issues)?" / labels = ("0%", "50%", "100%") / increment = 1 / range = (1, 100) / slidersize = (40%, 3%) / showtooltips = false </slider>
-------------------------------------------------------------------------- RATING PAGE 3: TREATMENT DECISIONS (MAC) -------------------------------------------------------------------------- <surveypage RatingPage3aMac> / questions = [1=R3_1Mac; 2=R3_2Mac; 3=TreatmentRatingsInstructions] / stimulusframes = [1=person1Mac] / fontstyle = ("Cambria", 17, true) / responsefontstyle = ("Cambria", 16.5, false) / showquestionnumbers = false / showpagenumbers = false / finishlabel = "Continue" / nextbuttonposition = (85,90) </surveypage>
<surveypage RatingPage3bMac> / questions = [1=R3_3Mac; 2=R3_4Mac; 3=R3_5Mac; 4=R3_6Mac; 5=TreatmentRatingsInstructions] / stimulusframes = [1=person1Mac] / fontstyle = ("Cambria", 17, true) / responsefontstyle = ("Cambria", 16.5, false) / showquestionnumbers = false / showpagenumbers = false / finishlabel = "Continue" / nextbuttonposition = (85,90) </surveypage>
<surveypage RatingPage3cMac> / questions = [1=R3_7Mac; 2=R3_8Mac; 3=R3_9Mac; 4=TreatmentRatingsInstructions] / stimulusframes = [1=person1Mac] / fontstyle = ("Cambria", 17, true) / responsefontstyle = ("Cambria", 16.5, false) / showquestionnumbers = false / showpagenumbers = false / finishlabel = "Continue" / nextbuttonposition = (85,90) </surveypage>
<slider R3_1Mac> / caption = "Ask their employer for workplace accommodations. " / labels = ("Not at all Likely", "Extremely Likely") / increment = 1 / range = (1, 100) / slidersize = (40%, 3%) /position = (10%, 35%) / showtooltips = false </slider>
<slider R3_2Mac> / caption = "Seek work-related disability compensation." / labels = ("Not at all Likely", "Extremely Likely") / increment = 1 / range = (1, 100) / slidersize = (40%, 3%) /position = (10%, 50%) / showtooltips = false </slider>
<slider R3_3Mac> / caption = "Take a prescription for an opioid/narcotic pain medication. " / labels = ("Not at all Likely", "Extremely Likely") / increment = 1 / range = (1, 100) / slidersize = (40%, 3%) /position = (10%, 45%) / showtooltips = false </slider>
<slider R3_4Mac> / caption = "Take an over-the-counter pain medication such as Tylenol and/or ibuprofen. " / labels = ("Not at all Likely", "Extremely Likely") / increment = 1 / range = (1, 100) / slidersize = (40%, 3%) /position = (10%, 60%) / showtooltips = false </slider>
<slider R3_5Mac> / caption = "Seek consultation from a physical therapist. " / labels = ("Not at all Likely", "Extremely Likely") / increment = 1 / range = (1, 100) / slidersize = (40%, 3%) /position = (10%, 75%) / showtooltips = false </slider>
<slider R3_6Mac> / caption = "Seek consultation from a psychologist or therapist." / labels = ("Not at all Likely", "Extremely Likely") / increment = 1 / range = (1, 100) / slidersize = (40%, 3%) /position = (10%, 30%) / showtooltips = false </slider>
<slider R3_7Mac> / caption = "Rest; greatly reduce their physical activity." / labels = ("Not at all Likely", "Extremely Likely") / increment = 1 / range = (1, 100) / slidersize = (40%, 3%) /position = (10%, 25%) / showtooltips = false </slider>
<slider R3_8Mac> / caption = "Engage in lifestyle activities such as diet and exercise." / labels = ("Not at all Likely", "Extremely Likely") / increment = 1 / range = (1, 100) / slidersize = (40%, 3%) /position = (10%, 40%) / showtooltips = false </slider>
<slider R3_9Mac> / caption = "Use complementary/alternative treatments such as acupuncture, massage, and/or meditation. " / labels = ("Not at all Likely", "Extremely Likely") / increment = 1 / range = (1, 100) / slidersize = (40%, 3%) /position = (10%, 55%) / showtooltips = false </slider>
<image TreatmentRatingsInstructions> / items = ("TreatmentRatingsInstructions.jpg") / position = (8%, 2%) / size = (40%, 40%) </image>
-------------------------------------------------------------------------- RATING PAGE 4: PATIENT IMPRESSIONS (PHOTO FOLLOWED BY ASSESSMENTS) (Mac) -------------------------------------------------------------------------- <surveypage RatingPage4Mac> / questions = [1=R4_1Mac; 2=R4_2Mac; 3=R4_3Mac] / stimulusframes = [1=person1Mac] / fontstyle = ("Cambria", 17, true) / responsefontstyle = ("Cambria", 16.5, false) / showquestionnumbers = false / showpagenumbers = false / finishlabel = "Continue" / nextbuttonposition = (85,90) </surveypage>
<slider R4_1Mac> / caption = "My impression of this patient was...." / labels = ("Very negative ", "Neutral", " Very positive") / increment = 1 / range = (0, 100) / slidersize = (40%, 3%) / showtooltips = false </slider>
<slider R4_2Mac> / caption = "I felt ________ toward this patient." / labels = ("Very unsympathetic", "Neutral", "Very sympathetic") / increment = 1 / range = (0, 100) / slidersize = (40%, 3%) / showtooltips = false </slider>
<slider R4_3Mac> / caption = "I found this patient to be..." / labels = ("Not likeable at all ", "Neutral", " Very likeable") / increment = 1 / range = (0, 100) / slidersize = (40%, 3%) / showtooltips = false </slider>
***************************************************************************
-------------------------------------------------------------------------- PAGE: EMPATHY SCALE -------------------------------------------------------------------------- <block iri_section> / trials=[1=IRI_Statements1] / screencolor = (209,203,199) </block>
<surveypage IRI_Statements1> /questions = [1=ri_2; 2=ri_3; 3=ri_4; 4=ri_8; 5=ri_9; 6=ri_11; 7=ri_14; 8=ri_15; 9=ri_18; 10=ri_20;11=ri_21; 12=ri_22;13=ri_25;14=ri_28;15=IRI_Scale; 16=IRI_Text] / finishlabel = "Continue" / nextbuttonposition = (85,90) / showpagenumbers = false / showquestionnumbers = false / fontstyle = ("Verdana", 16, true) / responsefontstyle = ("Verdana", 15, false) </surveypage>
<textbox ri_2> /caption = "I often have tender, concerned feelings for people less fortunate than me." /position = (5%, 33%) / orientation = horizontal / textboxsize = (1.1, 2.6) / range = (1, 5) </textbox>
<textbox ri_3> /caption = "I sometimes find it difficult to see things from the ''other guy's'' point of view." /position = (5%, 36.5%) / orientation = horizontal / textboxsize = (1.1, 2.6) / range = (1, 5) </textbox>
<textbox ri_4> /caption = "Sometimes I don't feel very sorry for other people when they are having problems. " /position = (5%, 40%) / orientation = horizontal / textboxsize = (1.1, 2.6) / range = (1, 5) </textbox>
<textbox ri_8> /caption = "I try to look at everybody's side of a disagreement before I make a decision." /position = (5%, 43.5%) / orientation = horizontal / textboxsize = (1.1, 2.6) / range = (1, 5) </textbox>
<textbox ri_9> /caption = "When I see someone being taken advantage of, I feel kind of protective towards them." /position = (5%, 47%) / orientation = horizontal / textboxsize = (1.1, 2.6) / range = (1, 5) </textbox>
<textbox ri_11> /caption = "I sometimes try to understand my friends better by imagining how things look from their perspective." /position = (5%, 50.5%) / orientation = horizontal / textboxsize = (1.1, 2.6) / range = (1, 5) </textbox>
<textbox ri_14> /caption = "Other people's misfortunes do not usually disturb me a great deal." /position = (5%, 54%) / orientation = horizontal / textboxsize = (1.1, 2.6) / range = (1, 5) </textbox>
<textbox ri_15> /caption = "If I'm sure I'm right about something, I don't waste much time listening to other people's arguments." /position = (5%, 57.5%) / orientation = horizontal / textboxsize = (1.1, 2.6) / range = (1, 5) </textbox>
<textbox ri_18> /caption = "When I see someone being treated unfairly, I sometimes don't feel very much pity for them." /position = (5%, 61%) / orientation = horizontal / textboxsize = (1.1, 2.6) / range = (1, 5) </textbox>
<textbox ri_20> /caption = "I am often quite touched by things that I see happen." /position = (5%, 64.5%) / orientation = horizontal / textboxsize = (1.1, 2.6) / range = (1, 5) </textbox>
<textbox ri_21> /caption = "I believe that there are two sides to every question and try to look at them both." /position = (5%, 68%) / orientation = horizontal / textboxsize = (1.1, 2.6) / range = (1, 5) </textbox>
<textbox ri_22> /caption = "I would describe myself as a pretty soft-hearted person." /position = (5%, 71.5%) / orientation = horizontal / textboxsize = (1.1, 2.6) / range = (1, 5) </textbox>
<textbox ri_25> /caption = "When I'm upset at someone, I usually try to ''put myself in his shoes'' for a while." /position = (5%, 75%) / orientation = horizontal / textboxsize = (1.1, 2.6) / range = (1, 5) </textbox>
<textbox ri_28> /caption = "Before criticizing somebody, I try to imagine how I would feel if I were in their place." /position = (5%, 78.5%) / orientation = horizontal / textboxsize = (1.1, 2.6) / range = (1, 5) </textbox>
<image IRI_Text> / items = ("IRI_Text.jpg") / position = (5%, 4%) </image>
<image IRI_Scale> / items = ("IRI_Scale.jpg") / position = (5%, 19%) </image>
---------------------------------------------------------------------- PAGE: SRP_SECTION ----------------------------------------------------------------------
<block srp_section> / trials=[1=SRP_Statements1; 2=SRP_Statements2] / screencolor = (209,203,199) </block>
<surveypage SRP_Statements1> / fontstyle = ("Verdana", 16, true) / responsefontstyle = ("Verdana", 15, false) /questions = [1=ri2_1; 2=ri2_2; 3=ri2_3; 4=ri2_4; 5=ri2_5; 6=ri2_6; 7=ri2_7; 8=ri2_8; 9=SRP_Scale; 10=SRP_Text] / finishlabel = "Continue" / nextbuttonposition = (85, 90) / showpagenumbers = false / showquestionnumbers = false </surveypage>
<surveypage SRP_Statements2> / fontstyle = ("Verdana", 16, true) / responsefontstyle = ("Verdana", 15, false) /questions = [1=ri2_9; 2=ri2_10; 3=ri2_11; 4=ri2_12; 5=ri2_13; 6=ri2_14; 7=ri2_15; 8=ri2_16; 9=SRP_Scale; 10=SRP_Text] / finishlabel = "Continue" / nextbuttonposition = (85, 90) / showpagenumbers = false / showquestionnumbers = false </surveypage>
<textbox ri2_1> /caption = "Iâm a rebellious person." /position = (14%, 38%) / orientation = horizontal / textboxsize = (1.1, 2.6) / range = (1, 5) </textbox>
<textbox ri2_2> /caption = "Most people are wimps." /position = (14%, 42%) / orientation = horizontal / textboxsize = (1.1, 2.6) / range = (1, 5) </textbox>
<textbox ri2_3> /caption = "Iâve often done something dangerous just for the thrill of it." /position = (14%, 46%) / orientation = horizontal / textboxsize = (1.1, 2.6) / range = (1, 5) </textbox>
<textbox ri2_4> /caption = "I have tricked someone into giving me money." /position = (14%, 50%) / orientation = horizontal / textboxsize = (1.1, 2.6) / range = (1, 5) </textbox>
<textbox ri2_5> /caption = "I have assaulted a law enforcement official or social worker." /position = (14%, 54%) / orientation = horizontal / range = (1, 5) / textboxsize = (1.1, 2.6) </textbox>
<textbox ri2_6> /caption = "I have pretended to be someone else in order to get something." /position = (14%, 58%) / orientation = horizontal / textboxsize = (1.1, 2.6) / range = (1, 5) </textbox>
<textbox ri2_7> /caption = "I like to see fist-fights." /position = (14%, 62%) / orientation = horizontal / textboxsize = (1.1, 2.6) / range = (1, 5) </textbox>
<textbox ri2_8> /caption = "I would get a kick out of âscammingâ someone." /position = (14%, 66%) / orientation = horizontal / textboxsize = (1.1, 2.6) / range = (1, 5) </textbox>
<textbox ri2_9> /caption = "It's fun to see how far you can push people before they get upset." /position = (14%, 38%) / orientation = horizontal / textboxsize = (1.1, 2.6) / range = (1, 5) </textbox>
<textbox ri2_10> /caption = "I enjoy doing wild things." /position = (14%, 42%) / orientation = horizontal / textboxsize = (1.1, 2.6) / range = (1, 5) </textbox>
<textbox ri2_11> /caption = "I rarely follow the rules." /position = (14%, 46%) / orientation = horizontal / textboxsize = (1.1, 2.6) / range = (1, 5) </textbox>
<textbox ri2_12> /caption = "You should take advantage of other people before they do it to you." /position = (14%, 50%) / orientation = horizontal / textboxsize = (1.1, 2.6) / range = (1, 5) </textbox>
<textbox ri2_13> /caption = "People sometimes say that Iâm cold-hearted." /position = (14%, 54%) / orientation = horizontal / textboxsize = (1.1, 2.6) / range = (1, 5) </textbox>
<textbox ri2_14> /caption = "I love violent sports and movies." /position = (14%, 60%) / orientation = horizontal / textboxsize = (1.1, 2.6) / range = (1, 5) </textbox>
<textbox ri2_15> /caption = "I have threatened people into giving me money, clothes, or makeup." / orientation = horizontal / textboxsize = (1.1, 2.6) /position = (14%, 64%) / range = (1, 5) </textbox>
<textbox ri2_16> /caption = "I purposely tried to hit someone with the vehicle I was driving." / orientation = horizontal / textboxsize = (1.1, 2.6) /position = (14%, 68%) / range = (1, 5) </textbox>
<image SRP_Text> / items = ("SRP_Text.jpg") / position = (6%, 6%) </image>
<image SRP_Scale> / items = ("SRP_Scale.jpg") / position = (14%, 20%) </image>
---------------------------------------------------------------------- PAGE: CLOSING SCREEN ----------------------------------------------------------------------
<block ClosingPage> / trials=[1=FollowUp; 2=ClosingPage] / screencolor = (209,203,199) </block>
<surveypage FollowUp> /questions = [1=followup] /finishlabel = "Continue" /nextbuttonposition = (85, 90) / showpagenumbers = false / showquestionnumbers = false / fontstyle = ("Verdana", 16, true) / responsefontstyle = ("Verdana", 15, false) </surveypage>
<radiobuttons followup> /caption = "Do you agree to be contacted for follow up in 2, 3, and 4 years?" / options = ("Yes", "No") </radiobuttons>
<trial ClosingPage> / stimulusframes = [1=ClosingPage; 2=FinishButton] / validresponse = (FinishButton) / inputdevice = mouse </trial>
<picture ClosingPage> / items = ("ClosingText.jpg") / position = (50%, 50%) </picture>
<picture FinishButton> / items = ("FinishButton.jpg") / position = (80%, 80%) </picture>
|