GUI-from question

I would like to know if I can create form with Unity.GUI, so the user can choose some options (checkboxes, input text in textfields, etc.). And most important question, if I can save this data to XML, for example (so I can manipulate if further)?

Thanks.

This is all certainly possible but perhaps you can give a bit more detail about what you need to do? The quick answer is to say that you can use the GUI and GUILayout classes and then build the XML as a string. You can send the XML to a server using the WWW and WWWForm classes but you will need to dip into the .NET IO classes if you want to write data to a local file.