Tip: Showing Event Name only the First Time in Grid View
Posted: Fri Dec 27, 2013 7:40 am
By default our calendar will show the event name in each cell of the grid view. If this is a multi-day event, you may only want it to show up in the first cell. (Scroll the image below to see how the event's display changes after this mod.)
Fortunately this is an easy change to two scripts.
Edit the script "Insert into Calendar - Write additional days ( Date )" and add the following as a script parameter to the line in blue below:
Now edit the script "Insert into Calendar - Write additional time" and make a similar change, replacing the script parameter already there with this one:
That's it =)
Fortunately this is an easy change to two scripts.
Edit the script "Insert into Calendar - Write additional days ( Date )" and add the following as a script parameter to the line in blue below:
- Code: Select all
If (PatternCount ( $$sc_Mode ; "Horiz" ) ; "No Content" )
Now edit the script "Insert into Calendar - Write additional time" and make a similar change, replacing the script parameter already there with this one:
- Code: Select all
If (PatternCount ( $$sc_Mode ; "Horiz" ) ; "No Content" ; $sc_n + 1 )
That's it =)