Misplacement of slider and open-ended questions


Author
Message
Shlomo Hareli
Shlomo Hareli
Guru (6.4K reputation)Guru (6.4K reputation)Guru (6.4K reputation)Guru (6.4K reputation)Guru (6.4K reputation)Guru (6.4K reputation)Guru (6.4K reputation)Guru (6.4K reputation)Guru (6.4K reputation)
Group: Forum Members
Posts: 64, Visits: 225

Hi

I was running a script on the web. The script includesslider ratings and open ended questions. Some people were complaining that thetest of the slider questions and the sliders covered each other and that thebox to enter the text for the open ended questions were also misplaced.

I used % wherever possible to ensure that the position on ascreen is set by everyone’s own display settings. Any suggestions? Ideas as towhat may be the problem?

Thanks much

Shlomo


Dave
Dave
Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)
Group: Administrators
Posts: 13K, Visits: 108K
Most likely there are too many elements on a given page to be rendered without overlap on machine's running at low resolution / relatively small screens. You should be able to test that for yourself by setting the /windowsize attribute in the script's <defaults> element to different values, e.g.

<defaults>
/ windowsize = (1280px, 800px)
...
</defaults>

and either reducing the number of elements or reworking their positions and sizes accordingly.

Shlomo Hareli
Shlomo Hareli
Guru (6.4K reputation)Guru (6.4K reputation)Guru (6.4K reputation)Guru (6.4K reputation)Guru (6.4K reputation)Guru (6.4K reputation)Guru (6.4K reputation)Guru (6.4K reputation)Guru (6.4K reputation)
Group: Forum Members
Posts: 64, Visits: 225
Dear Dave
Thanks much
Shlomo

IR
IR
Esteemed Member (1.5K reputation)Esteemed Member (1.5K reputation)Esteemed Member (1.5K reputation)Esteemed Member (1.5K reputation)Esteemed Member (1.5K reputation)Esteemed Member (1.5K reputation)Esteemed Member (1.5K reputation)Esteemed Member (1.5K reputation)Esteemed Member (1.5K reputation)
Group: Forum Members
Posts: 13, Visits: 146

Hello,

I amrunning my experiment on the web and I am having problems with its presentationon screens with different resolutions.

I reducedthe content of the pages but since I present also pictures I would like to besure that participants have a minimum screen resolution so that they will notencounter problems in loading images.

Is there aparameter that I can add to my script that would verify participants’ screenresolution and not allow those with too low resolution to go on with theexperiment?

Thank youin advance for your help!

IR


Dave
Dave
Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)
Group: Administrators
Posts: 13K, Visits: 108K
You can retrieve information about display dimensions via the display.width and display.height properties. See the documentation for the built-in <display> element for further details. You could then program your script to terminate in case the dimensions are below some threshold. E.g.

<expt>
/ onexptbegin = [if (display.width < 1024) script.abort();]
...
</expt>

GO

Merge Selected

Merge into selected topic...



Merge into merge target...



Merge into a specific topic ID...




Reading This Topic

Explore
Messages
Mentions
Search