How to unfade a language flag on drop-down menu

Please help me reolve this issues--the flags work only for typing, but not searching the Internet etc.
get faded/inactive languages except English (main)

thefixer101 wrote:
Please help me
Your issue has nothing to do with the Pages app, which is what this forum is devoted to.  You have already asked in the the proper forum here:
https://discussions.apple.com/thread/4507375

Similar Messages

  • How do I get the Back Button drop down menu back?

    When surfing in a tab there used to be a drop down menu next to the forward and back buttons. It was a little tiny triangle looking arrow. This was really useful and needed. It is gone in Firefox 4 as far as I can see. I am using the default 4.0 Theme. If it is not there anymore I will have to go going back to 3.16 if the drop down menu is gone. Thanks for any help.

    ''How do I get the Back Button drop down menu back?''
    * "'''Back/forward dropmarker'''" extension<br>https://addons.mozilla.org/firefox/addon/backforward-dropmarker/
    I do prefer Right-click on tab for tab history, or hold a couple of seconds, as the drop-down marker takes up space and had been removing it myself. Although I think it should have been an option.

  • Language & Formatting's Drop-Down Menu

    I wish to upgrade my FormsCentral's Account, but unfortunately I can't find Arabic Language in the drop-down menu. Is it possible to add Arabic language?.
    Please help, I really do need this Language before upgrading.

    Hi,
      FormsCentral does not support Arabic language at this moment.
    Thanks,
    Lucia

  • No languages visible in drop down menu for spelling under preferences

    My IT department just gave me a new computer and we downloaded a copy of Dreamweaver 4 (we use this version for various reasons although it is old). When I went tot he preferences, under 'General' and 'Spelling Dictionary' the drop down menu is blank and I cannot select anything. The spell checker works but I no longer get the red squiggly line under spelling errors when working on a web page (like you get in a Word document). I don't know how to get this feature back.

    Spell check in DW, at least the built in spell checker, is a manual process with a dialogue pop up that allows you to Ignore, Change, Ignore All or Change All on a word by word basis. There's never been a live red squiggly line like Word, and just about every other program under the sun, as far back as at least DWCS3 (the oldest version I've used).
    You should still have a little over a dozen options in the language drop-down though.
    I'd try clearing the cache/personal config file for the program: Deleting a corrupted cache file
    Then restore preferences if that doesn't work: Restore preferences | Dreamweaver CS4, CS5, CS5.5, CS6

  • When I delete a name from the address book it does not delete it from the drop down name menu when forwarding a message. How do I remove it from the drop down menu?

    When I delete a name from Address Book it is not removed from the name drop down list when forwarding a message. How can I remove it from the drop down list?

    In Mail go to the Window Menu and select Previous Recipients. Deleting entries from there won't delete them from your Address Book.

  • How to get rid of stocks on drop down menu

    I would like to get rid of the stocks on the drop down menu on my ipod 5g, running ios 7. Does anyone know how? Also, the weather disappeared from my drop down menu.

    now your talking,,thank you very much!!

  • In Mail 3.6 how can I delete address from the drop down menu?

    When I update an email address in the Address Book, the drop down menu in a new email is still the old address.

    I think I figured it out. I have to click on the arrow beside the smart address in a new email and delete it there. I tried removing previous recipients but without success. I'm not sure what the name of my software is. Maybe snow leopard. How can I find that?
    Thanks for the suggestion and it probably helped a lot of other users and would have helped me if I knew the software.

  • How to hide top hits, bookmarks & history drop down menu when typing in safari search bar?

    how do I hide top hits, bookmarks & history drop down menu when typing in safari search bar?

    Not completely.
    In Safari > Preferences > Privacy > Check both Do not preload top hits in the background & Prevent earch engine from providing suggestions.
    This will eliminate top hits and search engine suggestions.
    I am not sure about the rest.
    As far as History, I guess you could clear it and use Private Browsing.
    Bookmarks, I don't think there is anything you can do about that besides removing them.

  • How do I get the VISA resource drop down menu to be auto populated in my stand alone application (exe file)?

    Hi all,
    Here's a hopefully simple question.
    I am building an application (i.e. an exe file) from a simple program which use VISA to read and write to a RS-232 com port. When I run it before building the application everything works fine and the VISA resource control, which is a drop down menu, is automatically populated with available com ports. When I run the application on a computer without LabVIEW installed nothing appears in this window. I have made an installer which includes NI LabVIEW Rutime Engine 8.5, NI Measurement & Automation Explorer 4.3 and NI-DAQmx 8.6.1. Is there anything else I need to include? Any specific settings I need to do when I build the exe-file?
    I use LabVIEW 8.5.
    Thank you.
    Solved!
    Go to Solution.

    DAQmx is only for NI DAQ cards so I'm not sure why you installed that. The driver for VISA applications is NI-VISA (surprise!)
    Add the NI-VISA run-time to your installer.

  • How to create a button with the drop-down menu?

    I want to create a button with the drop-down menu, which is like the 'back' on the tollbar in IE. I heard JPopupMenu can reach the certain result, but the button hadn't a down arrow. Who can help me?

    i have made something like this :
    //======================================================================
    package com.ju.guiutils
    import java.awt.*;
    import java.awt.event.*;
    import java.net.URL;
    import java.util.Vector;
    import javax.swing.*;
    import javax.swing.border.*;
    import javax.swing.event.*;
    import javax.swing.plaf.basic.BasicComboBoxUI;
    * @version 1.0 14/04/02
    * @author Syed Arshad Ali <br> [email protected]<br>
    * <B>Usage : </B> ButtonsCombo basically performs function button + JComboBox, if we have different options for
    * <BR>same button then we can use this ButtonsCombo.
    *<BR> By the way there is no button at all in <I>ButtonsCombo</I>
    public class ButtonsCombo extends JComboBox {
    //===================================================================================
    * Create ButtonsCombo with default combobox model
    public ButtonsCombo () {
    super ();
    init ();
    //===================================================================================
    * Creates a ButtonsCombo that takes it's items from an existing ComboBoxModel.
    public ButtonsCombo ( ComboBoxModel model ) {
    super ( model );
    init ();
    //===================================================================================
    * Creates a ButtonsCombo that contains the elements in the specified array.
    public ButtonsCombo ( Object [] items ) {
    super ( items );
    init ();
    //===================================================================================
    * Creates a ButtonsCombo that contains the elements in the specified Vector.
    public ButtonsCombo ( Vector items ) {
    super ( items );
    init ();
    //===================================================================================
    private void init () {
    setBorder ( BorderFactory.createBevelBorder ( BevelBorder.RAISED ) );
    setRenderer ( new ComboRenderer() );
    setUI ( new ComboUI() );
    addMouseListener ( new ComboMouseListener() );
    //===================================================================================
    * Set items for ButtonsCombo in the specified array
    public void setItems ( Object [] items ) {
    setModel ( new DefaultComboBoxModel( items ) );
    //```````````````````````````````````````````````````````````````````````````````````
    * Set items for ButtonsCombo in the specified Vector
    public void setItems ( Vector items ) {
    setModel ( new DefaultComboBoxModel( items ) );
    //```````````````````````````````````````````````````````````````````````````````````
    * Get current items in a array
    public Object [] getItemsArray () {
    ComboBoxModel model = this.getModel ();
    if ( model != null ) {
    int size = model.getSize ();
    if ( size > 0 ) {
    Object [] items = new Object[ size ];
    for ( int i = 0; i < size; i++ ) {
    items[ i ] = model.getElementAt ( i );
    return items;
    return null;
    //```````````````````````````````````````````````````````````````````````````````````
    * Get current items in a Vector
    public Vector getItemsVector () {
    ComboBoxModel model = this.getModel ();
    if ( model != null ) {
    int size = model.getSize ();
    if ( size > 0 ) {
    Vector itemsVec = new Vector();
    for ( int i = 0; i < size; i++ ) {
    itemsVec.addElement ( model.getElementAt ( i ) );
    return itemsVec;
    return null;
    //===================================================================================
    class ComboMouseListener extends MouseAdapter {
    public void mouseClicked ( MouseEvent me ) {
    ButtonsCombo.this.hidePopup ();
    public void mousePressed ( MouseEvent me ) {
    ButtonsCombo.this.hidePopup ();
    ButtonsCombo.this.setBorder ( BorderFactory.createBevelBorder ( BevelBorder.LOWERED ) );
    public void mouseReleased ( MouseEvent me ) {
    ButtonsCombo.this.hidePopup ();
    ButtonsCombo.this.setBorder ( BorderFactory.createBevelBorder ( BevelBorder.RAISED ) );
    //===================================================================================
    class ComboRenderer extends JLabel implements ListCellRenderer {
    //````````````````````````````````````````````````
    public ComboRenderer () {
    setOpaque ( true );
    //````````````````````````````````````````````````
    public Component getListCellRendererComponent ( JList list, Object value, int index, boolean isSelected, boolean cellHasFocus ) {
    setBackground ( isSelected ? Color.cyan : Color.white );
    setForeground ( isSelected ? Color.red : Color.black );
    setText ( ( String )value );
    return this;
    //````````````````````````````````````````````````
    //===================================================================================
    // We have to use this class, otherwise we cannot stop JComboBox's popup to go down
    class ComboUI extends BasicComboBoxUI {
    public JButton createArrowButton () throws NullPointerException {
    try {
    URL url = getClass ().getResource ( "/images/comboarrow.gif" );
    JButton b = new JButton( new ImageIcon( url ) );
    b.addActionListener ( new ActionListener() {
    public void actionPerformed ( ActionEvent ae ) {
    return b;
    } catch ( NullPointerException npe ) {
    throw new NullPointerException( "/images/comboarrow.gif not found or /images folder not in classpath" );
    catch ( Exception e ) {
    e.printStackTrace ();
    return null;
    //======================================================================
    you can cutomize this according to your requirement , okie ;)

  • How to display further information when a drop down menu option has been selected.

    Hi all,
    Thank you in advance for any replies!
    I'm building a website which has a drop down menu (HTML for the menu is below). When a TV size is selected i need the pricing information for that specific TV size to appear below the menu.
    Is there a way to do this?
    Thank you!
    <select name="Please select your TV Size" size="1">
            <option> </option>
            <option>Less than 42&quot;</option>
            <option>More Than 42&quot;</option>
          </select>

    Sure it is. And Nancy has given you a good alternative as well.
          <p>TV1 <input id="num1" type="radio" checked value="tv1" onclick="document.getElementById('tv1').style.display='block';document.getElementById('tv 2').style.display='none';this.checked=true;document.getElementById('num2').checked=false;" ></p>
          <p>TV2 <input id="num2" type="radio" value="tv2" onclick="document.getElementById('tv2').style.display='block';document.getElementById('tv 1').style.display='none';this.checked=true;document.getElementById('num1').checked=false;" ></p>
    <div id="tv1">Info for TV1</div>
    <div id="tv2">Info for TV2</div>
    With this CSS -
    <style type="text/css">
    #tv1 { display:block; }
    #tv2 { display:none; }
    </style>
    Should work.

  • How do you stop AddThis mouse over drop down menu or block AddThis?

    Apparently, someone has created a thing called AddThis that can be put into any webpage design. Supposedly, it is to help the reader share the great webpage they've found (or something??). Really, it seems to just be a way for a web designer to attract more page hits.
    I find the default setting that causes a rather large (say 5 times larger than icon on the webpage itself) menu to drop down whenever a cursor passes over to be incredibly annoying! If you move your mouse to bring the cursor down the page to reach a link or start to select some text and pass over this AddThis icon, the menu pops down covering a huge area which is often the exact area you are trying to click on. How anyone could think a web surfer would desire this behavor is beyond me.
    I am hoping there is a way in FF to stop this kind of behavor. I would like to find a setting or an add-on that could block it altogether (an AdBlock for AddThis).
    Any ideas?
    == web designers starting adding AddThis to their pages.

    You can block AdThis completely by using the NoScript plugin.

  • How do I turn on the bookmarks drop down menu?

    I just updated to version 19.0.2 (I'm not sure what version I had before) but the bookmarks icon doesn't have the little arrow on it and there is no drop-down below it (on the right side of the screen) when I click on it; the whole sidebar just opens on the left side. how do I get the direct drop-down back?

    I wish it were that simple. I don't have 2 bookmark options...

  • How do i disable the irksome redirect drop down menu

    how do i disable the irksome "firefox prevented this page from automatically redirecting to another page" drop down box?
    thank you
    mark

    See:
    *Firefox/Tools > Options > Advanced > General : Accessibility : [ ] "Warn me when web sites try to redirect or reload the page"
    The setting in "Tools > Options > Advanced > General" is meant as an accessibility feature, as you can see by the label of that section, so that people with disabilities or people who use screen readers do not get confused and is not meant as a safety protection to stop redirecting.
    See also:
    *https://support.mozilla.com/kb/Options+window+-+Advanced+panel#General_tab
    *http://kb.mozillazine.org/accessibility.blockautorefresh
    *http://kb.mozillazine.org/Accessibility_features_of_Firefox

  • How do I delete something from the drop-down menu of the URL bar. I went there accidentally and don't want it in the list.

    I directly typed what I thought was the correct URL into the URL box. It took me to a site different from where I was wanting to go. Now that site's URL is in the list of URL's in the drop-down box. Is there some way of deleting this from the drop-down list? It seems to me that there used to be a way to do this--a small x on the right side of each site's URL in the list. After one of the updates this was no longer there.

    touch it with mouse, don't click, and press DELETE.
    tell us if this work for you, thank you

Maybe you are looking for

  • T61 32-bit XP to 64-bit Win8 - general approach that may work for other models

    I recently tried to upgrade my T61 from 32-bit to 64-bit Win 8 using the $39.99 download. DO NOT WASTE YOUR TIME TRYING THIS, IT WILL FAIL.  HOWEVER, IF YOU PURCHASE THE $69.99 VERSION WITH BOTH 32-bit AND 64-bit MEDIA YOU CAN DO IT (no downloadable

  • Need help in dynamic report for a range of year and period

    Dear all, I need help in creating an ALV report with dynamic columns based on the Year and period entered on the selection screen. for example if in the year we enter 2002 and period range from 10 to 12 then we should get the 3 columns display for co

  • JPA  -  tree structure mapping    with toplink essential

    I'll try to explain it correctly. I store a tree structure in a database. I have just two tables: Node which contain a id , and some other info. Tree which contain a parent and child parent and child are ids from node. Since each node can have severa

  • Problem with my lexmark P4350 printer/ scanner

    It seems to work ok with regular printing but when I tried to print some photos the results were weak faded colours and some vertical lines that should not be there. I tried cleaning the cartridges both manually and mechanically with no good effect.

  • Bad bind variable error in oracle forms 10g

    i have a created a table in oracle database 10g create table myimage(image_id number, image_name BLOB); i want insert an image and retrieve an image through programing(don't want block level) in oracle forms 10g without using java beans(and finely wo