Here’s a screenshot of my sketch:
- NF_VEVENTGetter fechtes .ics files from a server. Those contain information about calendar entries in so called VEVENTS. It returns a spread of all those found.
- The NF_VEVENTParser uses multiple RegExpr to get certain information from the event (start, end, name, reoccurance)
- I can’t pass the spread itself to it, as not all VEVENTs contain all information (especially reoccurance). So if I pass 6 VEVENTS in and 3 don’t have reoccurance, those RegExpr will contain 3 slices, while name f.ex. contains 6 slices. Which makes it impossible to match them together again afterwards. That’s why I’m using GetSlice.
- The two NF_EventHandler check, wether the passed in event is due to today or tomorrow and outputs its name if so.
I would now automate the population of a spread with those names. Right now I can go through the slices with the slider, look at the events one by one and see in the output if that particular event is due to today or tomorrow.
Is there any way that’s possible. I looked at InsertSlice a bit, but I didn’t find a way to automate all of it.
P.S.: The censored bit is the URL, username and password for the server the .ics-files are fetched from.
P.P.S.: This is my first vvvv project, so I might be missing something obvious here