GUILayout.TextField position

Hello, please can you help me? I need GUILayoutTextField position next to GUI.Label, but i don’t know how.

		GUI.Label(Rect(250,225,500,50), "Player Name:");
		
		nick = GUILayout.TextField (nick, GUILayout.Width (100));

It must look like this: Player Name: nick
Thanks.

Typically, you don’t want to mix GUI and GUILayout. This problem is easily solved by using one or the other.

Thanks. Problem solved.

		nick = GUI.TextField (Rect (350, 225, 100, 20), nick);