Reply
 
Thread Tools Display Modes
  #1   Report Post  
Posted to microsoft.public.word.newusers,microsoft.public.word.pagelayout
Frank A. Frank A. is offline
external usenet poster
 
Posts: 10
Default Full Screen and Status Bar in Word 2007

I'm trying out Word 2007 and am baffled by the seeming absence of the
ability to hide the Status Bar (on the bottom) and the Full Screen
option. Why would they neglect to put these options in? I do hope I
missed something here. Otherwise I see heaps of improvements to the new
layout in Word 2007.
  #2   Report Post  
Posted to microsoft.public.word.newusers,microsoft.public.word.pagelayout
Doug Robbins - Word MVP Doug Robbins - Word MVP is offline
external usenet poster
 
Posts: 8,832
Default Full Screen and Status Bar in Word 2007

Look under the View tab for the "Full Screen Reading" option.

--
Hope this helps.

Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.

Doug Robbins - Word MVP, originally posted via msnews.microsoft.com

"Frank A." wrote in message
news
I'm trying out Word 2007 and am baffled by the seeming absence of the
ability to hide the Status Bar (on the bottom) and the Full Screen
option. Why would they neglect to put these options in? I do hope I
missed something here. Otherwise I see heaps of improvements to the new
layout in Word 2007.


  #3   Report Post  
Posted to microsoft.public.word.newusers,microsoft.public.word.pagelayout
Tony Jollans Tony Jollans is offline
external usenet poster
 
Posts: 1,308
Default Full Screen and Status Bar in Word 2007

Full Screen Editing is not on the Ribbon but can be reached via the old
shortcut of Alt+V,U and can be exited with ESC.

--
Enjoy,
Tony

www.WordArticles.com

"Frank A." wrote in message
news
I'm trying out Word 2007 and am baffled by the seeming absence of the
ability to hide the Status Bar (on the bottom) and the Full Screen
option. Why would they neglect to put these options in? I do hope I
missed something here. Otherwise I see heaps of improvements to the new
layout in Word 2007.


  #4   Report Post  
Posted to microsoft.public.word.newusers,microsoft.public.word.pagelayout
Frank A. Frank A. is offline
external usenet poster
 
Posts: 10
Default Full Screen and Status Bar in Word 2007

Full Screen Editing is not on the Ribbon but can be reached via the old
shortcut of Alt+V,U and can be exited with ESC.


Lol...that worked rather well. I wonder why they don't just put that in
the View menu like its been for years? Also with Word 2007 there isn't
that idiotic Message Box that used to appear and ruin Full Screen view.
Wonderful.
  #5   Report Post  
Posted to microsoft.public.word.newusers,microsoft.public.word.pagelayout
Frank A. Frank A. is offline
external usenet poster
 
Posts: 10
Default Full Screen and Status Bar in Word 2007

Look under the View tab for the "Full Screen Reading" option.

Its almost full screen except for a menu bar at the top. Except that now
it only takes up about 1/3 of my screen width. Is there any way of making
it "fit to width"? With the world trying to migrate away from paper and
all the waste it entails, you'd think they'd display it with more
practicality. Its as if 99% of the world still prints everything and the
view is supposed to exactly replicate the printed page. Its such hard
work dragging these dinosaurs out of the 20th century with their reams of
paper printed pointlessly, printing photos instead of investing in a
decent monitor, etc. End of rant....



  #6   Report Post  
Posted to microsoft.public.word.newusers,microsoft.public.word.pagelayout
Beth Melton Beth Melton is offline
external usenet poster
 
Posts: 298
Default Full Screen and Status Bar in Word 2007

An alternative is to use a macro for this, the old Full Screen view is still
available but only accessible through the VBA. Here's a macro you can use:

'Macro for switching to Full Screen view in Word
Private iZoom As Integer

