Link buttons?

Hi

I was trying to create a link button with the Unity GUI system but i thought that it’s better to ask here first if there is anything similar already created by the community.

If not, does somebody know a way to make a Label able to receive interaction? (clicks and if posible mouse over events) or to determine dinamically the size of a string (so i can put an invisible button of the same size of the text that it holds and in that way emulates a link button).

Regards.

the way GUI is set up atm Label returns void - therefore unless you create a button behind it like you said i dont think you can cause interaction with a label

in terms of dynamically finding a string size, i would just figure out the length of the largest letters in the font your using (like M or W) and then use that times the length of letters in the string

Thanks for the advice. That will do for the moment (in my case at least).