Как запустить функцию в другом документе с помощью кнопки меню - PullRequest
1 голос
/ 03 ноября 2019

Я пытаюсь запустить скрипт, поэтому при нажатии на пункт меню запускается функция, которая создает текстовое поле. Я не могу понять, как не разделить мои документы только в скрипте приложения Google и запустить функцию из меню.

Я пытался поместить функцию в элемент меню, но она не обращается к другому документу.

menu.js.gs

function onOpen() {
    var ui = SpreadsheetApp.getUi();
    // Or DocumentApp or FormApp.
    ui.createMenu('Custom Menu')
        .addItem('First item', 'menuItem1')
        .addSeparator()
        .addSubMenu(ui.createMenu('Sub-menu')
            function addTextBox(presentationId, pageId)
        .addToUi();
}

function menuItem1() {
    SpreadsheetApp.getUi() // Or DocumentApp or FormApp.
        .alert('You clicked the first menu item!');
}

function menuItem2() {
    SpreadsheetApp.getUi() // Or DocumentApp or FormApp.
        .alert('You clicked the second menu item!');
}

textbox.js.gs

/**
    * Add a new text box with text to a page.
    * @param {string} presentationId The presentation ID.
    * @param {string} pageId The page ID.
    */x
function addTextBox(presentationId, pageId) {
    // You can specify the ID to use for elements you create,
    // as long as the ID is unique.
    var pageElementId = Utilities.getUuid();

    var requests = [{
    'createShape': {
        'objectId': pageElementId,
        'shapeType': 'TEXT_BOX',
        'elementProperties': {
        'pageObjectId': pageId,
        'size': {
            'width': {
            'magnitude': 150,
            'unit': 'PT'
            },
            'height': {
            'magnitude': 50,
            'unit': 'PT'
            }
        },
        'transform': {
            'scaleX': 1,
            'scaleY': 1,
            'translateX': 200,
            'translateY': 100,
            'unit': 'PT'
        }
        }
    }
    }, {
    'insertText': {
        'objectId': pageElementId,
        'text': 'My Added Text Box',
        'insertionIndex': 0
    }
    }];
    var response =
        Slides.Presentations.batchUpdate({'requests': requests}, presentationId);
    Logger.log('Created Textbox with ID: ' +
        response.replies[0].createShape.objectId);
}

1 Ответ

2 голосов
/ 03 ноября 2019

Это:

function onOpen() {
  var ui = SpreadsheetApp.getUi();
  // Or DocumentApp or FormApp.
  ui.createMenu('Custom Menu')
      .addItem('First item', 'menuItem1')
      .addSeparator()
      .addSubMenu(ui.createMenu('Sub-menu')
            function addTextBox(presentationId, pageId)
      .addToUi();
}

Должно быть так:

function onOpen() {
  var ui = SpreadsheetApp.getUi();
  // Or DocumentApp or FormApp.
  ui.createMenu('Custom Menu')
  .addItem('First item Title', 'menuItem1')
  .addSubMenu(SpreadsheetApp.getUi().createMenu("My SubMenu")
  .addItem('Add Text Box','addTextBox'))
  .addToUi();
  //With other functions below this
}

Но, к сожалению, вы не можете использовать функции с параметрами в меню.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...