Hello,
I am making an app for mobile devices and in this app i have made several buttons like the one below \
using UnityEngine;
using System.Collections;
public class LINKEDIN : MonoBehaviour {
public void OnMouseDown ()
{
Application.OpenURL(“http://www.linkedin.com”);
}
}
but when this executes it opens a website tab of the provider which is currently installed at the mobile device.
and then there is now way back into the app.
what i would like to see that this website opens in a readymade tab or something with a close button.
inside this tab is the website playing and when i hit the close button you return to the app.
Is this possible?
if yes could you guide me in the right direction please.
Thanks in advance.