Zoom percentage and formatting palette

J

Jerdog201

Version: 2008 Operating System: Mac OS X 10.6 (Snow Leopard) Processor: Intel 1. How do you make sure that Word opens to a certain zoom percentage (140% for me) no matter what Word document I open?

2. How can I get the formatting palette to not be a floating box but to be incorporated right into the toolbar?

Thanks from a new user
 
M

Michel Bintener

Version: 2008 Operating System: Mac OS X 10.6 (Snow Leopard) Processor:
Intel 1. How do you make sure that Word opens to a certain zoom
percentage (140% for me) no matter what Word document I open?

2. How can I get the formatting palette to not be a floating box but to
be incorporated right into the toolbar?

Thanks from a new user

Hi,

Word automatically opens a document with the zoom setting that was
active when the document was last saved. You can't make Word open
documents at a default zoom setting; the best solution in Word 2008 is
to create an AppleScript that can resize a window for you with a
keyboard shortcut.

Open AppleScript Editor (use Spotlight to find it), then copy the
following code into the new window:

tell application "Microsoft Word"
activate
tell active window
set width to 1020
set height to 800
end tell
set view type of view of active window to page view
set percentage of zoom of view of active window to 150
end tell

You can of course modify the parameters width (here: 1020), height
(here: 800), and zoom (here: 150) so that they match your needs. Height
and width are in pixels, so you might want to find out what your screen
resolution is so you can adjust the script to make the best use of your
Mac's screen. When you are done, save the document as a script in
~/Documents/Microsoft User Data/Word Script Menu Items. Note: if you
call the script "Resize window\cr.scpt" (without the quotation marks),
you will only need to press Ctrl+R in Word to resize the current
document. The "\c" indicates that you have to press Ctrl, and the letter
that follows is the second part of the keyboard command. You can change
it into anything you want, of course.

As for your second question: try View>Toolbars>Formatting.
 
C

CyberTaz

Further to Michel's reply to your second question: The Formatting Palette is
an element of the Toolbox which is actually a window, not a Toolbar. It
cannot be docked within the document window. It can be docked only at the
bottom edge of the Menu Bar. Just in case you hadn't realized it you can
minimize/expand the Toolbox without having to turn it off/on. Use the
'Toolbox Settings' button (bent arrow) at the right end of its title bar to
adjust its behavior to some extent.

What Michel is suggesting is that you use the Formatting Toolbar rather than
the Formatting Palette. However, the toolbar doesn't provide the contextual
tools for formatting objects nor does it provide access to the other
Palettes in the Toolbox. You might look into customizing the built-in
toolbars or creating custom toolbars to suit your own requirements, but
those bars you create yourself cannot be docked either.

HTH |:>)
Bob Jones
[MVP] Office:Mac
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top