Re: How to make two functions running at the same time
Re: How to make two functions running at the same time
- Subject: Re: How to make two functions running at the same time
- From: Timothy Bates <email@hidden>
- Date: Fri, 09 Feb 2001 00:46:51 +1100
Thibaut Smets said:
>
I need to run two functions at the same time. Is it possible ????
AppleScript is not a parallel programming language, so you have to either:
write two scripts and run them simultaneously (possible passing messages
between them if they have data dependencies) or else (with difficulty)
implement a multitasking script. This would not be worth the trouble, but
the former solution is very workable.
tim