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();

490 views
0 faves
0 comments
Uploaded on March 24, 2006
Taken on March 25, 2006