hopefully this fixes the problem people are having with the background not loading.

SVN revision: 5937
This commit is contained in:
bdsabian 2002-02-14 00:26:22 +00:00 committed by bdsabian
parent d349987309
commit 3ecca04798
1 changed files with 2 additions and 2 deletions

View File

@ -75,7 +75,7 @@ function time_update(object data, number val){
}
data.setText("$hour $min $seconds $timeofday");
data.setText("$hour:$min:$seconds $timeofday");
epp.addTimer("clockTimer",0.5,"time_update",0,data);
}
@ -94,7 +94,7 @@ epp.resize(100, 30);
/* create background image object for clock */
backgroundObj = new EvasObject(epp);
backgroundObj.addImage("clock.png");
backgroundObj.addImage(epp.getEppletDir()+"clock.png");
backgroundObj.move(epp.getX(),epp.getY());
backgroundObj.setLayer(9998);
backgroundObj.show();