How to edit and save a file ( after edit in CS6 in LR)   to keep it in LR collection  where it was?

I understood that I could select a file from a LR collection, start editing it in LR then pass it to CS6 (I chose the option to make a copy and keep the LR changes) , makes the changes in CS6 and save it from CS6 (Saved it as a PSD file) .Afterwards I can see 2 files (one being the original file,the other the PSD file saved  in CS6  in the original folder of the file, which is fine  ) but the file seems to have disappeared from the LR collection. I am new to LR.

When you edit in CS6, do you do a "Save" or "Save As..."? You need to do a Save and not a "Save As..." You also can't change the file type from whatever it was when Lightroom created the file.
Works for me when I do it that way.

Similar Messages

  • How to render and save a file as windows media file or mp3?

    I have worked in Sony Vegas 9 and I was hoping Adobe Premier Pro CC was similar--- but its not. I can't figure out how to render and save a file as a windows media or mp3 or in any format for that matter.

    Search for exporting in the help file
    Not all for PProCC, but The PPro/Encore tutorial list in message #3 http://forums.adobe.com/message/2276578 may also help, with more help in message #5
    PS - rendering is the process of creating temporary files to aid in timeline playback, while exporting creates new files

  • Export pdf    how to edit and save converted files

    I finally was able to convert to docx format, but see no way to use the converted file.  How can I edit and save in jpeg format?

    Hi Chuck,
    Please tell me what the problem is with the converted file. Are you unable to edit it, or did it not convert as you expected?
    Can you tell me how the PDF was created? (Different applications write PDF files differently, and some aren't as good as others--that can affect conversion).
    Best,
    Sara

  • How to create and save a file in flex web application ?

    Hi,
          I want to create and save a file form flex web application. Is it possible ?
    I have done some googling and found that its only possible through file referece, which needs some serverside implementation be called.
    Is it not possible with file reference to create and save file directly ?
    Can any one suggest how to over come this.
    Thanks in advance.

    Alex,
    code written with the Flex Builder 3 libraries will certainly run in Flash Player 10. However, what you need is not so much the capabilities of FP10 but the library functionalities of the Flex 4 package. And I think that Flex 4 code will only run in FP10 and not 9 (but haven't tested this as at work we have not yet been permitted to upgrade, so there is not a lot of point going for Flex 4!).
    Richard

  • Edit and save pdf files

    I downloaded Adobe Reader 9.1.3.  When I now try to edit forms that were previously downloaded, I can no longer save the edited form.  If I understand previous questions, I need to buy Acrobat Reader in order to edit and save the pdf files?

    A product with the name Acrobat Reader doesn't exist. With Adobe Acrobat you can fill and save forms.

  • Can't SAVE pdf file after editing.

    So, it can understand as I can't edit my pdf as well..
    I tried to click on save or save as, but apparently it didn't save the file on my computer, and I don't know why this could be.
    When I clossed adobe it just kept asking whether I need to save it before I close it. But it still didn't work either I pressed Yes and select the original file name to overwrite it or to find a new location and rename it.
    It's a 32-bit Windows 7 with Adobe Reader X
    Please help, thanks!

    Please post in the Adobe Reader forum.  But even over there they will tell you that you cannot edit a PDF file with Adobe Reader.  Or maybe you will need to explain further what / how you were editing that PDF file.

  • How to upload and save a file sent by client through a form

    Hi to everyone!! I wanted to know how to save in a servlet a file submited to me through a form. (in a form I have an <INPUT TYPE="FILE"> field). I know that the file was uploaded because I used a mini sever that shows me that. But I don't know how to save it for a late using. For those who answer me, please write down the code, or give me a link for such a code.

    For the html form, u need:
    <FORM METHOD="POST" ACTION="servletOrJsp" ENCTYPE="multipart/form-data">
    <INPUT TYPE="FILE" NAME="FILE1" SIZE="50"><BR>
    <INPUT TYPE="SUBMIT" VALUE="Upload">
    </FORM>
    In the servlet/jsp, you need to handle multipart request which you can't get it by just request.getParameter("FILE1").
    Try jspSmartUpload, is a free and easy to use API specifically designed in this situation. The examples given are pretty straight forward :)
    http://www.jspsmart.com

  • How to download and save mp3 files on iPhone5

    Hello

    Other than downloading from the iTunes Store, there is no way to download music from somewhere else.
    You have to do that using the computer.

  • Open and Save Excel Files

    Hi All,
    I need code of How to open and save excel file in local system in Oracle forms.
    With Regards,
    Chandra Shekhar

    Hello Chandra,
    Webutil can be used to achieve this functionality.
    STEPS TO FOLLOW
    ================
    1. Install and configure Webutil following instructions in the webutil manual
    and the readme file.
    2. Create a form with a block Eg. DEPT
    3. Create a button, and in that button put the following code -
    DECLARE
    application Client_OLE2.Obj_Type;
    workbooks Client_OLE2.Obj_Type;
    workbook Client_OLE2.Obj_Type;
    worksheets Client_OLE2.Obj_Type;
    worksheet Client_OLE2.Obj_Type;
    args Client_OLE2.List_Type;
    cell ole2.Obj_Type;
    j INTEGER;
    k INTEGER;
    BEGIN
    application := Client_OLE2.create_obj('Excel.Application');
    workbooks := Client_OLE2.Get_Obj_Property(application, 'Workbooks');
    workbook := Client_OLE2.Invoke_Obj(workbooks, 'Add');
    worksheets := Client_OLE2.Get_Obj_Property(workbook, 'Worksheets');
    worksheet := Client_OLE2.Invoke_Obj(worksheets, 'Add');
    go_block('dept');
    first_record;
    j:=1;
    k:=1;
    while :system.last_record = 'FALSE'
    loop
    for k in 1..3 /* DEPT has 3 columns */
    loop
    If not name_in(:system.cursor_item) is NULL Then
    args:=Client_OLE2.create_arglist;
    Client_OLE2.add_arg(args, j);
    Client_OLE2.add_arg(args, k);
    cell:=Client_OLE2.get_obj_property(worksheet, 'Cells', args);
    Client_OLE2.destroy_arglist(args);
    Client_OLE2.set_property(cell, 'Value', name_in(:system.cursor_item));
    Client_OLE2.release_obj(cell);
    End If;
    next_item;
    end loop;
    j:=j+1;
    next_record;
    end loop;
    /* For the last record */
    for k in 1..3
    loop
    If not name_in(:system.cursor_item) is NULL Then
    args:=Client_OLE2.create_arglist;
    Client_OLE2.add_arg(args, j);
    Client_OLE2.add_arg(args, k);
    cell:=Client_OLE2.get_obj_property(worksheet, 'Cells', args);
    Client_OLE2.destroy_arglist(args);
    Client_OLE2.set_property(cell, 'Value', name_in(:system.cursor_item));
    Client_OLE2.release_obj(cell);
    End If;
    next_item;
    end loop;
    Client_OLE2.Release_Obj(worksheet);
    Client_OLE2.Release_Obj(worksheets);
    /* Save the Excel file created */
    args := Client_OLE2.Create_Arglist;
    Client_OLE2.Add_Arg(args,'d:\test.xls');
    Client_OLE2.Invoke(workbook, 'SaveAs', args);
    Client_OLE2.Destroy_Arglist(args);
    /* release workbook */
    Client_OLE2.Release_Obj(workbook);
    Client_OLE2.Release_Obj(workbooks);
    /* Release application */
    Client_OLE2.Invoke(application, 'Quit');
    Client_OLE2.Release_Obj(application);
    END;
    4. Save the form and compile it.
    5. Run the form.
    6. Execute the query in the block.
    7. Click on the button.
    8. An excel file will be created in the d:\ directory by the name test.xls.
    Kind regards,
    Alex
    If someone's answer is helpful or correct please mark it accordingly.

  • Will Premiere Elements 9 edit and save changes to avchd losslessly?

    Hi,
    I want to buy a new premiere elements to replace my old one (vrsn 3), can I upgrade it still or is it too old?
    Also, will the new premiere elements 9 edit and save changes to avchd files from Panasonic and Canon without losing any quality?
    I came across 'provides native support for avchd'; what does it mean? Does it mean that I can edit and save avchd files with out losing quality?
    Thanks,
    H

    For your several questions...
    One... download and try the 30-day free trials
    Two... read in the user guides
    CS5 User Guides - online and PDF (see link in upper right corner at individual pages)
    http://blogs.adobe.com/premiereprotraining/2010/08/help-documents-for-creative-suite-5-pdf -and-html.html
    http://help.adobe.com/en_US/PremiereElements/8.0/Win/Using/index.html
    P-Elements 9 http://help.adobe.com/en_US/premiereelements/using/index.html

  • Will the new premiere pro edit and save changes to avchd losslessly?

    Hi,
    I want to buy a new premiere elements to replace my old one (vrsn 3), can I upgrade it still or is it too old? Or should I still stick to Premiere elements?
    Also, will the new premiere pro edit and save changes to avchd files from Panasonic and Canon without losing any quality?
    I came across 'provides native support for avchd'; what does it mean? Does it mean that I can edit and save avchd files with out losing quality?
    Thanks,
    H

    For your several questions...
    One... download and try the 30-day free trials
    Two... read in the user guides
    CS5 User Guides - online and PDF (see link in upper right corner at individual pages)
    http://blogs.adobe.com/premiereprotraining/2010/08/help-documents-for-creative-suite-5-pdf -and-html.html
    http://help.adobe.com/en_US/PremiereElements/8.0/Win/Using/index.html
    P-Elements 9 http://help.adobe.com/en_US/premiereelements/using/index.html

  • In iphoto, how do i save a photo after editing, in the same or higher file size, it's saves in a lower size

    in iphoto, how do i save a photo after editing, in the same or higher file size, it's saves in a lower size

    It's rather more complicated that this.
    iPhoto is a lossless editor. You don't lose any quality on your shot in iPhoto.
    The file size you see reported is the size of your iPhoto Preview: this is what gets used if you access the data via a media browser. It's a "good-enough-for-most-uses" version of the shot. Email it, upload to websites, use it in Presentation, Word processing file etc
    If you want to set the quality yourself then Export the photo using the File -> Export command.
    You can choose to export to Jpeg, Tiff or png. Tiff is lossless but the file sizes are up to 10 times larger. Jpeg allows you to choose different qualities: High, Medium or low. The difference is the amount of compression involved. High quality means very little compression. It's not unusual for photos exported at this setting to have a larger file size than the original.
    Which setting you choose depends on the use you intend. Further editing, printing then high is important. Sending to Facebook? Well low will do just fine there as they're going to trash the file anyway.
    But the key point: the file size only becomes an issue when you export.
    Regards
    TD

  • How can I edit and save a raw file in jpeq and open it in windows live photo gallery

    how can I edit and save a raw file in ps elements 10 and open it in windows live photo gallery?

    Change to 8 bit mode before clicking the Open Image button, then jpeg will become available as a choice.
    Click to view image

  • Open an existing file, edit and save in Forms 10G R2

    Dear all
    Could u pls tell me how can i open a file like .doc,.xls extension. and i want to input some data to that file and save.These all i need to oracle 10g R2 version click on a button. How can i open .pdf and html file(Read Only).
    Regards,
    MAR

    You can do this to show a file on the client file system...
    web.show_document('file://c:\mypath\myfile.doc', '_blank');
    This will lauch the word document in word. The user can then edit and save it from word. This basically is calling your web browser and your web browser then hands off the file to a helper app. This will work for any file type that the client has helper app to display.

  • How to sync two excel files, the content is the same in both files after edit.

    I have two excel files, which are data and edit by multi users, how can I sync the master files to the copy files after edit?
    Is this operation required VBA? marco?

    Hi,
    Your request could be done via VBA code. Here are two ideas.
    One:
    Syncing the data from master file to the copy file without opening copy file. Sample code
    Private Sub Worksheet_Change(ByVal Target As Range)
    If Target.Count > 1 Then Exit Sub
    Dim cnn As Object, SQL$, s$
    Select Case True
    Case Target.Value = ""
    s = "null"
    Case IsDate(Target.Value)
    s = "#" & Target.Value & "#"
    Case IsNumeric(Target.Value)
    s = Target.Value
    Case Else
    s = "'" & Target.Value & "'"
    End Select
    Set cnn = CreateObject("ADODB.Connection")
    cnn.Open "provider=microsoft.jet.oledb.4.0;extended properties='excel 8.0;hdr=no';data source=" & ThisWorkbook.Path & "\test folder\Book2.xls"
    SQL = "update [Sheet1$" & Target.Address(0, 0) & ":" & Target.Address(0, 0) & "] set f1=" & s
    cnn.Execute (SQL)
    cnn.Close
    Set cnn = Nothing
    End Sub
    Two:
    Saving the master file as copy file before closing. Reference:
    https://msdn.microsoft.com/en-us/library/office/ff194765.aspx?f=255&MSPPError=-2147217396
    If you have any further question about coding, I recommend you post the question to the MSDN forum for Excel
    http://social.msdn.microsoft.com/Forums/en-US/home?forum=exceldev&filter=alltypes&sort=lastpostdesc
    The reason why we recommend posting appropriately is you will get the most qualified pool of respondents, and other partners who read the forums regularly can either share their knowledge or learn from your interaction with us. Thank you for your understanding.
    Regards,
    George Zhao
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected].

