Group: Administrators
Posts: 13K,
Visits: 104K
|
No, I haven't figured out the issue -- the box shows up in every single test I've done.
I'm also not sure what the answers to my first question in my last response is, namely which Inquisit version you are using and whether you've made sure it's the same (and up to date) on all systems.
The only other thing I can suggest trying is including the "other" <textbox> element in the page's /questions attribute. That should force it to be visible from the get-go:
<survey demo> / screencolor = (grey) / pages = [1 = demographics1; ] / responsefontstyle = ("Verdana", 1.5%, false, false, false, false, 5, 0) / itemfontstyle = ("Verdana", 2%, false, false, false, false, 5, 0) / itemspacing = 10% / showpagenumbers = false / finishlabel = "Next" </survey>
<surveypage demographics1> / caption = "Please answer the following demographic questions" / questions = [1=idnumber; 2=age; 3=sex; 4=race; 5=raceother] </surveypage>
<textbox idnumber> / caption = "Please enter your participant ID number, which is marked on the plastic bag you received with your t-shirt." / required = true </textbox>
<dropdown age> / caption = "What is your age?" / options = ("18", "19", "20", "21", "22", "23", "24", "25", "26", "27","28", "29", "30", "31", "32", "33", "34", "35", "36", "37","38", "39", "40", "41", "42", "43", "44", "45", "46", "47","48", "49", "50", "51", "52", "53", "54", "55", "56", "57","58", "59", "60", "61", "62", "63", "64", "65", "66", "67","68", "69", "70", "71", "72", "73", "74", "75", "76", "77","78", "79", "80", "81", "82", "83", "84", "85", "86", "87","88", "89") / optionvalues = ("18", "19", "20", "21", "22", "23", "24", "25", "26", "27","28", "29", "30", "31", "32", "33", "34", "35", "36", "37","38", "39", "40", "41", "42", "43", "44", "45", "46", "47","48", "49", "50", "51", "52", "53", "54", "55", "56", "57","58", "59", "60", "61", "62", "63", "64", "65", "66", "67","68", "69", "70", "71", "72", "73", "74", "75", "76", "77","78", "79", "80", "81", "82", "83", "84", "85", "86", "87","88", "89") / required = false </dropdown>
<radiobuttons sex> / caption = "What is your sex?" / options = ("Female", "Male") / optionvalues = ("0", "1") / orientation = horizontal / required = false </radiobuttons>
<checkboxes race> / caption = "With what race/ethnicity do you identify? (Select ALL that apply)" / options = ("Caucasian", "Hispanic or Latino", "Asian", "Black or African American", "Native Hawaiian/Pacific Islander", "American Indian/Alaska Native", "Indian") / other = raceother / required = false </checkboxes>
<textbox raceother> / caption = "Other" / textboxsize = (25%,5%) / required = false </textbox>
|
Group: Awaiting Activation
Posts: 72,
Visits: 192
|
I tried the latter and that didn't work. Here's the script: <checkboxes race> / caption = "With what race/ethnicity do you identify? (Select ALL that apply)" / options = ("Caucasian", "Hispanic or Latino", "Asian", "Black or African American", "Native Hawaiian/Pacific Islander", "American Indian/Alaska Native", "Indian") / other = "Other: " / required = false </checkboxes> <checkboxes senseofsmell> / caption = "Please tell us about your sense of smell. You may check more than one option if necessary." / options = ("I have a normal sense of smell", "My sense of smell is distorted, that is, things smell peculiar.", "I experience a smell when nothing is there (phantom smell).", "My sense of smell is heightened (hypersensitivity).", "My sense of smell is diminished (partial loss).", "My sense of smell is absent (complete loss).") / other = "Other: " / required = false here are the two screen shots:
|
Group: Administrators
Posts: 13K,
Visits: 104K
|
I am unable to reproduce that. Here's a screenshot of that code running on my system, as you can see the box is present: Two things to try: (1) Make the box larger still, i.e. increase /textboxsize further, OR (2) Push the box further to the right outside the area of potential overlap by appending a bunch of spaces or tabs to the other caption: <checkboxes race> / caption = "With what race/ethnicity do you identify? (Select ALL that apply)" / options = ("Caucasian", "Hispanic or Latino", "Asian", "Black or African American", "Native Hawaiian/Pacific Islander", "American Indian/Alaska Native", "Indian") / other = "Other: "/ required = false </checkboxes>
|
Group: Awaiting Activation
Posts: 72,
Visits: 192
|
Here's the script (the end tag didn't come through in my last post).
<checkboxes race> / caption = "With what race/ethnicity do you identify? (Select ALL that apply)" / options = ("Caucasian", "Hispanic or Latino", "Asian", "Black or African American", "Native Hawaiian/Pacific Islander", "American Indian/Alaska Native", "Indian") / other = raceother / required = false </checkboxes>
<textbox raceother> / caption = "Other" / textboxsize = (25%,5%) </textbox>
|