| Windows 7: Word 2010: how do I change default viewing zoom of document? |
19 Apr 2011
|
#1 | | |
Word 2010: how do I change default viewing zoom of document? I have got Microsoft Office 2010 installed on Windows Vista and on Windows 7, and when I open a document in Word, I would like to view it at a zoom of 100% instead of the default zoom of 150%. I tried to follow the instructions over here in order to reduce the zoom permanently, but the macros simply disappear each time I close Word and open it again. I also followed the idiot's guide to installing macros as indicated in the link above, and the macros worked...but as mentioned before, they refuse to stick around.
What do I do in order to prevent the macros from disappearing?
Thanks in advance for your help | My System Specs |
| |
19 Apr 2011
|
#2 | | |
i've never needed macros - i use the zoom slider at the bottom-right of the document window.
with saved documents, it seems that the zoom level is saved with the file - so if you saved at 100%, it will open later at 100%.
to set the level for new blank documents, use the slider, then close down word - the next new document will appear at that same level, with no need to save.
that's how it works for me, anyway.
just tested, and it keeps the level after a reboot too. | My System Specs | | System Manufacturer/Model Number mickey megabyte 1234 OS ultimate 64 sp1 CPU i5 2500K 3.3@4.2GHz Motherboard MSI P67A-GD53 Memory 8 gigs GSkill Ripjaws 1600 Graphics Card amd hd6950 Sound Card creative x-fi gamer Monitor(s) Displays samsung 24" Screen Resolution 1920x1080 Keyboard saitek eclipse ii Mouse logitech g3 PSU antec 550 Case antec three hundred Cooling i'm a cooling fan Hard Drives ocz vertex 2e 60 gig, samsung f3 1tb, buffalo 2tb ext Internet Speed about 4 Mbps Other Info i love win7 |
19 Apr 2011
|
#3 | | |

Quote: Originally Posted by mickey megabyte i've never needed macros - i use the zoom slider at the bottom-right of the document window.
with saved documents, it seems that the zoom level is saved with the file - so if you saved at 100%, it will open later at 100%.
to set the level for new blank documents, use the slider, then close down word - the next new document will appear at that same level, with no need to save.
that's how it works for me, anyway.
just tested, and it keeps the level after a reboot too. That's the issue: I work as a translator and proofreader, and people send me their documents, so when I open them, they open according to the zoom settings (and usually they're always bigger than 100%) under which the other person saved them, not according to mine, the slider only seems to work for the currently opened session in Word. | My System Specs | | |
19 Apr 2011
|
#4 | | |
ah, i'm sorry.
in that case, i'm not very experienced in macros.
hopefully somebody else will be along soon with more knowledge. | My System Specs | | System Manufacturer/Model Number mickey megabyte 1234 OS ultimate 64 sp1 CPU i5 2500K 3.3@4.2GHz Motherboard MSI P67A-GD53 Memory 8 gigs GSkill Ripjaws 1600 Graphics Card amd hd6950 Sound Card creative x-fi gamer Monitor(s) Displays samsung 24" Screen Resolution 1920x1080 Keyboard saitek eclipse ii Mouse logitech g3 PSU antec 550 Case antec three hundred Cooling i'm a cooling fan Hard Drives ocz vertex 2e 60 gig, samsung f3 1tb, buffalo 2tb ext Internet Speed about 4 Mbps Other Info i love win7 |
19 Apr 2011
|
#5 | | |

Quote: Originally Posted by mickey megabyte ah, i'm sorry.
in that case, i'm not very experienced in macros.
hopefully somebody else will be along soon with more knowledge. I think I figured it out; the macro text described over here has to be pasted into one macro - since the poster was talking of macro s, I was trying to create them separately; when I stuffed the whole chunk into one macro, the two macros were automatically split up and generated, one called AutoOpen and the other AutoNew...It seems to be working now, they no longer disappear alternately after I close Word and open it again...*scratches head*
Thanks for helping, and the slider does seem to help when it comes to opening Word (not a document, though) and zooming into the blank document at the desired ratio. | My System Specs | | |
19 Apr 2011
|
#6 | | Windows 7 Ultimate x64 Milton Keynes, United Kingdom |
The problem you face is that the AutoOpen macro is reserved for the current workbook only. AutoNew is the correct syntax if you wish for new workbooks to open in a particular macro in effect (see code below)... Code: Sub AutoNew()
'
ActiveDocument.ShowRevisions = False
'
' Zoom to page width
'
ActiveWindow.ActivePane.View.Zoom = 100
'
End Sub
OS | My System Specs | | System Manufacturer/Model Number Compaq Desktop OS Windows 7 Ultimate x64 CPU AMD Sempron Dual Core Memory 3GB Graphics Card NVIDIA GeForce 6150SE nForce 430 Screen Resolution 1024x768 Hard Drives 150GB Sata |
19 Apr 2011
|
#7 | | Windows 7 Ultimate x64 Milton Keynes, United Kingdom |

