2006MAR251055
Obligatory Hello World App. The tools are pretty easy to use. Reminds me of the old 16 bit windows 3 applications without having to resort to C.
Heres the source (javascript) ...
var win = uos.ui.getWindow(this.app_name);
this.win = win;
win.setContent(this.initHtml);
win.setTitle(this.app_name);
win.show();
superFunc();
var w = uos.ui.getWindow('mywindow');
w.setContent("Hello World");
w.setTitle("Hello World");
w.show();
2006MAR251055
Obligatory Hello World App. The tools are pretty easy to use. Reminds me of the old 16 bit windows 3 applications without having to resort to C.
Heres the source (javascript) ...
var win = uos.ui.getWindow(this.app_name);
this.win = win;
win.setContent(this.initHtml);
win.setTitle(this.app_name);
win.show();
superFunc();
var w = uos.ui.getWindow('mywindow');
w.setContent("Hello World");
w.setTitle("Hello World");
w.show();