How can I clear out all smart tags?

I just upgraded from Photoshop Elements 6 to Elements 10.  In the Elements 6 release you can do a FIND on all untagged items, so I can easily find all pictures that I have not yet gotten around to tagging.
On Elements 10 I find that the software has automatically added a "Smart Tag" tag to ALL of my pictures, making the FIND UNTAGGED useless.  I assumed this happened when I converted my catalog.  I have now gone back and disabled the Smart Tag feature (now that I know about it) so that new pictures will NOT get Smart Tegged.  However, my database of tens of thousands of pictures has been contaminated by Smart Tags.
Is there anyway to get all the Smart Tags cleared out of the database so I can find the pictures that I have not yet manually tagged?
Alternately, is there a way to find pictures that have a Smart Tag but no manual tag?

photodrawken wrote:
Excellent!  Glad you found a solution.
msrecant wrote:
However, it appears to me that as soon as one enables the Smart Tag feature the "Find untagged items" feature becomes almost meaningless. 
Absolutely right.  Although Smart Tags are automatically generated, as far as the database is concerned, for the images they are tags just like any other tags.
Ken
This time, even if it's not exactly a bug, it is a disastrous default setting.
All autoanalyzer functions should be disabled by default, and only enabled knowingly.
The other lesson is that the Find menu should be able to search for files without a tag while ignoring the 'smart' tags.
The fact that the option to 'remove tags from selected items' cannot be used when you have to many tags (only one page display of tags, without a way to scroll down to next screen) is a bug in my opinion.
http://forums.adobe.com/thread/1035239?tstart=0

