Reply
 
Thread Tools Display Modes
  #1   Report Post  
Posted to microsoft.public.word.newusers
JERRY[_2_] JERRY[_2_] is offline
external usenet poster
 
Posts: 51
Default Screen view 100%

When I used to work with WP there was a way to remove all menus from the
screen so that a person had 100% of the screen to work with. Is that feature
available with MS W 2007? Any help would be appreciated.

Jerry


  #2   Report Post  
Posted to microsoft.public.word.newusers
Suzanne S. Barnhill Suzanne S. Barnhill is offline
external usenet poster
 
Posts: 33,624
Default Screen view 100%

Office Button | Word Options | Customize | All Commands | Full Screen
Reading.

Not a simple Full Screen toggle as in previous versions, but I suppose you
can add this command (?) to the QAT. OTOH, there is neither a ViewFullScreen
nor a FullScreen command under All Commands in Tools | Customize in Word
2003 (though it does appear in the View category), so it may not be
available as a command in Word 2007, either.

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA
Word MVP FAQ site: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.

"JERRY" JERRY@HOME wrote in message
...
When I used to work with WP there was a way to remove all menus from the
screen so that a person had 100% of the screen to work with. Is that

feature
available with MS W 2007? Any help would be appreciated.

Jerry



  #3   Report Post  
Posted to microsoft.public.word.newusers
Beth Melton Beth Melton is offline
external usenet poster
 
Posts: 1,380
Default Screen view 100%

The closest you have is the Full Screen Reading view. It's on the View
buttons at the bottom right corner of the screen next to the Zoom Slider.

Make sure you check out the View options for Full Screen Reading view, for
example you can show a single page, show it as it would look when printed,
ect.

The only other alternative is to use a macro for this, the old Full Screen
view is still available but only accessible through the object model. Here's
the macro:

Sub FullScreenView()
With ActiveWindow
.View.FullScreen = True
.View.Zoom.PageFit = wdPageFitTextFit
End With
End Sub

Note you need to press Esc to close the Full Screen view.

Please post all follow-up questions to the newsgroup. Requests for
assistance by email cannot be acknowledged.

~~~~~~~~~~~~~~~
Beth Melton
Microsoft Office MVP

Coauthor of Word 2007 Inside Out:
http://www.microsoft.com/MSPress/boo...x#AboutTheBook

Word FAQ: http://mvps.org/word
TechTrax eZine: http://mousetrax.com/techtrax/
MVP FAQ site: http://mvps.org/

"JERRY" JERRY@HOME wrote in message
...
When I used to work with WP there was a way to remove all menus from the
screen so that a person had 100% of the screen to work with. Is that
feature available with MS W 2007? Any help would be appreciated.

Jerry



  #4   Report Post  
Posted to microsoft.public.word.newusers
JERRY[_2_] JERRY[_2_] is offline
external usenet poster
 
Posts: 51
Default Screen view 100%

No, sorry. Neither of these suggestions accomplish what is needed. What is
desired is to be able to work with a full screen without all of the real
estate gobbled up by menus, etc. Thanks for the try

Jerry

"Beth Melton" wrote in message
...
The closest you have is the Full Screen Reading view. It's on the View
buttons at the bottom right corner of the screen next to the Zoom Slider.

Make sure you check out the View options for Full Screen Reading view, for
example you can show a single page, show it as it would look when printed,
ect.

The only other alternative is to use a macro for this, the old Full Screen
view is still available but only accessible through the object model.
Here's the macro:

Sub FullScreenView()
With ActiveWindow
.View.FullScreen = True
.View.Zoom.PageFit = wdPageFitTextFit
End With
End Sub

Note you need to press Esc to close the Full Screen view.

Please post all follow-up questions to the newsgroup. Requests for
assistance by email cannot be acknowledged.

~~~~~~~~~~~~~~~
Beth Melton
Microsoft Office MVP

Coauthor of Word 2007 Inside Out:
http://www.microsoft.com/MSPress/boo...x#AboutTheBook

