Word 2010: how do I change default viewing zoom of document?

Page 1 of 3 123 LastLast

  1. Posts : 2,523
    -
       #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 Computer


  2. Posts : 8,398
    ultimate 64 sp1
       #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 Computer


  3. Posts : 2,523
    -
    Thread Starter
       #3

    mickey megabyte said:
    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 Computer


  4. Posts : 8,398
    ultimate 64 sp1
       #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 Computer


  5. Posts : 2,523
    -
    Thread Starter
       #5

    mickey megabyte said:
    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 macros, 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 Computer


  6. Posts : 6,305
    Windows 7 Ultimate x64
       #6

    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 Computer


  7. Posts : 6,305
    Windows 7 Ultimate x64
       #7

    PallasAthene said:
    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 macros, 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 Computer


  8. Posts : 2,523
    -
    Thread Starter
       #8

    Orbital Shark said:
    PallasAthene said:
    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 macros, 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 Computer


  9. Posts : 6,305
    Windows 7 Ultimate x64
       #9

    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 Computer


  10. Posts : 2,523
    -
    Thread Starter
       #10

    Orbital Shark said:
    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 Computer


 
Page 1 of 3 123 LastLast

  Related Discussions
Our Sites
Site Links
About Us
Windows 7 Forums is an independent web site and has not been authorized, sponsored, or otherwise approved by Microsoft Corporation. "Windows 7" and related materials are trademarks of Microsoft Corp.

© Designer Media Ltd
All times are GMT -5. The time now is 13:08.
Find Us