Home > Net >  Is it possible to view a list of all objects used in Google Slides?
Is it possible to view a list of all objects used in Google Slides?

Time:09-22

When some objects in Google Slides get hidden behind another object it may be later hard to find them on the slide. Is it possible, for example, to see a panel with a list of all objects which are present on a given slide? And possibly edit them even if they are in the bottom layer (completely hidden behind another object)? This might be useful for animations when an object is displayed later and fully covers a previously displayed object.

enter image description here

CodePudding user response:

Your goal I believe is as follows.

  • Your Google Slides has several text boxes of the same size and the same position.
  • You want to retrieve the list of texts from the text boxes and want to change the texts using a simpler method.

In this case, I thought that when the sidebar created by Google Apps Script is used for changing the texts, your goal might be able to be simply achieved.

The sample script is as follows.

Usage:

1. Prepare script:

Please copy and paste the following script to the script editor of Google Slides and save the script. And then, please reopen the Google Slides. By this, the custom menu "sample" is created for the Google Slides. When "RUN" in the custom menu "sample" is opened, the script is run.

Code.gs

Please copy and paste this script as Code.gs.

function onOpen() {
  SlidesApp.getUi().createMenu("sample").addItem("RUN", "openSidebar").addToUi();
}

function openSidebar() {
  const html = HtmlService.createHtmlOutputFromFile("index").setTitle("sample");
  SlidesApp.getUi().showSidebar(html);
}

function getSelectedShapes() {
  const select = SlidesApp.getActivePresentation().getSelection();
  const pageElementRange = select.getPageElementRange();
  if (pageElementRange) {
    const obj = pageElementRange.getPageElements().reduce((ar, e) => {
      if (e.getPageElementType() == SlidesApp.PageElementType.SHAPE) {
        const shape = e.asShape();
        ar.push({objectId: shape.getObjectId(), text: shape.getText().asString().trim()});
      }
      return ar;
    }, []).reverse();
    return obj;
  }
  return [];
}

function updatedTexts(o) {
  const select = SlidesApp.getActivePresentation().getSelection();
  const slide = select.getCurrentPage();
  const obj = slide.getShapes().reduce((o, e) => Object.assign(o, {[e.getObjectId()]: {shape: e, text: e.getText().asString().trim()}}), {});
  o.forEach(({objectId, text}) => {
    if (obj[objectId] && obj[objectId].text != text) {
      obj[objectId].shape.getText().setText(text);
    }
  });
  return "Done";
}

index.html

Please copy and paste this script as index.html.

<input type="button" id="main" value="Get selected shapes" onClick="main()">
<div id="shapes"></div>
<input type="button" id="update" value="Updated texts" onClick="updatedTexts()" style="display:none">
<script>
  function main() {
    document.getElementById("main").disabled = true;
    document.getElementById("shapes").innerHTML = "";
    google.script.run.withSuccessHandler(o => {
      if (o.length == 0) {
        document.getElementById("update").style.display = "none";
        return;
      }
      const div = document.getElementById("shapes");
      o.forEach(({objectId, text}) => {
        const input = document.createElement("input");
        input.setAttribute("type", "text");
        input.setAttribute("id", objectId);
        input.setAttribute("value", text);
        div.appendChild(input);
      });
      document.getElementById("update").style.display = "";
      document.getElementById("main").disabled = false;
    }).getSelectedShapes();
  }

  function updatedTexts() {
    const inputs = document.getElementById("shapes").getElementsByTagName('input');
    const obj = [...inputs].map(e => ({objectId: e.id, text: e.value}));
    console.log(obj)
    google.script.run.withSuccessHandler(e => console.log(e)).updatedTexts(obj);
  }
</script>

2. Testing:

Please reopen Google Slides. By this, the custom menu is created. Please open "sample" -> "RUN". By this, the sidebar is opened.

  1. Please select the text boxes on Google Slides.
  2. Click "Get selected shapes" button.
    • By this, the selected text boxes are retrieved and you can see the texts of text boxes.
  3. Modify the texts.
  4. Click "Updated texts" button.
    • By this, the modified texts are reflected in the text boxes.

Also, you can see it with the following demonstration movie.

enter image description here

Note:

  • This is a simple sample script. So please modify the above script and HTML style for your actual situation.

References:

  • Related