Gary -
1) can you please add a mod math function (ie. finding remainder from a division)
if its already been added, i apologize and couldnt find anything about it in the manual.
if it hasnt been, heres the expression needed to calculate it.
remainder = value - (((int)(value / modFactor)) * modFactor)
For example.. where value is 146, and the mod is 12 -
remainder = 146-(int(146/12)*12) = 2
I personally would just code it myself but i completely do not understand how to build a suitable plugin to use it in VA and there are no video tutorials to properly/sufficiently explain how.
2) Can you also please add a status flag to the tokens that would test to see if a specific process is running or not. The reason for this is so that VA can check to see if an app is already running so it can determine if the app needs to be launched if it hasnt been already. Something like a {PROCESSEXISTS:processname} bool would suffice.
For example, i have a large steam library and require steam to be open before i can play any of the games. If its already running, i can just trigger the game to start - but if its not then VA needs to start steam first before it can launch the game.
Just a couple ideas. Thanks for any help.