Open images in Lightroom from other application

Using a picture browser or other image management application, after selecting one or more raw files (maybe from different folders), what is the syntax for a call to Lightroom to open those files (best directly in the develop module)?
Right now I can ask to open the images in Photoshop/ACR or to open a folder on Bridge, but I can't find out how to do that with LR. I just can't bypass the catalog part which is useless to me.

LensView wrote:
Both questions are not specific to my own workflow problem, but are rather normal functionalities for an image management tool, which LR wants to be.
I might disagree a little here, depending on your definition of "normal".
IMO Lightroom is a SOLUTION to some of the more awkward, repetitive and limiting aspects of the normal - or let's say, usual - principle by which conventional software works.
That is: to open FILES from the file system, change their contents, and then save updated versions back to the file system, replacing the prior versions. With this concept, the file is the working data; and the working data is fully represented in the file.
Now this kind of method can be extremely powerful, and is completely familiar to anyone who has used any kind of standard computer program. So familiar, that it can seem like the only possible way that work can sensibly be done. But this is NOT what Lightroom "wants to be".
Lightroom does in fact "want" the user to achieve everything normally required: starting with a picture in the camera, ending with a print / JPG uploaded to a web gallery / whatever, via an interactive editing and management environment. And that is precisely what it delivers - it just does not do so by conventional file-based means.
Well, technically it's more accurate to say it does - but the working data file concerned, which is Opened from disk at the beginning of your session, changed, and written back to disk as updated data, is... the Catalog.
In LR you are in effect dealing with "pictures" rather than files per se. A "picture" consists of the dynamic combination of an original file on disk, together with some live information derived from the Catalog database.
So you can manipulate a whole library of such pictures not only at speeds not otherwise possible (if you were attempting to open and save those individual image files conventionally); but also, in organisational ways that ignore the limitations of a file-based approach. These include involving a given original image file on disk, in multiple processing variations, and multiple mutually exclusive groupings, on-the-fly without requiring any physical change or duplication of the file involved. It is all far more fluid and open-ended, because the whole undertaking  is virtualised via the Catalog database, and a whole workflow specifically designed around that.

