Pause between rule 1 and rule 2

Posted:
Mon Apr 13, 2020 5:10 am
by PeterSchulze
Hello,
is it possible to insert a pause of about 30 seconds or 1 minute between rule 1 (print a PDF) and rule 2 (move the PDF)?
So that the printing process can be completed.
With kind regards
Peter Schulze
Re: Pause between rule 1 and rule 2

Posted:
Mon Apr 13, 2020 9:02 am
by Mr_Noodle
Do these need to be in separate rules or can they be actions in the same rule?
Re: Pause between rule 1 and rule 2

Posted:
Mon Apr 13, 2020 9:46 am
by PeterSchulze
Mr_Noodle wrote:Do these need to be in separate rules or can they be actions in the same rule?
Yes, they can be actions in the same rule.
Re: Pause between rule 1 and rule 2

Posted:
Tue Apr 14, 2020 9:09 am
by Mr_Noodle
If they are in the same rule, you can add a Run shellscript action in between that has the following:
- Code: Select all
sleep 5
That will pause for 5 seconds. Modify as needed.