I came over from FrameMaker 7, I don't know much about Frame10.
In Frame 7 we had two number styles:
Number 1 &
Number 2+. Number 1 started the list, and Number 2+ continued the list between paragraphs. It would flow something like this:
(Number 1 ) 1.
(Number 2+) 2.
(Number 2+) 3.
(Number 2+) 4.
(Number 2+) 5.
(Number 2+) 6.
In Flare, these styles need to be mapped to <p> styles that contain
mc-auto-numbering formats. I created p.Number_1 and P.Number_2. Here is what they look like in the stylesheet:
Code: Select all
p.Number_1
{
clear: both;
color: #000;
font-family: Arial, Sans-Serif;
font-size: 80%;
font-weight: 400;
list-style-position: inside;
list-style-type: none;
mc-auto-number-class: zColored_Number;
mc-auto-number-format: '{n=1}. ';
mc-auto-number-offset: .25in;
mc-auto-number-position: outside-head;
padding: 3pt;
text-align: left;
vertical-align: baseline;
margin-left: 0;
margin-right: 0;
margin-top: 7pt;
margin-bottom: 0;
p.Number_2
{
clear: both;
color: #000;
font-family: Arial, Sans-Serif;
font-size: 80%;
font-weight: 400;
list-style-position: inside;
list-style-type: none;
mc-auto-number-class: zColored_Number;
mc-auto-number-format: '{n+}. ';
mc-auto-number-offset: .25in;
mc-auto-number-position: outside-head;
padding: 3pt;
text-align: left;
vertical-align: baseline;
margin-left: 0;
margin-right: 0;
margin-top: 7pt;
margin-bottom: 0;
}
I set the mc-auto-number-format to: {n=1} and {n+}
I also did the same thing for Frame's bullet list styles. I created <p> style where I added a dot to the mc-auto-number format:
Code: Select all
p.List_Bullets
{
margin-bottom: 3px;
mc-auto-number-format: '• ';
margin-top: 2pt;
padding-bottom: 2pt;
padding-top: 2pt;
margin-left: 16px;
}
When you import, be sure to map Frame's List styles to your new Flare list styles.