For those who don't know about Robotask you could find info here.

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

Not that I know of. Most automation in Linux based systems is done with cron. If you wan't conditional task scheduling like they advertise, you can get cron to run a script (shell, Perl, Python, whatever you like) to check for the certain conditions and run programs accordingly. As for things like automated e-mail checking, this can be achieved with cron and the Firefox add-on iMacros.

For simulating mouse and keypress events in other locations you can use XMacro. Of course this can also be used with cron by itself or in shell scripts.

link|improve this answer
Can I achieve something like simulating mouse clicks at specific locations and also keypress events. – Kevin Boyd Nov 22 '09 at 21:35
1  
Yep, check out XMacro: xmacro.sourceforge.net It can record events and play them back. Simply schedule cron to run your recorded event. – John T Nov 22 '09 at 21:44
1  
@kevin boyd: expect can also do this if you don't need the mouse simulation. – quack quixote Nov 22 '09 at 22:23
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.