Group: Forum Members
Posts: 20,
Visits: 96
|
Currently my slider will jump in increments of 10 on my 1 to 50 scale. I would like it so there is no jumping and my participants have to drag it to the exact point on the slider. I am unsure what I am missing in my coding below.
<slider attentionscale> /labels = ("Neutral (0)", "Strong (50)") /range = (0, 50) / defaultresponse = 0 /required = true / showticks = true / correctresponse = ("50") /slidersize = (80%, 80%) / position = (5%, 27%) /fontstyle = ("Arial", 3%, true, false, false, false, 5, 1) / responsefontstyle = ("Arial", 3%, false, false, false, false, 5, 1) / txcolor = black </slider>
<surveypage attentionscale> / caption = "Please place the cursor at 50 on the scale, then proceed to the second task." / fontstyle = ("Arial", 3%, false, false, false, false, 5, 10) / txcolor = black / questions = [1=slider.attentionscale] /itemspacing = 0 / showbackbutton = false /showpagenumbers = false /showquestionnumbers = false / navigationbuttonfontstyle = ("Arial", 2.5%, true, false, false, false, 5, 1) / ontrialend = [values.slider_response=slider.attentionscale.response] /recorddata = true </surveypage>
|