There are scripts that will resize a window. Download these scripts:
http://www.entourage.mvps.org/downloads/scripts/Word_set_window_size.zip
1) Open ³WindowGetSize² in the script editor.
--before running this script, make sure that the frontmost window in Word is
set in exactly the size and position you want. Also make sure the Result
pane is active in this Script Editor window
tell application "Microsoft Word"
get bounds of active window
end tell
--now copy the numbers in the Result pane into your customized script {a, b,
c, b}
2) Next open the script ³WindowSizeZoomViewSample² and insert the numbers
from the result pane.
3) Place the scripts in the Word Script Menu Items folder in the Microsoft
User Data folder
"~/Documents/Microsoft User Data/Word Script Menu Items"
You can assign a shortcut to the script for easy use.
4) the third script is "ArrangeAllVertically"
Barry Wainwright provided these scripts in a previous message for Entourage,
but you should be able to use them with a slight modification with Word.
To move all windows:
tell application "Microsoft Entourage" to set position of windows to {75,
140}
To move just the topmost window:
tell application "Microsoft Entourage" to set position of window 1 to {75,
140}
To move just the new (draft) message windows:
tell application "Microsoft Entourage"
set theWindows to every window whose class is draft window
repeat with aWindow in theWindows
set position of aWindow to {75, 140}
end repeat
end tell
I posted this script in HTML so line formatting would be preserved, but the
forum strips out HTML. If you cannot correct line endings, you can view the
script correctly if you use the Entourage newsreader.
If you are not familiar with a newsreader, Entourage's basic newsreader
already has the Microsoft News server included. All you do is subscribe to
the newsgroups you want. See this article for help subscribing using the
Entourage newsreader:
<
http://tinyurl.com/beds97>
Hope this helps!