Microsoft Office Forums

Go Back   Microsoft Office Forums > >

Reply
 
Thread Tools Display Modes
  #1  
Old 02-10-2013, 01:17 PM
UrbanEast UrbanEast is offline Showing 1 page at a time in Word 2011 at 100% zoom (Mac) Windows Vista Showing 1 page at a time in Word 2011 at 100% zoom (Mac) Office 2007
Novice
Showing 1 page at a time in Word 2011 at 100% zoom (Mac)
 
Join Date: Jul 2009
Posts: 10
UrbanEast is on a distinguished road
Default Showing 1 page at a time in Word 2011 at 100% zoom (Mac)

The only way this works is if I go to View-->Zoom, click on "Many pages" and change it to 1x1. But this will only let me view at 87% zoom. If I press the up arrow to change that number, it shows 2 pages at a time.

Using Print view shows either 2 or 4 pages at a time depending on the zoom.

I'd rather not use Focus view since I need to format as well. Is there a way to view 1 page only at 100%?



Thanks in advane.
Reply With Quote
  #2  
Old 02-11-2013, 03:31 AM
macropod's Avatar
macropod macropod is offline Showing 1 page at a time in Word 2011 at 100% zoom (Mac) Windows 7 64bit Showing 1 page at a time in Word 2011 at 100% zoom (Mac) Office 2010 32bit
Administrator
 
Join Date: Dec 2010
Location: Canberra, Australia
Posts: 21,963
macropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond repute
Default

I use a macro to control the page display on my PC but, IIRC, you should be able to get what you want via Zoom>Many Pages>1*1>100%>OK.
__________________
Cheers,
Paul Edstein
[Fmr MS MVP - Word]
Reply With Quote
  #3  
Old 02-12-2013, 04:24 PM
UrbanEast UrbanEast is offline Showing 1 page at a time in Word 2011 at 100% zoom (Mac) Windows Vista Showing 1 page at a time in Word 2011 at 100% zoom (Mac) Office 2007
Novice
Showing 1 page at a time in Word 2011 at 100% zoom (Mac)
 
Join Date: Jul 2009
Posts: 10
UrbanEast is on a distinguished road
Default

Macro,

I tried that earlier and unfortunately, it doesn't work. When I try what you suggested, the radio button either changes to something else, or it simply changes to two pages side-by-side.

What is the macro you use for this?

Thanks.
Reply With Quote
  #4  
Old 02-12-2013, 04:41 PM
macropod's Avatar
macropod macropod is offline Showing 1 page at a time in Word 2011 at 100% zoom (Mac) Windows 7 64bit Showing 1 page at a time in Word 2011 at 100% zoom (Mac) Office 2010 32bit
Administrator
 
Join Date: Dec 2010
Location: Canberra, Australia
Posts: 21,963
macropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond repute
Default

The macros I use are below. They go in the Normal template's 'ThisDocument' module.
Code:
Private Sub Document_New()
'Ignore any errors
On Error Resume Next
Call Document_Open
End Sub
 
Private Sub Document_Open()
With ActiveWindow
  'Ignore any errors
  On Error Resume Next
  'Reduce flickering while changing settings
  .Visible = False
  'Switch to a single view pane
  .View.SplitSpecial = wdPaneNone
  'Switch to Normal mode
  .View.Type = wdNormalView
  With .ActivePane.View.Zoom
    'Set for a 1-page view
    .PageColumns = 1
    'Initialize for best fit
    .PageFit = wdPageFitBestFit
    'Test zoom % and reduce to 120% max
    If .Percentage > 120 Then .Percentage = 120
  End With
  'Switch to Print Preview mode
  .View.Type = wdPrintView
  With .ActivePane.View.Zoom
    'Set for a 1-page view
    .PageColumns = 1
    'Initialize for best fit
    .PageFit = wdPageFitBestFit
    'Test zoom % and reduce to 120% max
    If .Percentage > 120 Then .Percentage = 120
  End With
  'Display the Rulers
  .ActivePane.DisplayRulers = True
  'Hide the mailmerge task pane
  CommandBars("Mail Merge Panes").Visible = False
  'Restore the window now that we're finished
  .Visible = True
End With
End Sub
As you can see from the code, I prefer something larger than 100%, but changing to 100% or 110% shouldn't affect the overall effect.
__________________
Cheers,
Paul Edstein
[Fmr MS MVP - Word]
Reply With Quote
Reply



Similar Threads
Thread Thread Starter Forum Replies Last Post
Showing 1 page at a time in Word 2011 at 100% zoom (Mac) Change Default Zoom Size to 'Page Width' tyger330 Word 9 12-19-2012 07:50 AM
Showing 1 page at a time in Word 2011 at 100% zoom (Mac) MailMerge - Time showing 12:30 instead of 0:30 Chris424 Mail Merge 2 11-17-2011 05:51 AM
Showing 1 page at a time in Word 2011 at 100% zoom (Mac) Meeting Appointment Not Showing Local Time april Outlook 2 06-23-2011 08:57 AM
Showing 1 page at a time in Word 2011 at 100% zoom (Mac) Why Word goes to the first page each time we open the document? Jamal NUMAN Word 1 04-14-2011 04:27 AM
Showing 1 page at a time in Word 2011 at 100% zoom (Mac) Page opens at 175% zoom. How can I reset the default? Renee Hendershott Word 2 01-22-2006 06:59 PM

Other Forums: Access Forums

All times are GMT -7. The time now is 08:10 AM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.
Search Engine Optimisation provided by DragonByte SEO (Lite) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
MSOfficeForums.com is not affiliated with Microsoft