Google Docs – Automatically Scroll to Bottom When Opened

google docsgoogle-apps-script

I'm looking for a way to automatically scroll to the bottom of a Google doc every time I open it. Something functionally equivalent to this answer would be great.

Best Answer

From my answer to Move to last line of Google Document when it is opened

Try this

function onOpen(){
  var doc = DocumentApp.getActiveDocument();
  var body = doc.getBody();
  var numChildren = body.getNumChildren();
  var pos = doc.newPosition(body.getChild(numChildren - 1),0);
  doc.setCursor(pos);
}