Special Editing Features Not Available in Word 6.0 for the Mac |
Q129068
The following four Word 4.0 and 5.x commands do not exist in Word 6.0:
New Paragraph After Insertion PointThis article tells how to write macros in Word 6.0 that simulate those commands.
New Paragraph with Same Style
Scroll Line Up
Scroll Line Down
WARNING: ANY USE BY YOU OF THE CODE PROVIDED IN THIS ARTICLE IS AT YOUR OWN
RISK. Microsoft provides this macro code "as is" without warranty of any
kind, either express or implied, including but not limited to the implied
warranties of merchantability and/or fitness for a particular purpose.
NOTE: You can use these macros in Word 6.0 for Windows or Windows NT as
well as Word for the Macintosh.
NewParagraphAfterInsertionPoint
REM NewParagraphAfterInsertionPoint
Sub MAIN
InsertPara
CharLeft
End Sub NewParagraphWithSameStyleand substitute the following code in step 5:
REM NewParagraphWithSameStyle
Sub MAIN
a$ = StyleName$()
InsertPara
FormatStyle .Name = a$, .Apply
End Sub ScrollLineUpand substitute the following code in step 5:
Sub MAIN
vline -1
End Sub ScrollLineDownand substitute the following code in step 5:
Sub MAIN
vline 1
End Sub
Command in Word 4.0/5.0/5.1 Description
--------------------------- -----------
New Paragraph After Insertion Point Inserts a paragraph mark after the
insertion point (leaving the
insertion point in the same location
but inserting paragraph marks below
it). The shortcut for this command
in Word 4.0, 5.0, or 5.1 is
OPTION+COMMAND+RETURN.
New Paragraph With Same Style Overrides the Next Style feature.
Normally when Next Style is
specified in a style's definition,
pressing ENTER at the end of a
paragraph applies the style specified
in Next Style to the next paragraph.
The shortcut for this command in Word
4.0, 5.0, or 5.1 is COMMAND+RETURN.
When you use this command, Word
starts a new paragraph but does not
apply Next Style; it applies the same
style as the paragraph above it.
Scroll Line Up Scrolls up one line without moving the
insertion point.
Scroll Line Down Scrolls down one line without moving
the insertion point.
Additional query words: Commands Well Para
Keywords : macword word6
Issue type :
Technology :
|
Last Reviewed: November 4, 2000 © 2001 Microsoft Corporation. All rights reserved. Terms of Use. |