How to change the fonts (permanently) for new (empty) documents in pages

I am searching for a way to change the settings/preferences of Pages / Numbers and Co such, that the standard font is not Helvetic, but a font of my choice. I am used to this from the MS Office products in my job, but want to keep my Mac "clean" and "pure".
I know that I can create and save templates. But somehow I feel, it must be possible to just open an empty/blank document with the font of my choice.
Any idea?
Best regards
Diethard

--
--[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)
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";
Une liste de 564 noms de polices est disponible sur mon iDisk:
<http://idisk.me.com/koenigyvan-Public?view=web>
Téléchargez:
ForiWork:despolices.numbers.zip
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";
A list of 564 names is available on my iDisk:
<http://idisk.me.com/koenigyvan-Public?view=web>
Download:
ForiWork:despolices.numbers.zip
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 permitted 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 permitted 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 permitted 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
if 5 > (system attribute "sys2") then (*
it's Mac OS X 10.4.11 *)
set allowed to permitted
else (*
it's Mac OS X 10.5.6 with a bug with Choose File *)
set allowed to {}
end if
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 (VALLAURIS, France.) mardi 11 août 2009 11:29:14

Similar Messages

  • How to Change the Font Type for Printing Pocket Address Book?

    I am new to the Mac and was entering in my contact info into the Address Book in hope of creating a Pocket Address Book (PAB). When I attempt to print out the PAB the default font is courier. When I click on "set" and access other font types, sizes, etc., I can't seem to find a way to apply or save the font type that I choose. In short, it stays as courier. I found an archived thread in a forum that suggests to validate the font I want - which I did and it was already validated - and otherwise I cannot seem to change it from courier. Any help on how to get the font I select to be applied instead of courier would be GREATLY appreciated!

    You can also change it using the UIManager:
    UIManager.put("OptionPane.foreground", Color.red);
    UIManager.put("OptionPane.messageForeground", Color.red);
    For a complete list of all properties you can change for each component check out this program:
    http://www.discoverteenergy.com/files/ShowUIDefaults.java

  • How to change the font style for user profile information in My Profile page?

    Hello,
    In my profile page, user information is getting display as below:
    Name
    Title
    Department --> Would you please let me know how can I change style for Department ( Information Technologies) Attribute in this section ?
    Thanks and Regards,
    Dipti Chhatrapati

    Hi Romeo,
    I got your point and class I require to apply is as below:
    .ms-contactcardtext3 {
        font-family:
    Arial !important;
        font-style: italic !important;
    Thank you for your trick :) 
    But its getting apply to title as well as to Department - as above class is same for both fields , while I require to change the style only for the department.
    Any suggestions ? I have changed the same using Designer which works as per the need , however - I dont want to use SPD Tool !!!
    Bottom line : I Require different font style in Title and Department without use of SPD.
    Any suggestions/idea ?
    Thanks and Regards,
    Dipti Chhatrapati

  • How to change the FONT size for a TEXT object?

    Hello
    I am keeping a TEXT element to get a static text (as 'Visitor Info Form'), so i inserted TEXT from palattes, its size is Aerial 10, but i want to have its size as 24, I tried by right clicking on TEXT, then selected FONT, then choosen the 24 from drop-down list, its not working/reflecting!! but, when i change the PARAGRAPH settings, they are reflecting!
    Pls. let me know how to change size from 10 to 24?
    Thank you

    Don't specify the styleclass for the inner panelHeader.
    <af:panelHeader text="panelHeader 1" id="ph1" styleClass="CustomHelpHeader">
    <f:facet name="context"/>
    <f:facet name="menuBar"/>
    <f:facet name="toolbar"/>
    <f:facet name="legend"/>
    <f:facet name="info"/>
    <af:panelHeader text="inner panelHeader" id="ph2">
    <f:facet name="context"/>
    <f:facet name="menuBar"/>
    <f:facet name="toolbar"/>
    <f:facet name="legend"/>
    <f:facet name="info"/>
    </af:panelHeader>
    </af:panelHeader>
    The inner panel header does not get affected and is displayed normally.
    Thanks,
    Navaneeth

  • 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.

  • How does one change the font size for folders and/or file lists in the Bookmarks Library?

    How does one change the font size for folders and/or file lists in the '''Bookmarks''' Library?
    Since the upgrade to version 9.0.1 of Firefox, the Bookmarks feature changes are confusing me. They seem to be confusing themselves as well. The list of bookmarks has changed. The font size is so small that my aging eyes cannot read it without fogging the screen with my breath. Some folders are out of alphabetical order (where I know they were previously good), and some are missing altogether (folders to which I frequently add references).
    As for missing or deranged files or folders, was there something that I should have done or now need to do to recover those after the upgrade (or before)?
    With regard to font size,
    1. there is no “Edit Bookmarks” or like option to edit the list in this version
    2. the “zoom” option in the “view” list of functions is greyed out when in “Show All Bookmarks” window
    3. expanding the browser window has no effect on font size
    4. “Preferences” settings for font size has no effect in that window either, including advanced settings
    5. “Help” offers none that I can find.
    Can any of you Help?!?

    Maybe this extension helps:
    *Theme Font & Size Changer: https://addons.mozilla.org/firefox/addon/theme-font-size-changer/

  • How do I change the default zoom for New Tab only?

    The New Tab zoom in Firefox 33 is too high to see all 12 of my thumbnails. I changed it using ctrl- but the next time I opened a New Tab, the zoom was back at 100%. How do I change the default zoom for New Tab only?

    cor-el, what am I looking for in '''content-prefs.sqlite'''?

  • Where can I change the font settings for the name of the month in iPhoto's calendar project?

    where can I change the font settings for the name of the month in iPhoto's calendar project?  I just ordered two copies of a calendar I designed in iPhoto and was surprised to find that the calendar's months were printing in something like an Arial 10 pt font.  On previous calendars I've printer via iPhoto and Apple, the font was much larger.  I've tried every menu option in iPhoto and the Calendar Project program and can't find where this is modifyable. Which leads me to ask, what the heck happened here in the first place?  I did not consciously change the default.
    I do remember that I got some notice when I first tried to print the calendar about the default font having been changed, but I don't know how this could have happened, and I didn't know what impact that had on the calendar until it was delivered.  I typically print about a dozen annual calendars but won't buy another until I've got a handle on this problem.  For the most part, the rest of the calendar is okay.
    As a P.S. is there anywhere where one can get a power user's manual, or instruction on iPhoto?
    Message was edited by: KPAausFrankfort

    "Maximum" and "12" usually refer to compression (influencing image quality and jpeg file size in bytes); and as Curt wrote, dpi is meaningless for display by and viewing in web browsers.  (It could be a different matter if you are uploading the jpeg files for someone to download from the web to print.)
    What are the sequence of steps that you and your batch processing take from Bridge?
    You can use call Photoshop's Image Processor from Bridge to create the jpeg files  (Tools > Photoshop > Image Processor).  In the Image Processor you can set jpeg compression, pixel dimensions if desired, also convert to sRGB (good idea for web display).  In my experience the image processor leaves unchanged whatever dpi is set in the source file; or, if none there as might be for a pdf, it will set the dpi value in your New Document Preset Print Resolution (from your Photoshop Units & Rulers preferences).

  • How to change the font size of text and case in smartforms

    hi,
       could any one explain how to change the font size of text in smartforms. ex. previously i had taken P4 left aligned and C6 but now i want to decrease the font without making it bold. pl......... guide me
       secondly the value which are coming from tables are upper case but i need lower case. pl. guide
    thanking u

    check out the smart styles...create a font of ur size n use.
    Define the paragraphs & character formats using SMARTSTYLES & use them in your smartform.
    You have to give the smartstyle name in the Form attributes-->Output options for the formats to be used in your smartform.
    You can define font size in Smartform Style.
    Smartform Styles > Charcterformat> Font --> size.
    to load the font to SAP server chk this
    Re: Adding a new font for SAPscript/SMARTFORM output
    Regards
    Vasu

  • I just want to know that how to change the font color, font size, and forgr

    i just want to know that how to change the font color, font size, and forground color in JTextPane for the Selected text. i try diffrerent menthod like setFont and setColor, these methods change the fonts of the whole textpane. so please reply me as soon as possible, and thanks in advance.
    Moazzam

    Sell the Old one... Buy a New one...

  • How to change the font size and style on run time

    dear all
    i try to change the font style and font size on runtime. I did the following:
    1- i created an item(:font_size) in which i will write the size of the font for the the other item ('customer_name')
    2 on the post_change trigger for 'font_size' i write this code
    SET_ITEM_PROPERTY('customer_name',FONT_size,(:font_size);
    i write 12 then then font size changed , then i write 18 , the size does not change. and when i write any value , no change happens. I do not know why
    the second problem is how to change the font style
    i made three checkbooks (bold,italic,underline)
    on the trugger when_checkbox_checked i write
         IF :BOLD = 'B' THEN
         SET_ITEM_PROPERTY('N_SAMPLE',FONT_STYLE,'BOLD');
         ELSE
    SET_ITEM_PROPERTY('N_SAMPLE',FONT_STYLE,'REGULAR');
         END IF;     
    no change happend at all.
    please help

    Hi friend,
    it's a really really strange tip... May be it's a Forms bug? I've tried with set_item_property..and.. you're right, it doesn't work..
    So.. you can try making this:
    - create a visual attribute with an specific font size....
    - use the
    SET_ITEM_INSTANCE_PROPERTY('block.item',CURRENT_RECORD,VISUAL_ATTRIBUTE,'you_visual_attribute');
    and call it from psot-change....
    It works
    Hope it helps,
    Jose.

  • How to change the font dynamically in SAP script

    Hello,
    There are three fields for a line item to be printed in SAP form (Through Script). The font of one field has to be bigger than rest of the two.
    Can anybody tell me how to change the font of a specific field in a line of an SAP-script?
    Regards
    Kiran

    Hi,
    Its like any other character format. you can have any field with a character format.
    --Ragu

  • How to change the font size of text element in smartform

    Hi
    i want to know how to change the font size of text element in smartform
    regards
    Gincy

    Hi
    You can create Smartstyles, in which you can define paragraph formats for texts and character formats for character level changes.
    Paragraph format ---> alignment, font size etc
    character format for ---> superscript, subscript.
    After creating, in your smartform, there will be a option in the text element to enter a style.
    You give the created style and you can use the paragraph and character formats i that style.
    Hope this is clear..
    Regards
    Sekar

  • How to change the font used to fill in a text field.

    Can you please tell me how to change the font that comes up when a text field is filled in?
    Can I change this setting in InDesign or does it have to be done in Acrobat?

    It must be done in Acrobat. InDesign only allows Times Roman for some reason.
    To change it in Acrobat 11, open the PDF and select: Tools > Forms > Edit
    and select the field(s) you want to change, bring up the field properties dialog, and look on the Appearance tab for the font dropdown.

  • 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.

Maybe you are looking for