Is there a way to obtain details on triggers in Google Scripts? -
Actually, I aim to create a handy interface for managing time-based triggers which control Google scripts Until I did not find anything, I would allow the current triggers to get details, especially the bar trigger
Documentation:
Thanks for any suggestions or hints!
Apps Script documents are also included, which is a very prominent title.
However, it does say:
The only way to programmatically modify an existing trigger is to delete it and then create a new one.
, the trigger is hoping to get a full load of information:
var triggers = ScriptApp.getProjectTriggers (); (In the trigger i var) {logger.log (utilities.jasontrinket (trigger [i])); }
I got all the
"triggers" Repeated ad no help, the trigger object is locked.
I am surprised that there is no request for this additional information to add APIs or to support more programmability. You should add one, and report it here so that others can star it (vote).
Comments
Post a Comment