Google Apps Script Custom Menu / createMenu not displaying in Slide when presentation opens
问题 Does createMenu work differently for slides than it does for spreadsheets? Is this a bug or is something wrong with my code? Should it be reported? SIMPLE TEST - - - - - - - DOES NOT CREATE MENU ON OPEN FROM DRIVE OR REFRESH function onOpen() { console.log('In onOpen' ); const pres = SlidesApp.getActivePresentation(); const slideSet = pres.getSlides(); let ui; try { ui = SlidesApp.getUi(); console.log('getUi succeeded' ); } catch (e) { console.log('caught in getUi: ', e ); } try { ui