nblankaf
nblankaf

Reputation: 51

How to skip slides in Google Slides with Google Apps Script?

In Google Slides, it is possible to skip a slide manually by right clicking on it and selecting "Skip slide". In that case, the slide will not show up when being presented.

I cannot seem to recreate this programmatically with Google Apps Script. Does this function exist, or is there any workaround here?

Upvotes: 5

Views: 1083

Answers (2)

redditor
redditor

Reputation: 4286

Since the original answer to this question there are now two methods available to the Slide.

isSkipped() - returning true or false

setSkipped(boolean) - Set as true to skip the slide in the presentation mode.

Upvotes: 1

user555121
user555121

Reputation:

Skipping slides via Slides API is not available at the moment.

There is feature request https://issuetracker.google.com/issues/112692346 you can "star" it.

Upvotes: 5

Related Questions