Legacy Documentation: Version 4.6(go to latest)
Language: English
  • C#
  • JS
  • Boo

Script language

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

GUI.GetNameOfFocusedControl

public static function GetNameOfFocusedControl(): string;

Description

Get the name of named control that has focus.

Control names are set up by using SetNextControlName. When a named control has focus, this function will return its name. If no control has focus or the focused control has no name set, an empty string will be returned instead.

	var login : String = "username";
	var login2 : String = "no action here";

function OnGUI () { GUI.SetNextControlName ("user"); login = GUI.TextField (Rect (10,10,130,20), login); login2 = GUI.TextField (Rect (10,40,130,20), login2); if (Event.current.isKey && Event.current.keyCode == KeyCode.Return && GUI.GetNameOfFocusedControl () == "user") { Debug.Log ("Login"); }

if (GUI.Button (new Rect (150,10,50,20), "Login")) Debug.Log ("Login"); }