Skip to content

Instantly share code, notes, and snippets.

@Awashcard0
Created January 30, 2023 19:24
Show Gist options
  • Save Awashcard0/f3dbbce2f67374c75d117422ab106dc8 to your computer and use it in GitHub Desktop.
Save Awashcard0/f3dbbce2f67374c75d117422ab106dc8 to your computer and use it in GitHub Desktop.
Alert in google doc
function myFunction() {
var alert = "Due friday! - Script"
var doc = DocumentApp.getActiveDocument();
var nam = "Script"
doc.setName(nam);
Utilities.sleep(5000);
doc.setName(alert);
Utilities.sleep(5000);
myFunction();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment