script | The Javascript function to call. |
Evaluates script function in the containing web page.
This will execute a JavaScript script
function in the web page that contains
the WebGL content.
// Navigates to the previous page Application.ExternalEval ("history.back()");
using UnityEngine; using System.Collections;
public class ExampleClass : MonoBehaviour { void Example() { Application.ExternalEval("history.back()"); } }
Note: The web player is not supported from 5.4.0 onwards. See Also: Application.ExternalCall.