how to make a button open a url in unity code example
Example: unity url button
using UnityEngine;
using System.Collections;public class ExampleClass : MonoBehaviour
{
void Start()
{
Application.OpenURL("http://unity3d.com/");
}
}