I did check out that link, but I honestly didn’t fully comprehend it. The explanation you provided has given me a lot more clarity. Thank you!
I had a sort of aha moment when I was customizing the datePicker and changed the text output to include the year beside the month at the top.
canv.text[""fuse month_names[p.month-1]," - ",p.year (0,5)+canv.size*.5,0 "top_center"]
I’m not a strong programmer, but I feel like that line’s syntax could only work evaluating right to left. Am I understanding that correctly? (More so about nesting the fuse command in there, I feel.)
Also, is the fuse command the only way to concatenate strings?
Edit: I guess I didn’t need the fuse part. I just edited it to:
canv.text[month_names[p.month-1]," - ",p.year (0,5)+canv.size*.5,0 "top_center"]
Nevermind, I have a lot more learning to do.