By xxPsyWWUxx - 6/20/2017
Hey there,
I uploaded my final experiment on Inquisit Web and everything seemed to work so far and no errors occur when participants complete the questionnaire. Unfortunately white pages occur, which can only be bypassed by Strg + B. But by doing so, some items are bypassed.
Does somebody know how to solve this problem? I am using Inquisit 4 and so far I think, that I did everything right. Sadly I don't really know to describe the problem better...
Thanks a lot for your help!
This is the url to my experiment: http://research.millisecond.com/mitjaback/programmierungjudithfinal.web
|
By Dave - 6/21/2017
+xHey there, I uploaded my final experiment on Inquisit Web and everything seemed to work so far and no errors occur when participants complete the questionnaire. Unfortunately white pages occur, which can only be bypassed by Strg + B. But by doing so, some items are bypassed. Does somebody know how to solve this problem? I am using Inquisit 4 and so far I think, that I did everything right. Sadly I don't really know to describe the problem better... Thanks a lot for your help! This is the url to my experiment: http://research.millisecond.com/mitjaback/programmierungjudithfinal.web <instruct firstpage> /inputdevice = mouse / nextlabel = "Ok" / prevlabel = "Zurück zur vorherigen Seite" / lastlabel = "Ok" / windowsize = (1300px, 900px) / fontstyle = ("Arial", 2.8%, false, false, false, false, 5, 0) </instruct>
Your script sets the size of instruction pages larger than some displays' resolution. People will not be able to properly view or navigate those instructions pages. Choose a different /windowsize, ideally specified in percentages so that it properly adapts to different display aspect ratios and resolutions. E.g.
<instruct firstpage> /inputdevice = mouse / nextlabel = "Ok" / prevlabel = "Zurück zur vorherigen Seite" / lastlabel = "Ok" / windowsize = (90%, 90%) / fontstyle = ("Arial", 2.8%, false, false, false, false, 5, 0) </instruct>
|
|