Millisecond Forums

click and drag scale

https://forums.millisecond.com/Topic29849.aspx

By troyh - 10/8/2020

Hello,

Is there a way to create a likert scale in which participants drag a button to any point along the scale?
By Dave - 10/8/2020

troyh - 10/8/2020
Hello,

Is there a way to create a likert scale in which participants drag a button to any point along the scale?

The easiest option is to use the <slidertrial> element:

<slidertrial example>
/ size = (70%, 20%)
/ range = (0,1000)
/ showticks = false
/ labels = ("Left", "Right")
/ buttonlabel = "Next"
/ defaultresponse = 0
/ required = true
/ position = (50%, 75%)
</slidertrial>
By troyh - 10/8/2020

Dave - 10/8/2020
troyh - 10/8/2020
Hello,

Is there a way to create a likert scale in which participants drag a button to any point along the scale?

The easiest option is to use the <slidertrial> element:

<slidertrial example>
/ size = (70%, 20%)
/ range = (0,1000)
/ showticks = false
/ labels = ("Left", "Right")
/ buttonlabel = "Next"
/ defaultresponse = 0
/ required = true
/ position = (50%, 75%)
</slidertrial>

Thank you so much. Is it possible to present two of these on the same screen
By Dave - 10/8/2020

troyh - 10/9/2020
Dave - 10/8/2020
troyh - 10/8/2020
Hello,

Is there a way to create a likert scale in which participants drag a button to any point along the scale?

The easiest option is to use the <slidertrial> element:

<slidertrial example>
/ size = (70%, 20%)
/ range = (0,1000)
/ showticks = false
/ labels = ("Left", "Right")
/ buttonlabel = "Next"
/ defaultresponse = 0
/ required = true
/ position = (50%, 75%)
</slidertrial>

Thank you so much. Is it possible to present two of these on the same screen

<surveypage example>
/ questions = [1=slider1; 2=slider2]
/ showpagenumbers = false
/ showquestionnumbers = false
</surveypage>

<slider slider1>
/ caption = "A"
/ labels = ("Left", "Right")
/ range = (0,1000)
/ slidersize = (70%, 20%)
/ showticks = false
/ defaultresponse = 0
/ required = true
</slider>

<slider slider2>
/ caption = "B"
/ labels = ("Left", "Right")
/ range = (0,1000)
/ slidersize = (70%, 20%)
/ showticks = false
/ defaultresponse = 0
/ required = true
</slider>
By troyh - 10/8/2020

Dave - 10/9/2020
troyh - 10/9/2020
Dave - 10/8/2020
troyh - 10/8/2020
Hello,

Is there a way to create a likert scale in which participants drag a button to any point along the scale?

The easiest option is to use the <slidertrial> element:

<slidertrial example>
/ size = (70%, 20%)
/ range = (0,1000)
/ showticks = false
/ labels = ("Left", "Right")
/ buttonlabel = "Next"
/ defaultresponse = 0
/ required = true
/ position = (50%, 75%)
</slidertrial>

Thank you so much. Is it possible to present two of these on the same screen

<surveypage example>
/ questions = [1=slider1; 2=slider2]
/ showpagenumbers = false
/ showquestionnumbers = false
</surveypage>

<slider slider1>
/ caption = "A"
/ labels = ("Left", "Right")
/ range = (0,1000)
/ slidersize = (70%, 20%)
/ showticks = false
/ defaultresponse = 0
/ required = true
</slider>

<slider slider2>
/ caption = "B"
/ labels = ("Left", "Right")
/ range = (0,1000)
/ slidersize = (70%, 20%)
/ showticks = false
/ defaultresponse = 0
/ required = true
</slider>

Thank you!