Word FAQ: http://mvps.org/word
TechTrax eZine: http://mousetrax.com/techtrax/
MVP FAQ site: http://mvps.org/

"JERRY" JERRY@HOME wrote in message
...
When I used to work with WP there was a way to remove all menus from the
screen so that a person had 100% of the screen to work with. Is that
feature available with MS W 2007? Any help would be appreciated.

Jerry





  #5   Report Post  
Posted to microsoft.public.word.newusers
Jay Freedman Jay Freedman is offline
external usenet poster
 
Posts: 9,854
Default Screen view 100%

Ctrl+F1 hides the ribbon. If you then put the QAT above the ribbon
tabs (sharing space with the title bar), you have only two rows of
stuff at the top, a total of maybe 40 pixels, plus the status bar at
the bottom. If you also let the Windows taskbar autohide, the active
page occupies more than 90% of the screen depth. That's as good as
it's going to get.

--
Regards,
Jay Freedman
Microsoft Word MVP FAQ: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the
newsgroup so all may benefit.

On Sat, 11 Aug 2007 19:42:08 -0400, "JERRY" JERRY@HOME wrote:

No, sorry. Neither of these suggestions accomplish what is needed. What is
desired is to be able to work with a full screen without all of the real
estate gobbled up by menus, etc. Thanks for the try

Jerry

"Beth Melton" wrote in message
...
The closest you have is the Full Screen Reading view. It's on the View
buttons at the bottom right corner of the screen next to the Zoom Slider.

Make sure you check out the View options for Full Screen Reading view, for
example you can show a single page, show it as it would look when printed,
ect.

The only other alternative is to use a macro for this, the old Full Screen
view is still available but only accessible through the object model.
Here's the macro:

Sub FullScreenView()
With ActiveWindow
.View.FullScreen = True
.View.Zoom.PageFit = wdPageFitTextFit
End With
End Sub

Note you need to press Esc to close the Full Screen view.

Please post all follow-up questions to the newsgroup. Requests for
assistance by email cannot be acknowledged.

~~~~~~~~~~~~~~~
Beth Melton
Microsoft Office MVP

Coauthor of Word 2007 Inside Out:
http://www.microsoft.com/MSPress/boo...x#AboutTheBook

Word FAQ: http://mvps.org/word
TechTrax eZine: http://mousetrax.com/techtrax/
MVP FAQ site: http://mvps.org/

"JERRY" JERRY@HOME wrote in message
...
When I used to work with WP there was a way to remove all menus from the
screen so that a person had 100% of the screen to work with. Is that
feature available with MS W 2007? Any help would be appreciated.

Jerry






  #6   Report Post  
Posted to microsoft.public.word.newusers
Beth Melton Beth Melton is offline
external usenet poster
 
Posts: 1,380
Default Screen view 100%

I suspect you didn't try my macro method. :-)

In doing so, all you see is the document on the screen, perhaps a small area
to the left and right of the document, and nothing else.

Please post all follow-up questions to the newsgroup. Requests for
assistance by email cannot be acknowledged.

~~~~~~~~~~~~~~~
Beth Melton
Microsoft Office MVP

Coauthor of Word 2007 Inside Out:
http://www.microsoft.com/MSPress/boo...x#AboutTheBook

Word FAQ: http://mvps.org/word
TechTrax eZine: http://mousetrax.com/techtrax/
MVP FAQ site: http://mvps.org/

"JERRY" JERRY@HOME wrote in message
...
No, sorry. Neither of these suggestions accomplish what is needed. What is
desired is to be able to work with a full screen without all of the real
estate gobbled up by menus, etc. Thanks for the try

Jerry

"Beth Melton" wrote in message
...
The closest you have is the Full Screen Reading view. It's on the View
buttons at the bottom right corner of the screen next to the Zoom Slider.

Make sure you check out the View options for Full Screen Reading view,
for example you can show a single page, show it as it would look when
printed, ect.

The only other alternative is to use a macro for this, the old Full
Screen view is still available but only accessible through the object
model. Here's the macro:

