This is a RM skin about displaing countdown,it can display most 5 item,to see more explaination in skin manage
Notes:some days ago,there are some problems for the skin,now,i have solved it.you can use it curretly and happiless.go ahead!
to add or edit your todo things there
It is currently December 9th, 2023, 2:49 pm
a RM skin about displaing countdown
-
- Posts: 1
- Joined: September 21st, 2012, 10:40 am
a RM skin about displaing countdown
You do not have the required permissions to view the files attached to this post.
Last edited by doctor_DC on November 23rd, 2012, 1:02 pm, edited 1 time in total.
fighting yourself
-
- Rainmeter Sage
- Posts: 5238
- Joined: April 12th, 2012, 9:40 pm
- Location: Cedar Point, Ohio, USA
Re: a RM skin about displaing countdown
Only a 90-day warranty (9/21~12/21)? ...
I'll check back with you on the 22nd...




I'll check back with you on the 22nd...
-
- Posts: 23
- Joined: September 11th, 2012, 3:36 am
Re: a RM skin about displaing countdown
Hello,
I was looking for a skin like this to customize, (hope you don't mind?). Anyway, I loaded it up and found I get the following error in my log file, every second or so...
Script: Countdelta-T.lua:14: attempt to perform arithmetic on a nil value
Don't really understand what's going on here? I'm using the very latest version of Rainmeter, and I see where the PROPERTIES function has been deprecated. Could this be it?
I was looking for a skin like this to customize, (hope you don't mind?). Anyway, I loaded it up and found I get the following error in my log file, every second or so...
Script: Countdelta-T.lua:14: attempt to perform arithmetic on a nil value
Don't really understand what's going on here? I'm using the very latest version of Rainmeter, and I see where the PROPERTIES function has been deprecated. Could this be it?
-
- Developer
- Posts: 1721
- Joined: July 25th, 2009, 4:47 am
Re: a RM skin about displaing countdown
The issue is with the values that the script uses as its default date:
Specifically, "year," "month" and "day" cannot be 0. "Month" must be a number 1-12, "day" must be 1-31, and "year" must be later than 1969 (because of the way Unix time works).
Using this
solves that issue, but the script seems to have some additional issues, which I'm looking into.
Code: Select all
PROPERTIES = {year=0,month=0,day=0,hour=0,minute=0,second=0,MeterDay="Day",MeterHour="Hour",MeterMinute="Minute"}
Using this
Code: Select all
PROPERTIES = {year=1970,month=1,day=1,hour=0,minute=0,second=0,MeterDay="Day",MeterHour="Hour",MeterMinute="Minute"}