Load an XML file into Unity 3D

Hi,

Here is my problem :

I’d like to load an XML file into Unity with the GUI system.

In my scene I’ve a GUI Texture and when you click on it it open a GUI Button.

Each button are creat with the XML file and when I click on the button it open a link that is written inot the XML file.

Someone can help me to solve this ?

Thanks.

There is a thread about reading XML files using custom routines here:
http://forum.unity3d.com/threads/38273-Lightweight-UnityScript-XML-parser?p=987677&viewfull=1#post987677

Alternatively you can use the built in XML reader classes of .net (I think ‘System.Xml’).
But this will add about an extra 1mb to your game project.
However, this method will be well documented and easily researched using Google.