Comment on this Lightroom forum

The volume of traffic on this forum is so great and varied, the forum needs a different structure.
One with categories of discussions.
As the forum is now stuctured, you have to wade through days of postings to find posts relevant to your problem.
Please do not mention the Forums search as the an answer.
While it is a very engine, the results also include all other forums.
If categories were setup according  to Lightroom modules, that alone would help or even a system of tagging posts.
Something to make the forum posts more useful.

That's strange.
I don't use these forums as much as I probably should, but I get messages to my private email only when someone replies to a discussion I initiated.  Also, when I go to the My Stuff Discussions window, I only see discussions that I initiated.
Because I don't use the forums that often, last night I was trying to find responses to my discussion I initiated yesterday.  At first, I had to go through a number of pages, like you did, to try to find my discussion.   Then I saw the "My Stuff" option.
What I haven't been able to figure out, as suggested by someone else on this thread, is how to limit responses to only Lightroom.
If I find out anything else, I'll let you know because I have similar questions like you do.

Similar Messages

  • Importing XP Comments Field into Lightroom 3.3

    I have a large number of jpg's I have tagged, commented, and added subject and title too.  All tagging has been done in windows with most done in vista and windows 7.  I recently got Lightroom and am importing the existing files.  The tags come through as keywords fine, but the other data does not appear to import.  I checked and see the comments are stored in the XP Comments field in the exif structure.  I saw some old posts about problems importing certain data and where it is mapped within Lightroom.  Is there any easy way to bring this data across? Am I missing something?  this seems like a pretty basic function.
    Thanks

    The problem is twofold: where in the metadata these "comments" are stored, and how Lightroom might display this information.
    There are no really good defined places for general comments in the current metadata definitions used by image vendors.  The ones that do exist are abused in a great number of ways.  However, you could see which of these is displayed in Lr (I think one of the IPTC fields might be) and process the image files to copy the comments to this field. I'd use a tool like EXIFTool to do this, make sure you save metadata to the file (or sidecar) and then read it back in again once you have finished tweaking it outside of Lightroom.

  • Comment débloquer Lightroom sans numéro de série lorsqu'on a souscrit au Programme de photographie Photoshop

    comment débloquer Lightroom sans numéro de série lorsqu'on a souscrit au Programme de photographie Photoshop ?

    Ask for serial number http://forums.adobe.com/thread/1234635 has a FAQ link
    or
    Chat Now button near the bottom for Activation and Deactivation problems may help
    http://helpx.adobe.com/x-productkb/policy-pricing/activation-deactivation-products.html
    OR
    Asked to sign in after paying may help
    -http://helpx.adobe.com/x-productkb/policy-pricing/activation-network-issues.html

  • Why don't the FAQ's in this Sub-Forum Work?

    Why don't the FAQ's in this Sub-Forum Work?  Not in Firefox 22.0 or IE 8-latest.

    They do now.

  • Please comment if this is a BUG in MII 12.2 or Normal?

    Hi,
    MII Version in Use:- 12.2.2 Build(235)
    I am trying to use "TransactionPath" function from Link editor to obtain the path for current transaction. Now when I execute this transaction from workbench, everything works fine as expected and desired.
    The problem comes when I run this transaction using Runner service.
    I mapped the result of TransactionPath function to an output variable and then checked its value using runner service, and the output was a blank tag(for my output variable). The bigger problem comes when I try to implement some string functionality on the output of TransactionPath function. At this the transaction fails becaue the links that hold string operation fails(and thats because TransactionPath is returning null value).
    Also, Just to proof check that my transaction, runner service URL and mappings etc are correct, I changed the TransactionPath function to TransactionId function and then I started getting result in my output variable tag in output xml. Thus with every refresh that I did , the transaction ID increased by 1 value.
    Please comment if this a known issue or bug or there is something that I am missing or this is a expected result for some reason !!
    Best Regards
    Piyush Govil

    Hi Piyush,
    I also checked that the transaction path is not coming in the output xml but from the workbench with a tracer it is working fine.
    I also verified that all other things are coming as they should but not the transaction path.
    Regards,
    Anuvrat

  • Bought a camera that included a Lightroom5 software... I don't have cd-player in my mac, can I download this Lightroom 5 from internet?

    Bought a camera that included a Lightroom5 software... I don't have cd-player in my mac, can I download this Lightroom 5 from internet?

    Lightroom - all versions
    Windows
    http://www.adobe.com/support/downloads/product.jsp?product=113&platform=Windows
    Mac
    http://www.adobe.com/support/downloads/product.jsp?product=113&platform=Macintosh

  • Comment on this code please

    I would like your comments on this code. Doesn't it have a few oppertunities? I know it's jsp, but question is not directed toward the jsp, just the logic/syntax/etc. How about the == for starters?
    <%
              String z_Desc = (((String)hshipTrackSummaryDocList.get("Z_DESC")) == null) ? "" : (String)hshipTrackSummaryDocList.get("Z_DESC");
              if (z_Desc  == "" ) {
         %>
         <%
              }else {
         %>
                      <%=(((String)hshipTrackSummaryDocList.get("Z_DESC")) == null) ? "" : (String)hshipTrackSummaryDocList.get("Z_DESC")%></font>
         <%
         %>

    Hi mlovern! This code has several opportunities for "improvement". I noticed that the get("Z_DESC") method is called on hshipTrackSummaryDocList object several times. Each time, it returns the very same value. Hence, in the interests of efficiency, it's a better idea to call it once, save the return value and then use the latter.
    Also, I'm not too clear about exactly what you intended to do in the else clause. As it stands, your else clause will cause the JSP to fail.
    Be very careful while using the "==" operator while comparing strings. That causes object comparison, not object content comparison. The latter is the required test most of the time. Also, while comparing the contents of the strings, it's better to call the equals() method on the empty string or a constant string. So, if I needed to compare a test value against an empty string or a constant, here's how.
    if ( "".equals( testString ) )
       // do something
    else if ( SOME_CONSTANT.equals( testString ) )
       // do something
    }In the above code, even if testString was null, a runtime exception will not be generated. However, if the equals() method was called on testString and it happened to be null, you'd be looking at an exception.
    Here's how I would have written the code you supplied.
    String zDescValue = (String) hshipTrackSummaryDocList.get( "Z_DESC" );
    if ( zDescValue == null ) zDescValue = "";
    if ( "".equals( zDescValue ) )
       // do something useful
    else
      // do something else
    }I've also come across similar situations. In order not to repeat the same code everywhere, I've wound up writing a couple of utility methods to assign "" to a string if it's null. Here are those methods.
    public static String processStringValue( String inputString, String defaultValue )
       return ( inputString == null ? defaultValue : inputString );
    public static String processStringValue( String inputString )
       return processStringValue( inputString, "" );
    }Finally, you may want to be careful about the code fragments you post. From your post and profile, I can guess where you work. Your employer may or may not care if parts of their code start showing up on the Internet. It's better to create a general piece of code that approximates what you want to convey. However, it's better to be safe than sorry.
    Hope this helps!
    Cheers!

  • RFEBLB03 please comment on this file as it has no documetation.

    RFEBLB03 please comment on this file as it has no documetation.

    Hi Anji,
             Could you please tell why this program is used at all and how do I expect the data to arrive?? Is conversion required after this and where am I supposed to update the converted data??

  • I'm trying to find out why my phone isn't here yet, 30+days, and I can't find a single contact number on this website. Why do I have to sign up with this stupid forum? I have better things to do, like find a new carrier!!

    I'm trying to find out why my phone isn't here yet, 30+days, and I can't find a single contact number on this website. Why do I have to sign up with this stupid forum? I have better things to do, like find a new carrier!!

    800-922-0204 option 4, say agent, ask.

  • What Has Happened to the LightRoom Forum

    What happened to the LightRoom forum. I have not got any emails  from the LightRoom forum in the past 2 days.
    Tunney

    My monitor profile has nothing to do with having LightRoom messages delivered to my computer as per the past. However, my monitor is profiled once a month  and is just fine. I cannot imagine the monitor profile having anything to do with the forum messages not being delivered to my 27 inch iMac, as per the past. For the record;, I have received two replies to my question as forum mail but have not viewed or received any other discussions that are taking place in the LightRoom forum. Is there a reason why??
    All LightRoom forum mail would be delivered to my iMac, but for some reason, they are no longer being sent to me. I really thought there was something wrong with the forum itself.
    Tunney

  • How do I stop e-mails from the photoshop lightroom forum?

    How do I stop receiving e-mails from the photoshop lightroom forum?

    You can turn on and off email notifications for a given thread, in the right-hand column, when viewing that thread (while logged in).
    If you view your profile page (while logged in) there's a "Manage email notifications" link at the top right, which takes you to a list of all threads you are "watching" one way or another. There's a column of checkboxes at the end - and a header checkbox which fills or clears the checkboxes against all entries. At the bottom of the list is a button to remove email notifications across all the current highlighted items.
    There are also settings for general (auto) email notification, in the user profile / edit preferences / Email notification preferences. For example, you can choose whether or not to auto-subscribe for notification, with future threads you may start.

  • Suite a perte du mot de passe windows comment désaciviter lightroom par l'accès invité ?

    .Suite à la perte du mot de passe desinstaller windows 8.1 sur mon portable ASUS. Comment désactiviter lightroom 5 par l'accès invité pour pouvoir le réactiver ?

    There is no need (or means) to deactivate Lightroom.  Just reinstall and reactivate using the serial number you have.

  • How to change password for this Apple forum ?

    Hi there,
    I have a problem, I forgot both my userid and my password for this forum. I am able to login now because it is being memorized by the computer but I cannot remember what it was. So now, I can only login from this desktop !
    I can only remember the email I used. Is the email the userid or can it be something else ?
    Thanks

    Jakob Peterhänsel wrote:
    Well, your rescue is one of:
    1: appleid.apple.com !
    2: The Keychain app on your computer!
    But a strange place to ask, in the Final Cut Pro X forum.. ;-)
    Thanks Jakob,
    I asked here bcos I thought we have separate userid & password for this FCPX forum.
    So, we all use the Apple ID as our userid. So is my email = my Apple ID ?
    Btw, what is a Keychain app ?
    Thanks

  • I copied onto my pc several tracks from a cd off mem stick but only 1 would synch onto my ipad. Ive done it correctly accordinsynch onto my ipad. Ive done it correctly according to other comments in this column. Help!

    I copied onto my pc several tracks from a cd off mem stick but only 1 would synch onto my ipad. I've done it correctly according to the comments in this column. Help!

    Audio formats supported: HE-AAC (V1 and V2), AAC (8 to 320 Kbps), Protected AAC (from iTunes Store), MP3 (8 to 320 Kbps), MP3 VBR, Audible (formats 2, 3, and 4, Audible Enhanced Audio, AAX, and AAX+), Apple Lossless, AIFF, and WAV
    Are the formats of all the tracks on the above list?
    Did you copy the tracks into iTunes and then synced your iPad?
    Did you remember to select the new tracks in iTunes so that they are added to your iPad when you sync?
    Finally what, if any, error messages did you get when you attempted to sync and the new tracks were not added to your iPad?

  • Add Facebook Comments to a Lightroom HTML Gallery template

    If you prefer displaying your photos on your own website using Lightroom’s web galleries over uploading your photos to Facebook then one of the drawbacks is the lack of commenting. Fortunately, there’s a way to add Facebook Comments to your own website and gallery. See an example here. To implement this solution see the step by step tutorial:
    http://so.ca/?p=265
    Does anyone know if Lightroom templates are over-written when upgrading to a new version of Lightroom? It would be annoying to have to repeat these steps with each version upgrade.
    Thanks.

    Hi Jerfrank,
    If you are looking outside of SharePoint, I would suggest you to check Facebook SDK to integrate with your site.
    Here are few links to start with -
    https://developers.facebook.com/docs/javascript/quickstart/ 
    http://web.appstorm.net/roundups/social-media-roundups/15-simple-ways-to-integrate-facebook-into-your-website/
    <cite>https://facebooktoolkit.codeplex.com</cite>
    https://developers.facebook.com/samples
    https://www.facebook.com/leadingbyexample
    And a bing search for "Facebook developer API" could also help you.
    Hope this helps!
    Ram - SharePoint Architect
    Blog - SharePointDeveloper.in
    Please vote or mark your question answered, if my reply helps you

Maybe you are looking for