Millisecond Forums

Removing the black line of a likert scale

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

By Wenkuo - 2/17/2016

Hi,

There is something I have been wondering about. It concerns the use of <likert>.
When you use it, it automatically draws a black line between the different options.

I was wondering if there is any way to remove/hide this line?

I've tried it with using <shape>, but that doesn't seem to work.

This is my current script:

&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&Creating a picture list of the animal examples
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&

<item animals_examples_info>
/ 1 = "Animals/Examples/Chimpansee.jpg"
/ 2 = "Animals/Examples/Kangaroo.jpg"
</item>

<item animals_examples_no_info>
/ 1 = "Animals/Examples/ChimpanseeN.jpg"
/ 2 = "Animals/Examples/KangarooN.jpg"
</item>

&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&Setting a default for the example pictures 
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&

<picture animals_examples_info_default>
/ items = animals_examples_info
/ position = (50%, 50%)
/ size = (90%, 90%)
/ select = noreplacenorepeat
</picture>

<picture animals_examples_no_info_default>
/ items = animals_examples_no_info
/ position = (50%, 50%)
/ size = (60%, 60%)
/ select = noreplacenorepeat
</picture>

<picture animals_examples_no_info_default2>
/ items = animals_examples_no_info
/ position = (50%, 50%)
/ size = (60%, 60%)
/ select = picture.animals_examples_no_info_default.currentindex
</picture>

&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& Creating the stimulusframe in which the examples are shown 
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&

<trial animals_examples_info_presentation>
/ stimulusframes = [1 = animals_examples_info_default]
/ showmousecursor = false
/ timeout = 15000
</trial>

<text animals_example_danger>
/ fontstyle = ("Times New Roman", 54, false, false, false, false, 5)
/ items = ("Dit dier is...")
/ position = (50%, 10%)
</text>

<text animals_example_location>
/ fontstyle = ("Times New Roman", 54, false, false, false, false, 5)
/ items = ("Dit dier woont in ...")
/ position = (50%, 10%)
</text>

<shape blank>
/ shape = rectangle
/ size = (25%, 25%)
/ color = (255,255,255)
/ erase = false
/ position = (50%, 85%)
</shape>

&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&Creating the questions for examples recall 
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&

<likert animals_examples_danger_recall>
/ stimulusframes = [1 = animals_examples_no_info_default; 2 = animals_example_danger; 3 = blank]
/ anchors = [1 = "Gevaarlijk"; 2 = "Veilig"]
/ numpoints = 2
/ anchorwidth = 600
/ position = (50%, 85%)
/ fontstyle = ("Times New Roman", 40, false, false, false, false, 5)
/ posttrialpause = 250
</likert>

<likert animals_examples_location_recall>
/ stimulusframes = [1 = animals_examples_no_info_default2; 2 = animals_example_location]
/ anchors = [1 = "Afrika"; 2 = "Australië"]
/ numpoints = 2
/ anchorwidth = 600
/ position = (50%, 85%)
/ fontstyle = ("Times New Roman", 40, false, false, false, false, 5)
/ posttrialpause = 250
</likert>

By Dave - 2/18/2016

No, there is no way to remove or cover up the line between <likert>-options. What you can do, though, is use a standard <trial> element with clickable objects instead.

<trial mytrial>
/ stimulusframes = [1=mytext, 01, 02, 03, 01label, 03label]
/ inputdevice = mouse
/ validresponse = (01, 02, 03)
</trial>

<text mytext>
/ items = ("Some stimulus")
</text>

<text 01>
/ items = ("1")
/ txbgcolor = (grey)
/ vjustify = center
/ size = (3%, 5%)
/ position = (40%, 65%)
</text>

<text 02>
/ items = ("2")
/ txbgcolor = (grey)
/ vjustify = center
/ size = (3%, 5%)
/ position = (50%, 65%)
</text>

<text 03>
/ items = ("3")
/ txbgcolor = (grey)
/ vjustify = center
/ size = (3%, 5%)
/ position = (60%, 65%)
</text>

<text 01label>
/ items = ("Left Anchor")
/ position = (40%, 60%)
</text>

<text 03label>
/ items = ("Right Anchor")
/ position = (60%, 60%)
</text>

By Wenkuo - 2/18/2016

Hi Dave,

Thank you very much for your apt and helpful reply!