Avatar

Level 4

I am having an issue I have multiple checkboxes - once the checkboxes are selected, I would like some information to appear in a field and if checkbox is deselected I would like the text to disappear.

My major problem is if all the checkboxes are selected at one time and the information appears in the textbox only one line of text will appear at once and I would also like for text to appear on separate lines and not on the same line.

This is what I am working with now:

if

(RadioButtonList4.rawValue == true)

TextField.rawValue

= "This is a value set using a script.";

else

TextField1.rawValue

= "";

Please Help