Run When Conflicts

Hints, tips and tricks for newbies

Moderators: Dorian (MJT support), JRL

Post Reply
Dexter1
Pro Scripter
Posts: 64
Joined: Mon Jun 19, 2006 3:28 pm

Run When Conflicts

Post by Dexter1 » Thu Jun 03, 2010 9:50 pm

I have a general question about how MacroScheduler handles scheduled jobs. If I have two jobs scheduled for the same time, will they both get run? Will this happen simultaneously or will one run and then the other?

Thanks,
Josh

User avatar
JRL
Automation Wizard
Posts: 3517
Joined: Mon Jan 10, 2005 6:22 pm
Location: Iowa

Post by JRL » Thu Jun 03, 2010 10:08 pm

I can't really answer your question 'cause I've never tried it. However, have you read THIS? As a generality, it is not a good idea to run two scripts simultaneously. In the situation where I want two or more scripts to run sequentially, with a minimum delay between them, I create and schedule one script that consists of one Macro> command after another. The Macro> command runs the scripts I want. The second script won't start until the first script finishes. I usually include a short wait between them because it makes me feel good.

Code: Select all

Macro>First script.scp
Wait>1
Macro>Second script.scp
Wait>1
Macro>Third script.scp

Post Reply
Sign up to our newsletter for free automation tips, tricks & discounts