> Is it possible for Tasker to look ahead on a given calendar? Like, I can
> check if an event matches keywords for the day and does stuff accordingly.
Only by making a little loop for the day that starts at 12 midnight
and checks e.g. every 10 minutes:
Variable Clear %HaveCalendarEvent
Variable Set, %checktime, %TIMES
Misc / Test, Calendar Title, %checktime -> %title
If %title Matches xyz
Variable Set, %HaveCalendarEvent, 1
Stop
EndIf
Variable Add, %checktime, 600 <--- advance 10 minutes
Goto 2 If %checktime < %TIMES + 86400
(untested)
Pent