Similar Messages

  • How can I take out all my HealthVault data?

    As titled, how can I take out all my HealthVault data?

    Hi,
    I'm assuming by "take out" you mean you want to save copies of your data to keep outside of HealthVault.
    In general, you want to use the Export feature. Find it by going to the Health Information page, then in the "More actions" menu, choose "Export information." If you're trying to send the data to another system, then you'll probably want to choose CCD or
    CCR format. If you are keeping records for yourself, HTML would be the human-readable format. The different formats behave differently, so I'd recommend checking that the exported file contains the data you want.
    After you export, then you'll want to go into the Files section of the Health Information page and download the files you want to keep. This will be especially important for files that came from a doctor, hospital, pharmacy, or lab.
    If you want to close your HealthVault account, make sure you've got all the data you want before you close the account. By the way, if by "take out" the data you meant "delete" the data, when you close your account the data will be deleted from HealthVault
    as per the Privacy Statement.
    Hope this helps,
    Kathy

  • How can i find out all the different meanings of  User ID Paramtrs (USR05)?

    Dear Gurus
    How can i find out all the different meanings of  User ID Parameters (table USR05)?
    Thanks
    Nuno Natividade

    hi,
       the values are stored in the table tpara and they are used to put the landscape of the system,and to know the log of the system.
      FORM DETERMINE_LANDSCAPE .
        SELECT SINGLE * FROM USR05
                        WHERE BNAME = SY-UNAME
                            AND PARID = 'ZLANDSCAPE'.
        IF SY-SUBRC = 0.
          IF NOT USR05-PARVA IS INITIAL.
       REPLACE
          ELSE.
            PERFORM DETERMINE_FROM_CENTRAL_SYSTEM.
          ENDIF.
        ELSE.
          PERFORM DETERMINE_FROM_CENTRAL_SYSTEM.
        ENDIF.
      ENDFORM.                    " determine_landscape
      FORM DETERMINE_LOG_PARAMETER.
        SELECT SINGLE * FROM USR05 WHERE BNAME = SY-UNAME
                            AND PARID = 'ZLOG_USER'
                            AND PARVA = 'X'.
        IF SY-SUBRC = 0.
          WITH_LOG = 'X'.
        ENDIF.
    <REMOVED BY MODERATOR>
    venkat.
    Edited by: Alvaro Tejada Galindo on Mar 4, 2008 12:47 PM

  • HT5625 I cannot send a text thru iMessage.  I followed the directions over and over again but can't make it work.  Also how can I find out all the apple ids I may have.

    I cannot send a text thru iMessage.  I followed the directions over and over again but can't make it work.  Also how can I find out all the apple ids I may have.

    A wet phone is out of warranty. This is considered user damage. Even if you were able to get it to start now, the chances of it working for long are slim. I suggest going to Apple and see about an OOW replacement. One for the iPhone 4 is only $149USD and it would come with a short warranty. It is a refurbished device and you would not be worried about encountering additional problems.

  • 2500 Songs in Downloads on my iPhone - How can I clear them all at once?

    Hi there - I was trying to get my driving playlist on my iPhone before I left (iTunes Match enabled) ... and started downloading 2500 songs. 
    Of course, I ran out of space.  I've since cleared up the space, but now I need to leave, and want to clear my download list.
    I've tried deleting them one-at-a-time, but ... that's going to take hours.
    I've tried turning off match and syncing them (this ultimately got most of the music on my phone, but still have 1400+ songs in the Downloads).
    I've tried signing out of iTunes, and restarting my phone (apparently this worked in iOS5).
    And I still have 1400+ songs waiting to download. 
    I've turned off the cellular download (so I don't get a holiday surprise from Verizon), but ...
    How can I clear the "Pending" Downloads list in iTunes all at once?  There must be a workaround. 

    IrieItes wrote:
    I'm sure there must be a quicker way to relink that image than doing it one by one.
    You should be able to correct that from the Errors tab on the right-hand side of the site window. It should show up as a Missing File. Select it, then point and shoot at the correct image file in the FIles tab on the left-hand side of the site window.
    John

  • How do I strip out all HTML tags except for safe ones I designate?

      // FLAG ALL INCIDENTS OF LEGITIMATE TAGS BY CONVERTING <..> TO <!..!>
      for (int i = 0; i < parseVector.size(); i++) {
       this.content =
        this.content.replaceAll("<(/?)(" + (String)parseVector.elementAt(i) + "[\\s\\t=]+[^>]*)>",
                       "\\<!$1$2!\\>");
      }I have a Vector of HTML string text consisting of things like:
    {"i", "b", "u", "blockquote", "font"}
    And within this.content, which contains HTML, I want to strip out all HTML except for certain "safe" tags.
    Problem is, my code fails to do just that.. while <img..> is gone, so is <i> and I want to keep the latter.
    I feel the problem is in my regular expression pattern within this.content.replaceAll() method, but maybe I'm wrong. What do you say?
    Entire code can be found in http://www.myjavaserver.com/~ppowell/HTMLParser.java
    Thanx
    Phil

    Let me give you an example of what I want:
    I understand what you want... I don't see how the code that you posted is supposed to that.
    The best advice I can give is that a for loop is not part of the equation here. You will need to do it in one regex I think. Because if what you are doing there is saying replace all the tags that aren't <i> on one loop and replace all the tags that are not <b> in another loop guess what is happening?
    On the first pass you don't replace the <i> tags but you do replace the <b> tags. On the next pass you replace <i> tags because they don't match the <b> etc.
    You see?
    So I think you need to do this all in one regex where the starting portion of the tag is NOT one of the set that you want to keep.

  • How can I clear out the movies?

    In itunes, I have selected my Itouch from the left side of the screen.
    in the main screen, at the top, it says summery, apps, music, movies, TV Shows, etc.
    I have selected Movies.. but there are no movies on the Hard drive. I deleted them all.
    But the listing below still shows them.
    How do I delete or clear that listing? Any ideas?
    thanks/

    macwildstar wrote:
    Too late.. the Hard drive just blew.. its toast, due to a power surge, (we have storms in the area).. im on the other computer now..
    next chance you get, buy an [UPS_|http://en.wikipedia.org/wiki/Uninterruptible_powersupply].
    How can I save the data on the I touch, when I reinstall itunes on the new HD?
    check this post by Zevoneer.
    additionally, see this post by Chris CA: http://discussions.apple.com/message.jspa?messageID=12257908#12257908.
    good luck !
    JGG

  • How can i delete the label "smart Tags". I am using the Dutch version where it is calle "Slimme Tags

    I used Photoshop Elements 6,7,8,9,10 and now 11.
    In the passed period I had have an english version and therefore excists the laber smart tags in English and Dutch language.
    That 's is why i like to delete de Englih Labels. But how?
    Bert van der Linden

    i don't think it would be possible to do so since Smart Tags cannot be deleted from the tag tree. In your case, you must be having two sets of smart tags one in EN and one in NL, neither of which can be deleted.
    Thanks
    Andaleeb

  • How can I print out all notes?

    I have over 200 notes and I would like to print out a copy to keep as a reference. Is it possible to somehow print out all of the notes at once without having to open up each one individually and print them out.

    It's not a file, so you can't "open" one file. Every message (and note) is a single file on the computer.
    This Applescript will grab all the notes in the selected mailbox (i.e. the selected Notes item in Mail) and put them in a textEdit document.
    Note that Mail doesn't differentiate between a note and an email message, so if you run this while a normal email mailbox is selected, it will gather all of your email messages.
    tell application "Mail"
    set theMailboxes to the selected mailboxes of message viewer 0
    repeat with aMailbox in theMailboxes
    set theNotes to the messages of aMailbox
    set theText to ""
    repeat with aNote in theNotes
    set theText to theText & content of aNote & return
    end repeat
    end repeat
    end tell
    tell application "TextEdit"
    set myDocument to make new document at end of documents with properties {text:theText}
    end tell
    Copy and paste this into a new AppleScript Editor Document, select the Notes mailboxes you want to print the notes from, and click the Run button (Green button with arrow).
    This may take a while.

  • How can I print out all texts from one person

    How can I printall of my texts from my very bad lawyer?

    It's not a file, so you can't "open" one file. Every message (and note) is a single file on the computer.
    This Applescript will grab all the notes in the selected mailbox (i.e. the selected Notes item in Mail) and put them in a textEdit document.
    Note that Mail doesn't differentiate between a note and an email message, so if you run this while a normal email mailbox is selected, it will gather all of your email messages.
    tell application "Mail"
    set theMailboxes to the selected mailboxes of message viewer 0
    repeat with aMailbox in theMailboxes
    set theNotes to the messages of aMailbox
    set theText to ""
    repeat with aNote in theNotes
    set theText to theText & content of aNote & return
    end repeat
    end repeat
    end tell
    tell application "TextEdit"
    set myDocument to make new document at end of documents with properties {text:theText}
    end tell
    Copy and paste this into a new AppleScript Editor Document, select the Notes mailboxes you want to print the notes from, and click the Run button (Green button with arrow).
    This may take a while.

  • How can I print out all notes or export the entire file?

    I have around 300 notes that include a variety of information. I would like to print out a hard copy. I don't want to open and print out each one individually. Is there a way to print out all of them at once. Also, is there a way export the file so I can open it in another application like Excel or Word?

    It's not a file, so you can't "open" one file. Every message (and note) is a single file on the computer.
    This Applescript will grab all the notes in the selected mailbox (i.e. the selected Notes item in Mail) and put them in a textEdit document.
    Note that Mail doesn't differentiate between a note and an email message, so if you run this while a normal email mailbox is selected, it will gather all of your email messages.
    tell application "Mail"
    set theMailboxes to the selected mailboxes of message viewer 0
    repeat with aMailbox in theMailboxes
    set theNotes to the messages of aMailbox
    set theText to ""
    repeat with aNote in theNotes
    set theText to theText & content of aNote & return
    end repeat
    end repeat
    end tell
    tell application "TextEdit"
    set myDocument to make new document at end of documents with properties {text:theText}
    end tell
    Copy and paste this into a new AppleScript Editor Document, select the Notes mailboxes you want to print the notes from, and click the Run button (Green button with arrow).
    This may take a while.

  • When I first got my 4S, I logged into itunes with one email addy.  I have since changed that account, but it still shows up in all the login areas on my phone.  how can I clear those all out?

    Can anyone help me to clear all of these old log ins?

    Settings --> Store --> Apple ID

  • How can I clear out the "other" space on my startup disk?

    My startup disk is full as well, but I am barely using any space on my computer at all for files. I have also only had this laptop for about 9 months. I have been emptying my trash, clearing my dowloads, deleting anything I can to get more space, but its not helping because I barely have anything left to delete. I just looked into my storage space following the Lion's Storage Display steps, and this is what it looks like.
    I have no idea what to do, but I can barely use anything on my Macbook Pro without it telling me I'm out of space.

    To figure out what is filling the disk, the pane with "other" on it is about worthless.
    I find it much better to use OmniDiskSweeper instead. It will tell the the folders and files that are using the most disk space so that you can intelligently decide what is causing the problem.
    Allan

  • How can I find out all dependings of a class ?

    Is there anywhere out there a tool, to find out
    from which classes is an other class depending ?
    I need this to find out a bug which came apparently from a static constructor which will be accomplish by loadind the class. It is for me important not only to know the directly imported classes but also the classes which are imported by the imported classes... and so on.
    Thanks in advance!
    Strucki

    You're misunderstanding what importing a class means. You can import a class without using it, and you can use a class without importing it. Importing a class has absolutely nothing to do with using a class and does not in any way indicate a class dependancy.
    In order to find the class dependancies, you should ignore the import statements. There are some tools that will do dependancy analysis, such as the free jikes compiler, but dependancy analysis in Java is very complicated and as far as I know there is no program that gets it exactly correct.

  • How can I wipe out all my info on an old emac

    I have an old emac i want to wipe out the info on it so I can donate it

    With an install CD, you boot from the CD by holding down the C key at startup.  Then go to "drive setup" and format the drive, choosing the option to zero data once.
    JI~m

Maybe you are looking for