Tried that also Charles, but I need it to force the entry at the left hand margin. I want to be able to put it on numbered or bulleted lines (built-in styles in my template). Sort of like having something to the left of the bullet. Right now when I create the textbox (or frame) it is forcing the line I want it on to move down and the [C] is on its own line. I need it to stay on the same line. For example, I might have the following:
[C] 1. Line 1
2. Line 2
[C] (bulleted list)
I would like to be able to do this without having to turn off the numbered/bulleted lists and just typing the number or inserting the symbol.
THANKS!

Signature
Bill Foley, Microsoft MVP (PowerPoint)
Microsoft Office Specialist Master Instructor
www.pttinc.com
Check out PPT FAQs at: http://www.rdpslides.com/pptfaq/
"Success, something you measure when you are through succeeding."
> How about AutoText in a Frame or TextBox. You can put the AutoText entry on
> a toolbar button or menu item.
[quoted text clipped - 28 lines]
>>> The LISTNUM field will look exactly like the numbering style, but
>>> formatting and indentation have to be supplied by you.
If you're not using text boxes, then perhaps you might have to use columns or
put the numbered list items in a table with the left hand column blank (to
accommodate your [C]s?
> Tried that also Charles, but I need it to force the entry at the left hand margin. I want to be able to put it on numbered or bulleted lines (built-in styles in my template). Sort of like having something to the left of the bullet. Right now when I create the textbox (or frame) it is forcing the line I want it on to move down and the [C] is on its own line. I need it to stay on the same line. For example, I might have the following:
>
[quoted text clipped - 38 lines]
> >>> The LISTNUM field will look exactly like the numbering style, but
> >>> formatting and indentation have to be supplied by you.
Float the text box before you create the AutoText entry. Position it
relative to the paragraph in which it is anchored.

Signature
Charles Kenyon
Word New User FAQ & Web Directory: http://addbalance.com/word
Intermediate User's Guide to Microsoft Word (supplemented version of
Microsoft's Legal Users' Guide) http://addbalance.com/usersguide
See also the MVP FAQ: http://www.mvps.org/word which is awesome!
--------- --------- --------- --------- --------- ---------
This message is posted to a newsgroup. Please post replies
and questions to the newsgroup so that others can learn
from my ignorance and your wisdom.
Tried that also Charles, but I need it to force the entry at the left hand
margin. I want to be able to put it on numbered or bulleted lines (built-in
styles in my template). Sort of like having something to the left of the
bullet. Right now when I create the textbox (or frame) it is forcing the
line I want it on to move down and the [C] is on its own line. I need it to
stay on the same line. For example, I might have the following:
[C] 1. Line 1
2. Line 2
[C] (bulleted list)
I would like to be able to do this without having to turn off the
numbered/bulleted lists and just typing the number or inserting the symbol.
THANKS!

Signature
Bill Foley, Microsoft MVP (PowerPoint)
Microsoft Office Specialist Master Instructor
www.pttinc.com
Check out PPT FAQs at: http://www.rdpslides.com/pptfaq/
"Success, something you measure when you are through succeeding."
"Charles Kenyon" <msnewsgroup@remove.no.spam.addbalance.com> wrote in
message news:%23AX67xLCFHA.2288@TK2MSFTNGP14.phx.gbl...
> How about AutoText in a Frame or TextBox. You can put the AutoText entry
> on
[quoted text clipped - 31 lines]
>>> The LISTNUM field will look exactly like the numbering style, but
>>> formatting and indentation have to be supplied by you.
Bill Foley - 02 Feb 2005 17:11 GMT
Thanks, Charles. I was able to record a macro that almost gave me what I
was looking for, except it always wants to put it in the same position
(based on where my cursor was when I recorded the macro. I am going to go
through the code this afternoon and see what attributes I can change to
always put it on the paragraph I am on when I run the macro. I tried making
it "Inline", but that would put the textbox inside of a bulleted or numbered
style and I want it always at the left-hand margin.
Here is the recorded macro in case anyone can see the obvious. Thanks
again!
'=====Code Starts Here=====
Sub Commitment()
'
' Commitment Macro
' Macro recorded 2/2/2005 by Bill Foley
'
ActiveDocument.Shapes.AddTextbox(msoTextOrientationHorizontal, 90#, _
72.75, 21#, 19.5).Select
Selection.ShapeRange.TextFrame.TextRange.Select
Selection.Collapse
Selection.TypeText Text:="[C]"
Selection.ShapeRange.TextFrame.TextRange.Select
Selection.Collapse
Selection.ShapeRange.Select
Selection.ShapeRange.Line.Visible = msoFalse
Selection.ShapeRange.LockAspectRatio = msoTrue
Selection.ShapeRange.Height = 14.4
Selection.ShapeRange.Width = 18#
Selection.ShapeRange.Left = 90#
Selection.ShapeRange.Top = 72.7
Selection.ShapeRange.TextFrame.MarginLeft = 0#
Selection.ShapeRange.TextFrame.MarginRight = 0#
Selection.ShapeRange.TextFrame.MarginTop = 0#
Selection.ShapeRange.TextFrame.MarginBottom = 0#
Selection.ShapeRange.RelativeHorizontalPosition = _
wdRelativeHorizontalPositionMargin
Selection.ShapeRange.RelativeVerticalPosition = _
wdRelativeVerticalPositionParagraph
Selection.ShapeRange.Left = wdShapeLeft
Selection.ShapeRange.Top = InchesToPoints(0)
Selection.ShapeRange.LockAnchor = True
Selection.ShapeRange.WrapFormat.AllowOverlap = True
Selection.ShapeRange.WrapFormat.Side = wdWrapBoth
Selection.ShapeRange.WrapFormat.DistanceTop = InchesToPoints(0)
Selection.ShapeRange.WrapFormat.DistanceBottom = InchesToPoints(0)
Selection.ShapeRange.WrapFormat.DistanceLeft = InchesToPoints(0)
Selection.ShapeRange.WrapFormat.DistanceRight = InchesToPoints(0)
Selection.ShapeRange.WrapFormat.Type = 3
Selection.ShapeRange.ZOrder 4
Selection.ShapeRange.TextFrame.AutoSize = False
Selection.ShapeRange.TextFrame.WordWrap = False
End Sub
'=====Code Stops Here=====

Signature
Bill Foley, Microsoft MVP (PowerPoint)
Microsoft Office Specialist Master Instructor - XP
www.pttinc.com
Check out PPT FAQs at: http://www.rdpslides.com/pptfaq/
Check out Word FAQs at: http://word.mvps.org/FAQs/General/index.htm
> Float the text box before you create the AutoText entry. Position it
> relative to the paragraph in which it is anchored.
[quoted text clipped - 49 lines]
> >>> The LISTNUM field will look exactly like the numbering style, but
> >>> formatting and indentation have to be supplied by you.