How to set Page Width as default in OneNote 2016?

0

I want this button to be auto-clicked every time a page is loaded:

I find no option in the Display setting:

How can I do that? Word can do that.

Ooker

Posted 2018-03-04T08:21:06.730

Reputation: 1 242

What version are you running? "We have fixed this issue in the latest Insider build with build number 16.0.6769.2011 or higher." Source: OneNote 2016, build 16.0.6741.2017, page zoom issue - Microsoft Community

– DavidPostill – 2018-03-04T09:17:58.570

File >Account > Update Options > Update Now. – DavidPostill – 2018-03-04T09:18:42.580

My build is 16.0.9029.2106 (32 bit), and it says that I'm up to date – Ooker – 2018-03-04T11:24:06.390

Answers

0

It seems that this is a bug only in Windows 7. A quick fix is to use AutoHotKey:

#IfWinActive, ahk_exe ONENOTE.EXE
WinActivate WinWaitActive, ONENOTE.EXE
    sleep, 3000 
    Send !wi
~^PgUp::
~^PgDn::
~^n::
~^Tab::
~^+Tab::Send !wi
~^g::
    Input, key, V L1, {Enter}
    if (ErrorLevel == "EndKey:Enter")
        Send {Enter}!wi
return

If you are used to display it full-screen, you have to replace !wi with {f11}!wi{f11}. As of version 10325.20082, the bug seemed fixed, but it returns in version 18027.20181.


Related: How to send an addition sequence after a series of input?

Ooker

Posted 2018-03-04T08:21:06.730

Reputation: 1 242