How to change default font in Numbers?

Is it possible to somehow change the default font when creating new documents in Numbers from "Helvetica Neue" to just "Helvetica", size 11? Changing the font and saving the document as new template simply does not work since the font in newly created tables in the new document using the new template still falls back to "Helvetica Neue".

Here is an enhanced version.
You may use it with the three components of iWorks.
It is also available for free on my iDisk:
<http://idisk.me.com/koenigyvan-Public?view=web>
Download:
For_iWork:iWork '09:setiWork_defaultfont.zip
--[SCRIPT setiWork_defaultfont]
Si vous choisissez "Pages" vous verrez:
/* ----- Font Names */
"FONT_Helvetica" = "Helvetica";
"FONT_Helvetica-Bold" = "Helvetica-Bold";
"FONT_Helvetica-Oblique" = "Helvetica-Oblique";
"FONT_LucidaGrande" = "LucidaGrande";
La police utilisée par défaut dans les textes, les notes et les tables est celle dont le descripteur est "FONT_Helvetica"
éditez la ligne correspondante comme suit:
"FONT_Helvetica" = "nomDeVotrePolice";
Par exemple, pour utiliser Palatino, remplacez nomDeVotrePolice par "Palatino-Roman"
Enregistrez le fichier ainsi modifié par (cmd + S)
Vous trouverez plus bas une liste de noms de polices.
Si vous choisissez "Numbers" vous verrez:
/* ----- Font Names */
"FONT_Helvetica" = "Helvetica";
"FONT_HelveticaNeue" = "HelveticaNeue";
"FONT_HelveticaNeue-Bold" = "HelveticaNeue-Bold";
"FONT_LucidaGrande" = "LucidaGrande";
"FONT_MarkerFelt-Thin" = "MarkerFelt-Thin";
La police utilisée par défaut dans les textes, les notes et les tables est celle dont le descripteur est "FONT_HelveticaNeue"
éditez la ligne correspondante comme suit:
"FONT_HelveticaNeue" = "nomDeVotrePolice";
Si vous choisissez "Keynote" vous verrez:
"STYLESeries2" = "Series_2";
"STYLE_None" = "Aucun";
"STYLESeries5" = "Series_5";
"STYLESeries3" = "Series_3";
"FONT_LucidaGrande" = "LucidaGrande";
"FONT_Helvetica" = "Helvetica";
"STYLE_Free Form" = "Format libre";
"STYLESeries1" = "Series_1";
"FONT_GillSans" = "GillSans";
"STYLE_Normal" = "Normal";
"STYLESeries0" = "Series_0";
"FONT_MarkerFelt-Thin" = "MarkerFelt-Thin";
"STYLESeries4" = "Series_4";
La police utilisée par défaut dans les textes, les notes et les tables est celle dont le descripteur est "FONT_GillSans"
éditez la ligne correspondante comme suit:
"FONT_GillSans" = "nomDeVotrePolice";
If you choose "Pages" you will see:
/* ----- Font Names */
"FONT_Helvetica" = "Helvetica";
"FONT_Helvetica-Bold" = "Helvetica-Bold";
"FONT_Helvetica-Oblique" = "Helvetica-Oblique";
"FONT_LucidaGrande" = "LucidaGrande";
The font used as default for tables is the one whose descriptor is "FONT_Helvetica"
edit the line as:
"FONT_Helvetica" = "yourFontName";
For instance, to use Palatino, replace "yourFontName" by "Palatino-Roman"
Save the file (cmd + S)
If you choose "Numbers" you will see:
/* ----- Font Names */
"FONT_Helvetica" = "Helvetica";
"FONT_HelveticaNeue" = "HelveticaNeue";
"FONT_HelveticaNeue-Bold" = "HelveticaNeue-Bold";
"FONT_LucidaGrande" = "LucidaGrande";
"FONT_MarkerFelt-Thin" = "MarkerFelt-Thin";
The font used as default for tables is the one whose descriptor is "FONT_HelveticaNeue"
edit the line as:
"FONT_HelveticaNeue" = "yourFontName";
If you choose "Keynote" you will see:
"STYLESeries2" = "Series_2";
"STYLE_None" = "Aucun";
"STYLESeries5" = "Series_5";
"STYLESeries3" = "Series_3";
"FONT_LucidaGrande" = "LucidaGrande";
"FONT_Helvetica" = "Helvetica";
"STYLE_Free Form" = "Format libre";
"STYLESeries1" = "Series_1";
"FONT_GillSans" = "GillSans";
"STYLE_Normal" = "Normal";
"STYLESeries0" = "Series_0";
"FONT_MarkerFelt-Thin" = "MarkerFelt-Thin";
"STYLESeries4" = "Series_4";
The font used as default for tables is the one whose descriptor is "FONT_GillSans"
edit the line as:
"FONT_GillSans" = "yourFontName";
Here are some true font names:
Arial-Black
Arial-BoldItalicMT
Arial-BoldMT
Arial-ItalicMT
ArialHebrew
ArialHebrew-Bold
ArialMT
ArialNarrow
ArialNarrow-Bold
ArialNarrow-BoldItalic
ArialRoundedMTBold
ArialUnicodeMS
Didot
Didot-Bold
Didot-Italic
Georgia
Georgia-Bold
Georgia-BoldItalic
Georgia-Italic
Helvetica
Helvetica-Oblique
Helvetica-Bold
Helvetica-BoldOblique
HelveticaNeue-CondensedBold
HelveticaNeue-CondensedBlack
HelveticaNeue-UltraLight
HelveticaNeue-UltraLightItalic
HelveticaNeue-Light
HelveticaNeue-LightItalic
HelveticaNeue-Regular
HelveticaNeue-Italic
HelveticaNeue-Bold
HelveticaNeue-BoldItalic
Julius
LucidaGrande
LucidaGrande-Bold
Palatino-Roman
Palatino-Italic
Palatino-Bold
Palatino-boldItalic
Yvan KOENIG (Vallauris, FRANCE)
5 mars 2009
on run
if my parleFrancais() then
set prompt1 to "Choisir l'application"
set prompt2 to "Choisir un modèle"
set prompt3 to "Choisir une localisation"
else
set prompt1 to "Choose the application"
set prompt2 to "Choose a template"
set prompt3 to "Choose a localization"
end if
choose the application *)
set theApp to choose from list {"Pages", "Numbers", "Keynote"} with prompt prompt1
if theApp is false then error -128
set theApp to item 1 of theApp
define some parameters *)
if theApp is "Pages" then
set allowed to {"com.apple.iWork.Pages.template", "com.apple.iWork.Pages.sfftemplate"}
set sub to "Templates"
set theStrings to "Localizable.strings"
else if theApp is "Numbers" then
set allowed to {"com.apple.iWork.Numbers.template", "com.apple.iWork.Numbers.sfftemplate"}
set sub to "Templates"
set theStrings to "Localizable.strings"
else (* it is "Keynote" *)
set allowed to {"com.apple.iWork.Keynote.kth", "com.apple.iWork.Keynote.sffkth"}
set sub to "Themes"
set theStrings to "fontsAndText.strings"
end if
choose the template *)
set p2f to (path to applications folder as text) & "iWork '09:" & theApp & ".app:Contents:Resources:" & sub
set p2f to (choose file with prompt prompt2 default location (p2f as alias) of type allowed) as text
choose the localization folder *)
set p2f to p2f & "Contents:Resources"
set p2f to (choose folder default location (p2f as alias) with prompt3) as text
open the localizable.strings file *)
tell application "Finder"
set nb to count of (files of folder p2f whose name starts with "localizable")
if nb = 1 then duplicate file theStrings of folder p2f (* as there is no backup, duplicate "localizable.strings" for safe *)
open file theStrings of folder p2f
end tell -- Finder
end run
--=====
on parleFrancais() (* Check if Pages is running in French *)
local z
try
tell application "Pages" to set z to localized string "Cancel"
on error
set z to "Cancel"
end try
return (z = "Annuler")
end parleFrancais
--=====
--[/SCRIPT]
Yvan KOENIG (from FRANCE dimanche 8 mars 2009 13:07:38)