Sub FullScreenView()
With ActiveWindow
If .View.FullScreen = True Then
.View.FullScreen = False
If iZoom 10 Then
.View.Zoom = iZoom
End If
Else
.View.FullScreen = True
iZoom = .View.Zoom
.View.Zoom.PageFit = wdPageFitTextFit
End If
End With
End Sub

Note you need to press Esc to close the Full Screen view. However, if you
use ESC your Zoom setting will remain the same as it was when you switched
to Full Screen. You may want to assign a keyboard shortcut to the macro so
you can run the same macro to toggle between Full Screen and your previous
view along with the Zoom setting.

If you don't know how to use the macro provided in the post:
- Copy the lines/code between Sub FullScreenView and End Sub
- In Word, on the View tab, click the Macros button. (If you click the arrow
below Macros, click View Macros)
- In the Macro Name text box type: FullScreenView (Make sure you do not
include spaces)
- Make sure the "Macros in" list reflects "All active templates and
documents"
- Click "Create"
- The Visual Basic for Applications (VBA) Editor will open. Paste the
previously copied code between Sub FullScreenView and End Sub
- Copy the first line: Private iZoom As Integer from this post
- In the VBA Editor, place your insertion point at the top of the module
(the white page that contains your macro) and paste the copied line. (Note
if you see Option Explicit at the top then paste the line below it.)
- Click the Save button to save your changes.
- Click the Close button in the upper right corner to close the VBA Editor.

To assign a keyboard shortcut:
- Right-click your Quick Access Toolbar (QAT) and then click "Customize QAT"
- Location the option for Keyboard shortcuts near the bottom and then click
"Customize"
- In the Categories list, select Macros (near the bottom of the list)
- Select the FullScreenView macro on the right
- In the "Press new keyboard shortcut" text box, press your desired keyboard
shortcut on the keyboard. For example if you want to use Ctrl+Alt+S then
just press those keys on the keyboard.
- Click Assign.
- Click Close to close the Customize Keyboard Shortcut dialog box.

If you also want to add the macro to the Quick Access Toolbar, the don't
close the Options dialog box and use these steps:
- From the "Choose Commands From" list, select "Macros"
- Select the FullScreenView macro and then click Add to add it to your QAT.
- After it's been added you can use the Move Up/Move Down buttons on the
right to change its order or use the Modify button near the bottom to assign
a different icon and change the ScreenTip text.

When you are finished, close the Options dialog box.

~Beth Melton
Microsoft Office MVP

"Frank A." wrote in message
news
I'm trying out Word 2007 and am baffled by the seeming absence of the
ability to hide the Status Bar (on the bottom) and the Full Screen
option. Why would they neglect to put these options in? I do hope I
missed something here. Otherwise I see heaps of improvements to the new
layout in Word 2007.


  #7   Report Post  
Posted to microsoft.public.word.newusers,microsoft.public.word.pagelayout
Doug Robbins - Word MVP Doug Robbins - Word MVP is offline
external usenet poster
 
Posts: 8,832
Default Full Screen and Status Bar in Word 2007

I do not believe that you can make it fit to width. The size is based on
displaying two pages at a time.

--
Hope this helps,

Doug Robbins - Word MVP

Please reply only to the newsgroups unless you wish to obtain my services on
a paid professional basis.

"Frank A." wrote in message
news
Look under the View tab for the "Full Screen Reading" option.


Its almost full screen except for a menu bar at the top. Except that now
it only takes up about 1/3 of my screen width. Is there any way of making
it "fit to width"? With the world trying to migrate away from paper and
all the waste it entails, you'd think they'd display it with more
practicality. Its as if 99% of the world still prints everything and the
view is supposed to exactly replicate the printed page. Its such hard
work dragging these dinosaurs out of the 20th century with their reams of
paper printed pointlessly, printing photos instead of investing in a
decent monitor, etc. End of rant....


  #8   Report Post  
Posted to microsoft.public.word.newusers,microsoft.public.word.pagelayout
Frank A. Frank A. is offline
external usenet poster
 
Posts: 10
Default Full Screen and Status Bar in Word 2007

