Custom notification interval

  

I am building an app in FireMonkey under Rad Studio XE8.

I would like to have custom intervals on my notifications (FMX.Notification).

However notification repeats can only be set to certain intervals.

TRepeatInterval = (None, Second, Minute, Hour, Day, Week, Weekday, Month, Quarter, Year, Era);

If i whant to fire each 15 minutes, would I really need to create four notification (at 0 , 15, 30, 45 minutes) and repeat them every hour with TRepeatInterval(4)?

Comments are closed.