+x+x+xDear Dave,
Thanks very much for your feedback, everything is running great now!
One final question: when running the script on Inquisit web, at first everything was ok but today I ran a test trial and the answers for the selection question were displayed as symbols, not as letters on Windows 10 pc, not on Macbook or iPhone. I did not change the script between the first and second test run. Is there an explanation for this?
Kind regards,
Michelle
First time I've heard of such a thing. Could you post a link to the web experiment's start page so I can check whether I can replicate this under Windows 10?
https://mili2nd.co/yhnbHere's the link
You've specified the "symbol" character set in the default fontstyle:
<defaults>
/canvasaspectratio = (4,3)
/minimumversion = "5.0.0.0"
/ fontstyle = ("Arial", 4%, false, false, false, false, 5,
2) <-- HERE
/txbgcolor = black
/ txcolor = white
/ screencolor = black
</defaults>
You should specify standard ANSI as the character set instead:
<defaults>
/canvasaspectratio = (4,3)
/minimumversion = "5.0.0.0"
/ fontstyle = ("Arial", 4%, false, false, false, false, 5,
0)
/txbgcolor = black
/ txcolor = white
/ screencolor = black
</defaults>