Changing Fonts to a new font not defined in OBIEE

We are doing a rebranding of our company and we would like to use a new font for all of our reporting. This font is not one that is currently listed in OBIEE. I have the .otf files, I am hoping these read the same as .ttf files, but I don't know where to place them nor can I find where to define them so the Dashboard, Answers and the pdf write picks them up.
Thats for any help,
Jay

Hi,
I'm afraid this will be very hard to implement. In fact, it hasn't much to do with OBIEE, but with your browser. The problem is that GillSans is not a standard font in a browser. So even when you edit all your css files and set GillSans as the default font, it won't be used because GillSans isn't implemented as a font in your browser.
Read here more information about "browser-safe fonts":
http://www.ampsoft.net/webdesign-l/WindowsMacFonts.html
Regards,
Stijn

Similar Messages

  • Firefox installed in Archlinux can display fonts after a new fonts installed

    Hi! I'm a Linux user. Recently I migrate to Archlinux. At first time I used Firefox without issues. Then in the process the install and config software and the distro I installed new fonts. That fonts I used in IBM Linux distro, OpenClient based on RHEL 6.5. Thats fonts are a backup of that machine. The set of fonts include around of 4000 fonts: Windows 7 Fonts, Google Fonts, Droid and others. In RHEL I have not issues with this fonts. The fonts groups are:
    <pre><nowiki>[elrengo@xpsl421x .fonts]$ ls -l
    total 272
    drwx------ 1 elrengo users 4096 Sep 8 2010 AnonymousPro-1.002.001
    drwx------ 1 elrengo users 4096 Sep 8 2010 AnonymousProMinus-1.002.001
    drwx------ 1 elrengo users 4096 Feb 27 2011 dejavu-fonts-ttf-2.33
    drwx------ 1 elrengo users 4096 Jun 10 2013 DroidFamily
    drwx------ 1 elrengo users 135168 Jun 4 2012 googlefontdirectory
    -rw------- 1 elrengo users 58464 Jun 10 2013 Inconsolata.otf
    drwx------ 1 elrengo users 65536 Oct 3 2013 Windows7Fonts
    [elrengo@xpsl421x .fonts]$ </nowiki></pre>
    But in Archlinux after fonts installation Firefox can not show fonts, and I can not write in textbox. I do:
    * Reset Firefox to defaults --> Do not works.
    * Uninstall Firefox / Re install Firefox --> Do not works.
    * Reinstall fontconfig package in Archlinux. --> Do not works.
    * Update font cache --> Do not works.
    The screenshot --> http://i.imgur.com/aIZvv6n.png
    If need it something more please let me know
    Thanks in advance!
    Kind regards

    If [https://wiki.archlinux.org/index.php/firefox#Firefox_variants Firefox ]does not anti-alias and/or hint your fonts, try to install [https://aur.archlinux.org/packages/ttf-win7-fonts/ ttf-win7-fonts] (preferred) or [https://aur.archlinux.org/packages/ttf-ms-fonts/ ttf-ms-fonts] and take a look at [https://wiki.archlinux.org/index.php/Font_configuration Font configuration].

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

  • "Open Link in new window" not working with OBIEE 10.1.3.4

    Hi All,
    Recently we upgraded from Siebel Analytics to OBIEE 10.1.3.4.
    In OBIEE Go to Settings > Administration > Managae Interactive Dashboard > Select any Dashboard > Right Click on Properties tab > Open Link in New window:
    This throws an error saying "javascript:void(null)".
    In Siebel Analytisc the above functionality used to work.
    Does anyone knows thereason behind this?
    Regards,
    Apoorv

    Get Firebug and inspect the element. You'll see that it actually is this:
    onclick="javascript:saw.runThis
    URL('saw.dll?PortalProperties&_scid=To2OnvCVXpY&PortalPath=/shared/paint/_portal/PoC\x2520FINS&Done=ManagePortals\x2526Done\x253dAdmin');return false" href="javascript:void(null)" FF doesn't even give you the "Open..." options and all IE versions as of 7 show them but actually don't do anything when you invoke them.
    Edited by: Christian Berg on Sep 9, 2009 10:36 AM

  • New Fonts for OBIEE Answers

    HI,
    We are using OBIEE 10, on Linux platform. We have an urgent requirement to utilise a new Font in the OBIEE portal. In particular, when we select a column in the Answers, we should be able to get this font in the Column Properties->Style -> Font ->Family.
    Also this should be set as the default font in the dashboard. Currently the OBIEE restricts the Font selections to default 10. I need to either add a new one , or replace existing one. Can someone suggest the files to be modified?
    Regards
    Jay

    Check this URL,
    Re: Changing Fonts to a new font not defined in OBIEE
    Also, by editing commonuitemplates.xml and new font can be added in <option>......</option> tag in some kuifont templates tag in it.
    source: how to introduce new font in to OBIEE_11g

  • Memory Leak with new Font()

    Hello all,
    Not sure if this is the right place to post this but here goes. I have a program that needs to change the font of at least 250,000 letters, however after doing this the program runs slow and laggy as if changing the fonts of each letter took up memory and never released it? Here is a compilable example, Click the button at the bottom of the window and watch the letter it is currently working on. You will notice that around 200,000 it will begin to not smoothly count up anymore but count in kind of a skipping pattern. This seems to get worse the more you do it and seems to indicate to me that something is using memory and not releasing it. I'm not sure why replacing a letter's font with a new font would cause more memory to be taken up I would think if I was doing it properly it would simply replace the old font with the new one not taking anymore memory then it did before. Here is the example: This program sometimes locks up so be prepared. If someone could maybe point out what is causing this to take up more memory after changing the fonts that would be great and hopefully find a solution :) Thanks in advance.
    -neptune692
    * To change this template, choose Tools | Templates
    * and open the template in the editor.
    package paintsurface;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.util.*;
    import java.util.List;
    public class PaintSurface implements Runnable, ActionListener {
    public static void main(String[] args) {
            SwingUtilities.invokeLater(new PaintSurface());
    List<StringState> states = new ArrayList<StringState>();
    Tableaux tableaux;
    Random random = new Random();
    Font font = new Font("Arial",Font.PLAIN,15);
    //        Point mouselocation = new Point(0,0);
    static final int WIDTH = 1000;
    static final int HEIGHT = 1000;
    JFrame frame = new JFrame();
    JButton add;
    public void run() {
            tableaux = new Tableaux();
            for (int i=250000; --i>=0;)
                    addRandom();
            frame.add(tableaux, BorderLayout.CENTER);
            add = new JButton("Change Font of letters - memory leak?");
            add.addActionListener(this);
            frame.add(add, BorderLayout.SOUTH);
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            frame.setSize(WIDTH, HEIGHT);
            frame.setLocationRelativeTo(null);
            frame.setVisible(true);
    public void actionPerformed(ActionEvent e) {
        new Thread(new ChangeFonts()).start();
    void addRandom() {
            tableaux.add(
                            Character.toString((char)('a'+random.nextInt(26))),
                            UIManager.getFont("Button.font"),
                            random.nextInt(WIDTH), random.nextInt(HEIGHT));
    //THIS CLASS SEEMS TO HAVE SOME KIND OF MEMORY LEAK I'M NOT SURE?
    class ChangeFonts implements Runnable {
        public void run() {
        Random rand = new Random();
            for(int i = 0; i<states.size(); i++) {
                font = new Font("Arial",Font.PLAIN,rand.nextInt(50));
                states.get(i).font = font;
                add.setText("Working on letter - "+i);
    class StringState extends Rectangle {
            StringState(String str, Font font, int x, int y, int w, int h) {
                    super(x, y, w, h);
                    string = str;
                    this.font = font;
            String string;
            Font font;
    class Tableaux extends JComponent {
            Tableaux() {
                    this.enableEvents(MouseEvent.MOUSE_MOTION_EVENT_MASK);
                    lagState = createState("Lag", new Font("Arial",Font.BOLD,20), 0, 0);
            protected void processMouseMotionEvent(MouseEvent e) {
                    repaint(lagState);
                    lagState.setLocation(e.getX(), e.getY());
                    repaint(lagState);
                    super.processMouseMotionEvent(e);
            StringState lagState;
            StringState createState(String str, Font font, int x, int y) {
                FontMetrics metrics = getFontMetrics(font);
                int w = metrics.stringWidth(str);
                int h = metrics.getHeight();
                return new StringState(str, font, x, y-metrics.getAscent(), w, h);
            public void add(String str, Font font, int x, int y) {
                    StringState state = createState(str, font, x, y);
                    states.add(state);
                    repaint(state);
            protected void paintComponent(Graphics g) {
                    Rectangle clip = g.getClipBounds();
                    FontMetrics metrics = g.getFontMetrics();
                    for (StringState state : states) {
                            if (state.intersects(clip)) {
                                    if (!state.font.equals(g.getFont())) {
                                            g.setFont(state.font);
                                            metrics = g.getFontMetrics();
                                    g.drawString(state.string, state.x, state.y+metrics.getAscent());
                    if (lagState.intersects(clip)) {
                    g.setColor(Color.red);
                    if (!lagState.font.equals(g.getFont())) {
                        g.setFont(lagState.font);
                        metrics = g.getFontMetrics();
                    g.drawString("Lag", lagState.x, lagState.y+metrics.getAscent());
    }Here is the block of code that I think is causing the problem:
    //THIS CLASS SEEMS TO HAVE SOME KIND OF MEMORY LEAK I'M NOT SURE?
    class ChangeFonts implements Runnable {
        public void run() {
        Random rand = new Random();
            for(int i = 0; i<states.size(); i++) {
                font = new Font("Arial",Font.PLAIN,rand.nextInt(50));
                states.get(i).font = font; // this line seems to cause the problem?
                add.setText("Working on letter - "+i);
    }

    neptune692 wrote:
    jverd wrote:
    You're creating a quarter million distinct Font objects, and obviously you must be hanging on to all of them because each character is having its font set to the newly created object. So if you have 250k chars, you're forcing it to have 250k Font objects.
    Since the only difference is that rand.nextInt(50) parameter, just pre-create 50 Font objects with 0..49, stick 'em in the corresponding elements in an array, and use rand.nextInt to select the Font object to use.That does make sense but it does that when the the program is first launched and doesn't lag. But the second and third time you change the letters font it seems to lag so if it wasn't taking up more memory the second time it should perform like it did when it first launched. I don't care to investigate any further. The real problem is almost certainly the quarter million Font objects. It could be that 250k is fine, but by the time you get to 500k, it has to do a lot of GC, and that's where the slow down is coming. You might even be able to make it work better with the code you have just by tweaking the GC parameters at startup, but I wouldn't bother. Fix the code first, and then see if you have issues.
    Does creating a new font for each of those letters not replace the old font object? If it didn't use more memory the second and third time I don't think you would see the skipping in the counter and the slowing down of the iterations. So it must be remembering some of the old font objects or am I wrong?Using new always creates a new object. When you do it the second time around, and call letter.setFont(newFont), the old Font object is eligible for GC. That doesn't mean it will be GCed right away though. The JVM can leave them all laying around until it runs out of memory, and then GC some or all of them.

  • New Font wont show in Adobe reader.

    My company is re-branding itself and part of that re-branding is having the new name in a new custom Font. But when we print our external reports to send to customers the new Font does not show. I tried adding the Font to the adobe reader Font folder but still nothing? I wish Adobe Reader would just get it's Fonts from C:Windows\Fonts\. What do I need to do?
    Donnelly James

    Sounds like you need to talk to the folks that build the application that you use to create the PDF's.
    No one here will be able to tell you how to embed fonts in that application unless you get lucky and run in to someone else that uses it. Their support would be your best bet.
    Razgreeez wrote:
    The reports are being built in program called Digital Metaphors Report Builder. We can print to a printer, text file, PDF etc. When I preview the report and print it out at a printer the font is there but not in PDF. I don't have Adobe Acrobat installed.
    I looked in the File/Properties/Font and the new Font isn't listed. Arial, Tahoma and Times New Roman.
    How do I embed the Fonts?

  • Just purchased a font from Adobe, the font shows in every program except Photoshop CS4

    I just purchased the Frutiger family of fonts from Adobe, and installed them via the Control Panel>Fonts>Install New Font.  This new font family shows up in every Windows program including Outlook and all the Office programs.  However, it doesn't shop up in Photoshop CS4 which is where I need it.  I saw similar questions with solutions that worked such as:  Copy the fonts from Windows>Fonts  to the Adobe>Fonts.  However, I don't have a Fonts folder under my Adobe folder.
    Very frustrating since I purchased this font package from Adobe.
    Any help would be appreciated.

    OpenType versions or the old Type 1 format?
    Also, you will never access any new fonts unless you exit all the Adobe applications first.
    Also, you may need to clean up one or more of the Adobe font cache files. With all Adobe applications exited, delete all files of form AdobeFnt##.lst  where ##  is a two digit number. Those files will be regenerated when you run the Adobe applications. All fonts should be found during such a "rebuild."
    Another thing to look for is whether for some reason or another, the fonts are placed outside of normal alphabetic order in the Adobe applications. This sometimes happens if the font has a non-standard character set or name.
              - Dov

  • Anyone know how to change the default font for the new pages? Apparently it does not even come up when I search the 'Help' section of Pages. The level of incompetence in this new version seems breathtaking

    I cannot find how to change the default font in the new Pages. It does not appear in the Help area when I search for it. I am never sing Helvetica for my standard documents and cannot seem to change it. What am I missing? And why does Pages help not have an easy answer?
    dan

    You open a blank template and change the font to you liking. Remember to also get all the styles changed with new font. Then Save As Template. Now you have a template with the font you like.

  • Have installed cc2014, menues are not fully visible. when changing font, system (all new sony vaio, win 8.1) crashes completely.

    have installed cc2014, menues are not fully visible. when changing font, system (all new sony vaio, win 8.1) crashes completely

    Dear Zak,
    thank you very much! Your information solved the problem immediately!
    Best regards,
    Philipp Frank
    New website
    www.philippfrank.at<http://www.philippfrank.at>
    Dipl Ing Philipp Frank
    1010 Wien
    Jakobergasse 4/14
    +43 1 513 22 83 19
    +43 650 250 5000
    [email protected]<mailto:[email protected]>
    www.philippfrank.at
    Von: Zak Williamson (Adobe)
    Gesendet: Montag, 23. Juni 2014 20:40
    An: Dipl Ing Philipp Frank
    Betreff:  have installed cc2014, menues are not fully visible. when changing font, system (all new sony vaio, win 8.1) crashes completely.
    have installed cc2014, menues are not fully visible. when changing font, system (all new sony vaio, win 8.1) crashes completely.
    created by Zak Williamson (Adobe)<https://forums.adobe.com/people/ZakWilliamson%28Adobe%29> in Help with using Adobe Muse CC - View the full discussion<https://forums.adobe.com/message/6488371#6488371>

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

  • New Key note is messing all my old presentations, changing fonts and effects!

    Recently updated? to Mavericks I found that my old Kenote presentations have significant changes in effects, transitions and fonts. Is there any way in wich I can go bak on key note? I dont want to start over all my kenotes.
    Thanks
    JUAN

    FCE V4 comes with a "lite" version of LiveType which is dramatically different to the previous version in the amount of media included.
    My suggestion would be to uninstall FCE4, (re)install the previous version, and totally complete your old projects.
    Some posters have apparently been able to install the old media along with the new media. A search of this forum might reveal the best way to do this.
    Regards. Robert.

  • New font not coming through?

    Hi
    We use reports 10g and app server/db 10g.
    I need to use a new font for our company logo. I have installed this on the server and local PC. I have installed these and then amended a text string on one report to use the new font. It appears correct in reports builder and also correct when i use the run paper layout through reports builder on my local PC the report shows with the new font.
    When i run the report from our reports server it changes the font to something else (looks like a standard forn like ariel or something).
    Im assuming the reports server does not know this new font but yet i installed it on the server that has the app server installed on. I also gave the app server a reboot just to test this but still no luck.
    Any help will be appreciated.

    It is pretty weird that it does not work since both the IDS and the AS are in a Windows environment.
    IF it is PDF, you can try something, you could configure PDF Font subsetting - this will embed the font in the generated file which would make it completely portable, you would not need to install the fonts in the client PCs.
    Try saving and opening the PDF file that is generated with Acrobat Reader, then go into File -> Properties -> Fonts
    What do you see ?
    Try also generating an XML file from your .rdf, then search for "font face"
    Did you find your new Font there ? What's the name ?
    face="Arial"
    This name "Arial" is the name of the Font as the reports is going to need in the server.
    For configuring PDF font subsetting, you can simply copy the .ttf files from the Windows Fonts folder into one folder in the REPORTS_PATH, then you go into the uifont.ali file to configure it.
    i.e.
    Arial..Italic.Bold.. = "Arialbi.ttf"
    Arial...Bold.. = "Arialb.ttf"
    Arial..Italic... = "Ariali.ttf"
    Arial..... = "Arial.ttf"
    Edited by: Rodolfo Ferrari on Jun 12, 2009 11:41 PM

  • How to change the default font (Noteworthy) in Preview Annotation Note ?

    How to change the default font (Noteworthy) in Preview > Annotation > Note ?
    Thanks for any help guys. Noteworthy is horrible, in my view. But this does not matter. I simply do not want to use it, and woudl be fine with having helvetica back as the annotation typeface.
    Neither is Preview responding to changes I attempt in the type menu, nor did I find an entry when using “defaults read com.apple.Preview” in the Terminal.
    Any idea? Cheers.

    Sorry if this doesn't apply in Mountain Lion (no way to look at ML right now), but I see this in Preview under Mavericks:
    I click the annotation button (circled in red) and draw a box. I can then change the text to any active font using the drop down menu (circled in green).

  • I'm a new MacBook owner, struggling!  Why can't I change the color of the font on emails I'm sending, can't change the Contact list to last name first.  HELP!

    How do I permanently change the color of the font for the emails I send?  How do list Contacts by LAST name, not first?  How do I put this little emoticon button on my tool bar?  THANK YOU.  saljack

    saljack wrote:
    How do I permanently change the color of the font for the emails I send?  How do list Contacts by LAST name, not first?  How do I put this little emoticon button on my tool bar?  THANK YOU.  saljack
    Order of contacts=Open contacts. Click on menu bar>preferences>general.
    What little emoticon?
    Color permanently=as far as I know, you cannot change it.
    Barry

Maybe you are looking for

  • IDOC - XI -  ANSI X12

    Hi I am working on a scenario iDOC - XI -  ANSI X12.I am following the best practices guide provided by SAP .I am using conversion agent to convert the idoc to Ansi X12 format .For that I have created a serializer and deployed that on DBservice folde

  • Email Form Options

    Hi, I think I might have posted this previously in the wrong spot, so here goes again. I have created a form in Livecycle which I would like to post on my company's intranet. My Manager has requested I make some minor changes to the form before agree

  • Corrupted images captured by new 5D Mark III

    Hi, I got two corrupted images while shooting with my new 5D Mark III..I was using 45mbps sandisk extreme SD card and the mode was only JPEG(fine). After getting two corrupted images I shoot 1k images but no problem there after..Later I copied those

  • HR MASTER DATA FOR PP

    Dear all, I am using PP transaction "CO11" for production order confirmation. In that i want to use Personnel/additional data of HR. How to configure this in HR module? I want to make use of only personnel no, name of HR master--- in PP for operator'

  • [SOLVED] Best practice on updating git-sourced packages?

    So quick question. Im maintaining an AUR package that grabs sources from git. How should I update the package? Will the package be automatically updated when the git repo has new commits, or do I have to manually increment the pkgrel variable in the