Quote: Originally Posted by PallasAthene I think I figured it out; the macro text described over here has to be pasted into one macro - since the poster was talking of macro s, I was trying to create them separately; when I stuffed the whole chunk into one macro, the two macros were automatically split up and generated, one called AutoOpen and the other AutoNew...It seems to be working now, they no longer disappear alternately after I close Word and open it again...*scratches head*
Thanks for helping, and the slider does seem to help when it comes to opening Word (not a document, though) and zooming into the blank document at the desired ratio. You got there before me | My System Specs | | System Manufacturer/Model Number Compaq Desktop OS Windows 7 Ultimate x64 CPU AMD Sempron Dual Core Memory 3GB Graphics Card NVIDIA GeForce 6150SE nForce 430 Screen Resolution 1024x768 Hard Drives 150GB Sata |
19 Apr 2011
|
#8 | | |

Quote: Originally Posted by Orbital Shark 
Quote: Originally Posted by PallasAthene I think I figured it out; the macro text described over here has to be pasted into one macro - since the poster was talking of macro s, I was trying to create them separately; when I stuffed the whole chunk into one macro, the two macros were automatically split up and generated, one called AutoOpen and the other AutoNew...It seems to be working now, they no longer disappear alternately after I close Word and open it again...*scratches head*
Thanks for helping, and the slider does seem to help when it comes to opening Word (not a document, though) and zooming into the blank document at the desired ratio. You got there before me   I tried out your code, it works when I open Word and then go to "File" and "New" (am translating from German), but when opening Word, which then automatically creates a blank document, said blank document or any other previously created document refuse to adapt to the zoom of 100%. Ticklish stuff, this macro business :-D I am still wondering why the whole text of the AutoNew and AutoOpen macros had to be copied to one macro, and how they were automatically generated separately after they were created...
In addition, opening/viewing documents from an online source in protected mode has to be deactivated, otherwise a Microsoft Visual Basic error box pops up, saying (I'm translating again) "runtime error '4248': This command is not available because no document is opened". | My System Specs | | |
19 Apr 2011
|
#9 | | Windows 7 Ultimate x64 Milton Keynes, United Kingdom |
If you enter the following code into a new macro in a new document then save it as a template (normal.dot) it should automatically invoke when you open word... Code: Sub AutoOpen()
ActiveWindow.View.Type = 3 'print layout
ActiveWindow.View.Zoom.Percentage = 100
End Sub
Sub AutoNew()
ActiveWindow.View.Type = 3 'print layout
ActiveWindow.View.Zoom.Percentage = 100
End Sub | My System Specs | | System Manufacturer/Model Number Compaq Desktop OS Windows 7 Ultimate x64 CPU AMD Sempron Dual Core Memory 3GB Graphics Card NVIDIA GeForce 6150SE nForce 430 Screen Resolution 1024x768 Hard Drives 150GB Sata |
19 Apr 2011
|
#10 | | |

Quote: Originally Posted by Orbital Shark If you enter the following code into a new macro in a new document then save it as a template (normal.dot) it should automatically invoke when you open word... Code: Sub AutoOpen()
ActiveWindow.View.Type = 3 'print layout
ActiveWindow.View.Zoom.Percentage = 100
End Sub
Sub AutoNew()
ActiveWindow.View.Type = 3 'print layout
ActiveWindow.View.Zoom.Percentage = 100
End Sub Thank you so much  Er, just one more question...how do I save (the document or the macro?) as a template? | My System Specs | | Word 2010: how do I change default viewing zoom of document? problems? All times are GMT -5. The time now is 02:53 AM. | |