Group: Forum Members
Posts: 27,
Visits: 47
|
Hi Dave,
Thank you for the answer!
Also, I was hoping that you could explain something for me. It concerns the following piece of code:
<text animal_location_question_text> / items = ("Where do you think the animal on the picture lives?") / position = (50%, 55%) / fontstyle = ("Times New Roman", 28, false, false, false, false, 5) </text>
<radiobuttons animal_location_options> / caption = "" / options = ("North America", "South America" , "Europe", "Asia", "Africa", "Australia") / required = true / position = (5%, 60%) / orientation = horizontal / fontstyle = ("Times New Roman", 28, false, false, false, false, 5) / order = random </radiobuttons>
<surveypage animal_location_answer> / questions = [1 = animal_location_options] / stimulusframes = [1 = animal_pictures; 2 = animal_location_question_text] / showpagenumbers = false / showquestionnumbers = false / showmousecursor = true / finishlabel = "Volgende" / nextbuttonposition = (90%, 90%) / fontstyle = ("Times New Roman", 28, false, false, false, false, 5) </surveypage>
Within <radiobuttons>, whenever I use /order = random, the options appear all jumbled/overlapped on screen. For example, South America overlaps with North America at times. Yet, when I remove the /order = random, the options appear clearly on screen, without any overlap/jumbling.
I've tried placing the options in different orders, without using /order = random, and none of the problems that I get when using /order = random appears. So I was wondering why this happens?
|