Delay a notification

I need to make a delay so that a notification takes 3 seconds or a little longer to notify again, if an extension is used (preferably not) could you please attach it and thank you

If you are issuing the notification, keep a global variable with the last Clock1.SystemTime from when you initiated a notification (or 0 if never).

3 seconds is 3000 milliseconds.

So compare the current SystemTime against that variable + 3000.

If bigger, it's okay to notify and reset that variable to the current SystemTime.
Otherwise, skip the notification.

3 Likes

Could you please send me a picture of the blocks?

1 Like


notification_limitter.aia (3.6 KB)
sample run

1 Like