I do not believe that you can make it fit to width. The size is based
on displaying two pages at a time.


OK - so much for that. Looks like I'll just toggle Full Screen (Alt_V_U)
back and forth. Its a good, efficient and practical solution. Hurrah for
Usenet! Thanks people. We would all be less productive without you.

  #9   Report Post  
Posted to microsoft.public.word.newusers,microsoft.public.word.pagelayout
Frank A. Frank A. is offline
external usenet poster
 
Posts: 10
Default Full Screen and Status Bar in Word 2007

Beth, how about Alt_V_U? And Escape to cancel. Takes about a
millisecond. Already implemented.

An alternative is to use a macro for this, the old Full Screen view is
still available but only accessible through the VBA. Here's a macro you
can use:

'Macro for switching to Full Screen view in Word
Private iZoom As Integer

Sub FullScreenView()
With ActiveWindow
If .View.FullScreen = True Then
.View.FullScreen = False
If iZoom 10 Then
.View.Zoom = iZoom
End If
Else
.View.FullScreen = True
iZoom = .View.Zoom
.View.Zoom.PageFit = wdPageFitTextFit
End If
End With
End Sub

Note you need to press Esc to close the Full Screen view. However, if
you use ESC your Zoom setting will remain the same as it was when you
switched to Full Screen. You may want to assign a keyboard shortcut to
the macro so you can run the same macro to toggle between Full Screen
and your previous view along with the Zoom setting.

If you don't know how to use the macro provided in the post:
- Copy the lines/code between Sub FullScreenView and End Sub
- In Word, on the View tab, click the Macros button. (If you click the
arrow below Macros, click View Macros)
- In the Macro Name text box type: FullScreenView (Make sure you do not
include spaces)
- Make sure the "Macros in" list reflects "All active templates and
documents"
- Click "Create"
- The Visual Basic for Applications (VBA) Editor will open. Paste the
previously copied code between Sub FullScreenView and End Sub
- Copy the first line: Private iZoom As Integer from this post
- In the VBA Editor, place your insertion point at the top of the module
(the white page that contains your macro) and paste the copied line.
(Note if you see Option Explicit at the top then paste the line below
it.)
- Click the Save button to save your changes.
- Click the Close button in the upper right corner to close the VBA
Editor.

To assign a keyboard shortcut:
- Right-click your Quick Access Toolbar (QAT) and then click "Customize
QAT"
- Location the option for Keyboard shortcuts near the bottom and then
click "Customize"
- In the Categories list, select Macros (near the bottom of the list)
- Select the FullScreenView macro on the right
- In the "Press new keyboard shortcut" text box, press your desired
keyboard shortcut on the keyboard. For example if you want to use
Ctrl+Alt+S then just press those keys on the keyboard.
- Click Assign.
- Click Close to close the Customize Keyboard Shortcut dialog box.

If you also want to add the macro to the Quick Access Toolbar, the don't
close the Options dialog box and use these steps:
- From the "Choose Commands From" list, select "Macros"
- Select the FullScreenView macro and then click Add to add it to your
QAT.
- After it's been added you can use the Move Up/Move Down buttons on the
right to change its order or use the Modify button near the bottom to
assign a different icon and change the ScreenTip text.

When you are finished, close the Options dialog box.

~Beth Melton
Microsoft Office MVP

"Frank A." wrote in message
news
I'm trying out Word 2007 and am baffled by the seeming absence of the
ability to hide the Status Bar (on the bottom) and the Full Screen
option. Why would they neglect to put these options in? I do hope I
missed something here. Otherwise I see heaps of improvements to the
new layout in Word 2007.


  #10   Report Post  
Posted to microsoft.public.word.newusers,microsoft.public.word.pagelayout
Beth Melton Beth Melton is offline
external usenet poster
 
Posts: 298
Default Full Screen and Status Bar in Word 2007

Oh yeah, the old Word 2003 accelerator does still work. I seem to forget
about those. It doesn't appear to make it fit to your screen width, though,
and I accommodated that for you in my macro.

