Reputation: 279
I'm trying to run multiple instances of the same script in AutoIt which requires emulations of mouse clicks and key strokes. My script works just fine when I run a single instance of it. The problem is I need to run different instances of it for each of my customers at once off of my desktop. Is there a way you can create different mouse and keyboard objects for every one of my scripts? I'm new to using AutoIt so forgive me if this is such a blunt question.
Upvotes: 1
Views: 1106
Reputation: 7160
Not directly. However, there is several approaches you can look at:
ControlClick
and ControlSend
. These will allow multiple scripts to automate at the same time as they don't use the mouse.The first approach is always recommended, but not always possible.
Upvotes: 2