Sub FullScreenView()
With ActiveWindow
.View.FullScreen = True
.View.Zoom.PageFit = wdPageFitTextFit
End With
End Sub

Note you need to press Esc to close the Full Screen view.

Please post all follow-up questions to the newsgroup. Requests for
assistance by email cannot be acknowledged.

~~~~~~~~~~~~~~~
Beth Melton
Microsoft Office MVP

Coauthor of Word 2007 Inside Out:
http://www.microsoft.com/MSPress/boo...x#AboutTheBook

Word FAQ: http://mvps.org/word
TechTrax eZine: http://mousetrax.com/techtrax/
MVP FAQ site: http://mvps.org/

"JERRY" JERRY@HOME wrote in message
...
When I used to work with WP there was a way to remove all menus from the
screen so that a person had 100% of the screen to work with. Is that
feature available with MS W 2007? Any help would be appreciated.

Jerry







  #7   Report Post  
Posted to microsoft.public.word.newusers
JERRY[_2_] JERRY[_2_] is offline
external usenet poster
 
Posts: 51
Default Screen view 100%

I am ashamed to admit that I did not. Have worked with Word Perfect for over
20 years and am tying to convert to Word. Never was much good with macros in
WP. I figured it would take a rocket scientist to do this one ... or at
least a little more help from someone in this group. (smile)
Jerry

"Beth Melton" wrote in message
...
I suspect you didn't try my macro method. :-)

In doing so, all you see is the document on the screen, perhaps a small
area to the left and right of the document, and nothing else.

Please post all follow-up questions to the newsgroup. Requests for
assistance by email cannot be acknowledged.

~~~~~~~~~~~~~~~
Beth Melton
Microsoft Office MVP

Coauthor of Word 2007 Inside Out:
http://www.microsoft.com/MSPress/boo...x#AboutTheBook

Word FAQ: http://mvps.org/word
TechTrax eZine: http://mousetrax.com/techtrax/
MVP FAQ site: http://mvps.org/

"JERRY" JERRY@HOME wrote in message
...
No, sorry. Neither of these suggestions accomplish what is needed. What
is desired is to be able to work with a full screen without all of the
real estate gobbled up by menus, etc. Thanks for the try

Jerry

"Beth Melton" wrote in message
...
The closest you have is the Full Screen Reading view. It's on the View
buttons at the bottom right corner of the screen next to the Zoom
Slider.

Make sure you check out the View options for Full Screen Reading view,
for example you can show a single page, show it as it would look when
printed, ect.

The only other alternative is to use a macro for this, the old Full
Screen view is still available but only accessible through the object
model. Here's the macro:

Sub FullScreenView()
With ActiveWindow
.View.FullScreen = True
.View.Zoom.PageFit = wdPageFitTextFit
End With
End Sub

Note you need to press Esc to close the Full Screen view.

Please post all follow-up questions to the newsgroup. Requests for
assistance by email cannot be acknowledged.

~~~~~~~~~~~~~~~
Beth Melton
Microsoft Office MVP

Coauthor of Word 2007 Inside Out:
http://www.microsoft.com/MSPress/boo...x#AboutTheBook

Word FAQ: http://mvps.org/word
TechTrax eZine: http://mousetrax.com/techtrax/
MVP FAQ site: http://mvps.org/

"JERRY" JERRY@HOME wrote in message
...
When I used to work with WP there was a way to remove all menus from
the screen so that a person had 100% of the screen to work with. Is
that feature available with MS W 2007? Any help would be appreciated.

Jerry









  #8   Report Post  
Posted to microsoft.public.word.newusers
Beth Melton Beth Melton is offline
external usenet poster
 
Posts: 1,380
Default Screen view 100%

Well then why didn't you ask? ;-)

