Group: Forum Members
Posts: 21,
Visits: 60
|
Hi there, I am trying to program a single survey page to display two captions and then a radiobutton at specific times. I have tried the syntax below as well as a version that excludes the /questions subcommand. I keep getting the error "attribute:stimulustimes, message:could not locate element 'Wind1'. Where am I going wrong?
<surveypage Windsp> / questions = [1 = Wind1; 2 = Wind2; 3 = Wind3] / stimulustimes = [100 = Wind1; 600 = Wind2; 1100 = Wind3] / timeout = 120000 / showquestionnumbers = false / showpagenumbers = false / finishlabel = "CONTINUE" </surveypage>
<caption Wind1> / caption = "blah blah 1?" / position = (10, 10) /fontstyle = ("Arial", 22pt, true) </caption>
<caption Wind2> / caption = "blah blah 2?" / position = (10, 25) /fontstyle = ("Arial", 20pt, false) </caption>
<radiobuttons Wind3> / caption = "Please choose the answer that most closely matches your first thought:" / options = ("response 1", "response 2", "response3") / optionvalues = ("1", "2", "3") / orientation = vertical / position = (10, 50) / required = false </radiobuttons>
|