Well there are a few thing that you got wrong in your explanation about your Widgets in the first place:
- Your “BlueprintHECHICERA” doesn’t contain a
TextBox
but rather it contains a simpleText
. In aTextBox
you can write something (if it is not readonly), while aText
will only show some text - Your “HOJA_DANTOS” doesn’t contain a
EditableText
but rather aTextBox
So I’ll make the assumption that you actually want a TextBox
inside your “HOJA_DANTOS” where the user can write something, and then that text to be showed inside a Text
in “BlueprintHECHICERA”
Go inside your “MENU_PRINCIPAL”, and do the following:
You can move that bind call where ever you want and add any checks you need, BUT it must be in a chain of calls off of Event Construct
inside the “MENU_PRINCIPAL”. Also inside “BlueprintHECHICERA” make sure that “salida” has Is Variable
checked.
With the code that I showed you when the text is committed to the TextBox
“HOJA_DANTOS” / “entrada” it will then be set as text for Text
inside “BlueprintHECHICERA” / “salida”.