Questions tagged [google-docs]

Questions related to interacting with Google word processing Documents programmatically. Usage questions about the web application should be posted at Web Applications Stack Exchange.

Google Docs is a cloud-based application and service for creating and collaborating on word processing documents. The service supports an internal API for Google Apps Script as well as an External API.

Usage questions about the web application should be posted at Web Applications Stack Exchange or the Google Drive Help Center instead of here.

Note: Google has historically used the brand "Google Docs" to encompass a suite of products, but since conforming to that would introduce ambiguity here, the tag is specifically for word processing documents while refers to the suite.

3539 questions
10
votes
4 answers

Remove sign in button in google docs webview in android

I am showing PDF files by using google docs in WebView in android. How to remove or hide "Sign In" button? I have attached screenshot below. Thanks in advance. webview = (WebView)…
selva_pollachi
  • 4,147
  • 4
  • 29
  • 42
10
votes
6 answers

Embed Google Docs PDF viewer in IFRAME

When I upload PDF to Google Docs (using Python's gdata library), I get link to the document: >>> e.GetAlternateLink().href Out[14]: 'http://docs.google.com/a/my.dom.ain/fileview id=&hl=en' Unfortunately using that link in IFRAME…
Tomasz Zieliński
  • 16,136
  • 7
  • 59
  • 83
10
votes
5 answers

Poor image rendering with Google Docs PDF viewer

I used Word 2007 to create a PDF file with an 1526px * 900px image filling a whole page. This is not the first time it's happened, but Google Docs PDF viewer absolutely mangles the colour rendering making it unusable. I've taken screenshots at the…
Turkeyphant
  • 222
  • 1
  • 3
  • 15
9
votes
2 answers

Getting the download link for a public Google Docs file

Reading the Google Docs API I find this: Downloading Files cannot be downloaded in a format other than the one in which they were originally uploaded. The download URL for files looks something like…
orlp
  • 112,504
  • 36
  • 218
  • 315
9
votes
1 answer

Any way to get JSON data of a Google Doc SpreadSheet using jquery without make the doc public?

I am trying to get data from a Google Doc Spreadsheet, using javascript and jQuery, in order to do some math with the numbers. With the next code I got it, for public spreadsheets: function getdata( key, wid, f ) { return $.getJSON( …
robermorales
  • 3,293
  • 2
  • 27
  • 36
9
votes
2 answers

How to programmatically update Google Docs in real-time (via Chrome Extension or external JS)

I would like to programmatically edit my Google Doc externally via a Google Chrome extension or a simple JavaScript and see the changes live (in real-time) in the Google Doc. When this question came up, I was looking for Chrome Extensions that edit…
9
votes
1 answer

How does Google Docs autosave work?

Okay, I know it sounds generic. But I mean on an AJAX level. I've tried using Firebug to track the NET connections and posts and it's a mystery. Does anyone know how they do the instant autosave constantly without DESTROYING the network / browser?
Shamoon
  • 41,293
  • 91
  • 306
  • 570
9
votes
1 answer

How do I name the current version of a Google spreadsheet, document or presentation using Google Apps Script?

I'm trying to give the current version of a Google spreadsheet a name using Google Apps Script. In the GUI I would do File -> Version history -> Name current version but since I need to do this to multiple files, I want to achieve this using a…
a-burge
  • 1,535
  • 1
  • 13
  • 25
9
votes
1 answer

How to add code snippets in Google Form questions

I want to make a quiz for students regarding basic programming using Google Forms. The challenge is that I can not find any Add On how add code snippets to the questions, like it is here in Stack Overflow, pressing Ctrl+K.
9
votes
3 answers

How to screen double quotes in Google Docs re2 expressions?

I'm trying to screen double quotes in regular expression on Google Sheets and there's no luck. A1 cell text = some "name" My formula =REGEXEXTRACT(A1;"\"(.*)\"") But Google Docs thinks that i'm using quotes for open /close argument. Please…
Evgeny Malkov
  • 437
  • 1
  • 5
  • 18
9
votes
2 answers

Is there a list of Google Docs Equation Editor symbol names such as "\alpha"?

In Google Docs, you can insert an equation and edit it with the equation editor. You can add symbols like summations, integrals, and greek letters with the equation editor, but it is also possible to add them by typing "\sum" "\hat", "\alpha", etc…
user430481
  • 315
  • 1
  • 4
  • 14
9
votes
3 answers

The issue in Google Sign-In for Android

brother, I'm now integrating Google login functionality into my app in accordance with Google Docs. When I follow the instructions in the document, I click on the button Configure a project to Configure a Google API Console project and I filled out…
何国栋
  • 99
  • 1
  • 4
9
votes
2 answers

How to convert LaTeX equation into editable equation using Google Apps Script

tldr: How can I convert a LaTeX equation in Google Docs so that it is editable as a Google Doc equation? Background: I want to import html into Google Docs. This HTML includes (in my native database) LaTeX equations. When I import to Google Docs,…
Steve Midgley
  • 2,226
  • 2
  • 18
  • 20
9
votes
3 answers

Automatically update embedded Google Sheets Chart in Docs?

I have inserted a chart into a Google Doc, but would like to make it update automatically instead of having to manually open the Doc and press the floating update buttons. So far I have found no way to do this beyond writing a script to replace each…
user6645160
9
votes
3 answers

Google Docs iFrame: How to customize the css of an embedded Google Docs iFrame

I have this code of an iframe displaying a google docs document:
Fadi Obaji
  • 1,454
  • 4
  • 27
  • 57