N78 browser can't display bold text

I found a problem with my N78 phone. I used the Nokia 6110 Navigator to access the webmail and it used to display the new messages in bold. However, after I changed the phone to N78, it no longer able to display the new messages in bold.
I then write up a very simple HTML page to test the N78 built-in browser behaviour for bold text dislay and the result is negative. Both the normal text and bold text are displayed the same. Bold text are not bold when displayed in N78 browser.

wait for firmware update
If you find my post useful then click on
Kudos!Nokia N96 (v20.050 / RM-247)
www.shaysoft.net | Competitions!

Similar Messages

  • SuperFrench is found but this font can not display any text

    "SuperFrench" font comes from Autodesk. this fonts's real file name is supef__.ttf
    If it is placed in C:\Windows\Fonts folder then it is available for Windows native apps such as MS Excel.
    Java GraphicsEnvironment finds "SuperFrench" font
    but this font can not display any text.
    This happens in both Java6(1.6.0_34) and Java7(1.7.0_06)
    try this
    import javax.swing.*;
    import java.awt.*;
    import java.util.*;
    public class FontTest01 {
      public static void main( String[] args ){
        FontTest01 app = new FontTest01();
        app.run();
      void run() {
        String fontName = "SuperFrench"; //** SuperFrench font
        GraphicsEnvironment ge = GraphicsEnvironment.getLocalGraphicsEnvironment();
        String[] existFontNames = ge.getAvailableFontFamilyNames(Locale.ENGLISH);
        boolean fontExists = false;
        for( int i=0 ; i<existFontNames.length ; i++ ){
          if( existFontNames.equals( fontName ) ){
    fontExists = true; break;
    if( fontExists==false ){
    System.out.println( fontName +" does not exist" );
    System.exit(-1);
    JLabel label = new JLabel( "ABCDEFG" );
    Font font = new Font( fontName, Font.PLAIN, 20 );
    System.out.println( font.getFontName() );
    label.setFont( font );
    JFrame f = new JFrame();
    f.add( label );
    f.setSize( 180, 120 );
    f.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
    f.setVisible(true);
    Edited by: TadashiOhmura on 2012/06/17 23:04
    Edited by: TadashiOhmura on 2012/06/18 7:50                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    Thank you for your replay.
    I face the same trouble with JavaFX
    I report this problem into Jira and filed as RT-22641
    Some members of Oracle developer team write comments for this issue.
    http://javafx-jira.kenai.com/browse/RT-22641
    This font has some irreguler structure.
    I hope Java font system will deal with it.

  • Displaying bold text in a particular cell in ALV

    Hi,
    I am using cl_salv_table class. My requirement is to display few cells in bold based on some condition,
    we can get the column using      
    gr_p_column ?= gr_p_columns->get_column( 'MENGE' ).
    but how can we set bold text property to the cell?
    Please help me.

    SAMPLES CODES:
    [Refer to this link|https://www.sdn.sap.com/irj/scn/advancedsearch?cat=sdn_wiki&query=rajasekhar&searchmode=similar&similardocsuri=/wiki/sdn_wiki/wiki/display/snippets/top%2bof%2bpage%2band%2bend%2bof%2bpage%2bin%2bclass%2bcl_salv_table&start=1]
    Regards,
    Gurpreet

  • I can't type bold-text in Japanese using HTMLEditor

    I am using JAVAFX to develop tool.
    While I create a screen of HTMLEditor in eclipse,
    It does not be "bold-text" when I enter Japanese, although I'm pressing the "Bold-button".
    At this moment, I'm choosing the font, MS Gothic, PGothic,
    it does not be bold either.
    I can type English in bold-text, but I can't type bold-text in Japanese.
    I appreciate if you tell me the reason why this thing happens.
    Is this kind of a "bug" in the HTMLEditor?
    Or somekind of setting problem?
    http://bitwalk.sitemix.jp/java_javafx_HTMLEditor.php
    Thank you for your cooperation.

    Log a bug report against the runtime project at: http://javafx-jira.kenai.com

  • Can you display some text after you have checked a yes or no box?

    Can you display some text after you have checked a yes or no box?
    Ex:
    Yes (Please contact Bob x3-1234) only want it to appear when you check box)
    No

    Sure. If you use a field (button, text field) to display the text, the Mouse Up script of the Yes check box could be:
    getField("button1").display = event.target.value === "Yes" ? display.visible : display.hidden;
    Change "button1" to the actual name of the field and "Yes" is the export value of the Yes check box. You can use whatever you want, and you'll probably want to make the button read-only as well.

  • Please help...my browser can't display applets

    I know it might sound inept to be asking something about my mozilla browser in this forum but right now I am studying Java and using my browser to view the applet exercises I make. I am particularly in the methods section where you have to make recursions (I am using JAVA 2 how to program Third Edition by Deitel). I made my own version of the fibonacci program in the book . It has a GUI, action listener and the method where all the calculations take place. Unfortunately, when I test it on my brower, Mozilla Fireforx, it just displays the GUI and whole program does not work. The compiler, in this case javac, cannot sense anything wrong and I take it that my code is correct. However nothing still happens when I test it on my browser. As previously mentioned, it just displays the GUI and that's all. I really do not know what is wrong. Is it with my code or with the browser? Or is with the fact that I am using an outdated version of JAVA 2 how to program with a new version of J2SDK that makes my code incompatible with the new technology? please help. TY
    Here's my code:
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    public class AppletCode extends JApplet implements ActionListener {
         JLabel inputLabel, outputLabel;
         JTextField input, output;
         public void init(){
              Container c = getContentPane();
              c.setLayout(new FlowLayout());
              JLabel inputLabel = new JLabel();
              inputLabel.setText("Enter an Integer and press Enter");
              c.add(inputLabel);
              JTextField input = new JTextField(10);
              input.addActionListener(this);
              c.add(input);
              JLabel outputLabel = new JLabel();
              outputLabel.setText("Fibonacci Value is");
              c.add(outputLabel);
              JTextField output = new JTextField(20);
              output.setEditable(false);
              c.add(output);
         } // GUI
         public void actionPerformed(ActionEvent e) {
              long number, fibonacciValue;
              number = Long.parseLong(input.getText());
              fibonacciValue = fibonacci(number);
              output.setText(Long.toString(fibonacciValue));
         } // Action Listener
         public long fibonacci(long x) {
              if (x==0 || x==1)
                   return x;
              else
                   return fibonacci(x-1) + fibonacci(x-2);
         } // Fibonacci Module
    }

    I don't see anything obviously wrong with your code, but it's been a while since i coded applets, so there might still be something wrong. What exactly does not work? You see the 2 labels and the text fields? Can you enter any text into the text field? Have you looked into the Java Console wether it prints any exceptions? (and please use the [ code][ /code] tags to mark your code (without the spaces obviously))

  • Browser can't find a text file opened via the save as dialogue box

    Hi there,
    I have a servlet which outputs a file using the servlet output stream, with the following lines set:
    response.setContentType("application/msword");
    response.setHeader("Content-Disposition", "attachement; filename="+ fileName);
    servletOutStream.write(myBytes);
    servletOutStream.flush();
    It works fine for .doc files and it seems the mechanism is that it is saved to the Temporary Internet Folder and delivered from there when the user clicks on the 'open' or 'save' option in the browser popup dialogue box. However... when I try this with text files, (setting the content type to "text/plain") I get the open/save dialogue box up correctly but if I try to open the file it says it cannot find the file, and gives the path under the Temporary Interenet Folder. If I look in there the text file isn't present - though the .doc files are.
    So... it looks as if the problem is that for some reason it doesn't save the text files correctly to the Temporary Internet Folder.
    I can't deliver the text files inline as a solution as the filename is lost and it thinks it's an html file (which the client doesn't want).
    Any ideas?
    Alison

    At least also set the content length. Your browser may be configured be the default application to open textfiles. If the contentlength is not set, then most applications would refuse to open the file without choosing for 'Save' first and manually open it.

  • SharePoint RSS - Can not display bold or recognise HTML code

    ·                                                                                                                                                                                                                                                                                   Hi there
    I’m importing feeds from Google blog search; the SharePoint RSS viewer part is failing to recognise of execute HTML code in the feed title. The feed is as follows:
    <item>

                <title>
    <b>IELTS</b> Reading Test - How to Prepare | <b>IELTS</b> Preparation Tests
    </title>

                <link>
    http://www.ielts-preparation-tests.com/preparing-for-the-ielts-reading-test/
    </link>

                <description>
    Students who seek enrollment in institutions based in Australia, Britain, Ireland, New Zealand and South <b>Africa</b> need to take this exam. One million students take the <b>IELTS</b> every year and as such the competition is very high among the ...
    </description>
    <dc:publisher>IELTS Preparation Tests</dc:publisher>
    <dc:creator>admin</dc:creator>
    <dc:date>Mon, 19 Oct 2009 11:06:57 GMT</dc:date>
    </item>
    The output on SharePoint is;
    <b>IELTS</b> Reading Test - How to Prepare | <b>IELTS</b> Preparation Tests
    Monday, October 19, 2009 - Students who seek enrollment in institutions based in Australia, Britain, Ireland, New Zealand and South Africa need to take this exam. One million students take the IELTS every year and as such the competition is very high among the ...
    More...
    Note: the title doesn’t recognise the bold HTML code, is the a way to for it to display bold or to filter all HTML tags out?
    Please help.

    Hello nkokhi
    On Rss webpart, click on edit Webpart, on "Data View Properties" select "XSL Editor".
    find Tag "<xsl:value-of select="title" />" and add the line disable-output-escaping="yes",  to assume the format as "Rich Text" then the html tag will disapear.
    Example: 
    <xsl:value-of select="title" disable-output-escaping="yes"/>
    André Lage Microsoft SharePoint, CRM and Sybase Consultant
    Blog:http://aaclage.blogspot.com
    Codeplex:http://spupload.codeplex.com/http://simplecamlsearch.codeplex.com/

  • PDF can't display Chinese Text

    In Safari, I save the webpage as PDF. Then, in Acrobat X or Preview, I copy the text and Paste into other programe, like word ,etc,So,the Chinese text can't display.

    i have solve it. Just change the font.

  • Can I display formated text on a TextArea

    I am developing a chat applet. I want to display texts from chatters in a TextArea with specific colour and font. But TextArea only contain a method AppendText(String) where displaying plain text is only possible. Please anyone help me to display formatted text in a TextArea(or any relavent component).
    Thank you very much.

    You will probably want to look at JEditorPane instead.

  • How can I display Arabic text in browser

    I have MessagesBundle_ar_AE.properties file created containing key,equivalent Arabic value text. When I try to get this key value by using Bundle object.. MissingResourceException is occuring. It says can't find resource for bundle,PropertyResourceBundle for specified key, eventhough the exists in the .properties file...
    please help..

    Be sure that .property files are in the classpath.
    http://forum.java.sun.com/thread.jsp?forum=16&thread=383005

  • How can i display HTML text in a TextArea

    Hello All,
    We are developing a chat application using Java Swing and RMI with MySQL as backend.
    We have two options.The users can chat thro both browser and application(Swing GUI).
    Now when a user who chats thro a browser sends a message,the chat contents are stored in HTML format in the database (like <BR><font>R u There?</Font></BR>).When the other user happens to chat thro the application,the chat contents send by the other user has to appear in the HTML format in the TextArea of the application.So obviously the textarea shud understand the HTML and display it accordingly.
    How can i do this?Kindly give me an example with some code samples if i have to use EditorPane etc 'coz i haven't got any experience using EditorPanes.
    Thanks in advance
    Regards
    Vijayakannan

    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class Test extends JFrame {
        public Test() {
         setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
         Container content = getContentPane();
         JEditorPane jep = new JEditorPane("text/html",
                  "Joe: <font color=red>R u <b>There</b>?</Font><BR>"+
                  "Mary: <font color=green>Keep ur shorts on...</Font>");
         content.add(new JScrollPane(jep), BorderLayout.CENTER);
         setSize(200,200);
         show();
        public static void main(String[] args) { new Test(); }
    }

  • How can I display the texts that the user just typed in?

    Hello all, I am  using Captivate 5.5 and I am trying to realize this function:
    Have a text entry box for the user to type in their answers (can be a paragph and up to 400 words etc.), then the user clicks on the submit button and they will be able to read what they just typed in on the left of the screen, and the sample answer given by the course.
    In order to realize this, I placed one text entry box and make the value associate to a customized variable of "log_1". Then I have two text captions:
    one named "log_1_answer" and inside of it I put $$log_1; the other one named "log_1_sample". Both text captions are set to invisible at the enter of the slide.  Then I have the advanced action for the submit button of the text entry box as "show log_1_answer; show log_1_sample; hide text_entry_log1"
    When I previewed it, I got all logistics work. However, the texts that were shown in the text caption of log_1_answer only were only 15 letters.
    I wonder whether there is a restriction for the length of variables in Captivate that we can display? If so, is there other possible ways that I can realize what I want to do?
    Thanks for any suggestions.
    Here is the screenshot of my stage: the biggest white one with the submit button is the text entry box. The box with red borders is the display box, and the blue gray one on the right is to show the samle answer by the instructor.

    Hello,
    When you insert the user variable, watch the length in the dialog box. Default is indeed 15 characters, you'll have to change that as I did in this example. Too bad, you cannot change it after inserting the variable.
    Lilybiri

  • Can't display Persian text in JEditorPane

    Hi
    I created html pages with Persian and English text. It displays Persian characters with no problem, however when i get the local html file to display in JEditorPane the Persian chracters appear as ????
    can any one help?

    I installed the persian font and thats how i get the html file
    ep = new JEditorPane();
              ep.setEditable(false);
              ep.setFont(new java.awt.Font("BCompaBd",java.awt.Font.PLAIN,18));
              ep.setContentType("text/rtf");
              URL url = PersianTutor.class.getResource("Copyright.html");
              try {
                   ep.setPage(url);
              catch (IOException e) {
         e.printStackTrace();
         JScrollPane jp = new JScrollPane(ep);
    jp.setPreferredSize(new Dimension (500, 500));
    ep.addHyperlinkListener(new Link(ep));

  • How to display bold text in JTextPane and how to get them?

    I need show some fonted text like BOLD, UNDER LINE, can some body tell how to do it? for example, how to show the following sentences?
    "This is <b><u><i>This is a test of the formatting option</b></i></u> end of"
    in JTextPane?

    Hi Juergen,
    I found Your blog and found it  really interesting... though I was not able to use it: I (like Jun Li is asking, I guess) need to use a dynamic text, containing formatting informations (according the xhtml syntax).
    I tried to pass it to the form by an ABAP-dictionary based interface and by means of the context (in a webdynpro page), but both tries failed.
    Some suggestion will be greatly appreciated.
    Thankyou
    Simone

Maybe you are looking for