Attract-Mode Support Forum
Attract-Mode Support => Scripting => Topic started by: kent79 on February 07, 2016, 07:39:09 PM
-
Hi
I would like to add current time function in theme. date() is working, but don't know full script of interval update in background. Please help me., Thanks.
date().hour
date().min
-
local dt = fe.add_text( "", 0, 0, fe.layout.width, 30 );
fe.add_ticks_callback( this, "update_clock" );
function update_clock( ttime )
{
local now = date();
dt.msg = now.hour + ":" + now.min + ":" + now.sec;
}
Try here for more info:
https://electricimp.com/docs/squirrel/system/date/
-
Hi liquid8d,
it works, do you know how to change display format to (h:mm) like as below? Thanks.
example 1: 13:5 to 13:05
example 2: 1:9 to 1:09
-
Not support change to date format in current AM right? Please help me to confirm. Thanks.
-
Hey there, you can use the "format" function: http://www.squirrel-lang.org/doc/sqstdlib3.html#d0e2180
So something like: format("%02d", now.min )
instead of just now.min
should do what you want
-
Hey there, you can use the "format" function: http://www.squirrel-lang.org/doc/sqstdlib3.html#d0e2180
So something like: format("%02d", now.min )
instead of just now.min
should do what you want
Thank you raygun :)