Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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?

like image 695
nblankaf Avatar asked Aug 16 '18 13:08

nblankaf


People also ask

Is there a way to automate Google Slides?

Open a presentation in Google Slides. In the top right corner, click Slideshow . Auto advance options. Choose how quickly to advance your slides.


2 Answers

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.

like image 94
Kos Avatar answered Oct 06 '22 10:10

Kos


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.

like image 1
redditor Avatar answered Oct 06 '22 08:10

redditor