1

I want to build a Google Doc Extension.

Google Spreadsheets has an onEdit trigger, Google Documents don't seem to: https://developers.google.com/apps-script/understanding_triggers

Is there a way for me to handle user input (typing) cleanly?

Rubén
  • 34,714
  • 9
  • 70
  • 166
Dave
  • 534
  • 1
  • 5
  • 14

1 Answers1

2

Not in Apps Script. If you write an app using the Drive API, you can use the Realtime API https://developers.google.com/drive/realtime/

pinoyyid
  • 21,499
  • 14
  • 64
  • 115
  • Now struggling with the same issue as [this person.](http://stackoverflow.com/questions/17896313/why-is-the-same-fileid-use-to-search-files-in-google-drive-fail-on-realtime-api) Any idea what could be causing it? – Dave Nov 08 '13 at 03:29