gpt4 book ai didi

arrays - 使用 Google Apps 脚本从 Google 幻灯片演示文稿中删除一张幻灯片

转载 作者:行者123 更新时间:2023-12-02 03:27:32 25 4
gpt4 key购买 nike

我需要使用 Google Apps 脚本,而不是 API。

  • 我创建了一个空演示文稿
  • 默认情况下,新创建的演示文稿似乎总是包含一张空幻灯片
  • 我将一张幻灯片(取自其他 prez)插入到演示文稿中。

-> 我想删除这张空幻灯片,以便演示文稿仅包含我粘贴到其中的幻灯片。

我的代码:

var presentation = SlidesApp.create("my new presentation"); // creates an empty slide in the prez
presentation.insertSlide(0,slides.pop()); // a slide from a deck of slides collected elsewhere
presentation.getSlides().pop(); // here trying to delete the empty slide, doesn't work: the slide remains in the presentation.
presentation.saveAndClose();

最佳答案

您需要remove 幻灯片pop() 只是将其从数组中删除,并返回 Slide [] 中的最后一张幻灯片。

var lastSlide=presentation.getSlides().pop(); 
lastSlide.remove();

关于arrays - 使用 Google Apps 脚本从 Google 幻灯片演示文稿中删除一张幻灯片,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52805919/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com