MATLAB: In App Designer, how can I refer to the controls in one GUI from another GUI

app designermatlab gui

Basically, in App Designer, I have 2 GUIs opened at the same time: GUI1_App and GUI2_App. GUI1_App includes a "Static Text" while GUI2_App includes a "Push Button". I would like the Color property of the Static Text in GUI1_App to change when I push the Push Button on GUI2_App.
Essentially, my question is how can I refer to the controls in GUI1_App from GUI2_App? how can I refer to the controls in GUI1_App from GUI2_App?

Best Answer

After doing some research, the solution to this question can be found in this Matlab example:
Related Question