It is currently September 28th, 2023, 7:19 am
LuaCalendar
-
- Posts: 23
- Joined: November 11th, 2009, 1:03 pm
Re: LuaCalendar
Since upgrading to 2.3 beta r1320 the calendar does not start with all other skins; just the top menu (no month/day display). Simply moving the mouse over heading group will then display month/days correctly. Any ideas?
-
- Moderator
- Posts: 1931
- Joined: January 29th, 2010, 1:43 am
- Location: Willmar, MN
Re: LuaCalendar
Please upgrade to the currently posted version of LuaCalendar (warning, the format for the holidays file has changed) then tell me if there are any error messages in the About dialog.
GitHub | DeviantArt | Tumblr
This is the song that never ends. It just goes on and on my friends. Some people started singing it not knowing what it was, and they'll continue singing it forever just because . . .
This is the song that never ends. It just goes on and on my friends. Some people started singing it not knowing what it was, and they'll continue singing it forever just because . . .
-
- Posts: 23
- Joined: November 11th, 2009, 1:03 pm
Re: LuaCalendar
That worked... THANK YOU!
-
- Posts: 180
- Joined: May 6th, 2021, 2:57 pm
Re: LuaCalendar
there are no error's in about dialog.
i have view things to say. i do not see any holiday's in the calendar. <--- i have nothing said.
if i refresh to default all the month names desappear.
there is no background i can select.
you have made a beatifull skin. thanks for that.
-
- Posts: 71
- Joined: April 12th, 2014, 12:52 pm
- Location: Slovakia
Re: LuaCalendar
I can't use 2 event files at once. They are in the same folder. holidays.xml (original file) and custom.xml.
Rainmeter reports an error : "LoadEvents: : File read error: Custom.xml" and "LoadEvents: : Invalid event file: Custom.xml"
Settings.inc :
EventFile=#@#Calendars\Holidays.xml|Custom.xml
when I use the calendars separately, everything is fine, but they don't work together.
Rainmeter reports an error : "LoadEvents: : File read error: Custom.xml" and "LoadEvents: : Invalid event file: Custom.xml"
Settings.inc :
EventFile=#@#Calendars\Holidays.xml|Custom.xml
when I use the calendars separately, everything is fine, but they don't work together.
-
- Rainmeter Sage
- Posts: 5185
- Joined: April 12th, 2012, 9:40 pm
- Location: Cedar Point, Ohio, USA
Re: LuaCalendar
Have you tried using the entire path for each event file?pds wrote: ↑March 14th, 2023, 1:21 pm I can't use 2 event files at once. They are in the same folder. holidays.xml (original file) and custom.xml.
Rainmeter reports an error : "LoadEvents: : File read error: Custom.xml" and "LoadEvents: : Invalid event file: Custom.xml"
Settings.inc :
EventFile=#@#Calendars\Holidays.xml|Custom.xml
when I use the calendars separately, everything is fine, but they don't work together.
EventFile=#@#Calendars\Holidays.xml|#@#Calendars\Custom.xml
:: My DA Gallery :: Rainmeter DA Gallery :: Rainmeter Workshops :: Rainmeter Documentation :: BBCode Guide ::
-
- Posts: 71
- Joined: April 12th, 2014, 12:52 pm
- Location: Slovakia
Re: LuaCalendar
of course, I tried this variant as well as all the others. Same result-erroreclectic-tech wrote: ↑March 14th, 2023, 10:03 pm Have you tried using the entire path for each event file?
EventFile=#@#Calendars\Holidays.xml|#@#Calendars\Custom.xml
-
- Posts: 71
- Joined: April 12th, 2014, 12:52 pm
- Location: Slovakia
Re: LuaCalendar
I found a bug in the CScript.lua script. Need to fix the line
Code: Select all
LoadEvents(ExpandFolder(Delim(Get.Variable('EventFile'))))
to
LoadEvents(Delim(Get.Variable('EventFile')))
-
- Rainmeter Sage
- Posts: 5185
- Joined: April 12th, 2012, 9:40 pm
- Location: Cedar Point, Ohio, USA
Re: LuaCalendar
I don't beleive that is needed...pds wrote: ↑March 16th, 2023, 8:17 am I found a bug in the CScript.lua script. Need to fix the lineCode: Select all
LoadEvents(ExpandFolder(Delim(Get.Variable('EventFile')))) to LoadEvents(Delim(Get.Variable('EventFile')))
In looking at the 'options.ini' format for multiple event files, my CScript.lua (V6.0) works if I use this format for the multiple event files variable like this:
EventFile=#@#Calendars|custom.xml|Holidays.xml
The first parameter is the path to your calendar event files followed by a |, then only the events file names separated by |.
EDIT: WAIT!, This sometimes crashes the calendar... will keep looking...

:: My DA Gallery :: Rainmeter DA Gallery :: Rainmeter Workshops :: Rainmeter Documentation :: BBCode Guide ::
-
- Posts: 71
- Joined: April 12th, 2014, 12:52 pm
- Location: Slovakia
Re: LuaCalendar
This work. Thank you.eclectic-tech wrote: ↑March 16th, 2023, 12:36 pm I don't beleive that is needed...
In looking at the 'options.ini' format for multiple event files, my CScript.lua (V6.0) works if I use this format for the multiple event files variable like this:
EventFile=#@#Calendars|custom.xml|Holidays.xml
The first parameter is the path to your calendar event files followed by a |, then only the events file names separated by |.
EDIT: WAIT!, This sometimes crashes the calendar... will keep looking...![]()