Keyword Filtering by number of allocations (or not).

Another keywording request.
I would like to propose a feature that will allow a user to display all images that have a minimum or maximum number of keywords assigned.
By implication, this means that a user could show only images that have 2 or less keywords, or, more than 5 keywords, or, no keywords at all and so forth.
Thanks in advance
Best Regards
Richard

Hello John,
I new I should have expanded that requirement...
I have recently imported 24000 images or so into LR, very few of them were ever key worded. I have started keywording them in sessions and it is moving along. I would like to be able to show images with the fewest keywords assigned, so i can get them into the broad strokes of sorting. The ability to assign a number, allows me to stipulate the degree to which the images are *not* keyworded.
In my mind this makes sense, I appreciate that I may be less than clear on my requirement. Hope that makes more sense.
Regards
Richard

Similar Messages

  • Keyword Filtering and Acrobat Connect Meetings

    Interesting discovery this morning. We've had ongoing issues
    with remote users in other companies connecting to our meetings for
    the past several years, even after we'd enabled and verified
    communication over port 1935 as well as 443 and 80. Turns out that
    when a keyword filter is used and the keyword list includes the
    word, "proxy", Meetings fail to launch. Many facilities are
    filtering on this keyword to prevent the circumvention of their
    communication policies and the access of inappropriate web sites in
    the workplace.
    Just thought I'd include this as an FYI to the community as I
    am unable to find anything in any of the knowledgebases about this
    issue.
    Cheers!
    Troy Wise

    I assume you got this pricing from the on-line website?  I ask because when you buy it from Adobe enterprise sales and through our corporate channel then this is all different.
    Answers:
    1. Yes. On-Demand recordings don't apply against your license.
    2. No. That 25 limnit is for concurrent live meetings. It's unlimited for on-demand recordings. That 25 limnit is completely set by the kind of license you are buying. if you purchased thru the software channel versus on-line then that number would be 100 not 25. On-Demand recordings have no limit.
    3. If you exceed the concurrent license, then the 26th person trying to join will receive a pop-up message saying the room limit has been reached and they will not be able to join. Yes, denied access. No way to charge a fee for overage.

  • Actual activity allocation is not allowed for order .

    hi ,
    During confirmation of operation at co11n (also at co11), got one error massage i.e "actual activity allocation is not allowed for order "
    Due to this error confirmation is not possible .
    pls help me to solve this problem.
    AMOL WAGH

    Dear,
    What is message number? Did you assign the usersttus in BS02?
    For allocation activity costs, we need to define activity type in KL01 by specifying the unit of measurement of the particular activity type (like  machine - Hours etc.). While creating activity type, we will assign a secondary cost element (with category 43) in the activity type through which the activity cost will flow.
    After that we will plan for cost center in KP06 (cost elementwise). Then we will plan machine hours in KP26 where we will link the activity type to a particular cost center.
    When we do price calculation in KSPI, system checks the planned costs for cost center (in KP06) and also checks the machine hours planned (in KP26) and gives the cost for the particular activity type.
    Please check the above in the system
    Regards,
    R.Brahmankar

  • Keyword Filtering please help !!!!!

    Hi all,
    I am doing my program which is a web browser with filtering funciton, it's running properly now but it have some problem with the keyword filtering function, it still not work properly. I try out a target webpage but that page still displaying...
    I suppose to save a webpage into the 'Website.txt' (I use BufferReader and BufferWritter), and compare it with the content of 'Keyword.txt'. IF the keyword are match more than 5 times then the website will be blocked.
    I set the keyword in my Keyword.txt with this word "car" and then try to access this webpage:
    http://db.gamefaqs.com/console/ps2/...t_auto_sa_h.txt
    which content a lot of word "car" ( I checked already). But at the end the page still displaying...
        String B;
        String K = null;
        String W;
        BufferedReader in = new BufferedReader(new FileReader("Banned.txt"));
        BufferedReader in0 = new BufferedReader(new FileReader("Website.txt"));
        BufferedReader in1 = new BufferedReader(new FileReader("Keyword.txt"));
        boolean found = false;
        boolean found1 = false;
    ///////// Recognize the URL Address  //////////////   
        while ((B = in.readLine()) != null) {
         if (urlText.equals(B)) {
          found = true;
          break;            
        if (found) {
         JOptionPane.showMessageDialog(null,"Website Blocked !");   
        else {
         chautaripane.go(url);
    //////// Recognize the keyword  /////////////////   
        BufferedReader inR = new BufferedReader(new InputStreamReader(url.openStream()));
        BufferedWriter buffWrite=null;
        String str;
        buffWrite=new BufferedWriter(new FileWriter("Website.txt"));
        while ((str = inR.readLine()) != null) {
              buffWrite.write(str);
                    buffWrite.flush();
                    buffWrite.close();
                    inR.close();
       int count = 0;
       int lastindex = 0;
    ////Try to compare and search the keyword
        while ((K = in1.readLine()) != null) {
            while ((W = in0.readLine()) != null) {
            if(W.indexOf(K,lastindex)!=-1)
                count++;
                lastindex=W.indexOf(K,lastindex);
      /////////// If the Keyword appear more than 5 times //////////
        if (count>=5) {
         JOptionPane.showMessageDialog(null,"Website Blocked !");
          System.out.println("found"+found1);
        else {
         chautaripane.go(url);
         System.out.println("not found"+found1);
      ///////////////// Catch exception ////////////////////// 
       } catch (MalformedURLException urlException) {
        System.out.println("Error in ActionListener for URL... ");
        urlException.printStackTrace();
       catch (FileNotFoundException e) {
       catch (IOException e) {
    );The content of my 'Keyword.txt' are
    car
    gun
    I implement this function in my 'dcToolBar' class, I have no idea why it's not working because the code seems very logic already....
    Can someone please teach me some solution, I really cry out due to this problem, PLEASE HELP ME !!!

    You may want to store that words that you want to block in memory, maybe using a patricia trie or a hashtable. I created a sample blocker application to demostrate a solution to the issue posted. Refer to 'main' on usage.
    rashid mayes
    www.astrientlabs.com
    public class WordChecker
        public static final int MAX_ALLOWED = 5;
        private Map blockedWords = new HashMap();
        public WordChecker()
        public void addBlockedWord(String text)
            HitCounter hitCounter = new HitCounter();
            hitCounter.text = text.toLowerCase();
            blockedWords.put(hitCounter.text,hitCounter);
        public void checkWord(String w) throws TooManyInstancesFoundException
            HitCounter hitCounter = (HitCounter)blockedWords.get(w.toLowerCase());
            if ( hitCounter != null )
                hitCounter.hits++;
                if ( hitCounter.hits > MAX_ALLOWED )
                    throw new TooManyInstancesFoundException(hitCounter);
        public void addBlockedWordsFromFile(File f) throws IOException
            BreakIterator bi = BreakIterator.getWordInstance();
            BufferedReader br = new BufferedReader(new InputStreamReader(new FileInputStream(f)));
            String line;
            int start = 0;
            int end = 0;
            while ( (line = br.readLine() ) != null )
                bi.setText(line);
                start = 0;
                end = 0;
                while ( (end = bi.next()) != BreakIterator.DONE )
                    addBlockedWord( line.substring(start,end) );
                    start = end;
        public void checkFile(File f) throws IOException, TooManyInstancesFoundException
            BreakIterator bi = BreakIterator.getWordInstance();
            BufferedReader br = new BufferedReader(new InputStreamReader(new FileInputStream(f)));
            String line;
            int start = 0;
            int end = 0;
            while ( (line = br.readLine() ) != null )
                bi.setText(line);
                start = 0;
                end = 0;
                while ( (end = bi.next()) != BreakIterator.DONE )
                    checkWord( line.substring(start,end) );
                    start = end;
        public static void main(String[] args)
            try
                WordChecker blocker = new WordChecker();
                blocker.addBlockedWordsFromFile(new File("g:blocked.txt"));
                blocker.checkFile(new File("g:in2.html"));           
            catch (Exception e)
                e.printStackTrace();
            System.exit(0);
    class HitCounter
        protected String text;
        protected int hits;
    class TooManyInstancesFoundException extends Exception
        public TooManyInstancesFoundException(HitCounter hitCounter)
            super("Too many instances of '" + hitCounter.text + "' have been found.");
    }

  • Keyword filtering

    Keyword filtering in Adobe Bridge
    I'm a graphic designer trying to find a good system for sorting and browsing my stock images. I figured I'd use bridge since I've already got it as a part of CS3.
    Applying keywords is no problem, but I run into roadblocks when I try filtering.
    Basically, I want subtractive filtering. So if I filter by keyword 'woman', only the pictures with women in them will appear. If I filter further by 'blond', I want it to show me only blond women, not pictures of women and pictures of blond people.
    It seems like there is a way to do what I want, but I just haven't found the right button, if you know what I mean.
    Thanks.

    any ideas on how I can get back to that setting??
    If you want to search your database you must use the find command (first time be sure to include the options for subfolders and non-indexed files)
    Once your database is indexed fully you can search for woman. This should bring up a content window with all the pictures you have on your database with that keyword.
    Now your keyword filter panel is filled with all the keywords that are present in the files from your content window. If you want only the blond woman to show click once on blond and only the blond show.
    If you already have selected woman and blond just click again on woman and those files that don't contain blond should not show.
    If you want to clear the filter panel selection in one go there is a small red circle with a line on it bottom right of the filter panel, this clears all your filter criteria in one go.
    Is this about what you are looking for or did I not understand your question correctly?

  • Last played and number of plays are not being set.

    Last played and number of plays are not being set.  Suggestions?

    Yup, this.
    Judging from the number of tracks that iTunes 11 tells me it's played, versus last.fm's scrobbles over the last two days, iTunes is actually updating the play date/time and count about twenty percent of the time. I haven't been systematic about testing under what conditions it does and doesn't update, but:
    Some tracks from an album will be updated and not others.
    Once a track has failed to update once, it seems likely to fail again (some tracks have had five or six plays unrecorded by iTunes).
    Curiously, if you look at the play history in the Next Up drop menu, all the played tracks appear, updated or not.
    My fabulously intricate architecture of smart-playlisted-out-the-wazoo filters all goes awry, if the play data isn't properly updated.
    Guys, sort it out, eh?

  • Hierachical Keyword Filters

    I can create hierachical keywords in Bridge CS3 2.1 just fine but they seem to get all flattened out in the Filter Dialog. The best I have been able to get is write the hierachy to the file which gives me e.g. people/family/dad as a keyword but no hierachy. What's the point of the hierarchy if I can't use it for filtering. Isn't the idea of the hierachy to organize. Got to be missing something here?
    Ax

    I don't use hierarchical option so just throwing out another thought. Seems like the filter panel is giving you a look at how the keyword was set up, may or may not be best option to sort by. If you have a keyword "Ellen" on pictures of Ellen the hierarchical option would tell you if it was from Smith family or Jones family. For your cataloging needs you need to decide if hierachy is the best option. I prefer a little more complex keyword to avoid the mess of the hierachy name. Such as Ellen S or Ellen J.

  • Installed an SSD in place of hard drive, DU reports that there is an invalid number of allocation blocks.

    I recently installed a Mercury Extreme Pro SSD in my laptop in place of the hard drive. I used Carbon Copy Cloner to make the SSD a bootable disk and transfer all my files. Today (about a month later) while checking the old HD (now in an external case), I decided to run "Verify Disk" on the new SSD. When I run it on the disk volume, Disk Utility reports that there is an invalid number of allocation blocks - much to my surprise. When I run it on the drive itself there are no errors.
    The new disk works fine as the startup drive. What's the meaning of the error and how do I fix it?

    No, on both counts. FW800 will not support the speed of SSDs. It barely supports the speed of very fast hard drives. But it beats USB 2.0.

  • My MacBook Pro was stolen last night. I need the serial number. It is not showing up on my devices list. My iPads and iPhones are. I have used it to to sync my phones and pads as well having it registered with apple. Any thoughts? Thanks

    My MacBook Pro was stolen last night. I need the serial number. It is not showing up on my devices list. My iPads and iPhones are. I have used it to to sync my phones and pads as well having it registered with apple. Any thoughts? Thanks

    Click here: https://supportprofile.apple.com/MySupportProfile.do
    SIgn in with your Apple ID, the same one you used to access this support forum.
    Hopefully, you will see a list of all the devices you registered with your Apple ID, including their serial numbers. Let me know how this works out.
    Edit to add: If you enabled "find my imac" on your Pro, you ought to be able to remotely lock it, or even wipe its memory. Click http://www.icloud.com/ sign in with your Apple ID and click the big green "find my iPhone" icon (nevermind the name, it will find all your devices provided they're running Lion or iOS 5).
    Then file a police report and nail the b*****d.

  • I am trying  to install CS3 on Windows 8 and keep getting a message saying "the serial number I entered is not valid please enter it again" Does anyone know how to install successfully on Windows 8?

    I am trying  to install CS3 on Windows 8 and keep getting a message saying "the serial number I entered is not valid please enter it again" Does anyone know how to install successfully on Windows 8?

    CS3 is unsupported under Windows 8. That said, you'll need to contact Adobe
    directly for serial number issues.

  • I am having trouble with iMessage being activated. It has worked up until yesterday and now won't activate and is saying no address in the send and receive section. My number is there but not ticked. Any suggestions on how to fix this?

    I am having trouble with iMessage being activated. It has worked up until yesterday and now won't activate and is saying no address in the send and receive section. My number is there but not ticked. Any suggestions on how to fix this? I have shut down my phone, but still no luck!

    iMessage and FaceTime went down yesterday for some people. Mine is still down. My iMessage is saying the same thing about being activated. Sounds like you are still down too. Ignore the status page that says everything is fine - it lies.

  • Product allocation is not working after setting all required config!

    Hello SD gurus,  Would you please help me to resolve this issue?
    I followed and configured all the required steps for product allocation  in ECC 6.0 Version still  the product allocation is not working as expected.
    Here are the steps performed
    1. Created procedure through OV1Z
    Maintained Product allocation procedureT.code OV1Z
    2.  Maintain product allocation object Transaction code: OV2Z
    3.   Create required info structure as per requirement T.code MC21
    4. Specify Hierarchy and Define the “Product allocation planning structure”
    Transaction code: OV3Z
    5.Define Consumption periods
    6. Control product allocation
    T. code: OV4Z
    Selected the product allocation procedure and given the required criteria and assigned to Info. Structure S991. Activated ‘Requirement category’ for product allocation
    8. T.code OVZ0
    Activate schedule line category for product allocation
    S991 Info structure Planning parameters updated
    Mc7F
    Create update
    T.code MC24
    Activate the update
    T.code OMO1
    Create planning Hierarchy
    T.code: MC61/62
    Maintain planning type
    . T.Code: MC8A/B
    Created the product allocation plan for required quantity  through MC94 IN spite of reserving stock as shown against the product allocation material specific and customer specific product allocation is not  worked and the regular Atp check allocated stock to some other customer when created  SO.
    Thanks for your help in advance
    Srini

    Hi Sumitra,
    Thanks a lot for your quick response!
    Actually to say availability check is working but not product allocation.
    I checked the settings in Material master MRP 3 view for strategy group  and it is 40.
    Availability check is 02 assigned. OVZ9 settings are assigned correctly 02-A- SD Order.
    Not knowing what is preventing to reserve the stock against product allocation!
    Do you or any one know where to see the product allocation stock?
    Best Regards& Thanks a lot for your help!
    Srini

  • I am trying to download Photoshop CS6 onto my Mac from the Adobe website, but I do not have a serial number. I made an Adobe ID, but the serial number is not under "My Products" nor have I received an email including a serial number. I do not know how els

    I am trying to download Photoshop CS6 onto my Mac from the Adobe website, but I do not have a serial number. I made an Adobe ID, but the serial number is not under "My Products" nor have I received an email including a serial number. I do not know how else to find the serial number. Please help!

    You need to contact Adobe Support either by chat or via phone when you have serial number and activation issues.
    Here is a link to a page with options to help make contact:
    http://www.adobe.com/support/download-install/supportinfo/

  • My number 5 key is not working and my password has a number 5 in it. How can I change my password when I'm signed in on another account or as guest user? I need help :(

    My number 5 key is not working and my password has a number 5 in it. How can I change my password when I'm signed in on another account or as guest user? I need help

    - If the "other" account has administrative privileges then just try changing the PW for your account.
    - Forgot Mac Password? How to Reset Your Mac Password (with or without CD)
    Change the Admin Password with Mac OS X Single User Mode
    Reset mac mini admin password: Apple Support Communities
    - If the problem is due to a bad KB just get a new KB

  • They sent me a serial number for a windows version of PS Elements when I ordered a mac version.  The serial number doesn't work, not surprisingly, but they don' t seem to care.  I have tried the chat line and have waited for almost a day with no response.

    They sent me a serial number for a windows version of PS Elements when I ordered a mac version.  The serial number doesn't work, not surprisingly, but they don' t seem to care.  I have tried the chat line and have waited for almost a day with no response.  What should I do?

    Look here
    Order product | Platform, language swap

Maybe you are looking for