Include new font family

Hi all, i have to add a new custom font in an Answer Report column.
I want to add a new font family in the drop down list of applicable font to my column.
How can i do this?
i have already got the TFF file of the new font to add, but how can i include in Obiee?
Thanks a lot
Andrea

Any ideas??
Please help me
thanks a lot
Andrea

Similar Messages

  • HT4623 Is their any other iPhone owners that dislikes the screens, fonts, display varieties this last update provided ? I know at least ten of my friends and family do not like the new fonts, screens it downloaded with the update. Is there away to change

    Is their any other iPhone owners that dislikes the screens, fonts, display varieties this last update provided ? I know at least ten of my friends and family do not like the new fonts, screens it downloaded with the update. Is there away to change these ?

    Is their any other iPhone owners that dislikes the screens, fonts, display varieties this last update provided ? I know at least ten of my friends and family do not like the new fonts, screens it downloaded with the update. Is there away to change these ?

  • Af:richtextEditor font-family- adding new font

    I am using af:richTextEditor in a web page. The font-family drop down inside af:richTextEditor components contains some font.
    I want to add some more font (e.g verdana,century etc) in that font-family drop down.
    Is it possible to add some extra fonts in the richTextEditor font family.

    hi,
    In STYLES u have this ARIAL format available in both paragraph format and character format.
    so no need to add again.

  • How do I upload a font family?

    I''m uploading a book as PDF pages to an on demand printer.
    The printer would like the entire font family included even though
    I'm only using one weight (style) each of 2 fonts.
    How do I go about uploading the entire font families?
    I seem to think I did this once before, but don't recall the step.
    Please give me a step by step instructions.
    Thank you.

    I think I see what you're going after.
    Open your project in Quark 8. Choose File > Collect for Output. The first thing it asks is "Save Project before continuing with Collect for Output?" Meaning, it wants to save the file even if you haven't changed anything. That's okay, you can just dump the copy of the document later. Click "Save".
    A dialogue box will come up. Create a new folder somewhere using the button at the lower left. The desktop is usually the easiest place to put things. If you want, you can change the name of the file at the top, but it usually makes the most sense to leave it the same name as the file you opened. Choose the new folder you created and click "Save".
    That just writes the open document to the newly created folder. Now you get the opportunity to save the rest of the related items. Turn on the check boxes for "Linked Pictures", "Printer Fonts", "Color Profiles" and "Screen Fonts". You don't want "Layout" on because you just did that. Having it on will cause the rest of the collection to fail. Click "Save". Actually, since you already have everything but the fonts as part of the PDF file, all you need is the "Printer Fonts" and "Screen Fonts".
    A nag box will appear explaining the legality of copying fonts that may be copyrighted. Click "OK".
    A copy of your document, images and fonts will now all be in the folder you created. You don't need the Quark document or images, but all of the fonts you need to send to the publisher will be there.

  • DataGrid ItemRender and font family

    i am writing a custom data grid ItemRender that, for every
    cell, displays a numeric value. Additionally, if the xml data
    structure defines an attribute for a given row, it is supposed to
    display a colored arrow in the same cell.
    Reading the data and determining if to display the arrow, and
    the color of the arrow work fine. I am trying to embed the
    windgings font to display the arrow, that way I can set the color
    programatically. As I said, reading the data works fine, the
    coloring of the 'arrow' works fine. My problem is I cannot change
    the fontFamily of any label in the item renderer. Even the entire
    renderer itself. Below is my code, followed by several other things
    I have tried. Thanks for the help.
    <?xml version="1.0" encoding="utf-8"?>
    <mx:HBox xmlns:mx="
    http://www.adobe.com/2006/mxml"
    width="100%" height="100%"
    implements="mx.controls.listClasses.IDropInListItemRenderer"
    horizontalScrollPolicy="off" verticalScrollPolicy="off">
    <mx:Style>
    @font-face
    src: local("wingdings");
    fontFamily: myArrowFont;
    font-anti-alias-type: advanced;
    font-weight: bold;
    .arrowStyle
    fontFamily: myArrowFont;
    font-weight: bold;
    font-size: 12;
    </mx:Style>
    <mx:Script>
    <![CDATA[
    import mx.controls.listClasses.BaseListData;
    import mx.controls.dataGridClasses.DataGridListData;
    protected var _listData:DataGridListData;
    public function get listData():BaseListData
    return _listData;
    public function set listData(value:BaseListData):void
    _listData = DataGridListData(value);
    invalidateProperties();
    override public function set data(value:Object):void
    super.data = value;
    cellArrow.setStyle('color',value[_listData.dataField].@color);
    switch(value[_listData.dataField][email protected]())
    case 'up':
    cellArrow.text = 'é';
    break;
    case 'down':
    cellArrow.text = 'ê';
    break;
    case 'equal':
    cellArrow.text = 'd';
    break;
    default:
    cellArrow.text = '';
    break;
    cellText.text = value[_listData.dataField];
    ]]>
    </mx:Script>
    <mx:Label id="cellText" text=""/>
    <mx:Spacer width="100%"/>
    <mx:Label id="cellArrow" styleName="arrowStyle"
    text=""/>
    </mx:HBox>
    I have tried using <mx:Label id="cellArrow"
    fontFamily='myArrowFont'/>
    I have set the fontFamily='myArrowFont' in the base HBox tag
    as well, and it doesn't change the font of either the cellArrow or
    cellText label.
    I have also used
    cellArrow.setStyle('fontFamily','myArrowFont') in the override set
    data method.
    I have written the same component in ActionScript
    implementing the same functionality.
    The cellArrow label's text and color are set correctly to the
    data, however I cannot get the font to change to windgings.
    I have tried setting the DataGridColumn fontFamily to the
    wingdings font, and all it does is change the header text of the
    column, not any of the rows.
    The actual datagrid is created entirely in actionscript,
    because it is part of a control that will build a datagrid with X
    number of columns, defined in a data structure. That code works
    fine as well, and is below, incase it helps.
    //_dataP is an XMLList from an httpservice or web service
    that defines our grids
    var colsX:XMLList = _dataP..column; //get an xmllist of our
    columns
    var len:int = colsX.length(); //and store the length
    var cols:Array = new Array(); //create an empty array to hold
    each column
    var col:DataGridColumn; //a data grid column reference
    for(var i:int = 0; i < len; i++)
    col = new DataGridColumn(); //create a new column
    col.headerText = colsX
    .@text; //set the header text
    col.dataField = colsX.@field; //and data field
    col.itemRenderer = new ClassFactory(quadBoxItemRenderer);
    cols.push(col); //add it to the array
    _grid.columns = cols; //set our columns array as the columns
    of the grid
    var rows:XMLList = _dataP..row;
    _grid.rowCount = (rows.length() == 0) ? 1 : rows.length();
    _grid.dataProvider = rows; //and give it the list of rows
    _grid.percentWidth = 100;
    _gridBox.addChild(_grid);
    any help is vastly appreciated. Thanks.

    Disregard my question - I've unfortunately failed to check the font-family string as submitted by the server and it turned out to still have a colon character in front of it...
    I guess I've spent a few too many nights working on this making me susceptible to tiredness and a strangely blank mind...
    My apologies,
    Rogier

  • How do I add a new font to the list?

    In "Tools/Options/Content/Advanced" how do I add a new font to the list? I have "Comic Sans MS" listed for one of the options, but the drop-down menu does not contain that option, so I can't select it for another font option.

    Thanks for your reply.
    As to your question: No, of course I wouldn't scroll down, it's in alphabetical order, so why would "C" for Comic Sans MS be anywhere but between B and D on the list?
    Now a question for you: If person or group was going to alphabetize a list and then break it down into sublists, why would he, she, they not include headers for each portion and maybe even indent each font name, so a person might have a chance of getting the drift?
    Also, how do you add new fonts to the list?

  • How do I install a new font in ID cs6?

    how do I install a new font in ID cs6?

    Thanks but I should explain:
    I work at a university, there is a template for door signeage that I have downloaded from the uni website – the fonts are included but when I try to install them using Microsoft office it just doesn’t let me?
    Is there a preffered process? Thanks so much for your help
    Jade
    JADE FLYNN | Web & Administration Officer
    Office of the Deputy Vice-Chancellor (Indigenous Strategy & Services)
    [personal information removed by moderator]

  • How to deal with new Font script ?

    Hi,
    Can somebody explain me how the new JavaFX Font script works ?
    i.e. in preview SDK I wrote :
    var font:Font = Font { style:FontStyle.BOLD }
    which means : use the "default" font, with BOLD style, and default size.
    As the Font "style" attribute disappeared (why ???), what must I use in JavaFX 1.0 ?
    Thanks
    Bernard

    Hi,
    You can set bold text using this constructor of Font:
    public font(family: java.lang.String, weight: FontWeight, posture: FontPosture, size: Number) : Font ( [http://java.sun.com/javafx/1/docs/api/javafx.scene.text/javafx.scene.text.Font.html|http://java.sun.com/javafx/1/docs/api/javafx.scene.text/javafx.scene.text.Font.html] )
    example:
    Text
         font: Font.font("Verdana", FontWeight.BOLD, FontPosture.REGULAR , 24);
         content: "HelloWorld";
    }or as a variable:
    var font:Font = Font.font("Verdana", FontWeight.BOLD, FontPosture.REGULAR , 24);

  • How create new font in sap

    Hi,
    We want use Times roman in our smart form.
    i tried to load the fonts using spad and se73.
    still it is not reflecting in the report.
    regards,
    viren.

    Hi,
    Apart from SE73 i think that you have to create a new print control, which will probably contain the name of the font in hexadecimal code. I am not very sure of that but you can find the following SAP note a bit helpful...
    <b>SAP Note Number: 12462
    How can I define a new printer font?</b>Version: 7, Note Language: EN, Released on: 28.08.1998
    Symptom
    Key word:  Printer font
    What settings have to be made to define a new font for an R/3 device type (that is, a new printer font) that can be used for SAPscript documentation output.
    Additional key words
    Printer, font, printer font, device type, fontmetrics, AFM file, SE73
    Cause and prerequisites
    You would like to use a new font on the printer.
    Solution
    General advice:
    1. This procedure can be used only if the desired font is available on the printer (that is, installed on the printer itself, installed via font cassette, resident in the printer via softfont download or, in case of device type SAPWIN/WIN, installed on the Windows PC) and can be called with a short printer command (max. 29 bytes). This printer command is maintained in the print control.
    Solution procedure:
    1. The original SAP printer type used previously must be copied to a customer printer type with a name starting with Z... (see Note 3166 for reasoning behind this). The function "Utilities->Copy device type" from transaction SPAD (spool administration) is used for this.
    Example: HPLJIIID is copied to ZHPLJ3.
    2. A new print control SFxxx must be maintained for device type Z.... It contains in most cases the printer control commands for setting the desired font. To find out what this printer command looks like, refer to the printer manual and the print controls SFxxx already contained in printer definition  Z... . A certain amount of knowledge of the printer language is a prerequisite. The xxx numbering of the SFxxx print controls is arbitrary.
    NOTE: The exact contents of the SFxxx print controls depend on the SAPscript printer driver used. For information on this, consult the CD documentation ("Basis system administration printer handbook") and the field documentation (F1 help) for input field "Print control" in SE73, Printer font maintenance.
    Printer driver HPL2 (PCL 5 printer):
    SFxxx must contain the PCL 5 command for character set and print selection. CAUTION: As of Release 4.0A there are special rules which apply if the flag "Scalable font" is activated.
    Printer driver POST (Post script printer):
    SFxxx must contain the name of the Post script font, for example "Helvetica"
    Printer driver PRES (Kyocera PRESCRIBE printer):
    SFxxx must contain the PRESCRIBE command "FONT xx:" for font selection, for example "FONT 42;"
    Printer driver SWIN (Windows print via SAPWIN/SAP1pd):
    SFxxx must contain the Windows font name. CAUTION: As of Release 4.0A special rules apply if the flag "Scalable font" is activated for the printer font.
    Printer driver STN2 (Target printer):
    SFxxx must contain the complete command for the selection of the
    character set, the increment, bold and italic print and font.
    Print control SFxxx is defined for device type Z... in transaction SPAD under the heading "Print control for device type". Example: print control SF900 for device type ZHPLJ3 with replacement text (i.e. printer command)
    1B28304E1B28733070313068313276307330623354 is created.
    3. In the SAPscript font maintenance transaction SE73 under "Printer fonts", a new entry must be made for the desired font on the desired device type. The following information must be given:
    &#61607;     device type  Z...
    (printer type to which the font belongs)
    &#61607;     family   ....
    (Font name used in R/3, for example COURIER, HELVE, LETGOTH, LNPRINT, TIMES)
    &#61607;     size      ...
    (Font size 1/10 point, for example 240, for printer drivers that support scalable fonts, 000 is entered here)
    &#61607;     bold      .
    (X if bold type, otherwise blank)
    &#61607;     italic    .
    (X if italic type, otherwise blank)
    &#61607;     CPI       ..,..
    (number of characters per inch (CPI)
    If font is not a proportional font (for example HELVE,TIMES),
    for example 05.00)
    &#61607;     PrtCtl 1 SFxxx
    (Refer to field documentation (F1 Document) for exact meaning. The name of the 2nd created printer control is normally entered here.
    &#61607;     PrtCtl 2 SFxxx
    Refer to field documentation (F1 document) for exact meaning. The name of the 2nd created printer control is normally entered here.
    If the font is a proportional font (HELVE or TIMES), an AFM file that contains the width values for the individual characters in the font must be entered under "Printer fonts" in SE73. Direct maintenance of the AFM data is done from the list of printer fonts with Menu "Edit -> fontmetric using a menu function. To do this you place the cursor on the line with the newly created printer font and choose "Edit->Copy fontmetrics" on the menu. If you have created, for example, a new printer font
    ZHPLJ3 HELVE 200 _ _
    you can copy the metric of
    ZHPLJ3 HELVE 160 _ _
    here.
    Releases before 3.0A do not have this menu function, and you must manually copy the AFM files from the group box to the new printer font via the XX.XX function in the AFM editor. Then the new AFM files can be checked for correctness (Menu "Fontmetrics ->Check") and saved.
    As of Release 3.0 it is possible to establish a link to the fontmetrics of another device type or to a default (all characters with width 500) instead of copying the fontmetrics explicitly. You can check the correctness of the complete font definition in SE73 in the list of printer fonts with the function "Edit->Generate font def.".
    4. As a final step, the device type of the output device used must be changed from the SAP original to the new printer definition Z... in transaction SPAD. This is done in SPAD under the heading "Output devices".
    Example: printer LP05 previously had device type HPLJIIID and is now being given device type ZHPLJ3.
    Source code corrections
    Thanks and Regards,
    Bharat Kumar Reddy.V

  • New fonts installed with Motion 5 and FCPX??

    Anyone know if there are some new fonts imbedded into FCPX and Motion 5? Seems like I have at least 1 new font (Gaz) that does not appear in any other applications or in the Font Book app. (Gaz is what Mark Spencer uses in one of his new tutorials for Motion 5.)
    If so, where are they and what other fonts are new/included? Kinda like to know those things.

    Final Cut Pro X and Motion 5 have the following fonts built in to support the supplied Motion templates:
    Banco Heavy.ttf
    Bank Gothic Light.ttf
    Bank Gothic Medium.ttf
    Blair Medium.ttf
    Bradley Hand Bold.ttf
    ComicScript.ttc
    Coolvetica.ttf
    Duality.ttf
    Edwardian Script.ttf
    Flatbush Bold Oblique.ttf
    Flatbush Bold.ttf
    Forgotten Futurist Bold Italic.ttf
    Forgotten Futurist Bold.ttf
    Franklin Gothic Demibold.ttf
    Gaz Transport.ttf
    Goudy Old Style Bold.ttf
    Goudy Old Style.ttf
    Handwriting Dakota.ttf
    HumanaSerif.ttc
    Korataki.ttc
    Meloriac.ttf
    Misadventures Black Italic.ttf
    Misadventures Black.ttf
    Octin Team Heavy.ttf
    Paleographic Thin.ttf
    Paleographic.ttf
    Proxima Nova.ttc
    Scheme.ttc
    Sign Painter House Script.otf
    Snell Roundhand.ttc
    Strenuous.ttf
    Superclarendon Bold.ttf
    Superclarendon.ttf
    Synchro LET.ttf
    Zingende Regular.ttf
    These fonts are stored in Final Cut Pro or Motion in the following subfolder: Contents / Frameworks / TextFramework.framework / Versions / A / Resources / Fonts. To get inside Final Cut Pro or Motion, right- or control-click the application and choose Show Package Contents from the context menu.
    They also have
    FCMetro34.ttf
    In Contents / Resources / Fonts - which is used to display timecode.

  • Identifying Full Font Family Names from Acrobat "Properties"

    I routinely update PDFs where the originator is unavailable to question about typography issues. The problem I'm having currently, and continue to have, is that Acrobat (on V8) identifies font names differently from say...the Adobe Store.
    For instance, currently I'm editing a PDF that uses fonts from the "HelveticaNeue" family. I don't have this font, so if I go over to the Adobe store and try to find it, I get multiple types of "HelveticaNeue" font, and none of them are exactly what Acrobat provides as the name.
    For instance:
    Acrobat says: HelveticaNeue-Black
    Adobe store offers:
    Helvetica Neue Std Black
    Helvetica Neue 93 Black
    Helvetica Neue 95 Black
    and so on and so forth
    But NO "HelveticaNeue-Black" is in the list.
    Neither the spelling of the Acrobat font family, or the actual full name seem to match anything in the Adobe store.
    So, does anyone know a way to figure out exactly which font family Acrobat has in the PDF?
    Thanks in advance.

    Chris Souther asked:
    "Does anyone know a way to figure out exactly which font family
    Acrobat has in the PDF?"
    PDF's may include individual fonts, not families. For the most part,
    the font names shown are the actual font names. Or, more precisely,
    the PS Font Names.
    I'm looking at an older Type 1 font right now that has the following
    names in its name table (or at least the ones I can see in FontLab):
    Family Name: Helvetica Neue
    Weight: Black
    Style Name: Regular
    PS Font Name: HelveticaNeue-Black
    Full Name: Helvetica 95 Black
    Menu Name: Helvetica 95
    Fond Name: Helvetica 95
    To prevent conflicts, Adobe did some name modification when they
    created OpenType versions of fonts:
    The OTF version of the same font shows:
    Family Name: Helvetica 95 Black
    Weight: Heavy
    Style Name: Regular
    PS Font Name: HelveticaNeue-Black
    Full Name: Helvetica Neue 95 Black
    Menu Name: Helvetica 95 Black
    Fond Name: Helvetica 95 Black
    It appears that either one of these might be the one used in your PDF
    - and they should be interchangeable.
    Just to confuse things further, the fontnames for embedded subsets may
    be preceded by random 6-letter-and-a-plus-sign strings like HFTRDS+,
    or in some cases where the PDF isn't produced by Adobe Acrobat,
    TrueType fonts might have peculiar names like TT493875.
    Note that with the exception of a small "webfonts' collection Adobe
    has never produced Truetype fonts. If, as you indicated in another
    gorup, you need to install these fonts, you need them in T1 or OpenType.
    - Herb

  • Automatically loading a new font in a flash

    I was thinking of making my own font for my flash website,
    but the problem is , the users will not have the font, therefore it
    will only show the default font for them.
    There is a flashchat program (web driven) that has new fonts
    on it, that when chosen, you see a small loading bar below and the
    font is automatically loaded somehow. (they used actionscript 2.0
    though)
    Could someone please inform me of such a method? I am using
    flash cs3 pro.

    Hi,
    There is an example in the examples folder ExecutingSequencesInParallel that should help you.
    The first sequence call has been setup to run in a new execution.
    All you would have to do is include the ProcessSetup Callback Sequence in your sequencefile and perform your new sequence call from there.
    Regards
    Ray Farmer
    Regards
    Ray Farmer

  • Create Exclusive Font Family/Grouping for Photoshop/Adobe Products.

    Hi, I'm new to using fonts as groupings for decals and dingbats.
    I'm using a specific set on a lot of projects. I looked in the help but I could find out how to group fonts into a set, or font family.
    I've been doing it the slow way, typing in the name and searching through but with 21+ sets it's time consuming remembering the names and which ones belong in each set.
    Atm I just write the groupings down with pen and paper to save time.
    Hope someone is nice enough to share this simple trick.
    Cheers,
    Adam

    I can speak only for Windows systems and there I currently know:
    - Air
    - Shockwave Player
    For Photoshop Elements (as example) there exist already the "Adobe Application Manager".
    Flash/Shockwave Player, Adobe Reader and Air should be also updated via "Adobe Application Manager".
    There it should be possible to set for each application, if we want also beta updates if available or not.

  • Bug: Photoshop CS6 crashes when changing font family of a locked text layer (Windows 7)

    How to:
              1. Open an 8-bit, RGB image by selecting File>Open...
              2. Click anywhere on the canvas, with the Type Tool to make a new Text Layer
              3. Select the Move Tool
              4. Lock the text layer
              5. Click on the font family drop-down list to highlight the current font family
              6. Press an up or down arrow key
    Result: Photoshop Crashes
    Expected Result: Nothing should happen. Perhaps an error message about modifying a locked layer

    Faulting application name: Photoshop.exe, version: 13.0.0.0, time stamp: 0x4f551de1
    Faulting module name: KERNELBASE.dll, version: 6.1.7601.17651, time stamp: 0x4e21213c
    Exception code: 0xe06d7363
    Fault offset: 0x000000000000cacd
    Faulting process id: 0xe48
    Faulting application start time: 0x01cd1909963e5493
    Faulting application path: C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\Photoshop.exe
    Faulting module path: C:\Windows\system32\KERNELBASE.dll
    Report Id: e1a8bc4c-84fc-11e1-bae0-4487fc9d568c
    This is all I can offer, from event viewer

  • How to install new Fonts

    Hi everybody,
    only with one question, i need to create a new style for my SAPscripts printing and when i create my Paragraph(SE72) and try to use a size for times new roman font, the system send me a message informing that there isn't this font size for <b>times new roman</b>,
    question, somebody knows, how to add new sizes? or fonts to my SAP client!? or what can i do, if i need a specific font size and my SAP doesn't have it.
    Regards and thanks
    Emilio

    Check the below link:
    http://www.sap-basis-abap.com/sapbs043.htm
    Create a new font type with the spool administrator (SPAD)
    When you need some different fonts other than those available in the standard SAP system, you'll have to create those different fonts size manually for the device types that you are using.
    http://www.sapfans.com/forums/viewtopic.php?t=258700&sid=e023b90008c9ee1843c00fc3cf2fcee6
    Prakash.
    COPY SAP STANDARD DEVICE TYPE TO ZXXXX e.g. ZHPLJ4
    SPAD - Spool Administration
    Full administration
    Device Types - ZHPLJ4  (then click Device Types)
    Utilities -> For device type -> Copy device type
    Print Controls - Copy an existing Print Control and change the ControlCharacter sequence
    SE73 - SAPscript Font Maintenance
    Printer fonts - Change
    Double click on the ZXXXX device type
    Create
    Font family   COURIER
    Font size     030
    Characters per inch 21.00
    Print control 1 SFXXX
    Print control 2 SFXXX

Maybe you are looking for

  • How to change the determination of text procedure for campaigns

    Hi all, we want to have different text determination procedures for our different campaign types. I checked the customizing, for the text object CGPL_TEXT there are many text determination procedures possible. However, I was not able to figure out wh

  • Red Hat Linux Platform

    Which versions of Red Hat Linux are supported by Oracle9i DB?

  • Weird message every few days or weeks

    Can someone tell me why I get this weird messages on my iPhone 4S with iOS 6.1.3? I get these messages sometimes once a week or once a month, one time I got 2 of them one after another. See the picture and tell me what it is and what should I do abou

  • How to remove all contacts in my phone

    Anyone know now to remove all the duplicated/ not valid contacts on the I phone in a faster wat??

  • Photoshop 6 problem

    Got a virus and uninstalled PS 6 couldn't reinstall it. Downloaded PS 11. How do I find serial #?