Workspace editions only apply for Google Workspace users (i.e. businesses), and are sent in addition to the regular weekly Productivity Pings
(you can always filter previous issues by application!)
What if I said you can remove all speaker notes in a Google Slides presentation with a click of a button:
In your menu, click Extensions > Apps Script
Don't worry, you won't need to write any code!
function onOpen() {
// This function adds a custom menu to Google Slides to run our script
SlidesApp.getUi()
.createMenu('Slide Tools')
.addItem('Remove Speaker Notes', 'removeSpeakerNotes')
.addToUi();
}
function removeSpeakerNotes() {
// This function removes speaker notes from each slide
var slides = SlidesApp.getActivePresentation().getSlides();
slides.forEach(function(slide) {
var notesPage = slide.getNotesPage();
var speakerNotesShape = notesPage.getSpeakerNotesShape();
if (speakerNotesShape.getText().asString().trim() !== '') {
speakerNotesShape.getText().clear();
}
});
}
Follow up questions? Click “View Online” and you can comment on this post directly! Or give anonymous feedback here 📝
Want someone to be more productive? Let them subscribe here 😉
Thanks for being a subscriber, and have a great day!