How to type vietnamese in this page?

I use facebookfirefox page. Although i had install unikey, i still can not type vietnamese in this page. So, pls tell the way to type vietnamese in this page
== This happened ==
Every time Firefox opened

After I upgraded to FF 11 I can't type Vietnamese accent anymore. It's the same installation for as long as I remember. I wonder if I just installed Comcast Guard and Norton so they tried to intercept Unikey and consider Unikey as keyboard capture.

Similar Messages

  • "Portal Content Area Builder" how to get rid of this page heading?

    "Portal Content Area Builder" how to get rid of this page heading?
    Hi All
    I have created a Single page Website..??? by using folders.
    when a user click on any link that call a folder but not a page and that folder is displayed with the layout specified in "Content Area Page" however there is no such option available to change the Heading <Title>Page title</Title> for browsers so for every folder called it displays a Oracle defined Content area page title.
    "Portal Content Area Builder"
    Is there anywork around for this.
    Thanks.
    Rakesh.

    This problem is fixed in Release 2. There is no supported workaround in 3.0.

  • How do I turn off this page

    I am completekly lost. Who can help me get baqck to the beginning? How do I turn of this page and get a home page that make sense or at least looks lke something I might understand?

    Which pages do you see?
    What is the current home page?<br />
    The default in current Firefox versions is the build-in about:home page that doesn't require web access.
    See also these articles for some suggestions:
    *https://support.mozilla.com/kb/Firefox+has+just+updated+tab+shows+each+time+you+start+Firefox
    *https://support.mozilla.com/kb/How+to+set+the+home+page - Firefox supports multiple home pages separated by '|' symbols
    *http://kb.mozillazine.org/Preferences_not_saved

  • How can I disable warning: "This page contains some SWF objects..."

    "This page contains some SWF objects that may not work properly in the most recent version of IE..."
    Is there a way to suppress this warning?! I'm doing a find and replace on an old web site, which does not pay well! and this pops up on every page. I have to click on it to continue every time. Making me mad.
    Thanks

    Thanks for answering. In my case that won't work because I'm doing a global find and replace of some text.
    I agree though, that process would eliminate the message when I have to come back to edit the site again. It's just the thought of many dozens of pages that would need it and to be honest, I'm really not feeling that motivated to do all the up front work right now
    Like I said, there should have been a setting for this...

  • How to transport code on this page to an applet?

    Hi friends..
    the following page has a program to capture images from a web-cam.. can u help me how to transport that code into an applet. So that i can import that applet into an html page, where the live video can be streamed.
    the link is :- http://forum.java.sun.com/thread.jspa?threadID=247253&start=0&tstart=0
    i tried this code..but on html page the applet is not being initialised. though compiling is giving no error. please help.
    import javax.swing.*;
    import javax.swing.event.*;
    import java.io.*;
    import javax.media.*;
    import javax.media.format.*;
    import javax.media.util.*;
    import javax.media.control.*;
    import javax.media.protocol.*;
    import java.util.*;
    import java.awt.*;
    import java.awt.image.*;
    import java.awt.event.*;
    import java.applet.*;
    import com.sun.image.codec.jpeg.*;
    public class applet extends JApplet{
       static final int    WIDTH  = 320;
        static final int    HEIGHT = 320;
        //public intoApplet d = null;
        public static void main(String args[]){
             JFrame frame = new JFrame("Code Converter");
             applet a = new applet();
             a.init();
             frame.getContentPane().add(a);
             frame.setSize(WIDTH, HEIGHT);
             frame.setVisible(true);
        public void init() {
          System.out.println("Applet initializing");
          intoApplet d = new intoApplet();
          getContentPane().add(d);
        public void start() {
            System.out.println("Applet starting");
        public void stop() {
            System.out.println("Applet stopping");
        public void destroy() {
            System.out.println("Applet destroyed");
    public class intoApplet extends JPanel //implements ActionListener
      public Player player = null;
      public CaptureDeviceInfo di = null;
      public MediaLocator ml = null;
      public JButton capture = null;
      public Buffer buf = null;
      public Image img = null;
      public VideoFormat vf = null;
      public BufferToImage btoi = null;
      //public ImagePanel imgpanel = null;
      public intoApplet()
           System.out.print("into swing...");
        setLayout(new BorderLayout());
        setSize(320,320);
        String str1 = "vfw:Logitech USB Video Camera:0";
        String str2 = "vfw:Microsoft WDM Image Capture (Win32):0";
        di = CaptureDeviceManager.getDevice(str2);
        //ml = di.getLocator();
        ml = new MediaLocator("vfw://0");
        try
          player = Manager.createRealizedPlayer(ml);
          player.start();
          Component comp;
          if ((comp = player.getVisualComponent()) != null)
            add(comp,BorderLayout.NORTH);
          //add(capture,BorderLayout.CENTER);
          //add(imgpanel,BorderLayout.SOUTH);
        catch (Exception e)
          e.printStackTrace();
    public void playerclose()
        player.close();
        player.deallocate();
    }

    i tried this code..but on html page the applet isnot
    being initialised. And what error do you get? Look at the Java console.Java Console shows no error..
    when i run the applet class on console by java applet the frame comes and works fine.. but when i do that thru html page..the appl;et is not getting displayed..
    code of html page is:-
    <HTML>
    <HEAD> <TITLE> Hello World</TITLE>
    <BODY>
    This is the applet to check swing component import:<P>
    <APPLET
    CODE = "applet.class"
    WIDTH = "320" HEIGHT = "320"
    >
    </APPLET>
    </BODY>
    </HTML>
    applet.class is placed on same directory as that of html page.

  • How to transport code on this page to applet?

    Hi friends..
    the following page has a program to capture images from a web-cam.. can u help me how to transport that code into an applet. So that i can import that applet into an html page, where the live video can be streamed.
    the link is :- http://forum.java.sun.com/thread.jspa?threadID=247253&start=0&tstart=0
    i tried this code. but on html page the code is not being initialized, though the program is getting compiled correctly.
    import javax.swing.*;
    import javax.swing.event.*;
    import java.io.*;
    import javax.media.*;
    import javax.media.format.*;
    import javax.media.util.*;
    import javax.media.control.*;
    import javax.media.protocol.*;
    import java.util.*;
    import java.awt.*;
    import java.awt.image.*;
    import java.awt.event.*;
    import java.applet.*;
    import com.sun.image.codec.jpeg.*;
    public class applet extends JApplet{
       static final int    WIDTH  = 320;
        static final int    HEIGHT = 320;
        //public intoApplet d = null;
        public static void main(String args[]){
             JFrame frame = new JFrame("Code Converter");
             applet a = new applet();
             a.init();
             frame.getContentPane().add(a);
             frame.setSize(WIDTH, HEIGHT);
             frame.setVisible(true);
        public void init() {
          System.out.println("Applet initializing");
          intoApplet d = new intoApplet();
          getContentPane().add(d);
        public void start() {
            System.out.println("Applet starting");
        public void stop() {
            System.out.println("Applet stopping");
        public void destroy() {
            System.out.println("Applet destroyed");
    public class intoApplet extends JPanel //implements ActionListener
      public Player player = null;
      public CaptureDeviceInfo di = null;
      public MediaLocator ml = null;
      public JButton capture = null;
      public Buffer buf = null;
      public Image img = null;
      public VideoFormat vf = null;
      public BufferToImage btoi = null;
      //public ImagePanel imgpanel = null;
      public intoApplet()
           System.out.print("into swing...");
        setLayout(new BorderLayout());
        setSize(320,320);
        String str1 = "vfw:Logitech USB Video Camera:0";
        String str2 = "vfw:Microsoft WDM Image Capture (Win32):0";
        di = CaptureDeviceManager.getDevice(str2);
        //ml = di.getLocator();
        ml = new MediaLocator("vfw://0");
        try
          player = Manager.createRealizedPlayer(ml);
          player.start();
          Component comp;
          if ((comp = player.getVisualComponent()) != null)
            add(comp,BorderLayout.NORTH);
          //add(capture,BorderLayout.CENTER);
          //add(imgpanel,BorderLayout.SOUTH);
        catch (Exception e)
          e.printStackTrace();
    public void playerclose()
        player.close();
        player.deallocate();
    }

    i tried this code..but on html page the applet isnot
    being initialised. And what error do you get? Look at the Java console.Java Console shows no error..
    when i run the applet class on console by java applet the frame comes and works fine.. but when i do that thru html page..the appl;et is not getting displayed..
    code of html page is:-
    <HTML>
    <HEAD> <TITLE> Hello World</TITLE>
    <BODY>
    This is the applet to check swing component import:<P>
    <APPLET
    CODE = "applet.class"
    WIDTH = "320" HEIGHT = "320"
    >
    </APPLET>
    </BODY>
    </HTML>
    applet.class is placed on same directory as that of html page.

  • How to remove "Subscribe to this page" option on bookmarked pages?

    When you have bookmarked a page, a button is displayed in the "awesome bar" that gives the option to subscribe to the page.
    Is there a way to remove this button from the toolbar?
    I hate this button being in my URL/search bar and have not been able to find a way to remove it anywhere.

    go into your about:config and filter "extensions.abhere2.bmsmenu.subscribe"
    double click and set the value to false.
    Hope this helps

  • How do I print just this page?

    In the print options, I can go to the pages section and designate the page number to print, but that requires several steps. In Word I would hit Control-P then Alt-E and the current page would print. Is there a similar option in Pages? Is it possible to make a shortcut using my F6 key? I used that shortcut a lot, so I hope you can help me with this. Thanks.

    No such thing but you might be able to create an AppleScript that identifies the current page and inserts that in the print dialog.
    MsWord is a much heftier program and tries to fit in everything plus the kitchen sink.
    I prefer a trimmer ship, which by the way is not Pages.
    Personally I would like a direct print to .pdf option everywhere in OSX.
    Peter

  • How to type fractions in iWork(Pages)?

    Hey Everybody,
    I am bascially trying to write formulas and they need to be shown in fractions and I am not able to find out. And basically the formulas are text which need written as A/B      
    Some one please help me

    1.  While in Pages, go to the Edit Menu and choose "Special Characters."
    2.  Click on the Setup and a Character Window Appears:
    3. Place a check beside "Digits 1."  This will add it to your Special Characters list. 
    4. Once added, click on the Digits 1 list.  Your options are shown.  You can drag the fraction you need onto your page or copy/paste.
    If you use fractions frequently, you can add them to your "Favorites" in the Setup of Special Characters.

  • HT5312 How do I get to this page ?

    How do I get to the security question reset page

    1)  Apple ID: All about Apple ID security questions
    If necessary
    2)  See Here... ask to speak with the Account Security Team...
    Apple ID: Contacting Apple for help with Apple ID account security
    3)  Or Email Here  >  Apple  Support  iTunes Store  Contact

  • How to remove "Firefox prevented this page from automatically reloading" message bar at top. It appeared at the same time I lost local news on my homepage. Neither Tools or Preferences seem to have a solution. Any suggestions?

    Firefox 3.6.15, Mac OS X
    There's no "options" setting in Tools.

    Do you know if that then allows the page to automatically reload or does that just get rid of the message? Thanks!

  • How to remove "About this Page" and "Privacy Statement" on a OA page

    Hi,
    How do i remove "About this Page" and "Privacy Statement" links at the bottom of an OA page and add "Close Window" link on the top right corner of OA page.
    Please help.
    Advance thank
    Pavan

    Hi,
    1. Select Personalize Page link at top right of page.
    2. Select Choose context button.
    3. In the scope drop down box select OA Footer.
    4. Click on apply.
    5. Expand privacy.
    6. Click on personalize pencil icon.
    7. Set Rendered property to false at required level.
    8. Click on apply.
    9. Click on Return to Application link.
    thanx
    Pratap

  • Everything appears in reverse that is white type on a black page how can I fix this?

    Using Acrobat reader 11.0.07 on a MacBook Air running 10.9.5.  Everything appears as white type on a black page.  It prints correctly but I cannot view it as anything but a negative.  How can I resolve this?

    First thing I would try is to update to 11.0.09.
    Does the same thing happen if you open the PDF in Adobe Reader?

  • Each time I type an apostrophe on pages it comes out as a divide sign and alters any preceding italicised text into meaningless letters and numbers. How do I change this?

    Each time I type an apostrophe on pages it comes out as a divide sign and alters any preceding italicised text into meaningless letters and numbers. How do I change this?

    Does this still happen if you set your font to Lucida Grande?
    Could you use the camera icon here to post a screen shot of how this looks with the meaningless letters and numbers?

  • Newbi Question:  How does one create a similar page to this using APEX 3.1?

    Hi,
    I am trying to create a help document with screen shoots inside our APEX web application and I am hamstrung by the type of Region and Item objects available to me. When I tried to create HTML region I was limited to how much html characters I can put in the source. When I look into the item menu nothing seems to allow me to stick in large chunk of HTML code either.
    A little searching on this forum and I came across this page: http://www.oracle.com/technology/obe/apex/apex31nf/apex31blob.htm#t
    It is exactly the type of page I want to create with lots of text and screen shots and I presume that it is built within APEX? So my questions is: How did they do this? Did they use tools available within APEX or some external tool? Was all this outputted using BLOB and Htp("") and PL/SQL? I am trying hard to avoid having to do that.
    I was also unable to stick in an in image into my page using instruction from http://download.oracle.com/docs/cd/E10513_01/doc/appdev.310/e10499/ui.htm#CBBHGJCH which left me pretty frustrated. (external amazon gif worked).
    Thanks for any help,
    Wayne

    Wayne,
    I am glad that you got images to display. I am not sure what kind of html report you want to display, there is a limit of number of characters in a region its 32767 characters, so if you want to display large html file you can create html region with no template and limit each region to 30,000 characters and create as many region as you want.
    If you want to display data from any table ( as per the first url) you can create SQL reports, something like
    select ename
         , deptno
         , sal
         , case
              when ename = 'SCOTT' then '<img src="#WORKSPACE_IMAGES#us_flag.gif" alt="Image Title">'
              when ename = 'SMITH'  then '<img src="#WORKSPACE_IMAGES#chants.gif" alt="Image Title">'
              when ename = 'MARTIN' then '<img src="#WORKSPACE_IMAGES#cloche.gif" alt="Image Title">'
              when ename = 'MILLER' then '<img src="#WORKSPACE_IMAGES#chandelles.gif" alt="Image Title">'
              when ename = 'JONES' then  '<img src="#WORKSPACE_IMAGES#shoe.gif" alt="Image Title">'
              else '<img src="#WORKSPACE_IMAGES#hallo.gif" alt="Image Title">'
         end  image
    from empThanks,
    Manish

Maybe you are looking for