Similar Messages

  • How to change default fonts in Keynote?

    How to change default fonts in Keynote?

    You can't set a default font.
    Instead use a custom slide master with the font you want to use.

  • How to change default fonts in windows 8.1?

    i tried make it by windows 7 way
    1. turn off ClearType
    [HKEY_CURRENT_USER\Control Panel\Desktop]
    "FontSmoothingType"=dword:00000001
    2.
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Fonts]
    "Segoe UI (TrueType)"=""
    "Segoe UI Bold (TrueType)"=""
    "Segoe UI Italic (TrueType)"=""
    "Segoe UI Bold Italic (TrueType)"=""
    "Segoe UI Semibold (TrueType)"=""
    "Segoe UI Light (TrueType)"=""
    "Segoe UI Symbol (TrueType)"=""
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\FontSubstitutes]
    "Segoe UI"="Tahoma"
    default settings:
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Fonts]
    "Segoe UI (TrueType)"="segoeui.ttf"
    "Segoe UI Bold (TrueType)"="segoeuib.ttf"
    "Segoe UI Italic (TrueType)"="segoeuii.ttf"
    "Segoe UI Bold Italic (TrueType)"="segoeuiz.ttf"
    "Segoe UI Semibold (TrueType)"="seguisb.ttf"
    "Segoe UI Light (TrueType)"="segoeuil.ttf"
    "Segoe UI Symbol (TrueType)"="seguisym.ttf"
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\FontSubstitutes]
    "Segoe UI"=-
    5. reboot
    Done, now all fonts in window without ClearType and used that we indicated.
    But in metro it's not work cuz some of elements is buged and changed to squares
    There are some programs like http://www.ilovefreesoftware.com/09/windows8/change-the-default-font-in-windows-8-windows-8-font-changer.html in internet. But how i see it's don't change all fonts.
    How to cahnge all fon'ts in windows 8.1 to Tahoma 8 for example?

    This is supposed to be a better program than Win 8.
    Did someone from Microsoft Marketing tell you that?  Maybe a fanboy?  :)
    In all seriousness it's not better in any obvious way than Win 8, nor is it really any better than Win 7.  It can be tweaked to be just about as good.  And to be fair, it's stable.
    I mean yes, we all expected Win 8.1 to be better than its predecessors
    - software releases are supposed to give you some value, some good reason to upgrade - but that kind of goes away when the software maker feels they have a captive audience as Microsoft does, and especially when they still have plenty of businesses
    buying Win 7, which pays their bills.
    But like it or not, removed choices or not, apparently Windows 8 is here to stay.  Joshua up above says "You fail", but have they really?  Once you're patching it up to make it usable they've already got your license fee, and your
    alternatives to running Windows are what, exactly?
    -Noel
    Detailed how-to in my eBooks:  
    Configure The Windows 7 "To Work" Options
    Configure The Windows 8 "To Work" Options

  • How to change default fonts in Indesign

    I've tried the usual recommended steps - open InDesign, select a font, then close the program, etc. -- but nothing seems to work. Every style reverts to MetaPlus. Help!

    Respectfully, I've tried this, and I'm not looking for suggested working solutions as I have a pretty clear understanding of how to set defaults and how to utilize paragraph styles.  I'm simply pointing out that contrary to what you're saying, setting the font in the character palette does NOT change the true default font in my experience (CS4, OS10.4.11). I do understand that the default is set with no documents open by then selecting the font in the character palette.
    I'm attaching 2 screen shots to show you that I'm not making this up.  In the first you can hopefully see I've clearly set the "default" to Arial now.
    In the second I've created a new document and a new paragraph style. You can see it already considers "Arial" as deviating from the base "No Paragraph Style" and if you click on "Reset to Base" you will see that sure enough, the true default font is still Geneva (Geneva in my case as outlined in my previous post).
    Generally, this isn't much of a problem. As you've all pointed out we can accept that these additions are the new default for a new paragraph style, but it really isn't changing the true default font. Depending on your working environment and the experience of the designers this may be good enough. For my environment I'm looking for the ability to change the true default font and the only solution I've come across is the one from my previous post (deleting preferences).

  • How to change DEFAULT font and font size on new Pages document

    When I open a new Page document, it always comes in with a default font and font size. I know how to change those settings on the open document.
    I want to know how to change the ~default~ font and font size so that a new Page document always opens with those default settings.
    -Thanks for your service to the community.

    Hi Lionate
    Welcome to the forum.
    Make a document to your liking.
    Change the Body style and any other styles in :
    +Menu > Show Styles Drawer > click on the little triangle next to Body > redefine Style from Selection+
    Capture the page:
    +Menu > Format > Advanced > Capture Pages… > Name it > OK+
    +Menu > Format > Advanced > Manage Pages… > Delete other Sections/Pages > OK+
    Save as a template:
    +Menu > File > Save as Template…+
    +Menu > Pages > Preferences > General Preferences > For New Documents > click Use template: > Choose > browse to the template above+
    Peter

  • How to change default font in Pages?

    how do we change the default font for Pages??

    Usually create your own template using the font you want in the Styles.
    What version of Pages are you referring to?
    Peter

  • How to change default font in Thunderbird interface

    I know this question has been asked and discussed at length, but creating a question appears to be the only way to create an account. If there is another way, please tell.
    To the question at hand, relying on an add-on for a simple configuration change such as modifying the UI font is really stretching things. I spent ages trolling through all the options in the default installation, and then went googling before I eventually found the add-on.
    I'm surprised it took so long to get the actual message across; perhaps it was ppl thinking differently, using different OSes, I don't know, but I recognized it straight away because it was exactly what I was trying to do. Change the font of the entire UI so that I could actually read it. The default is way too small for me. Changing the message text, etc., is simple; changing the entire UI is not. And again, don't want to change every app, only Thunderbird. I'm using Fedora 21.
    It might be worth considering that if so many ppl ask the same question, or have the same issue, then it might be worth making the "extension" part of the base functionality.

    Use the Theme Font Size Changer add-on.
    That's the answer, unless you choose to fiddle with css coding. I think Thunderbird's design has been caught out by newer high resolution displays. This was a rather less common request a few years ago. The mac retina displays got this particular ball rolling.

  • How to change default font in Photoshop CS5

    Is there a simple way to change the default font from Felix Tilting to Verdana in Photoshop CS5

    The character palette will remember the last font you used with any of the text tools. If it doesn't, then something is afoot, but your rather vague post doesn't allow any specific pointers. If you have issues, you need to explain nad provide some system info and so on...
    Mylenium

  • How to change default font in 5.5.2 (Yosemite)

    I've found threads about this for earlier versions, but not the new. I was able to make a new template with the defaults I want, but I want to be able to change the default for any blank template. Nearly the ENTIRE industry standard for print magazines, books and newspapers is Times New Roman, 12pt. Yet Apple insists on Helvetica (?!) and 11pt. Who is this a standard for? I'm curious.
    Thanks for the help

    It was built on a free forum, as I did it also for free, and the IP pulled the plug without notice when the 10 years was up for those who ran the free forums.
    I was never able to make contact with anyone involved, so lost all my work, about the same time Apple trashed iWork.
    I am thinking about starting a new forum under my own aegis, but not looking forward to revisiting what I largely consider a lost cause. i.e. Apple's software.
    When Affinity and other quality 3rd party options fall in place I am thinking of building a site around those as a real solution.
    Peter
    PS Am I guessing, with "weasel word", you may be of fellow antipodean convict stock?*
    * On further research this is not a local expression as I thought. Although we do love it.

  • Simple/silly question: how do I set/change default font/color for outgoing mail messages?

    Simple/silly question: how do I set/change default font/color for outgoing mail messages?

    Just a suggestion..........
    Download Thunderbird.  Easier to use when it comes to what you want to do w/your emails. 

  • How to change the font size of Text Box  Properties Appearance tab into 2 decimal digit.

    How to change the font size of Text Box  Properties Appearance tab into 2 decimal digit. I am uanble to modify it to 5.38 pt for example. Its only allowing to 1 decimal place.

    Click on each field and the choose Properties from either File menu (or if on Mac hold dow mouse button until context menu appears choose properties)
    go to Font
    choose desired size and type font,you can choose to make this the default.
    Do this with each field.
    Or if you have a lot of fields:
    while one is selected select all of them
    then go to fonts in properties
    change Font and size and make default.

  • How to change the font size of Text box tool ?

    How to change the font size of Text box tool ?
    I am using Acrobat PDF 6.0
    Tools > Advanced Commenting > Text Box Tool
    I need to know how to change the font size. The default font size is too big.
    let me know
    Thanks

    I do not have AA6 available right now (I can check at home this evening). I am also using AA Pro, not Std. In AA7, there is a text box tool that is a commenting tool. When I started typing, a properties toolbar came up that had the font size and such. I haven't figured out how to get the toolbar after the fact. In AA8, I selected the text box tool and then went to view and selected the properties bar (the font size and all showed then), or use Ctrl-E when editing the text. I have not been able to figure out how to edit the text in a text box after you have created it - think it is a mental block right now. Bill

  • How to change the font size in sap scripts?

    hi friends,
        i had a query regarding to SAPSCRIPT.
      how to change the font size of a text in sap script form in which it should change it  dynamically.
    is it possible to change the font size dynamically in scripts.
    one more query regarding to this only.
    i need to get the hard copy of a script .
    what is the transaction code to get the hard copy?

    Hi venkata,
    You can specify the font size either in the Character format or pharagraph format.
    You better decide it according to your requirement.  If you want to apply the same font size for the entire form create the Paragraph format and give the paragraph format in the default paragraph format.
    If you want to apply that to limited text, then create character format.
    The process of creating it is just after going inside paragraph format click EDIT-> Create Element and give the font size.
    This applies for character format also.
    Reward points if useful.
    Thanks,
    karthik

  • How to change header font style in Spark DataGrid?

    I'm looking since last week for a way how to change the font style of the header in a Spark DataGrid. It drive me nuts that I can't find a way to do this. Have anyone one an idea how to achieve it? Any help is appreciated.
    Thanks,
    - Artur

    Hi,
    Some styles won't work because some text styles got hardcoded into the DefaultGridHeaderRenderer's Label. You'll run into this issue not just with the DataGrid headers but also things like the Panel's title and other places where we have text. One way to get around this issue is to create your own custom headerRenderer based on the default one and then redefine the headerRenderer skin part in the skin.
    First, create a subclass of the DefaultGridHeaderRenderer and tweak the "labelDisplay" to your liking (or even just take out all the styles and style it on your own as you had earlier using your custom header renderer's name). Example below (I named it "CustomHeaderRenderer"):
    <?xml version="1.0" encoding="utf-8"?>
    <skins:DefaultGridHeaderRenderer xmlns:fx="http://ns.adobe.com/mxml/2009"
                                     xmlns:s="library://ns.adobe.com/flex/spark"
                                     xmlns:mx="library://ns.adobe.com/flex/mx"
                                     xmlns:skins="spark.skins.spark.*"
                                     xmlns:comps="comps.*">
        <fx:Declarations>
            <!-- Remove fontweight="bold" and other styles as you wish
                 Must be a component and not a factory. -->
            <s:Label id="labelDisplay"
                     verticalCenter="1" left="0" right="0" top="0" bottom="0"
                     textAlign="start"
                     verticalAlign="middle"
                     maxDisplayedLines="1"
                     showTruncationTip="true" />
        </fx:Declarations>
    </skins:DefaultGridHeaderRenderer>
    Next, create a simple DataGrid skin by creating a subclass of the  spark.skins.spark.DataGridSkin in MXML and defining a new headerRenderer  component in the fx:Declarations section. Example below (I named it "CustomDataGridSkin"):
    <?xml version="1.0" encoding="utf-8"?>
    <skins:DataGridSkin xmlns:fx="http://ns.adobe.com/mxml/2009"
                    xmlns:s="library://ns.adobe.com/flex/spark"
                    xmlns:mx="library://ns.adobe.com/flex/mx"
                    xmlns:skins="spark.skins.spark.*"
                    xmlns:comps="comps.*">
        <fx:Declarations>
            <!-- Must be a factory with the right id for the skin part -->
            <fx:Component id="headerRenderer">
                <comps:CustomHeaderRenderer />
            </fx:Component>
        </fx:Declarations>
    </skins:DataGridSkin>
    Last, assign your new skin as the skinClass of your DataGrid (either in MXML or as a style):
    <s:DataGrid skinClass="comps.CustomDataGridSkin">
    I know it's not pretty, but it's the result of trading off between having completely custom skinning vs. having knobs to tweak every style. Hope this helps.
    -Kevin

  • I like the mail feature with one exception; I cannot figure out how to change the font size of incoming mail permanently.  And, when answering an email I have to highlight the first few words and zoom it so I can see what I am writing.  what am I missing?

    I like the mail feature with one exception; I cannot figure out how to change the font size of incoming mail permanently.  And, when answering an email I have to highlight the first few words and zoom it so I can see what I am writing.  what am I missing?

    You can type the email using what you set in preferences and then highlight the text and use command - minus sign (or command - + for larger) to reduce the size of the text.
    You can also type command - T and a window will appear allowing you to select fonts/sizes/color/ background highlight.
    The above works in Notes also. I haven't tried to do this in any other Apple application.
    For incoming emails, you can use the above to reduce font size, but I don't know of a way to permanently set the incoming font size to a default.

Maybe you are looking for