Questions tagged [google-slides-api]

Google Slides lets you create, edit, collaborate, and deliver presentations using compelling themes and fonts, embedded video, charts, animations, and more.

Apps can integrate with the Google Slides API to create beautiful slide decks automatically from user- and system-provided data. For example, you could use customer details from a database and combine them with predesigned templates and selected configuration options to create finished presentations in a fraction of the time it would take to create them manually.

Important Links

451 questions
0
votes
0 answers

Google Slides Apps Script Change Theme

Is there a way to automatically change the theme of multiple Google Slides using Apps Script? At least, is there a way to select multiple and change the theme together?
sathishvj
  • 1,394
  • 2
  • 17
  • 28
0
votes
1 answer

Text not being added when using Slides API to change text

I am currently trying to automatically update a slide in a Google Slide presentation with the Slides API and when I run the code it does not seem to update. My current code is: from datetime import datetime from datetime import timedelta from…
0
votes
1 answer

How can we fill linear gradient color in google slide by api?

Below example of normal fill color. $requests[] = new \Google_Service_Slides_Request(array( 'updateShapeProperties' => array( 'objectId' => "elementID", 'fields' =>…
Joy Zalte
  • 91
  • 10
0
votes
1 answer

How to fork and modify the Google API Go Client SDK to resolve Slides API Range issue?

I'm using the "Google APIs Client Library for Go" ( https://github.com/googleapis/google-api-go-client ) and it has an issue supporting the Slides API where a zero-based index request property is required but the struct definition indicates…
Grokify
  • 15,092
  • 6
  • 60
  • 81
0
votes
2 answers

Google Slides video access via 'access_token'

My app requests the 'https://www.googleapis.com/auth/drive.readonly' permission from a user. When the app gets a Google access token, a url is built to access a user selected Google Slides presentation preview, something…
Adam
  • 655
  • 1
  • 6
  • 19
0
votes
0 answers

onPrint function or method of recording when user prints

Can anybody suggest a way of recording when user prints slide, I thought that there might be an onPrint function, but it doesn't look like there is. Any suggestions?
0
votes
0 answers

Google Script - SlidesApp : How to increase write speed?

I have a script that copy-pastes slides from a Presentation A into a Presentation B. In order to do so, I use PresentationA.getSlides() and PresentationB.appendSlide(). The script works really well but it is unfortunately realy too slow for my use…
0
votes
0 answers

Get title/name of master if google slide script?

With Google Slide script, How I can get the name (not title) of the master, and the name of each template in the master ?
Philippe Prados
  • 461
  • 3
  • 12
0
votes
0 answers

how to place text in a textbox where a certain tag is in the description ? google slide

I try to create a python script who will replace a text box by a value taken from google sheet and replace every text box in my google slide that have a certain tag in description,I achieved taking my data putting it into a dict and now I'm trying…
lolozen
  • 386
  • 1
  • 4
  • 19
0
votes
1 answer

Get Google Doc ID form list on spreadsheet

I have a google doc ID (just the ID as a value) in a cell on a spreadsheet. I want to point a Var to grab that value form the spreadsheet (doc ID) and then use it in the SlidesApp.openbyId. For example: var slideId =…
0
votes
0 answers

Fill text label of google slides with spreadsheet's data

First of all, thank you @Tanaike for the answer. First goal: I have a Google Forms, and I want to program an automatic report on Google Slides. Then for each question (text format) on Form, I want put this response that will be on Form's spreadsheet…
Lucas Bicalho
  • 87
  • 1
  • 9
0
votes
1 answer

What's the difference between a Page and a Slide in Google Slides?

The API for Google Slides has two classes: Slide Page The documentation merely states "An X in a presentation" (where X is the class in question). What's the difference conceptually? Is a page something you get when you are printing the…
Fuhrmanator
  • 11,459
  • 6
  • 62
  • 111
0
votes
0 answers

I want to be able to programmatically insert (linked) slides from a Google presentation into a Google Document using the API

I have a set of slides and want to be able to create documents that include a number of these slides. I cannot see any functions in the references for the API that allow me to create a document then include (linked) slides. This can be done manually…
0
votes
0 answers

Google Slides API- insert slide from external slide into current pptx

Is it possible to copy/insert a slide from one presentation to another using Google Slides API? I came across this which is what I want but I'm not sure if 'Google Apps Script' is the same thing as Google Slides API?…
Boosted_d16
  • 13,340
  • 35
  • 98
  • 158
0
votes
1 answer

is there any way to edit google slides presentation from c#

i am trying to get a c# application to feed data into a google slides application, is there any way to insert text into a slide with the google slides api or the api this is for a presentaion with a live demonstration, ive tried looking to the…