Aka: also known as
In Chameleon Tools, The keyword "AKA" is the alias of the UI widget. We could set/get data from a specified widget with "Aka" name.
c++:
SAssignNew(MyTextBox, STextBlock)
equals json:
"STextBlock": {
"Aka": "MyTextBox"
}
We can set the text on it with:
self.data.set_text("MyTextBox", "Some fancy text")
When the results are not as expected, look in the Console window. See if there is a Warning or Error.