To use the macro follow these steps:
- In Word, click the Microsoft Office Button and then click Word Options
- In the Popular section, turn on Show Developer tab in the Ribbon
- Click OK to close Word Options and apply the change
- On the Developer tab, click Macros
- In the Macro Name text box, type FullScreenView (no spaces allowed)
- Make sure the Macros In list reflects "Normal.dotm (global template)"
- Click Create
- Copy the lines from below:

With ActiveWindow
.View.FullScreen = True
.View.Zoom.PageFit = wdPageFitTextFit
End With

- Paste the copied lines between Sub FullScreenView and End Sub
- From the File menu, click Close and Return to Microsoft Office Word

To add the macro to your Quick Access Toolbar:
- Click the More button (down pointing arrow) at the end of your QAT and
then click More Commands
- From the "Choose commands from" list, select macros
- Select the macro, FullScreenView and click Add to add it to your QAT
- Use the Modify command to modify the icon and ScreenTip, if desired.
- Click OK to close Word Options
- Try the macro.

Please post all follow-up questions to the newsgroup. Requests for
assistance by email cannot be acknowledged.

~~~~~~~~~~~~~~~
Beth Melton
Microsoft Office MVP

Coauthor of Word 2007 Inside Out:
http://www.microsoft.com/MSPress/boo...x#AboutTheBook

Word FAQ: http://mvps.org/word
TechTrax eZine: http://mousetrax.com/techtrax/
MVP FAQ site: http://mvps.org/

"JERRY" JERRY@HOME wrote in message
...
I am ashamed to admit that I did not. Have worked with Word Perfect for
over 20 years and am tying to convert to Word. Never was much good with
macros in WP. I figured it would take a rocket scientist to do this one ...
or at least a little more help from someone in this group. (smile)
Jerry

"Beth Melton" wrote in message
...
I suspect you didn't try my macro method. :-)



  #9   Report Post  
Posted to microsoft.public.word.newusers
JERRY[_2_] JERRY[_2_] is offline
external usenet poster
 
Posts: 51
Default Screen view 100%

I am ashamed to admit that I did not. Have worked with Word Perfect for over
20 years and am trying to convert to Word. Never was much good with macros
in WP. I figured it would take a rocket scientist to do this one ... or at
least a little more help from someone in this group. (smile)
Jerry

"Beth Melton" wrote in message
...
The closest you have is the Full Screen Reading view. It's on the View
buttons at the bottom right corner of the screen next to the Zoom Slider.

Make sure you check out the View options for Full Screen Reading view, for
example you can show a single page, show it as it would look when printed,
ect.

The only other alternative is to use a macro for this, the old Full Screen
view is still available but only accessible through the object model.
Here's the macro:

Sub FullScreenView()
With ActiveWindow
.View.FullScreen = True
.View.Zoom.PageFit = wdPageFitTextFit
End With
End Sub

Note you need to press Esc to close the Full Screen view.

Please post all follow-up questions to the newsgroup. Requests for
assistance by email cannot be acknowledged.

~~~~~~~~~~~~~~~
Beth Melton
Microsoft Office MVP

Coauthor of Word 2007 Inside Out:
http://www.microsoft.com/MSPress/boo...x#AboutTheBook

Word FAQ: http://mvps.org/word
TechTrax eZine: http://mousetrax.com/techtrax/
MVP FAQ site: http://mvps.org/

"JERRY" JERRY@HOME wrote in message
...
When I used to work with WP there was a way to remove all menus from the
screen so that a person had 100% of the screen to work with. Is that
feature available with MS W 2007? Any help would be appreciated.

Jerry





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
Odd-looking view of doc on screen, as if no margin on top pasdetrois Microsoft Word Help 1 June 3rd 07 09:34 PM
On screen view Daniel- Sydney Microsoft Word Help 2 April 18th 07 08:38 PM
Difference between Screen View and Print Layout View Sue Page Layout 2 January 3rd 07 04:48 PM
can't view headings on screen Tess Microsoft Word Help 1 October 30th 06 07:58 PM
The top of my document is cut-off in the screen view Duffy Page Layout 1 December 21st 04 07:35 PM


All times are GMT +1. The time now is 11:00 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"