h a l f b a k e r yYou could have thought of that.
add, search, annotate, link, view, overview, recent, by name, random
news, help, about, links, report a problem
browse anonymously,
or get an account
and write.
register,
|
|
|
|
Try an optical mouse with center scroll wheel - mine has a push-button feature which can be set to scroll manually or on it's own. It's *nifty* |
|
|
I don't understand the complaint. [thumbwax], since you seem to, could you explain it? |
|
|
phoenix, when you create a document, the cursor moves downwards as you type. when your cursor hits the "bottom" of the screen, a new line appears for you to type onto. you therefore spend your time looking at the last inch as you type. i hope this helps.
thumb, i have a wireless mouse with a centre scroll wheel. but i havent managed to make it top scroll. what make is yours ? |
|
|
I agree this is an irritant with word processors too. I want to be able to keep my current line in the center and have the document move. |
|
|
Scroll lock _used_ to do this back in the old DOS days with some word proc packages. (Someone one here is still using PC Write, I can't remember who now... but whoever you are, does scroll lock work like this for it?) |
|
|
Oh, thanks. Why not just make the program window half as tall as the desktop? You'll still be at the bottom of the window but in the middle of the monitor. |
|
|
phoenix, that works for pure entry. but sometimes when editing, you want to be able to see the following paragraph as well as the preceding line. |
|
|
Fair enough. I hadn't thought of that. Word will let you split the screen into two sections, but I don't know of a way to keep the two sections syncronized (so when you scroll in one window, the other window scrolls as well). If I find something, I'll post a link. |
|
|
Paste the following macro into your VBA macro editor, then use Tools > Customize > Keyboard to attach to a key (I use Alt PgDn). Replace the "<P>" codes with carriage returns. |
|
|
Sub ScrollPageDown()<P>
WordBasic.ScreenUpdating 0<P>
startpos = WordBasic.GetSelStartPos()<P>
endpos = WordBasic.GetSelEndPos()<P>
WordBasic.PageDown 2<P>
WordBasic.SetSelRange startpos, endpos<P>
WordBasic.LineUp 1<P>
WordBasic.SetSelRange startpos, endpos<P>
WordBasic.VLine 1<P>
WordBasic.ScreenUpdating 1<P>
End Sub<P> |
|
| |