Guess I'll have to make this an FAQ:
From a previous post, which you could search using
http://groups.google.com/advanced_group_search?q=group:*mac.office*
> This sometimes happens when screen resolution has been changed (it also,
> in a few cases at least, seems to happen for no reason at all).
>
> Try this:
>
> Type OPT-F11 to enter the Visual Basic Editor (VBE). Type CMD-G to open
> the Immediate Window. In the Immediate Window, type or paste
>
> Commandbars("Formatting Palette").Position = msoBarFloating
> CommandBars("Formatting Palette").Top = 100
> CommandBars("Formatting Palette").Left = 100
>
> following each line with a Return.
>
> The palette should then be visible and able to be repositioned.
>
Run this script:
If that URL doesn't work, here's the script in full:
tell application "Microsoft Word"
tell command bar "formatting palette"
set visible to true
set {top, left position} to {100, 700}
end tell
end tell
--
Barry Wainwright
Microsoft MVP (see http://mvp.support.microsoft.com for details)
Seen the All-New Entourage Help Pages? - Check them out:
<http://www.entourage.mvps.org/>