Let’s say I wanted that for each time the "" button is pressed, a GUILayout.TextArea becomes focused (like, it responds to keys) so you can type in it without having to click on it. How could I do so?
Found it, I just use
GUI.SetNextControlName("ChatBox");
before I define the control and use
GUI.FocusControl("ChatBox");
to focus it.