Skip to content

Instantly share code, notes, and snippets.

@Awashcard0
Created April 5, 2024 17:33
Show Gist options
  • Save Awashcard0/b0820ac619d519f28a3198374505b4a4 to your computer and use it in GitHub Desktop.
Save Awashcard0/b0820ac619d519f28a3198374505b4a4 to your computer and use it in GitHub Desktop.
Very funnie spammer
function myFunction() {
var presentation = SlidesApp.getActivePresentation();
var max = 10000;
var count = presentation.getSlides().length;
while(count < max) {
var slide = presentation.appendSlide(SlidesApp.PredefinedLayout.BLANK);
slide.insertTextBox("THIS IS SLIDE NUNBER #" + count)
count++;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment