Group: Forum Members
Posts: 42,
Visits: 27
|
Hello, For some reason I'm having a hard time including a page element within the survey element. To give more context: I want to have an instructions page before I ask a yes/no question. So I created a page element for my instructions. However, the code keeps giving an error saying that it "could not locate the page element" and that "trial 1 is unassigned". Here is my code for that particular block so that it would make more sense to you. What am I doing wrong? Thanks so much in advance for your help!
<survey rel_feedback> / pages = [1 = intro_relfeedback; 2 = relfeedback1] / responsefontstyle = ("Verdana", -12, false, false, false, false, 5, 0) / itemfontstyle = ("Verdana", -13, false, false, false, false, 5, 0) / itemspacing = 2% / showpagenumbers = false </survey>
<page intro_relfeedback> ^^ xxxyyyzzz. </page>
<surveypage relfeedback1> / fontstyle = ("Verdana", -16, true, false, false, false, 5, 0) / questions = [1=rel_feedback_request] </surveypage>
<dropdown rel_feedback_request> / caption = "Given that this information is of interest to many individuals, you have the option of seeing the results of the analysis. You may also skip seeing the results." / options = ("Yes, I would like to see the analysis.", "No, I would like to skip this step.") / optionvalues = ("1", "2") </dropdown>
|