Application.ExternalEval Manual     Reference     Scripting  
Scripting > Runtime Classes > Application
Application.ExternalEval

static function ExternalEval (script : String) : 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.

JavaScript
// Navigates to the previous page
Application.ExternalEval ("history.back()");

See Also: Browser to Unity communication, Application.ExternalCall.