Add Keyword from the Keyboard

When “keyword controls” is active on the control bar I’m able to type an already defined keyword in the “Add Keyword” box and it appears and can be easily added to the selected image by pressing enter. Then I often want to go back to the browser to select another image, so I press “tab” which takes me to the browser.
So far so good.
Now I would like to get back to the “Add Keyword” box without leaving the keyboard, meaning without having to go to the mouse to click in the “Add Keyword” box.
Is there a way to do this from the keyboard?
Ken

Awesome, Thanks.

Similar Messages

  • Filter by selecting keywords from the keyword panel, AND-rule

    Hello,
    I'd like to have an option to use the AND-rule when selecting multiple keywords from the keyword panel.
    For example, if I had the following keyword hierarchy:
    - Places
    - London
    - New York
    - Subjects
    - Car
    - Buildings
    Now, if I'd like to see cars photographed in New York, I need to go to the find panel and enter the keywords there. If I select multiple keywords from the keyword pane (ctrl-click keywrods "New York" and "Car"), I get all photos from New York and all photos of cars. What I'd like to have is a switch (check box) in the preferences-dialog (*) to chance this behavior to use the AND rule, so that selecting multiple keywords from the keyword panel would result into showing only those photos that have ALL of the keywords, instead ANY of them as it is now.
    (*): or perhaps even in the keyword panel as a sort of small icon, like the "add keyword" (plus sign) and "remove keyword" (minus sign) icons.

    I would love to see a better solution for keyword matching too. Imagine if we could have the power of regular expressions!
    At least we could use parenthesis (for grouping), ampersands (&) for "and", and plus (+) for "or." Wildcards would be nice too, and while we're at it, exclamation mark (!) for "not." Consider the following construct.
    ((dave & aileen) + (bonnie & steve)) & !pete
    Reads like this:
    Both dave and aileen, or both bonnie and steve, but in either case, not pete.
    Or you could change it like this:
    ((dave + aileen) & ! pete) + (shannon & dane)
    Reads like this: Either dave or aileen but not pete, or shannon and dane.
    For even greater power, allow us to store and edit frequent search terms. Then I could easily come up with some elaborate search term, and re-use it later, or change it in some small way for later.
    It would be even better if all this were part of a total metadata search. How about:
    (keyword:dave + keyword:aileen) & (year:2008 & location:US|California|Los Angeles|Home)
    Maybe this is getting to be too complex for casual use, but it really could be quite powerful for searching those catalogs of 10000+ pictures.

  • In the address bar where type the address of the web site at the top. after entering the address i press enter key from the keyboard but it does'nt work there . Means the page is not navigating towards the address. Kindly solve the problem

    In the address bar where type the address of the web site at the top. after entering the address i press enter key from the keyboard but it doesn't work there . Means the page is not navigating towards the address. Kindly solve the problem

    This issue can be caused by an extension that isn't working properly.
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    * Don't make any changes on the Safe mode start window.
    * https://support.mozilla.com/kb/Safe+Mode
    * [[Troubleshooting extensions and themes]]
    In Firefox 4 you can use one of these to start in <u>[[Safe mode]]</u>:
    * Help > Restart with Add-ons Disabled
    * Hold down the Shift key while double clicking the Firefox desktop shortcut (Windows)

  • I have a macbook and when I power it on and then select myself as a user...It won't power up. It stays in the white screen with the apple logo. I am online currently under 'guest user'. Is there anything I can do from the keyboard to fix this??? Help!!!

    I have a macbook and when I power it on and then select myself as a user...It won't power up. It stays in the white screen with the apple logo. I am online currently under 'guest user'. Is there anything I can do from the keyboard to fix this??? Help!!!

    Could you specify the model of MacBook and the OS X it's running, please? Some of the advice or references vary along with the system, so this could be helpful to formulate a reply. I've never used a Guest User selection, but do have more than one User.
    If the computer does not have an optical drive, you may be able to boot it into a recovery disk mode or something; in an attempt to see what is wrong and maybe fix it.
    Good luck & happy computing!

  • Had to reinstall Lion.  Backed up music to external hard drive.  When I plug in iPod msg says it's synced w/another iTunes library.  Do i "erase and sync" and re-add music from the hard drive?

    Had to reinstall Lion.  Backed up my music to an external hard drive.  When I plug in my iPod a prompt msg says it's synced w/another iTunes library and asks if I want to "erase and sync" (to what is now an empty library) or "Transfer purchases".  Do i "erase and sync" and re-add music from the hard drive once that's done?

    You just need to tell iTunes where the library is located. If you want it back on your internal drive, copy the entite iTunes folder. Follow the instructions below.
    iTunes: How to move your music to a new computer (Mac or Windows):
      http://support.apple.com/kb/HT4527

  • In Mail 7.3 on my Retina MacBook Pro on OS 10.9.4, how can I type from the keyboard into a mail message using the Apple Symbols font?

    In Mail 7.3 on my Retina MacBook Pro on OS 10.9.4, how can I type from the keyboard into a mail message using the Apple Symbols font?
    When I select the Apple Symbols font from the list accessed from under Format/"Show fonts"/collection-all fonts/Apple Symbol, and then continue typing, I get normal letters, if in a slightly different font.
    How can I type using the Apple Symbol font?  I want to use that font to include keyboard and cursor selections of actual screen symbols to help write easily understood explicit computer lesson emails to my 92 year-old mom from a few hundred miles away.
    Steve

    In Mail 7.3 on my Retina MacBook Pro on OS 10.9.4, how can I type from the keyboard into a mail message using the Apple Symbols font?
    When I select the Apple Symbols font from the list accessed from under Format/"Show fonts"/collection-all fonts/Apple Symbol, and then continue typing, I get normal letters, if in a slightly different font.
    How can I type using the Apple Symbol font?  I want to use that font to include keyboard and cursor selections of actual screen symbols to help write easily understood explicit computer lesson emails to my 92 year-old mom from a few hundred miles away.
    Steve

  • Inputting from the keyboard

    hi everyone, can anyone help me on how to read what the user inputs from the keyboard when running a program in command-line(ms-dos prompt)interface.Does it have something to do with System.in any help would be appreciated.
    (Example)
    System.out.println("Please enter your name ");
    String name = //capture the name in string
    System.out.println("Enter your choice");
    int choice = //capture what the choice is
    System.out.println("your choice is "+ choice);
    }

    Modified version of example code in working test file.
    import java.io.BufferedReader;
    import java.io.InputStreamReader;
    import java.io.IOException;
    //Class
    public class KeyBoardInput
      //data members declared static
      static BufferedReader buff = new BufferedReader(
      new InputStreamReader ( System.in) );
      static String buffin; 
      //main method
      public static void main ( String[] args )
        int test = readInt("enter a number");
        System.out.println("you have entered " + test );
      //reads strings and converts to integers
      public static int readInt( String prompt )
            try
         System.out.println(prompt);
            buffin = buff.readLine();
            buff.close();
         catch (IOException IoE) {}
            return Integer.parseInt ( buffin );
      //needs work
      public static String readString( String prompt )
         //?? need to work on this one
    }

  • When I open Add-ons, from the Tools menu, I get an unresponsive script error: file:///C:/Program%20Files/Mozilla%20Firefox/components/nsExtensionManager.js:623.

    When I try to click on Add-ons, from the Tools menu, I get this error message of an unresponsive script: file:///C:/Program%20Files/Mozilla%20Firefox/components/nsExtensionManager.js:623. This is to say the least about the unresponsive script errors at other times. However, at all times, it won't go away - even by clicking on the 'stop script' option; even with checking the 'don't ask again' option. I've cleared the cookies and history as best I could, but it appears that there is some sort of conflict. How can I resolve this? Kevin: [email protected] Thank you.

    This is typically caused by a problem with the Personas Plus 1.6 add-on and it conflicting with the Google toolbar.
    Try disabling the Personas Plus add-on. To do this open the add-ons manager by selecting the Tools menu, then Add-ons. In the list of installed extensions click on Personas Plus, then click on either disable or uninstall.
    If you can not access the add-ons manager, follow the instructions in the [[safe mode]] article to start Firefox in safe mode. You should then be able to disable or uninstall Personas Plus. You can find more information on this procedure in the [[Troubleshooting extensions and themes]] article.

  • Can anyone explain to me why sometimes my ipad2 locks up and won't respond to any input from the keyboard.

    My iPad 2 locks up sometimes and won't respond to any input from the keyboard. Have to reboot in order to fix the problem.

    You have 3 choices:
    1. Do a reset (Hold Sleep/Wake and Home buttons about 10 secs or more till Apple logo appears, ignore the Slide to Power Off that appears)
    Note: You will not lose any data.
    2. Restore from backup using iTunes
    3. Restore as new without the backup

  • How to demote to body from the keyboard in outline form?

    How to demote to body from the keyboard in outline form?

    This is the method i am using to populate a list.
    1- First of all you need to create a non-database list item for customer_name.
    2-create this procedure
    PROCEDURE populate_list_with_query
    --Populates the given list item with the specified query.
    (p_list_item in VARCHAR2
    ,p_query in VARCHAR2)
    IS
    /* Name the record group after the list item (no
    block prefix). */
    cst_rg_name constant VARCHAR2(30) :=
    GET_ITEM_PROPERTY(p_list_item,item_name);
    v_rg_id RECORDGROUP;
    BEGIN
    v_rg_id := FIND_GROUP(cst_rg_name);
    IF ID_NULL(v_rg_id) THEN
    v_rg_id := CREATE_GROUP_FROM_QUERY(cst_rg_name,p_query);
    END IF;
    IF POPULATE_GROUP(v_rg_id) = 0 THEN
    POPULATE_LIST(p_list_item,v_rg_id);
    /* Force display of first list element label
    in the list item. */
    COPY(GET_LIST_ELEMENT_VALUE(p_list_item,1),p_list_item);
    END IF;
    END populate_list_with_query;
    3- Create When-Create-Record on the block level and write this code
    BEGIN
    POPULATE_LIST_WITH_QUERY('bk1.customer_name',
    'SELECT customer_name, to_char(customer_id) FROM customer');
    END;
    In this example, the customer name is the (visible) list label and the customer ID is the (actual) list value
    i hope this will solve your problem ...

  • Reading a "yes" or "no" from the keyboard

    Hello,
    I'm having difficulty reading a String or char from the keyboard using the Scanner class. It looks like there is a ShowConfirmationDialog in JOptionPane class, but I'd rather not use JOptionPane.
    Any suggestions??
    Thanks!

    One more thing, just to clarify. I'd like to be able to do something like this:
    import java.util.Scanner;
    Scanner console;
    console = new Scanner(System.in);
    System.out.print("Care for another game? (yes or no) ");
    answer = console.nextChar();
    ....but of course, there is no "nextChar()" method in the Scanner class.
    Help?

  • Shut down or restart from the keyboard?

    I have a G4 QuickSilver 2002 with two hard-drives and not having any problems at the time (knock on wood) but I was wondering is there a way to shut down and/or restart from the keyboard? In the past when I had to shut it down and could not use the normal way I was using the button on the front of the tower, I would hold it in until the computer shut down but I think that this has lead to a problem where I could not start the computer up at all and had to have some one come out and reset something, I am 100% disable and my hands shake so please overlook any error. I am running OS 9 and 10.4.8
    G4 Tower QuckSilver 2002 with OS 10.4.8   Mac OS X (10.4.6)   WallStreet Power Book with OS 9.2.2 & 10.2.8

    Hi Norbert,
    Forcing a shutdown can cause hard drive directory corruption. You should start from the install disc and repair the disk with Disk Utility.
    When other methods don't work, holding the power button to force a shutdown is the only way. You can try control-F12 (opens the Restart, Sleep, Shutdown dialog box) and then press return to shutdown or control-command-F12 (quit all applications and restart).
    If just one application is hanging try using Force Quit (command-option-esc). That will also work to force quit the Finder if it hangs.
    John

  • Aperture add keywords from iPad

    I'm looking at a way to add keywords per image from my new iPad (2012), then sync / update the Aperture 3 DB on the Mac.
    The problem is that the library is huge and there are many keywords created already (1000+), so I don't want an app that proceeds by offering the selection of keywords, that would take ages [there is an average of 10 keywords per picture, each of them would have to be found from a list of 1000...].
    Ideally the input of keywords would be like on Aperture, in the Metadata / Keywords field: input a comma separated list of keywords (so, from the ipad keyboard [assisted by the bluetooth kb]).
    What would you recommend?
    I'm a developer myself and may write a script on the Mac if necessary - I just don't know where to look at.

    Soren Maigaard wrote:
    Is this possible
    Yes, Ottomanic Importer (@v3.6) has built in support for folder names as keywords upon import.
    But note: you can already use folder name in library filter and smart collections - are you sure you need such metadata replicated as keywords too?
    How I would answer that question:
    * If adding in place: no.
    * if copying or moving (into a shallower folder structure, with a simplified naming scheme): yes.
    Rob

  • How to add facet from the programm?

    Hi,
    for example i want to set footer to a table.
    in my bean i create the table and add columns
    this.table.getChildren().add( column1)
    this.table.getChildren().add( columnN)
    but to make 2 column combined i need to specify facet.
    Is it possible? (from the programm)
    something like this.table.add( new Facet() );

    Use getFacets, like this: this.table.getFacets().put( "footer", footer_component );

  • Is there a way to add keywords from an iphone?

    I'm tired of waiting to import to iphoto and adding keywords at the computer. But I can't see anyway to do this from the iphone. It doesn't seem to be available in iphoto for iphone. Is there an app that does this without duplicating photos in the photo roll?

    iCloud
    https://www.apple.com/support/icloud/contacts/

