class SlidesApp method .create()

SlidesApp is the Apps Script service.

.create() is the method name you will see after a dot in your code.

What it does

Creates a new blank Google Slides presentation.

Why it's used

  • Spin up a new slide deck for each weekly review.
  • Generate client-ready presentations from a template workflow.

Common errors

  • Forgetting parentheses on create. Write SlidesApp.create(), not SlidesApp.create or create by itself.
  • Skipping dots between chained calls. Each step needs a dot, like SlidesApp.create().
  • Adding spaces where they do not belong. Write SlidesApp.create(), not SlidesApp .create(), SlidesApp.create (), or SlidesApp . create().
  • Wrong capitalization. Use SlidesApp and create, not slidesapp or create.

Explore

Related methods

Better Sheets tutorials

No tagged tutorials yet. Fetch Apps Script from the harvest table and this page fills automatically.

Related blog posts

Written guides about SlidesApp.create().

Browse the blog