Originally Posted by capink
You can do no.1 and no.3 with this custom module. To add the module, go to Action Chains > Manage Modules > add > copy/paste. After which a new custom action called "Confirm" will be added, and can be used to splash a yes/no message with a customized message.
As for no.2 you simply add another "Run Python Code" action, with the following code:
Code:
import time
def run(gui, settings, chain):
time.sleep(5)
Replace the digit in red with how many seconds you want.
|