Maybe you are looking for

  • Usage of both salary scale structure and pay scale structure

    Hi, Background In most of Western Europe, normally the salary ranges are set by the union agreements.  At the same time, if Job Pricing using data from salary survey companies are used, the salary range (depending on what is requested from the survey

  • Abap ProxiesNoconnection to Integration Builder(only generic data Visible)

    When we are executing SPROXY from R/3(ECC 6.0) Getting components ie connected to XI Integration Builder But when we are executing SPROXY from XI Server , we are not getting connection to Integration Builder, Getting error message like No connection

  • Help me debug when i scroll down my scrollbar

    had this bug for like a year now. so i add a message to to my dlm1 then jsp1 should tell jsp1 to expand its size immidietly to fit the message however when i tell it to scroll down to its maximum size it does that -1 row, so its not fully scrolling d

  • Ipod not showing up in itunes anymore???

    I had purchased the new 80g classic and everything has been fine until last week. (ipod is only two weeks old) I have all the latest versions of everything (itunes, ipod drive, Mac OS, etc etc.) I have tried most of the steps Apple states to do, stil

  • Approval workflow - email notification

    Hi, I was run out of idea how to complete my assigned job, need oracle expert to help on email notification workflow. Currently I am working on workflow enhancement with oracle application E-Business Suite for our company. My job is to add in new app