I get 'Data memory access out of bounds' when trying to get the value from a EditBox. My bad, or bug in MoSync?
String value = editBoxScreens[0]->editBox[3]->getText();
If I insted have the following it works.
char *value = (char *)editBoxScreens[0]->editBox[3]->getText().c_str();
but then I get into other problems, especially if the EditBox is empty...