如何使用应用脚本向特定 google 幻灯片添加评论
How do i add a comment to a particular google slide using app script
我有一个 google 幻灯片桌,里面有三张幻灯片,我想为每张幻灯片添加评论。我可以使用 for 循环到达幻灯片(sheet 中的总行数与幻灯片总数相同,我使用的幻灯片是第二张幻灯片。所以我的循环没有问题)
// open the slide using slide id
var s=SlidesApp.openById(a.getId())
for(let r=2; r<=4; r++){
// get the current slide
var currentSlide=s.getSlides()[r-1];
var fileId = currentSlide.getObjectId();
var slideUrl = a.getUrl()+"#slide=id."+fileId;
var slideId = getIdFromUrl(slideUrl);
var comment = {'content':'hi'};
Drive.Comments.insert(comment, slideId);
}
function getIdFromUrl(url) { return url.match(/[-\w]{25,}/); }
此代码有效,但它会将评论添加到文件而不是单个幻灯片。 (*注意 - 要使此代码正常工作,我们必须在应用程序脚本中启用云端硬盘服务。)如何将评论添加到各个幻灯片。
答案:
不可能。
解释:
目前无法在 Google 文档(包括文档、表格、幻灯片)中的特定位置添加评论。添加 anchored comments refers to non-Google Docs (e.g. images, PDFs) (listen to this video 的能力以获取更多详细信息)。
因此,您只能添加评论非锚定评论,属于整个文件。
可以通过检索其 id
并调用 Replies: create.
来响应找到的评论
问题跟踪器:
在 Issue Tracker 中有几个功能请求,关于所有 Google 文档编辑器或关于特定编辑器:
- Provide read/write access to comments in Google Docs
- Ability to create comments in specific cells/ranges and assign them to someone
- Provide ability to create a Drive API Comment anchor resource as method on DocumentApp selection class
我建议您通过 starring them 订阅部分或所有这些问题 and/or 提交新功能请求以专门解决幻灯片。
相关问题:
- Creating anchored comments programmatically in Google Docs
- Google Drive API ignores anchor parameter when creating comments in a spreadsheet
- How to match comments on an image using kix anchor (or not) in Google Docs
我有一个 google 幻灯片桌,里面有三张幻灯片,我想为每张幻灯片添加评论。我可以使用 for 循环到达幻灯片(sheet 中的总行数与幻灯片总数相同,我使用的幻灯片是第二张幻灯片。所以我的循环没有问题)
// open the slide using slide id
var s=SlidesApp.openById(a.getId())
for(let r=2; r<=4; r++){
// get the current slide
var currentSlide=s.getSlides()[r-1];
var fileId = currentSlide.getObjectId();
var slideUrl = a.getUrl()+"#slide=id."+fileId;
var slideId = getIdFromUrl(slideUrl);
var comment = {'content':'hi'};
Drive.Comments.insert(comment, slideId);
}
function getIdFromUrl(url) { return url.match(/[-\w]{25,}/); }
此代码有效,但它会将评论添加到文件而不是单个幻灯片。 (*注意 - 要使此代码正常工作,我们必须在应用程序脚本中启用云端硬盘服务。)如何将评论添加到各个幻灯片。
答案:
不可能。
解释:
目前无法在 Google 文档(包括文档、表格、幻灯片)中的特定位置添加评论。添加 anchored comments refers to non-Google Docs (e.g. images, PDFs) (listen to this video 的能力以获取更多详细信息)。
因此,您只能添加评论非锚定评论,属于整个文件。
可以通过检索其 id
并调用 Replies: create.
问题跟踪器:
在 Issue Tracker 中有几个功能请求,关于所有 Google 文档编辑器或关于特定编辑器:
- Provide read/write access to comments in Google Docs
- Ability to create comments in specific cells/ranges and assign them to someone
- Provide ability to create a Drive API Comment anchor resource as method on DocumentApp selection class
我建议您通过 starring them 订阅部分或所有这些问题 and/or 提交新功能请求以专门解决幻灯片。
相关问题:
- Creating anchored comments programmatically in Google Docs
- Google Drive API ignores anchor parameter when creating comments in a spreadsheet
- How to match comments on an image using kix anchor (or not) in Google Docs