Stop adding edits to library

Hi All
Is it possible to stop LR adding the edited pic to the library.
Jim

Put a pointer to PCSC in the Export Actions folder and specify it in the Post Processing section, passing PSCS what you want. If a DNG it will open in ACR 1st. You can do more there if you want or not. Save as an Export Preset. One for each file type you want to handle this way.
Don
Don Ricklin, MacBook 1.83Ghz Duo 2 Core, Pentax *ist D
http://donricklin.blogspot.com/

Similar Messages

  • Why did my library stop adding to the number of plays a song had?

    why did my library stop adding to the number of plays a song had?

    Same thing happened to me.  Can't understand why.  We'll see if they charge overages.

  • How do i get itunes 11 to stop adding music played from external hard drive to itunes library

    I use itunes 11 to play music from my external hard drive and when i am finished using the hard drive and disconnect it the artist and songs appear in the itunes libary and when i click on it to play them it cannot locate the file and i assume this is becuse under the advanced prefrences tab i unchecked the auomaticly add played music to itunes library. I do not want my external hard drive music to be added to itunes library which at this point it does not but it is still showing the music in the library even though it cannot be played this is very fustrating please help. how do i get the artist and songs played from the external hardrive from appering in the itunes library.

    Do you have a working copy of the library anywhere? The key file is called iTunes Library.itl and normally exists inside <User's Music>\iTunes. This is the file that knows what is in your library and each of the playlists, and holds ratings, play counts etc. Changing the media folder path in preferences tells iTunes where you'd like it to store media in future. It doesn't magically connect iTunes to any media that might already be there, or fix links to media that has been moved, or make it pick up a non-existent library file. If the worst comes to it you will need to import the media into the new empty library.
    See Recover your iTunes library from your iPod or iOS device if you have any of these to recover ratings, play stats and playlists, and to associate your device with the new library.
    tt2

  • Stopping cell editing in a JTable using a JComboBox editor w/ AutoComplete

    Hi there! Me again with more questions!
    I'm trying to figure out the finer parts of JTable navigation and editing controls. It's getting a bit confusing. The main problem I'm trying to solve is how to make a JTable using a combo box editor stop editing by hitting the 'enter' key in the same fashion as a JTextField editor. This is no regular DefaultCellEditor though -- it's one that uses the SwingX AutoCompleteDecorator. I have an SSCCE that demonstrates the issue:
    import java.awt.Component;
    import java.awt.EventQueue;
    import javax.swing.AbstractCellEditor;
    import javax.swing.JComboBox;
    import javax.swing.JFrame;
    import javax.swing.JTable;
    import javax.swing.WindowConstants;
    import javax.swing.table.DefaultTableModel;
    import javax.swing.table.TableCellEditor;
    import javax.swing.table.TableModel;
    import org.jdesktop.swingx.autocomplete.AutoCompleteDecorator;
    public class AutoCompleteCellEditorTest extends JFrame {
      public AutoCompleteCellEditorTest() {
        JTable table = new JTable();
        Object[] items = {"A", "B", "C", "D"};
        TableModel tableModel = new DefaultTableModel(2, 2);
        table.setModel(tableModel);
        table.getColumnModel().getColumn(0).setCellEditor(new ComboCellEditor(items));
        getContentPane().add(table);
        setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
        pack();
      private class ComboCellEditor extends AbstractCellEditor implements TableCellEditor {
        private JComboBox comboBox;
        public ComboCellEditor(Object[] items) {
          this.comboBox = new JComboBox(items);
          AutoCompleteDecorator.decorate(this.comboBox);
        public Object getCellEditorValue() {
          return this.comboBox.getSelectedItem();
        public Component getTableCellEditorComponent(JTable table, Object value, boolean isSelected, int row, int column) {
          comboBox.setSelectedItem(value);
          return comboBox;
      public static void main(String[] args) {
        EventQueue.invokeLater(new Runnable() {
          public void run() {
            new AutoCompleteCellEditorTest().setVisible(true);
    }Problem 1: Starting to 'type' into the AutoCompleteDecorate combo box doesn't cause it to start editing. You have to hit F2, it would appear. I've also noticed this behaviour with other JComboBox editors. Ideally that would be fixed too. Not sure how to do this one.
    Problem 2: After editing has started (say, with the F2 key), you may start typing. If you type one of A, B, C, or D, the item appears. That's all good. Then you try to 'complete' the edit by hitting the 'enter' key... and nothing happens. The 'tab' key works, but it puts you to the next cell. I would like to make the 'enter' key stop editing, and stay in the current cell.
    I found some stuff online suggesting you take the input map of the table and set the Enter key so that it does the same thing as tab. Even though that's not exactly what I desired (I wanted the same cell to be active), it didn't work anyway.
    I also tried setting a property on the JComboBox that says that it's a table cell editor combo box (just like the DefaultCellEditor), but that didn't work either. I think the reason that fails is because the AutoCompleteDecorator sets isEditable to true, and that seems to stop the enter key from doing anything.
    After tracing endless paths through processKeyBindings calls, I'm not sure I'm any closer to a solution. I feel like this should be a fairly straightforward thing but I'm having a fair amount of difficulty with it.
    Thanks for any direction you can provide!

    Hi Jeanette,
    Thanks for your advice. I looked again at the DefaultCellEditor. You are correct that I am not firing messages for fireEditingStopped() and fireEditingCancelled(). Initially I had copied the behaviour from DefaultCellEditor but had trimmed it out. I assumed that since I was extending AbstractCellEditor and it has them implemented correctly that I was OK. But I guess that's not the case! The problem I'm having with implementing the Enter key stopping the editing is that:
    1) The DefaultCellEditor stops cell editing on any actionPerformed. Based on my tests, actionPerformed gets called whenever a single key gets pressed. I don't want to end the editing on the AutoCompleteDecorated box immediately -- I'd like to wait until the user is happy with his or her selection and has hit 'Enter' before ending cell editing. Thus, ending cell editing within the actionPerformed listener on the JComboBox (or JXComboBox, as I've made it now) will not work. As soon as you type a single key, if it is valid, the editing ends immediately.
    2) I tried to add a key listener to the combo box to pick up on the 'Enter' key and end the editing there. However, it appears that the combo box does not receive the key strokes. I guess they're going to the AutoCompleteDecorator and being consumed there so the combo box does not receive them. If I could pick up on the 'Enter' key there, then that would work too.
    I did more reading about input maps and action maps last night. Although informative, I'm not sure how far it got me with this problem because if the text field in the AutoCompleteDecorator takes the keystroke, I'm not sure how I'm going to find out about it in the combo box.
    By the way, when you said 'They are fixed... in a recent version of SwingX', does that mean 1.6.2? That's what I'm using.
    Thanks!
    P.S. - Maybe I should create a new question for this? I wanted to mark your answer as helpful but I already closed the thread by marking the answer to the first part as correct. Sorry!
    Edited by: aardvarkk on Jan 27, 2011 7:41 AM - Added SwingX versioning question.

  • Problem adding songs to library

    First of all, a couple of weeks ago I got the dreaded "corrupt library file" error message. Tried everything I could to get it back with no luck. I finally decided that I would just start from scratch and re-add all of my music to the library, and in doing so, clean it up and get it all labeled correctly once and for all.
    Fast forward to today. First time after upgrading to 7.3, I open iTunes and proceed to Add to Library... Well, it let me add one song, no problem. Then I tried to add another, and nothing. Tried adding an album, and while it popped up a window saying it was processing the tracks, they didn't get added to the library. Keep in mind that all of the music I'm trying to add to the library is already in the iTunes music folder.
    What am I dong wrong?

    for some reason the edit function is not working - so i am going to reply to my own message...I jsut tried to click on some of the mps files in the media folder that I mention above ( but not showing in itunes) and they start to play in itunes.
    also error above - i am using vista.

  • Error when adding folder to library - Not adding files to ITunes library

    Hey all, I just got my iPod for Christmas and I've been having a lot of problems with iTunes. Sometimes when I'd add a folder it'd add all the files 3 or 4 times, and now I'm having an even bigger problem. I was trying to get all my music in one place to finally have some organization on my comp, so I set it to copy files I added, then I figured I'd delete the old folder. I have a folder that, when I try to add it, it gives me the error "Attempting to copy to the disk "C:\" failed. The file name was invalid or too long."
    It continues to go through the folder (Another few hundred songs, or almost 600 depending on if I did the top level folder) and it LOOKS like they're being added to iTunes, but they never get added to the library. If I try to update my iPod after this, the program takes all the music off my iPod. If I close and reopen, then it will update music, but NO files are added to the library. I can see that the files are being copied, and, as such, I'm not running out of disk space. These files are in there two or three times in some cases.
    So, I have two questions. Does anyone know what causes this error, and does anyone know an efficient way I can delete all the "non-detected" files?

    You'll probably have better luck asking the question here -> Windows EightForums
    iTunes isn't designed to work with Windows 8 or any beta software, so theres no suprise that it isn't working as expected.

  • ITunes 11.0.2.26 freezes when adding folder to library

    iTunes 11.0.2.26 freezes when adding folder to library. This did not occur with any previous version and is taking place with several different folders. Adding files as a batch wrks fine.

    Hi DJ_Dan,
    Welcome to the Support Communities!
    The article below may be able to help you with this issue.
    Click on the link to see more details and screenshots. 
    iTunes for Windows Vista or Windows 7: Troubleshooting unexpected quits, freezes, or launch issues
    http://support.apple.com/kb/TS1717
    Cheers,
    - Judy

  • HT1296 How can I sync my iPhone 4S with my PC where the data on the phone is added to my library on the PC?

    I am trying to sync my 4S with my PC that has not been sync'd for a long time. I need to make sure the data on the phone is added to my library on the PC and not have the PC data overwrite on to my phone.

    Specifically I'm looking to keep all my photo's on the phone.

  • A problem with Itunes and adding music to library

    I've been using my Ipod touch for about a month now (recently purchased). I first connected my Ipod to my laptop, because my desktop needed a format and reinstall of the OS, so I wanted to be slightly organized with it. I finally got around to formatting the desktop to WinXP pro, and have all my programs installed successfully.
    Here's the issue:
    With my laptop, I could start Itunes, and I did NOT have every song I have as my library, only a few songs that I personally selected and added to library (by clicking on "CTRL+Highligh" or File-->Add file to library). When I did that, I could hold down CTRL and highlight up to 15-20 songs at once, and have them show up in my library as added, then sync them to my Touch.
    Since coming to my desktop with my Ipod, and moving all my music from my laptop over to my desktops C: drive, I've hooked up my Ipod and (of course installed Itunes) authorized my desktop for my Touch.
    I begain selecting the music I wanted...My directory setup is as follows:
    My Music: folders inside of
    Itunes directory
    Mp3 Directory
    My Itunes settings are selected as My Music-->Itunes as the folder. I open Itunes, select add song to library, and it only allows me to highlight UP to 5 songs at once and add them. Any number between 1 and 5 songs will add to my library just fine. If i try to select over 5 songs, like 6-20 songs at once (using CTRL) it does nothing, and doesnt place any of the selected songs in my library. It will allow me to select individual songs just fine, and like I said, I can select UP TO 5 songs, highlighted with CTRL, and they show up just fine (all 5 songs will show in the library.)
    Any number of songs selected with CTRL over 5, does nothing.
    I dont understand why, when I used this very technique on my laptop, and I could select up to 30 songs at once (using ctrl+highlight) and they would ALL show up as they are supposed to. Everything is nearly the same on here, my settings are all pretty much the same as my laptop's settings were...anyone have any ideas? this has been bugging me all morning, and I've spent so much time fooling with it that I only have 56 songs out of 6,000 on my Ipod touch (I also decided to rid myself of music I didnt listen to and restored/formatted my ipod so I could start over)...I need more than 56 songs, but I dont want to do them 1 or 2 at a time, then go back and have to hit CTRL+O or File--->add file to library.
    What causes me to be limited to 5 or less songs per time to add to my library?

    Because I wasn't aware that the library could be "taken" from pc to pc. The processor on my desktop is also hyper-threaded, which simulates it having 2 processors..and moving file NAMES, not moving the files into the library is NOT a processor intensive function. It's actually just taking the file location - directory, and name, and making it show in the library..not moving the actual file itself and making a copy of it in the Itunes folder. I do NOT allow itunes to make copies of files that it keeps in the library (I uncheck allow Itunes to organize and make copies of files added to library).
    So adding to my library is as simple as making the library show the file name, and pointing to the location on disk, not actually making a copy of the file in the background and placing it into a folder inside the Itunes folder.
    Had I KNOWN I could take my library off the desktop and move it, I would've made it easier on myself, but I thought I posted that I just recently bought this Ipod touch (about a month ago).

  • I used scripting brigde to add a movie that has size bigger than 5GB, exactly after two minutes iTunes return a failed, but the processing of the file is actually added to iTunes Library successfully. The copying take more than 5 minutes to complete. Why?

    I used scripting brigde to add a movie that has size bigger than 5GB, exactly after two minutes iTunes return a failed, but the processing of the file is actually added to iTunes Library successfully. The copying take more than 5 minutes to complete. Why the iTunes Scripting Brigde returned failed when it is actually success? It occurred exactly 2 minutes after submit the request to Scripting Brigde. Is this 2 minutes related to the Apple Event time out? if it does, how do I get around this problem? thx

    I can tell you that this is some of the absolutely worst customer service I have ever dealt with. I found out from a store employee that when they are really busy with calls, they have third party companies taking overflow calls. One of those companies is Xerox. What can a Xerox call center rep possibly be able to authorize on a Verizon account?  I'm Sure there is a ton of misinformation out there due to this. They don't note the accounts properly or so everyone can see them. I have been transferred before and have asked if they work for Verizon or a third party also and was refused an answer so, apparently they aren't required to disclose that information. I spent a long time in the store on my last visit and it's not just customers that get the runaround. It happens to the store employees as well and it's beyond frustrating.

  • Fcpx editing error, library not open

    Fcpx editing error, library not open,The backup file is not open。

    I suggest downloading Digital Rebellion's Preference Manager and using it to delete your preferences.
    If that doesn't solve the crashes, create a test library by holding down the option key when you launch FCP X and see whether it is possible to work normally in that library.
    Rus

  • CDs with multiple artists are added to the library multiple times I want to be able to add the artwork to all.

    CDs with multiple artists are added to the library multiple times. Usually one has the artwork. I want to add the artwork to the others.  The instructions are inaccurate. I tried it several ways and it does not work.  How do I add the artwork shown on one of the albums to the other albums (same album, different artists)?

    Try Ethernet over Power adapters.. these are very popular for your kind of environment.. being able to make non-wireless link to another area where you can setup a wireless access point.
    Airport Express are not great for wireless power.. if you really have issues with wireless strength in a bad environment apple stuff is not the way to go.
    The comparison chart here.
    http://www.smallnetbuilder.com/lanwan/router-charts/bar/58-2_4-ghz-dn?see=P_F
    This is their worst test location you can also see averages.. the latest airport extreme.. is there a long way down.. and that is a much better wireless device than Airport Express.
    The Ubiquiti power AP is small cheap and designed for precisely this duty.. useless in an apple wireless network.. you will need to run ethernet or EOP adapters back to the main router.. but if the normal omni directional antennas don't provide enough signal you can get directional ones.. I suspect you can cover your whole apartment with a pair of these and high gain directional antenna.

  • Html snippet not working; created from Taco html edit Component Library

    Ok, I've searched for days on the discussion board for the answer to this one..... hopefully someone can give me a couple of pointers....
    I have a component created from Taco html edit Component Library that I cannot get to work as an inserted snippet into iWeb 3.0.2.
    Why can't I get this to work? I've seen first hand that they work on someone else's website that she constructs in html directly, not using iWeb. Any help greatly appreciated.
    Taco created three files. They are:
    TSWAccordion.css
    TSWDomUtils.js
    TSWAccordion.js
    Here is the code:
    <html>
    <head>
    <title></title>
    <script type="text/javascript" src="Scripts/TSWAccordion.js"></script>
    <script type="text/javascript" src="Scripts/TSWDomUtils.js"></script>
    <link rel="stylesheet" type="text/css" href="Scripts/TSWAccordion.css" />
    <!-- BEGIN COMPONENT Accordion - Taco HTML Edit -->
    <style type="text/css">
    #myAccordion.tswAccordion
    width: 200px;
    height: 400px;
    background-color: #f0f0f0;
    #myAccordion .tswAccordionActiveSection, #myAccordion .tswAccordionInactiveSection
    background-color: #f0f0f0;
    width: 100%;
    height: 400px;
    #myAccordion .tswAccordionHeader
    text-align: center;
    padding: 2px;
    font-family: Verdana;
    font-size: 16.0px;
    #myAccordion .tswAccordionActiveSection .tswAccordionHeader
    background-color: #7086aa;
    color: #ffffff;
    border: 1px solid #cccccc;
    #myAccordion .tswAccordionInactiveSection .tswAccordionHeader
    background-color: #f0f0f0;
    color: #000000;
    border: 1px solid #cccccc;
    #myAccordion .tswAccordionHeader
    #myAccordion .tswAccordionBody
    padding: 5px;
    </style>
    <!-- END COMPONENT Accordion - Taco HTML Edit -->
    </head>
    <body>
    <!-- BEGIN COMPONENT Accordion - Taco HTML Edit -->
    Title 1
    <!--Content for section 1-->
    Title 2
    <!--Content for section 2-->
    Title 3
    <!--Content for section 3-->
    <script type="text/javascript">
    var accordion = tswAccordionGetForId('myAccordion');
    </script>
    <!-- END COMPONENT Accordion - Taco HTML Edit -->
    </body>
    </html>

    You need to upload these three files in a folder to the root folder on your server:
    TSWAccordion.css
    TSWDomUtils.js
    TSWAccordion.js
    The folder cannot be named "Scripts" as shown in your code as you already have one of that name.
    Say it is named "Accordion". You then need to give the absolute URL to these files rather than the relative one shown in the code....
    http://www.yourdomainname.com/Accordion/TSWAccordion.css
    http://www.yourdomainname.com/Accordion/TSWDomUtils.js
    http://www.yourdomainname.com/Accordion/TSWAccordion.js

  • HT1391 how do I find free downloads that I have added to my library that are not showing up in the library on in icloud?

    How do I find free downloads that I hve added to my library that are not in my library or in icloud?

    Hi revsteph,
    If you have songs that you know you have purchased, but are not showing up in your iTunes Libarary, you may want to see if you can redownload them. You may find the following article helpful:
    Apple Support: Downloading past purchases from the App Store, iBookstore, and iTunes Store
    http://support.apple.com/kb/ht2519
    Cheers,
    - Brenden

  • Editing in "LIbrary"

    In Lightroom, while editing in "Library" with Lupe view, sometimes when i flag an image, I'm advanced to the next automatically, sometimes not. How do i change between settings???

    If the caps lock is on when you are tagging images then auto advance is active. If the caps lock is off auto advance will not be active.

Maybe you are looking for

  • Write file in jar file format

    Hi all, I have bundled my programs and xml files in the same jar. In my program, I want to update the xml files. How should I do it? I have used JarOutputStream before, but it fails... Thanks a lot! Best regards, Ray

  • Regarding Pdf to xml export

    Hi Experts, I have pdf which i created in adobe acrobat pro.by using acrobat pro i was able to export pdf to xml(More form options -->Export Data->SaveAsType-->xml) which i want .but i want to do this in a button click to do the same export option. i

  • How do I download whatsapp in the mini iPad ?

    How do I download whatsapp in the mini iPad ?

  • White ring around PSD images

    hi, i'm noticing a one pixel white ring around photoshop images I bring into FCP. Anyone else have this problem? What am I doing wrong. Thanks, Chase Roberts

  • Issues with Workflow triggering

    Hi All, I am having a problem in the PO approval workflow. The problem is as follows. When I have multiple levels of release blocks, after each level of approvals the successive approver gets a workitem created in his inbox. If any approver rejects t