I'm using Mathematica 11.3. In an earlier version, there was, I believe, an option allowing one to change the magnification for new notebooks (created, say, using the menu item File > New or the corresponding keyboard shortcut).
Is there some option to still do this?
I do NOT want to just change the Global Preferences option Notebook Options > Display Options > Magnification, because that applies to all notebooks, including existing palettes.
CreateNotebook["Default", Magnification -> 3]. This will work for menu and Ctrl+N but not for CreateDocument and related functions, don't know if you want that too. – Kuba Nov 10 '18 at 22:49SetOptions[$FrontEnd,NotebookEventActions:>{{"MenuCommand","New"}:>CreateNotebook["Default",Magnification->1.25]}]to my~/Library/Mathematica/Autoload/init.m, but it has no effect. – murray Nov 10 '18 at 23:02SetOptionscommand manually each time I start Mathematica? (I did try ininit.mwrapping the entireSetOptionsexpression with aFrontEndExecute, but that seemed to make no difference. – murray Nov 11 '18 at 01:11NotebookEventActions:>{{"MenuCommand", "New"} :> CreateNotebook["Default", Magnification -> 1.25]}to my FrontEnd > init.m`. – murray Nov 11 '18 at 01:19SetOptions...in the notebook it will be preserved across FrontEnd sessions because we are setting options for a$FrontEndwhich automatically saves it ininit.m. – Kuba Nov 11 '18 at 08:49init.mshould have that option as a result of evaluating the expression (once)? – murray Nov 13 '18 at 22:51$UserBaseDirectory/FrontEnd/11.3_init.m, but it has no effect when I open a new notebook! (I'm using the Versioned Preferences option for Mathematica, so y$UserBaseDirectory/FrontEnd/11.3_init.mjust containsSetOptions[$FrontEnd, "VersionedPreferences"->True]. – murray Nov 15 '18 at 16:23SetOptions[$FrontEnd,NotebookEventActions:>{{"MenuCommand","New"}:>CreateNotebook["Default",Magnification->1.25]}]is working at the current session but is not remembered, either in 11.3 or 12,0 Prerelease (macOS). This is even thoughNotebookEventActions:>{{"MenuCommand", "New"} :> CreateNotebook["Default", Magnification -> 1.25]}' now appears in theFrontEnd>12.0_init.m' and after I restart with rebuilt caches. – murray Mar 29 '19 at 15:31SetOptions[$FrontEnd,NotebookEventActions:>{{"MenuCommand","New","Notebook"}:>CreateNotebook["Default",Magnification->1.25]}], but again it does nothing. – murray Mar 30 '19 at 15:39