how to get info of the current UI Object.

Hi, I have several inputfields that share a method triggered when onValueChanged(). So I want to know which inputfield triggered when method is fired.

I guess you’re setting a function for the OnValueChanged event that takes one string parameter and you selected it in the “Dynamic string” section, right?

You can add a function that takes an InputField parameter instead (it will only appear in the “Static parameter” section) and then drag the InputField into the static parameter.

With this you’ll get a reference to the InputField component instead of the content, and you can get the content using the text property of the InputField.