Copy the text of a text field into a variable

Hello.
I would like to copy the text that is in a text field into a variable.
Is it possible ?

2021-12-02 11_14_34-Sans titre - Sans titre - ActivePresenter

Hi,

Variables are a great way to store and retrieve dynamic information.
It would be helpful if you provide more information that why you want to copy text of text fields into a variable?

Regards,

In javascript it is possible to retrieve the text which is in a text field?
Something like:

var myVar = prez.variable(my_textefield.TEXT);

Hi Christ,

You can get text from an object as follow:

var myVar = prez.object('object name').text();

Regards

Great !
This is exactly what I was looking for.
Thanks.