0

I have a dashboard contained within a google sheet which I share with other users. Upon opening the google sheet, I instruct them to do the following:

Click 'View > Full screen, press F11 on keyboard

This maximises the view and enhances the experience of the user.

My question is whether there is a script available which I could trigger when the user opens the sheet that could achieve the above?

I have searched for answers and found plenty of relevant material but nothing which I was able to apply and get it to work.

Dosaparks
  • 11
  • 3

1 Answers1

0

There is no Apps Script method for changing the VIEW to FULL SCREEN. f11 is specific to the browser. You can write client side JavaScript in a Dialog or Sidebar. You could look at this post:

StackOverflow - How to make in Javascript full screen windows

Community
  • 1
  • 1
Alan Wells
  • 30,746
  • 15
  • 104
  • 152
  • 1
    The linked answer is a bit outdated. There is now full screen mode but still not possible to do it in a sheet. Would need to be a html app – Zig Mandel Apr 17 '15 at 12:53