Group: Forum Members
Posts: 2,
Visits: 22
|
Hello, maybe you can help me: I have a problem with the positioning of a textbox. I want the textbox to appear under the caption (on the same horizontal position but one line lower would also work), because as it is now, the first line of the box isn't visible depending on wether your cursor is placed on one of the other checkboxes or not. There appears to be a box underlying the options of the ckeckboxes above which overlaps the textbox. Is there a way to do move the textbox? I tried defining the /position of the textbox or use /hposition and /vposition, but then the textbox vanished altogether.
Here is the Script:
<checkboxes diagnose> / caption = "Ist bei Ihnen derzeit eine andere psychische Störung diagnostiziert?" / options = ("Generalisierte Angststörung", "Soziale Angststörung", "Körperdysmorphe Störung", "Depressive Störung", "Nein, bei mir ist derzeit keine psychische Störung diagnostiziert.") / other = diagnose_1 / orientation = vertical </checkboxes>
*****this is the textbox i want to move ****
<textbox diagnose_1> / caption = "Andere, nämlich:" / required = false / textboxsize = (25%,5%) / orientation = vertical </textbox>
<radiobuttons substanz> / caption = "Ist bei Ihnen derzeit eine Substanzabhängigkeit diagnostiziert (z.B. Alkohol, Drogen, Medikamente)?" / options = ("Ja", "Nein") /orientation = horizontal /required = true </radiobuttons>
<radiobuttons schizo> / caption = "Ist bei Ihnen derzeit eine Form von schizophrener oder psychotischer Störung diagnostiziert?" / options = ("Ja", "Nein") /orientation = horizontal /required = true </radiobuttons>
<surveypage AngabePerson1> / caption = "Bitte lesen Sie die nun folgenden Fragen sorgfältig durch und klicken Sie Zutreffendes an:" / fontstyle = ("Arial", 2%, false, false, false, false, 5, 0) / responsefontstyle = ("Arial", 2%, false, false, false, false, 5, 0) / itemfontstyle = ("Arial", 2%, true, false, false, false, 5, 0) / itemspacing = 4% / showpagenumbers = false / questions = [1=substanz; 2=schizo; 3=diagnose; 4=diagnose_1] / showquestionnumbers = false / finishlabel = "Weiter" / navigationbuttonfontstyle = ("Arial", -20, true, false, false, false, 5, 0) / nextbuttonposition = (70%, 90%) </surveypage>
Thank you in advance!
|