But I'm glad to hear you found something that works for you. :-)

~Beth Melton
Microsoft Office MVP

"Frank A." wrote in message
news
Beth, how about Alt_V_U? And Escape to cancel. Takes about a
millisecond. Already implemented.

An alternative is to use a macro for this, the old Full Screen view is
still available but only accessible through the VBA. Here's a macro you
can use:

'Macro for switching to Full Screen view in Word
Private iZoom As Integer

Sub FullScreenView()
With ActiveWindow
If .View.FullScreen = True Then
.View.FullScreen = False
If iZoom 10 Then
.View.Zoom = iZoom
End If
Else
.View.FullScreen = True
iZoom = .View.Zoom
.View.Zoom.PageFit = wdPageFitTextFit
End If
End With
End Sub

Note you need to press Esc to close the Full Screen view. However, if
you use ESC your Zoom setting will remain the same as it was when you
switched to Full Screen. You may want to assign a keyboard shortcut to
the macro so you can run the same macro to toggle between Full Screen
and your previous view along with the Zoom setting.

If you don't know how to use the macro provided in the post:
- Copy the lines/code between Sub FullScreenView and End Sub
- In Word, on the View tab, click the Macros button. (If you click the
arrow below Macros, click View Macros)
- In the Macro Name text box type: FullScreenView (Make sure you do not
include spaces)
- Make sure the "Macros in" list reflects "All active templates and
documents"
- Click "Create"
- The Visual Basic for Applications (VBA) Editor will open. Paste the
previously copied code between Sub FullScreenView and End Sub
- Copy the first line: Private iZoom As Integer from this post
- In the VBA Editor, place your insertion point at the top of the module
(the white page that contains your macro) and paste the copied line.
(Note if you see Option Explicit at the top then paste the line below
it.)
- Click the Save button to save your changes.
- Click the Close button in the upper right corner to close the VBA
Editor.

To assign a keyboard shortcut:
- Right-click your Quick Access Toolbar (QAT) and then click "Customize
QAT"
- Location the option for Keyboard shortcuts near the bottom and then
click "Customize"
- In the Categories list, select Macros (near the bottom of the list)
- Select the FullScreenView macro on the right
- In the "Press new keyboard shortcut" text box, press your desired
keyboard shortcut on the keyboard. For example if you want to use
Ctrl+Alt+S then just press those keys on the keyboard.
- Click Assign.
- Click Close to close the Customize Keyboard Shortcut dialog box.

If you also want to add the macro to the Quick Access Toolbar, the don't
close the Options dialog box and use these steps:
- From the "Choose Commands From" list, select "Macros"
- Select the FullScreenView macro and then click Add to add it to your
QAT.
- After it's been added you can use the Move Up/Move Down buttons on the
right to change its order or use the Modify button near the bottom to
assign a different icon and change the ScreenTip text.

When you are finished, close the Options dialog box.

~Beth Melton
Microsoft Office MVP

"Frank A." wrote in message
news
I'm trying out Word 2007 and am baffled by the seeming absence of the
ability to hide the Status Bar (on the bottom) and the Full Screen
option. Why would they neglect to put these options in? I do hope I
missed something here. Otherwise I see heaps of improvements to the
new layout in Word 2007.


Reply
Thread Tools
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Full Screen and Status Bar in Word 2007 Frank A. New Users 9 January 6th 10 08:12 PM
How to get Full Screen Mode in Word 2007 JohnnyC Page Layout 2 March 22nd 09 11:11 PM
Status Bar won't disappear in Full Screen. B Brown Microsoft Word Help 0 February 28th 08 12:04 AM
Word 2007 windows not full screen jcanuel Microsoft Word Help 0 August 23rd 07 05:00 AM
Word 2007 - Full Screen Reading customization Kujo Microsoft Word Help 0 May 25th 06 06:46 PM


All times are GMT +1. The time now is 09:39 AM.

Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 Microsoft Office Word Forum - WordBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Word"