This plugin lists all running processes and can answer if a specific application is running. I did create this because I wanted to be able to specify ?Skip this screen if: <processes> is running?.
Code: Select all
$dll(processes,1,1,1) //List all running processes i.e. the same as the Processes tab in Task Manager.
$dll(processes,2,iTunes,1) //Returns 1 if iTunes is running and 0 if it?s not.
Now it should be possible to create an action like this. If iTunes is running show the iTunes screen. I don?t know if it?s possible to make this actions more complex, please let me know if that?s possible.
Code: Select all
Action02Variable=$dll(processes,2,iTunes,1)
Action02Condition=5
Action02ConditionValue=0
Action02Action=GotoScreen(19) //My iTunes screen.
Edit:
Just added it here as erlis' site seems to be down for some reason.