Help N8 Font Zoomer application ruined Font

hi,
I used the Font Zoomer application to increase my phone font size to 140%.
But when i reset it to 100%, i still feel that it has a bold kind of effect, as every thing feels different.
I am uploading images of my home screen and some homescreen from different mobiles. Please check if you feel some difference and tell me how to recitify this error.
If you look in my homescreen the clock number "11:39" seem thick and bold while in other home screen the number are not bold.
Also if you see the date on " this is my home screen.jpg", you see it is bold.
While in other images you see that it is not bold.
Please help!
Thank you in advance.
Sailare
Solved!
Go to Solution.
Attachments:
This my home screen.jpg ‏36 KB
Foursquare-for-Symbian-Home-Screen-Widget.jpg ‏73 KB
data counter widget symbian^3 free download nokia n8.jpg ‏34 KB

@sailare
Has novelty worn off and you want to un-install this application?
Have to say that it is strange that Psiloc Font Magnifier has not been released for Symbian^3 OS yet, although believe on some Symbian Anna firmware versions so whether there can be issues magnifying I don't know.
You are correct that still not as default comparing these two screenshots:
Happy to have helped forum with a Support Ratio = 42.5

Similar Messages

  • Font zoomer bug..

    Hello everybody,
    I just downloaded the font zoomer app for my 603 nokia belle fp2. After changing the font and rebooting it.. Everythng worked good except for whatsapp. The emotions are appeared to be half. Awaiting a solution.
    Solved!
    Go to Solution.

    If Whatsapp essential then un-install Font Zoomer application as you can't always expect third party applications to be compatible with each other.
    Happy to have helped forum in a small way with a Support Ratio = 37.0

  • Somyac Font Zoomer ruined my font size??

    I have a nokia n8 with anna. I recently installed font zoomer 3.20 full version. From there i notice a bug (wheneven in the photo gallery the options/exit buttons are in black instead of white making them impossible to see on a black background) so i uninstalled the font zoomer app.
    once uninstalled i restarted my phone only to see that my font size had shrunk. Large font was now normal size. Normal font was now small size. and small font was now extra small size. I have tried re-installing and hitting restore font size and uninstalling font zoomer at least 15 different ways with no success. Along with messing with the font settings in messaging>options>font size and messing with settings>phone>display>font size with no success. And have also did the soft battery reset of holding the top button down for 10 seconds. none of this worked. 
    Is there any files or something I could delete or do to fix my issue without hard resetting the phone?? Thanks!
    Solved!
    Go to Solution.

    Though the Hard Reset wipes everything from the Phone memory only,you may require to re-install some of the applications that are installed on your Memory Card because the attributes if any that gets created in the Phone memory to run these gets erased too.
    Most probably, re-installing the Firmware sounds a better option, though a Back-up is always recommended...

  • Setting application default font

    I have tried to search the Sun Java site for detailed info on this but haven't got anywhere.
    I have an application (Java 1.3) which will be hosted on a UNIX JVM, but displayed on a Windows2000 m/c. The only LookAndFeel available is the Metal one, and the default font is a rather chunky Dialog font.
    I want a font more like the W2000 font (arial or helvetica I think).
    Is it possible to change this in the UIManager/LookAndFeel?
    I have seen some talk in similar threads about discovering font property keys, thne using these to ally a Font object to a certain class of component (e.g labels, panels etc).
    Has anyone done anything similar, and if so can you please spell it out for me!
    Kind regards,
    Dave

    I took a little bit from both of the examples and I put together a new class that allows the user to choose what font to apply to all or, individual components. I thought that it might be helpful to other people.
    enjoy :)
    * <p>Title: </p>
    * <p>Description: </p>
    * <p>Copyright: Copyright (c) 2002</p>
    * <p>Company: NeoCore Inc</p>
    * <p>Based on code by: Andrew Malcolm</p>
    * @author Sandor Dornbush
    * @version 1.0
    package com.neocore.xmsApp;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.io.*;
    import java.util.*;
    import javax.swing.plaf.*;
    public class PLAFTest extends JFrame {
    JPanel main = new JPanel();
    JLabel jLabel1 = new JLabel();
    JTextField jTextField1 = new JTextField();
    JButton exampleButton = new JButton();
    JPanel jPanel2 = new JPanel();
    JScrollPane m_jScrollPaneFonts = new JScrollPane();
    JList fontsList = new JList();
    JButton applyButton = new JButton("Apply");
    ButtonGroup buttonGroup1 = new ButtonGroup();
    JRadioButton m_jRadioButtonPlain = new JRadioButton();
    JRadioButton m_jRadioButtonBold = new JRadioButton();
    JRadioButton m_jRadioButtonItalic = new JRadioButton();
    JTextField m_jTextFieldSize = new JTextField();
    JLabel jLabel2 = new JLabel();
    private String[] components;
    JList componentList = new JList();
    public PLAFTest() {
    try {
    layoutComponents();
    addActionListeners();
    catch(Exception e) {
    e.printStackTrace();
    pack();
    GraphicsEnvironment graphicsEnvironment=GraphicsEnvironment.getLocalGraphicsEnvironment();
    String[] fontNames=graphicsEnvironment.getAvailableFontFamilyNames();
    fontsList.setListData(fontNames);
    UIDefaults defaults = UIManager.getDefaults();
    // Build of Map of attributes for each component
    Enumeration enum = defaults.keys();
    Vector v = new Vector();
    v.add("All");
    for(int i=1; enum.hasMoreElements(); i++) {
    Object key = enum.nextElement();
    String key_s = key.toString();
    if(key_s.endsWith(".font") &&
    !key_s.startsWith("class") &&
    !key_s.startsWith("javax")) {
    int index = key_s.indexOf(".font");
    String s = key_s.substring(0,index);
    v.add(s);
    components = (String[]) v.toArray(new String[0]);
    componentList.setListData(components);
    m_jTextFieldSize.setText("12");
    m_jRadioButtonPlain.setSelected(true);
    void this_windowClosing(WindowEvent e) {
    close();
    void close() {
    System.exit(0);
    public static void main(String[] args) {
    try {
    UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
    FontUIResource font=(FontUIResource)UIManager.get("TextField.font");
    PLAFTest plafTest=new PLAFTest();
    if( font.isPlain()) plafTest.setTitle("PLAF "+font.getFontName()+" "+font.getSize()+" PLAIN");
    if( font.isBold()) plafTest.setTitle("PLAF "+font.getFontName()+" "+font.getSize()+" BOLD");
    if( font.isItalic()) plafTest.setTitle("PLAF "+font.getFontName()+" "+font.getSize()+" ITALIC");
    plafTest.show();
    catch(Exception e) {
    e.printStackTrace();
    private void layoutComponents() {
    JPanel content = (JPanel)getContentPane();
    content.setLayout(new BorderLayout());
    JPanel top = new JPanel(new GridLayout(1,3));
    // pick the font
    m_jScrollPaneFonts.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);
    m_jScrollPaneFonts.setBorder(BorderFactory.createTitledBorder("Choose Font:"));
    top.add(m_jScrollPaneFonts);
    m_jRadioButtonPlain.setText("Plain");
    m_jRadioButtonBold.setText("Bold");
    m_jRadioButtonItalic.setText("Italic");
    // pick the component to apply it to
    JScrollPane scrolls = new JScrollPane(componentList);
    scrolls.setBorder(BorderFactory.createTitledBorder("Choose Component to Apply to:"));
    top.add(scrolls);
    // all of the example components
    JPanel examples = new JPanel(new GridLayout(0,1));
    jLabel1.setText("Label");
    examples.add(jLabel1);
    jTextField1.setText("TextField");
    examples.add(jTextField1);
    examples.add(exampleButton);
    exampleButton.setText("Button");
    examples.setBorder(BorderFactory.createEtchedBorder());
    top.add(examples);
    content.add(top,"Center");
    // all the stuff on the bottom
    JPanel bottom = new JPanel(new FlowLayout(FlowLayout.LEFT));
    bottom.add(m_jRadioButtonItalic);
    bottom.add(m_jRadioButtonBold);
    bottom.add(m_jRadioButtonPlain);
    bottom.add(applyButton);
    bottom.add(jLabel2);
    bottom.add(m_jTextFieldSize);
    content.add(bottom,"South");
    m_jScrollPaneFonts.getViewport().add(fontsList, null);
    buttonGroup1.add(m_jRadioButtonItalic);
    buttonGroup1.add(m_jRadioButtonBold);
    buttonGroup1.add(m_jRadioButtonPlain);
    private void addActionListeners() {
    this.addWindowListener(new java.awt.event.WindowAdapter() {
    public void windowClosing(WindowEvent e) {
    this_windowClosing(e);
    applyButton.addActionListener(new java.awt.event.ActionListener() {
    public void actionPerformed(ActionEvent e) {
    applyButtonActionPerformed(e);
    void applyButtonActionPerformed(ActionEvent e) {
    try {
    Object o =fontsList.getSelectedValue();
    if(o==null)
    return;
    String fontname=(String)o;
    o = componentList.getSelectedValue();
    if(o==null){
    return;
    String componentName = (String)o;
    int fontsize=12;
    try {
    fontsize=Integer.parseInt(m_jTextFieldSize.getText());
    } catch(Exception ex) {
    ex.printStackTrace();
    return;
    int fontstyle=Font.PLAIN;
    if(m_jRadioButtonPlain.isSelected()) {
    fontstyle=Font.PLAIN;
    else if(m_jRadioButtonBold.isSelected()) {
    fontstyle=Font.BOLD;
    else if(m_jRadioButtonItalic.isSelected()) {
    fontstyle=Font.ITALIC;
    FontUIResource font=new FontUIResource(fontname,fontstyle,fontsize);
    if(componentName.equals("All")) {
    for(int i=1; i<components.length; i++)
    UIManager.put( components[i] + ".font",font);
    } else {
    UIManager.put( componentName + ".font",font);
    switch(fontstyle) {
    case Font.PLAIN: setTitle("PLAF "+fontname+" "+fontsize+" PLAIN"); break;
    case Font.BOLD: setTitle("PLAF "+fontname+" "+fontsize+" BOLD"); break;
    case Font.ITALIC: setTitle("PLAF "+fontname+" "+fontsize+" ITALIC"); break;
    SwingUtilities.updateComponentTreeUI(this);
    catch(Exception ex) {
    ex.printStackTrace();
    }

  • Font Management Application

    Hi,
    I work for a small design company (of 4 people) and we are looking for a font management system that will connect over our personal server.
    This way we can share all the fonts we download etc...
    Can anyone suggest an application that isn't too expensive? The only ones we've found are £1,000 or more.
    Thanks

    A font server ideally stores the organization's entire font collection. The way that fonts are deployed from the server to the client varies by how each server is configured.
    All of the servers will have a client application that connects to the server and includes auto-activation plug-ins for professional design applications. This client also allows the ability to preview, browse and search the font collection (whether the fonts are installed or not).
    For example, with Universal Type Server, fonts can be replicated from the server to the client in three ways:
    1. ALL - all fonts that the end user has access to (permissions controlled by the admin) are delivered to the end user when she connects
    2. On-Demand - fonts are deployed to the end user only when activated, or previewed, and are cleared off of the end user's machine when not in use.
    3. On-Demand local cache - fonts are deployed to the end user when required, and are cached for future use.
    With many agencies having font collections that run into the tens of thousands, you can see how choosing the right setup can be critical.
    Hopefull this helps clarify how font servers work.

  • Clean and tidy fonts between application 1.1.1 and 10G

    i am testing Apllication Server 10G on forms and i have noticed a differnce between the clean and tidy fonts that are in application 1.1.1 and forms 10g.
    in application 1.1.1 the fonts visualized when i run forms on the application are very clean and tidy (i use standard arial fonts)
    in application 10g the same froms visualized the fonts are NOT clean and tidy and it is difficul to view !!!
    What kind of problem is this ???
    The situation is worst than the old version or i have forgotten some thing ???
    The installation is a standard installation !!!
    Than'ks for all answer !!!

    Hello Rajesh,
    we are speaking of high end routers that are expected to process tens of thousands of flows per second even just differentiating on source and destination ip addresses there should be enough variety in your traffic to use the parallel CEF links in a fair way.
    CEF uses an EXOR of ip source and ip destination and an hash seed that changes only when the system is reloaded.
    etherchannel can use EXOR of different fields:
    MAC SA exor MAC DA
    IP SA exor IP DA
    L4 SA port exor L4 DA port
    but only one of them applies to a type of traffic at a specific time.
    Or you expect a few very high volume flows on the links (DR or DB synchronization just to say)
    So to answer your question, unless used for connecting two data centers, I don't expect to gain in fairness by using a bundle.
    Hope to help
    Giuseppe

  • Help: Every time I do something in Font Book, default browser fonts get messed up

    Every time I change anything in Font Book (enable, disable fonts for example) all my international default fonts in FireFox and in Safari get so messed up, that it's hard to read sometimes. The default fonts suddenly become substituted by other fonts. I tried completely reinstalling the system fonts folder (fetched it from MAC OSX installation CD) but no result. I tried disabling all the custom fonts, and then enabling again the ones I need - didn't help.
    Every time this happens, I need to  restart my Mac in Safe Mode, and restart again, so that it deletes it's font cache. Then all is Ok, until the next time I do anything in Font book.
    This is really annoying, please help!
    Thanks

    I'd suspect maybe RAM then.
    Boot off your *original* Install Disk while holding down the *d key*, (not c key), then run the extended Apple Hardware Test. Some disks require you to use the Option key at bootup to select AHT.
    The Memory test can really only be trusted if it finds a problem, not if it doesn't find a problem.
    Memtest OS X...
    http://www.memtestosx.org/joomla/index.php
    Rember is a freeware GUI for the memtest ...
    http://tech.kateva.org/2005/10/rember-freeware-memory-test-utility.html

  • Please Help me fix the css for font colors in this menu!

    I have finally figured out how to make my drop down menu work, but I need some help troubleshooting this code. I have fiddled with the code for several hours and have still been unable to fix it. My issue is that I have been unable to distinguish between the top level links and the dropdown menu links. I want the dropdown menu links to be a light cream color. However, they are being displayed as the same color as the hover color.
    Here is the webpage loaded online: www.theriveroverlook.com/Trial.html
    If you hover over "Accomodations", you will see the issue. The green color of the hovered links is also being displayed in the lower level menu. This makes them unable to be read easily and presents a problem.
    Here is applicable css code:
    body {
               width:1170px;
               height:1300px;
               background-image:url(BackgroundImage.jpg);
    background-repeat:no-repeat;
    padding-left:0px;
    padding-right:0px;
    padding-top:0px;
    /* BEGIN HORIZONTAL DROP-MENU */
    #navcontainer {
              margin-left:0px;
              padding-left:0px;
              margin-top:200px;      
              background-image:url(MenuBarFINAL.png);
              background-repeat: no-repeat;
              height: 192px;
                          width:1170;
    nav {
                           font-size:22px;
                           font:"goudy-bookletter-1911";
                           font-weight:500;
              text-align: left;
              padding-top: 65px;
                          margin-left:0px;
                          padding-left:0px;
    nav ul ul {
              display: none;
    nav ul li:hover > ul {
              display: block;
    nav ul {
                                  margin-left:0px;
              padding: 0 0px;
              list-style: none;
              display: inline-table;
    /*Top level nav spacing, listing*/
    nav ul li {
              float: left;
                           margin-left:0px;
    nav ul li:hover a {color:#060;}
    nav ul li:active a {color:#300;}
    nav ul li:visited a {color:#900;}
    /*top level text display*/
    nav ul li a {
              display:inline;
              text-decoration: none;
                          color:#55390e; 
    ul.accomdrop a {
              color:#fbf1cc;
    #accomdrop {
                      background-image:url(dropdownpng.png);
                                  margin-top: 13px;
                                  width: 155px;
                                  padding-bottom: 69px;
                                  background-repeat:no-repeat;
    nav ul ul li {
                                  font-size:18px;
                                  font-weight: 100;
              float: none;
                          color:#e4ddc8;
    #home {
              margin-left: 75px;
    #accom {
              margin-left: 35px;
              width: 120 px;
              padding-right: 25px;
    #holston {
              padding-top: 10px;
              padding-bottom:10px;
              padding-left: 17px;
              word-wrap:normal;
              text-align:center;
              width:120px;
    #tennessee {
              padding-top: 10px;
              padding-bottom: 15px;
              padding-left:17px;
              word-wrap: normal;
              text-align:center;
              width: 120px;
    #french {
              padding-top: 8px;
              padding-bottom: 10px;
              padding-left: 17px;
              word-wrap:normal;
              text-align:center;
              width: 120px;
    #amenities {
              margin-left: 15px;
              width: 110px;
    #packages {
              margin-left: 285px;
              width:120px;
    #packdrop {
              background-image:url(dropdownpng2.png);
              margin-left:-35px;
              margin-top: 13px;
                                  width: 155px;
                                  padding-bottom: 80px;
                                  background-repeat:no-repeat;
    #romance {
                        padding-top: 5px;
              padding-bottom:8px;
              padding-left: 2px;
              word-wrap:normal;
              text-align:center;
              width:150px;
    #golf {
              padding-top: 15px;
              padding-bottom:12px;
              padding-left:2px;
              word-wrap:normal;
              text-align:center;
              width: 150px;
    #photo {
              padding-top: 5px;
              padding-bottom:13px;
              padding-left:2px;
              word-wrap:normal;
              text-align:center;
              width:150px;
    #cook {padding-top: 7px;
              padding-bottom:10px;
              padding-left:2px;
              word-wrap:normal;
              text-align:center;
              width:150px;
    #fish {padding-top: 10px;
              padding-bottom:10px;
              padding-left:2px;
              word-wrap:normal;
              text-align:center;
              width:150px;
    #directions {
              margin-left: 20px;
    I really appreciate any help you can give me! Sometimes, you stare at something so long that you can't see the obvious problem before you!
    Jaime

    See if this helps:
    http://alt-web.com/DEMOS/CSS-Multi-colored-drop-menu.shtml
    Nancy O.

  • Global Default Font for Application

    Hi,
    I'm using flash builder 4.5 and I would like to set a custom font as the default font for the entire application.
    I've tried setting fontFamily="myCustomEmbeddedFont" in the main application with no success.
    Is there a spot that I can declare a custom embedded font and then set it to be the global default font for the entire application?
    Thanks

    Hi Flex harUI,
    That doesnt work... I also tried fontFamily: myCentGoth;
    global
        selection-color: #950000;
        font-family: myCentGoth; 
    @font-face {
        src: url("assets/GOTHIC.TTF");
        fontFamily: myCentGoth;
        embedAsCFF: true;
        fontWeight: normal;
    @font-face {
        src: url("assets/GOTHICB.TTF");
        fontWeight: bold;
        fontFamily: myCentGoth;
        embedAsCFF: true;
    @font-face {
        src: url("assets/GOTHICBI.TTF");
        fontWeight: bold;
        fontStyle: italic;
        fontFamily: myCentGoth;
        embedAsCFF: true;
    @font-face {
        src: url("assets/GOTHICI.TTF");
        fontStyle: italic;
        fontFamily: myCentGoth;
        embedAsCFF: true;
        fontWeight: normal;

  • I am looking for a software to help me write in Ethiopic (Amharic) fonts just as I can using Tavultesoft keyman for Windows. Help?

    I am looking for a software to help me write in Ethiopic (Amharic) fonts the same way I use Tavultesoft Keyman in Windows. Can someone help?

    RMMT wrote:
    Try putting Summer Institute for Linguistics into Google and see if they have an Amharic font for you.
    Or just click on the url I provided earlier, which has a link to the exact SIL page.
    OS X already has an Amharic font, Kefa.  What you really need from SIL is the keyboard.

  • Bundle font with application

    This is probably an easy one.
    I have got a font that we purchased online. It's a non-standard font.
    I use it in my application.
    How do I package this font with the application so that everyone can see it regardless of their browser?
    Thanks!
    Emma

    IMHO, it may not be easy. Browsers display HTML using the fonts installed on the user's system. Also, browsers usually allow the users to override the document settings and choose their own font preferences.
    - Microsoft provides a web embedding font tool (WEFT): http://www.microsoft.com/typography/web/embedding/. But this is non-standard and will not work on other browsers.
    - You can use programs like Flash. Programs like Flash are plugins/addons to the browser and perform their own rendering.
    - You can provide the pages which needs to be in a specific font as an image in your application. (Run the page on a machine which has the fonts installed and capture the image). Including the pages as images is in a way taking over the rendering of HTML from the browser...
    If HTML needs to be displayed in a custom font, the application can provide links to the font file and provide (platform-specific) instructions on manually installing the font and setting the browser preferences correctly. The browser will also need to be likely closed and restarted for the changes to take effect...

  • My Font Book application has been deleted, How can I replace it?

    Hi;
    My Font Book application has accidentally been deleted, How can I easily replace it? Cannot find a download for it on Apples website?
    Thank You!
    Paul

    Welcome to Apple Discussions, Paul.
    You can use Pacifist to extract and install just that application from your install disks.
    -mj

  • Installing fonts through application.

    Hi Friends,
               I done a mac application for installing the fonts in Users/Library/Fonts/ and /Library/Fonts/ (Local). Whether it is correct according to the apple guidelines? whether this get approved in apple store ?

    Please follow the instructions from Siebel Bookshelf - SiebInstWIN.pdf. You can also refer to Alex Hansall's book which was published quite recently.

  • Application Header Font

    How can we change the Application Name Font and color ?
    Yogesh

    I got the solution.
    Shared components\ Application Definition \ Logo Details..
    Yogesh

  • Zav 9 application and fonts

    Hi all,
    I have a problem with fonts and Zav applications, setup is like this. Build pc does not have specific font, user pc has.
    Problem is when the user open a indesign file, the user gets a error message stating something like "Missing font, document blah.indd, the font is replaced with a standard font".
    If I look in the specification for the application the font folder is set to merge, but all files in the font folder is set to full isolation. I guess that is the normal way to do things.
    If things was working the way that I thought then this meant that isolate the files with same name in the folder but merge all other files from guest pc.
    Is zav unable to pick up fonts from guest systems?
    Is the only way to solve this to install all fonts that clients are using on build pc?
    All replys are welcome.
    best regards
    Lennart

    Include the font _inside_ your build, so install during the snapshot, then it doesn't matter if the font is already there or not if you set the folder to full isolation.

Maybe you are looking for

  • Reg: Batch determination

    hai , while doing the G.I (goods issue) for batch determination material ,i want the system to take automaticaly from  the stock of another batch . for this where we have to configure the settings in  batch determination . For example : G.I is 100 pc

  • Need a BADI for Manipulating Purchase Order Payment Terms?

    Anybody know of one? We are on 4.6C....Thank-You.

  • E-mail pattern for self registration screen

    Hello, We are using WAS version 7.01 SP3 . We configured the UME to enable self registration. The generated password sent via Email and everything working correct. The only problem is that the user can use wrong E-mail pattern and the creation proces

  • Help Required in Converting datatype from Microsoft SQL To Oracle

    I Have one Table in Microsoft SQL, Create Table sk_a(number(1000,1)); Now I want to create the same table with similar column in Oracle, but Oracle datatype precision is only max 38, so please let me know the best way to do it, Thanks, Sunil . N

  • How to connect computer to T410 to see the screen?

    Hi, I wonder if it would be possible to connect another computer to my Lenovo T410 via VGA cable so I would be able to change the video input and see the screen of another computer...