title= string sets the title.
ui application= "demo"
create!;
/* create the control panel */
ui_control_panel new: the_panel
parent= ui;
/* create the title that will be displayed at point (10, 10)
(The position is set using the panel widget's resources) */
ui_title new: my_title
parent= the_panel
title= "Hi there! Isn't this fun?"
create!
@ "xOffset" : 10
@ "yOffset" : 10;
/* display the window and title */
ui on! start!;