Legacy Documentation: Version 4.5.0

Script language:

  • JS
  • C#
  • Boo
Script language

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

Application.ExternalEval

static function ExternalEval(script: string): void;
static void ExternalEval(string script);
static def ExternalEval(script as string) as void

Description

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 page
	Application.ExternalEval ("history.back()");
using UnityEngine;
using System.Collections;

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

public class ExampleClass(MonoBehaviour):

	def Example() as void:
		Application.ExternalEval('history.back()')