Evaluates script snippet in the containing web page (Web Player only).
This will execute JavaScript snippet script in the web page that contains the web player.
// Navigates to the previous pageApplication.ExternalEval ("history.back()");
using UnityEngine;using System.Collections;public class example : MonoBehaviour { void Example() { Application.ExternalEval("history.back()"); }}
import UnityEngineimport System.Collectionsclass example(MonoBehaviour): def Example(): Application.ExternalEval('history.back()')