Similar Messages

  • HT4211 I can't get words to open. I have no other applications open, but every time I tap the icon I gat an oops error message that a problem has occurred. ***

    can't get words to open. I have no other applications open, but every time I tap the icon I gat an oops error message that a problem has occurred. ***

    First try killing Words. When on the home screen double press the HOME button, then swipe the screen image of Words up to close it.
    Next, reset your iPhone by holding HOME and SLEEP until an Apple logo appears. If the problem is not resolved delete the app from your phone, reset the phone again, then reinstall the app.

  • Help - "Acrobat is being used by another application and cannot open PDF files until the other application is closed."

    Hello,
    I searched this site and google for this error terminology and come up dry.  I support a user who has been for years using Acrobat 5 (yes, I know...) to read files in a client DB program, as well as other PDF files on their PC.  In the last week or so, they have started gatting this error "Acrobat is being used by another application and cannot open PDF files until the other application is closed." any time they attempt to open a PDF file attached to an email (via Outlook).
    It is my understanding that they cannot upgrade to a newer version of Acrobat because of limitations of their client software, but had not previously had any issues viewing PDF notes from the DB, and PDF attachments in their email.
    I have tried uninstalling and re-installing, as well as tried using Adobe Reader 7 & 9 in conjunction with Acrobat to try to get around this issue, but have not been successful.
    Any ideas?
    Thanks,
    Jesse

    I don't have an answer to your technical problem. The product I assume is Acrobat that you are talking about (based on the post title), Adobe is the company name. This is a good place to ask questions on Acrobat if folks can figure out what you are talking about. They will ask for the product version number (like AA9.3.3), operating system, and other applications if appropriate. Also, just what you are doing that generates the message.
    As for Adobe, you are not likely to get an answer from them here in the user forum. You will be lucky if you can get an answer if you can contact them and not be on hold for more than an hour (sorry, this is why a lot of folks end up in the forum).
    So, to help others try to answer your question, what are the products and versions involved? What OS? What are you doing when the message comes up.

  • What does "Easily import photos from other applications" really mean?

    What does "Easily import photos from other applications" really mean in the Lightroom 4 features list? I also see it stated as "...from other software" as well. Yes, I understand the LR can import from Elements libraries but can't find any reference to other applications anywhere, not in the online help, not in the user guide, not in any videos on Adobe TV. It would be nice if LR could see into iPhoto or Aperture libraries but that doesn't appear to be the case. Is that assumption correct? What other applications can LR import from?

    Hello bbb34vball,
    Since that article didn't help, I would suggest trying the steps in this article next:
    iOS: Unable to import photos to computer - Apple Support
    If that doesn't resolve your issue, you may find more information by using another one of Apple's support resources - https://getsupport.apple.com/GetproductgroupList.action.
    Regards,
    Jeff D. 

  • To open an external URL from your application

    Hello All,
    Please guide me in below scenario as I am new to SAP UI5.
    I have created a SHELL application with 5 tabs.
    We have a requirement where on clicking of a tab in the application it should open an external url. I am using "link" element of sap.ui.commons library. On press of link to action function I am using below code to open external url content.
    location.href = "http://google.com";  
    It is opening in the same tab but I have been navigated away from my application.
    As per the requirement external url content should be opened  without navigating away from my application.
    I am attaching the screenshot.
    Thanks
    Ansuman

    Hi Jagadeesh,
    See this code for reference.
    This is my view.
    sap.ui.jsview("demo.view1", {
           /** Specifies the Controller belonging to this View.
           * In the case that it is not implemented, or that "null" is returned, this View does not have a Controller.
           * @memberOf demo.view1
           getControllerName : function() {
                  return "demo.view1";
           /** Is initially called once after the Controller has been instantiated. It is the place where the UI is constructed.
           * Since the Controller is given to this method, its event handlers can be attached right away.
           * @memberOf demo.view1
           createContent : function(oController) {        
                         var btn1 = new sap.ui.commons.Button({
                               text: "This Is View One."
                         var link = new sap.ui.commons.Link({
                               text: "view3",
                          press : function() {                          
                                $("#frameId").slideDown();                                 
                         var iframe = new sap.ui.core.HTML("frameId",{
                          content : "<iframe src=" + 'http://www.jnvbuxaralumni.com' +" width='100%' height='700px'></iframe>",
                         var ele = [btn1, link, iframe];
                         return ele;         
    This is my controller.
    sap.ui.controller("demo.view1", {
           onAfterRendering: function() {
                  $("#frameId").hide();
    This is my index.html.
    <!DOCTYPE HTML>
    <html>
           <head>
                  <meta http-equiv="X-UA-Compatible" content="IE=edge">
                  <meta http-equiv='Content-Type' content='text/html;charset=UTF-8'/>
                  <script src="resources/sap-ui-core.js"
                               id="sap-ui-bootstrap"
                               data-sap-ui-libs="sap.ui.commons,sap.ui.ux3"
                               data-sap-ui-theme="sap_bluecrystal">
                  </script>
                  <!-- add sap.ui.table,sap.ui.ux3 and/or other libraries to 'data-sap-ui-libs' if required -->
                  <script>
                               sap.ui.localResources("demo");
                               //jQuery.sap.require("sap.ui.core.routing.Router");
                               //jQuery.sap.require("sap.ui.core.routing.HashChanger");
                               var oShell = sap.ui.ux3.Shell("shellId",{
                                      appTitle: "Shell Demo Program",
                                      showLogoutButton: false,
                                      showSearchTool: false,
                                      worksetItems: [
                                             new sap.ui.ux3.NavigationItem("homeId", {
                                                    key: "view1",
                                                    text: "Home"
                                             new sap.ui.ux3.NavigationItem("contactUsId", {
                                                    key: "view2",
                                                    text: "Contact Us"
                                      worksetItemSelected: function(e){
                                             this.removeAllContent();
                                             var selected = e.getParameter("key");
                                             var view = sap.ui.getCore().byId(selected);
                                             //console.log(selected);
                                             if( view == undefined){
                                                    view = new sap.ui.view({
                                                           id: selected,
                                                           viewName: "demo." + selected,
                                                           type: sap.ui.core.mvc.ViewType.JS
                                             this.addContent(view);
                                      content: [
                                                    new sap.ui.view({
                                                           id: "viewId1",
                                                           viewName: "demo.view1",
                                                           type: sap.ui.core.mvc.ViewType.JS
                               oShell.placeAt("content");
                  </script>
           </head>
           <body class="sapUiBody" role="application">
                  <div id="content"></div>
           </body>
    </html>
    Here you can see that on click of the link button i am able to display frame in same tab of shell.
    Let me know if it's helpful.
    Regards
    Dhananjay

  • Access Address Book from other applications

    Hi there,
    How can I access Address Book information from other applications (notably the command line, OpenOffice, etc.)?
    In particular, is there a command line utility to access and edit the Address Book?
    Thanks!
    Brian

    One of the best answers would have been the CPAN module: Mac::Glue. Cheers.

  • Unable to receive special characters in XML using UTL_HTTP request from Other application

    Hi Team,
    We are using SOAP request in Oracle Application to Pull XML data from Other application.I am using below commands before receving response but still i am unable to receive special charcters/Spanish Charcters in XML.
    utl_http.set_body_charset(v_http_req, 'UTF-8');
    utl_http.set_header (v_http_req, 'Content-Type', 'text/xml');
    Thanks and Regards,
    Raghul

    Hello,
    Just when you think that you know everything, it is slammed in your face that you don't. The .Mac member name field in the System Preferences DOES NOT take your whole e-mail address. It only takes your user name or whatever comes BEFORE the "@" symbol. There was absolutely nothing wrong with my MacBook Pro (other than ther brain dead user).
    Sorry for wasting your time...
    If we learn from our mistakes, then I obtained my PhD years ago,
    Dr. Z.

  • Is Jolt usable from other application servers?

    Hi All
    Is Jolt usable from application servers other than Weblogic?
    Thanks,
    Rob

    Rob,
    WTC is usable only from Weblogic. Jolt is usable
    from other application servers.
    Bob Finan
    "Rob" <[email protected]> wrote in message
    news:3f4fed5b$[email protected]..
    >
    Hi All
    Is the Weblogic Tuxedo Connector usable from other application servers?I'm primarily
    interested in using the WTC from JBoss.
    Additionaly, does anyone know if Jolt is usable from application serversother
    than Weblogic?
    Thanks,
    Rob

  • Transfer postings from other application components to accounting

    Hi expert, we have to transfer posting from other application components(SD,MM) (system A) to accounting (system B, FI/CO module only).
    Is there any related documents of this aspect? 
    Best wishes,
    Evan

    Hi!
    It will be not so easy. You have to set up an interface between the 2 systems.
    If you are using IDoc based interface, you can send IDocs from SD, when an invoice is enable to accounting.
    You might check out user exits (programs) RV60AFZA, RV60AFZB for this.
    Sorry, but this task will be not ready in 10 minutes...
    Regards
    Tamá

  • Create DLL from labview and calling it from other application

    I have an application built using Labview. I wanted to create DLL out of it. The application has
    two String inputs start and stop buttons and two status indicators.
    1. How to itegrate start and stop buttons from function prototype?
    2. Does Labview created DLLs requires labview runtime engine when it is to be called from other application?
    Can some one help on this.
    Solved!
    Go to Solution.

    Hi Yuvish,
    1) They should be boolean inputs to your VI. But does it makes sense to provide a stop button input at the start of your VI? (THINK DATAFLOW!)
    2) Yes, the LV-RTE is needed...
    Best regards,
    GerdW
    CLAD, using 2009SP1 + LV2011SP1 + LV2014SP1 on WinXP+Win7+cRIO
    Kudos are welcome

  • Firefox v33 knocked out my Adobe 7 pro PDF printer plugin. PDFs print OK from other applications.

    Firefox v33 knocked out my Adobe 7 pro PDF printer plugin. PDFs print OK from other applications. It happened a few times randomly, and it seemed to resolve spontaneously, but now it is persistent.
    I've done scans for malware, which I suspected, but nothing showed up, nor corrected it with cleaning.
    I had this problem before, and I found directions on how to rest the printer within Firefox, but I've forgotten how or where I got it.
    I did try to re-install in control panel, but this appears to be a firefox issue. How do i rest the plugin or Firefox to once again print PDFs from browser pages. I need to use this feature printing receipts etc.

    Are you using a toolbar button (Create PDF extension) or a printer driver (selecting Adobe PDF or Distiller in the Print dialog) to generate the PDF? Older versions of Create PDF have been reported not to work any more (by older I mean from Acrobat X or earlier), but the printing method should still work.

  • I can't print CS5 files from my Mac OSX (Mavericks). Can print from other applications. Help please?

    I can't print CS5 files from my Mac OSX (Mavericks). CS5 crashes when sent to print.  Can print from other applications (Word, etc.).

    I just tried installing them. I got the message that "Some updates failed to install" (including for CS5), to quit and try again. I was curious and tried again to print and lo and behold, I could print!  I'm still nervous that not everything installed and wonder how to get a complete install.

  • Access resource from other application using JAAS

    i use JAAS for autenticate and autorizate in my web application, but i need access a resource from the other application , but this application don�t use JAAS.
    How can i acces this resource from other application?
    i know need send the parameters JSESSIONID, but , always redirecto the login page.
    thank you for your help

    your signon url is consists of the following url http://server.domain.com:port/site/signon.html
    Can you ping server.domain.com from your client?
    If you can ping it, then make sure your port is added as a rule in the firewall of the server.
    Also make sure that the proxy setting of the client have an exception to server.domain.com.
    If you cannot ping it, make sure the server and the client are conneted to the same network and make sure the hosts file on the client reflects the ipaddress and the hostname of the server.
    Hakan

  • Create package with prompt from other application

    Hi Experts!
    I need to create a package in the planning application. In the screen selection I need some dimensions of my planning cube and one dimension of the Ownership application. I don't have any problem with the current application dimension, but I need to retrieve the members of INTCO dimension from Ownership because the user should make the selection. Is it possible to create a prompt from other application?
    Thanks!!

    I create the package in Planning application: 
    PROMPT
    (SELECTINPUT,,,"Selction members","%ENTITY_DIM%,%CATEGORY_DIM%,%TIME_DIM%,%CURRENCY_DIM%,INTCO")
    When i try to select one member of INTCO dimension it appear the following message: "Dimension INTCO is not found". BPC is not finding this dimension because it pertain to another application.

  • Apex 2.2 copying pages from other applications

    Is it possible to copy reports and pages from other applications with APEX 2.2 ?

    Ben,
    Pages, yes. On the Page Definition page, use the Copy button and follow the wizard.
    Scott

Maybe you are looking for

  • Problems with Installation omwb 1.2.4.3.0 Beta

    I have installed Oracle 8i Client 8.1.5 (Oracle Universal Installer 1.6.0.7.0). I download omwb-1_2_4_3_0.exe. But I can't install the Workbench. I can choose Typical or Custom Installation and then I have following message "Der Bereitstellungsbereic

  • How do I output Audio through computer speakers while outputting video via Firewire to TV

    I'm outputting the video and audio streams via a FireWire connected Camcorder to a TV display (used as a third display), but I want the audio to output through the computer speakers and not through the Camcorder speakers as is happening.  If I discon

  • KM WebDav URL is wrong

    Hi folks, I am working on a project to replace our existing EP 7.0 Portal, which relies heavily on KM for it's content, with an Enterprise Portal 7.0 in a cluster. I have built the new cluster system, "Portalnew" and then transported the System Lands

  • Finder sidebar text size

    is there a way to make the text in the sidebar of the finder larger My poor old eyes are struggling ?

  • Creating DNS record

    Hi, Our external facing web server was recently moved to an external hosting provider but when they set it up they set the address as Home - Dilworth School instead of Home - Dilworth School. There is a database backend to this and changing the name