--- In [email protected], "nickodemos2002" <nickodemos2...@...> wrote: > > I was wondering if it would be possible to have a script that would cut/copy > three things and then paste them back in same order. > IE: > on hot key cut/copy > Copy 01 > Copy 02 > Copy 03
Copying each thing is simple; something like clip.copy // may need some waits copy.save(...) Similar for paste usiogn clip.load then clip.paste and possibly some wait. But the trouble is, that will just copy and paste the same things three times. You need to add to your script some way of moving to each thing and selecting. That depends on the target. Maybe sending keys might do it.
