Can i update some object properties (in screen 1) from another object (in screen 2)? se puede?

Can i update some object properties (in screen 1) from another object (in screen 2)?
how? is there documentation on this?

you can use varibles

1 Like

There’s currently not a built-in way to do this but you can use variables to “send a message”:

When Screen 2 opens
   Set variable A to false
   When [some event] set variable A to true

When Screen 1 opens
   If variable A = true
      Update object properties
4 Likes

muchas gracias! estoy investigando ahora mismo el uso de variables.

1 Like

Eso mismo estoy viendo en estos momentos. Estoy buscando la vuelta a un proyecto y estoy estudiando como funciona Thunk!.. gracias por orientarme, ya veo como hacerlo de esta forma

You’re welcome!