> For some reason I am not able to change the text assigned to this label. Is > there a tutorial somewhere explaining how to achieve this?
You should be able to do this. Just call setText() on the label instance. Since you are using an activity indicator, I am guessing that your label displays the status of a background thread. Make sure that you only update the UI on the main thread. If you need to call into the UI from the background, use ApplicationContext#queueCallback(). This is similar to invokeLater() in Swing. G