Maybe you are looking for

  • Backend BW roles for users needed when running reports in infoview?

    Hello all, We are using SAP BI Queries as the sources of our universes, the user is going to logon to infoview to run report in webi. We have created some access levels in CMC to restrict users, the question is - the user will still need some kind of

  • SQL file not working in Oracle

    I cannot get all my tables to work in Oracle, can anyone see where i'm going wrong? CREATE TABLE Property (Property_Num CHAR (4) PRIMARY KEY, Property_Address CHAR (25), Property_City CHAR (15), Property_State CHAR (2), Property_Zip CHAR (5), Propert

  • Generally positive impression...

    After some frustration with Firefox, I decided to try Safari for the first time. I'm a PC user because I like to tinker (in fact, am a professional tinkerer), and demand a computer conforms to me rather than the other way around. Consequently, a Mac

  • Exception caught while loading clients.xml: [object Error] in IE

    I’m following lesson 9 from Adobe Dreamweaver CS3 Classroom in a Book which starts with viewing in a browser the final web page provided on the CD that comes with the book. The problem is that when I browse that file, IE 7 gives this error: quote: Ex

  • Info on some good Books For abap required ...

    Hi!! I got a chance to order some books ONLINE .... CAN SOME 1 TELL ME link for a good SAP books which i can buy thrugh credit card ... ON The FOLLOWING TOPICS ..... priority wise:- 1) SCREEN PAINTER 2) OO ABAP 3) Ive done "SAMS ABAP IN 21 DAYS" and