Legacy Documentation: Version 5.2
LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

Application.ExternalEval

Switch to Manual
public static void ExternalEval(string script);

Parameters

script The Javascript function to call.

Description

Evaluates script function in the containing web page.

This will execute JavaScript script function in the web page that contains the web player or WebGL content.

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { void Example() { Application.ExternalEval("history.back()"); } }