CyberTaz said:
Ah... It becomes a little clearer when you write;
It was just an example, I hit command-shift-s to get it in the mood,
then the short or long name of one of my many styles. I couldn't
possibly remember any more key combos than I use already. The are
spilling out my ears every time I shake my head.[1] But the short names
are fairly memorable, and the longer ones even more so..
I'm digging a hole for myself here aren't I? I'll stop digging. The
almost hidden toolbar is working fine.
1. My favourite all time text editor is teco, where all but a very few
of its commands are a single letter, and any valid series of teco
commands is indistinguishable from line noise. That starts to explain
why my head is full of rubbish. e.g. to sequentially number every line
of this post from first principles in teco I'd type.
j0ua<%a\$i $s
$;>0k
which, you must admit, makes vi and emacs look obese. That kind of
stuff is now built into my fingers. It long ago went from brain to
spinal column, back when PDP-10s were still in fashion.
G'day Elliott,
Just a thought (furiously busy at present and haven't had time to think
deeply):
How about getting say Command-Shift-d (because d is next to s) to make the
toolbar on which you have the styles pop-down to toggle as appear/disappear?
Then you would:
Hold down Command-Shift
Hit d
Hit s
Let go Command-Shift
Key the style's abbreviation
Return
Command-Shift-d
I have a button that hides/shows my toolbars on the second screen (where I
do most of my work, often with no toobars; but toolbars are almost always
visible on the smaller PowerBook display, so I don't have any problem
invoking Command-Shift-s). In case you're interested, I use the following
macro (all the toolbars are my own, since I need to have some different
buttons on the main toolbars that can't be backed up via Organizer**; and
"2" is just the 2nd, identical, copy of the original customized toolbar in
each instance):
** Elliott knows this, but for anyone watching, this is described in more
detail on page 42 of some notes on the way I use Word for the Mac, titled
"Bend Word to Your Will", which are available as a free download from the
Word MVPs' website (
http://word.mvps.org/MacWordNew/Bend/BendWord.htm).
Sub Hide2ndToolbarSet()
'
' Hide2ndToolbarSet Macro
' Macro recorded 26/3/05 by Clive Huggan
'
CommandBars("C bkmark, x, fn 2").Visible = False
CommandBars("C colour text 2").Visible = False
CommandBars("C formatting 2").Visible = False
CommandBars("C heading styles 2").Visible = False
CommandBars("C nontoc hdg styles 2").Visible = False
CommandBars("C standard 2").Visible = False
CommandBars("C paste-in factors 2").Visible = False
CommandBars("C styles 2").Visible = False
CommandBars("C show 2nd toolbars").Visible = True
CommandBars("C hide 2nd toolbars").Visible = False
End Sub
Sub Show2ndToolbarSet()
'
' Show2ndToolbarSet Macro
' Macro recorded 26/3/05 by Clive Huggan
'
CommandBars("C bkmark, x, fn 2").Visible = True
CommandBars("C colour text 2").Visible = True
CommandBars("C formatting 2").Visible = True
CommandBars("C heading styles 2").Visible = True
CommandBars("C nontoc hdg styles 2").Visible = True
CommandBars("C paste-in factors 2").Visible = True
CommandBars("C standard 2").Visible = True
CommandBars("C styles 2").Visible = True
CommandBars("C hide 2nd toolbars").Visible = True
CommandBars("C show 2nd toolbars").Visible = False
End Sub
Maybe some of this could stimulate an idea (um, probably not...)
Cheers,
Clive
======