Expand my Community achievements bar.

SOLVED

change default font & default font size

Avatar

Former Community Member

As far as I can make out it's not possible to reset the default font or font size in LC Designer ES 8.2........or is it, & if so, how?

I found this page re LC ES3, but it doesn't seem to apply to earlier versions.

TIA

1 Accepted Solution

Avatar

Correct answer by
Level 10

You can also build your own Object Libraries for customized objects.

Get your fields/objects looking they way you want them: fonts, borders, etc. And then make a group on the Object Library to put them in, then drag the objects into that group.

View solution in original post

2 Replies

Avatar

Level 10

Hi,

Designer uses predefined objects which are stored as *.xfo files unser your user account.

C:\Users\%username%\AppData\Roaming\Adobe\Designer\10.0\DE\Objects\Standard

You can open such files with any simple text editor and modify them.

For example, you open the NumericEdif.xfo in your editor.

Them you'll see an XML file where you'll find the information for the typeface and the size.

...

<field name="NumerischesFeld" y="0mm" x="0mm" w="67.056mm" h="9mm">

               <ui>

                  <numericEdit>

                     <border>

                        <edge stroke="lowered"/>

                     </border>

                     <margin/>

                  </numericEdit>

               </ui>

               <font size="10pt" typeface="Arial"/>

               <margin topInset="1mm" bottomInset="1mm" leftInset="1mm" rightInset="1mm"/>

               <para vAlign="middle"/>

               <value>

                  <float/>

               </value>

               <caption reserve="30.0736mm">

                  <font size="10pt" typeface="Arial"/>

                  <para vAlign="middle"/>

                  <value>

                     <text>Numerisches Feld</text>

                  </value>

               </caption>

            </field>

...

Just change the name of the typeface and the size in the way you like and save the file.

You don't need to restart Designer, the next tiome you choose the nemueric field, it's created with the new font settings.

...

<field name="NumerischesFeld" y="0mm" x="0mm" w="67.056mm" h="9mm">

               <ui>

                  <numericEdit>

                     <border>

                        <edge stroke="lowered"/>

                     </border>

                     <margin/>

                  </numericEdit>

               </ui>

               <!-- Changed Typeface and Size for the Value -->

               <font size="12pt" typeface="Adobe Text Pro"/>

               <margin topInset="1mm" bottomInset="1mm" leftInset="1mm" rightInset="1mm"/>

               <para vAlign="middle"/>

               <value>

                  <float/>

               </value>

               <caption reserve="30.0736mm">

                  <!-- Changed Typeface and Size for the Caption -->

                  <font size="12pt" typeface="Adobe Text Pro"/>

                  <para vAlign="middle"/>

                  <value>

                     <text>Numerisches Feld</text>

                  </value>

               </caption>

            </field>

...

Avatar

Correct answer by
Level 10

You can also build your own Object Libraries for customized objects.

Get your fields/objects looking they way you want them: fonts, borders, etc. And then make a group on the Object Library to put them in, then drag the objects into that group.