Millisecond Forums

use an input text from a textbox as items for a likert scale

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

By lotte - 10/11/2012

Hi there, 


Does anybody know whether it is possible to use a text - inserted by a participant - from a text box as item for a likert scale on a following surveypage? 


For example: I want to ask people to list five memories. For every memory I've made a seperate textbox. On the next page, I want them to rate these just generated memories with likert scales. I want to show the just-generated memories on the screen and let them rate them on a likert scale....


Thanks!


Lotte


By Dave - 10/11/2012

<block myblock>
/ trials = [1=pg01; 2=pg02]
</block>

<surveypage pg01>
/ questions = [1=tb01; 2=tb02]
</surveypage>

<surveypage pg02>
/ questions = [1=rb01; 2=rb02]
</surveypage>

<textbox tb01>
</textbox>

<textbox tb02>
</textbox>

<radiobuttons rb01>
/ caption = "Rate <%textbox.tb01.response%>"
/ options = ("excellent", "good", "satisfactory", "bad", "aweful")
</radiobuttons>

<radiobuttons rb02>
/ caption = "Rate <%textbox.tb02.response%>"
/ options = ("excellent", "good", "satisfactory", "bad", "aweful")
</radiobuttons>


Regards,


~Dave

By lotte - 10/11/2012

awesome!


thank you so much, saved my day :)