Caption in LR Mobile

How can I caption photos on my Airbook while client reviews on LR Mobile for iPad?

Lightroom Mobile 1.0 has no provisions for modifying metadata. Right now, you can set a Pick/Reject Flag and that is about all.

Similar Messages

  • Merge Library Fails - Claims Duplicate Library

    I am attempting to merge to Libraries. When I select the newer library as the file to import into the older Library I get an error message stating: The library could not be imported because it is a duplicate of the library currently running. When in fact they are not the same libraries. The names are different and there are altered images as well as new images.
    I tried repairing both Libraries. Each Library are on different drives.

    I'm having the same problem Michael reported (running Aperture 3.2.2 on 27" iMac with Lion 10.7.2 or Macbook Pro with Lion 10.7.2).
    J.F.'s response looked hopeful although it was a bit vague on some details.
    I tried various steps (see below), and nothing resolved the problem.
    HAS ANYONE WITH THIS ISSUE FIGURED OUT A SOLUTION?
    I had made a copy of my iMac aperture library to a mobile drive.
    I then updated the iMac library and wanted to merge those changes back into the library copied onto the mobile drive. It doesn't work: on my iMac I get the error that the libraries are duplicates (NOT true!).
    Building on J.F.'s info, I tried a few things in vain (starting with two originally-identical libraries: original iMac aperture library [modified after copying to mobile drive], and mobile aperture library that is a copy of the original iMac aperture library copied onto my mobile drive before I made some further mods to the iMac aperture library):
    * All on the iMac: option-click Aperture icon on iMac and select to create new (empty) library (on iMac hard drivez), then copy over DataModelVersion.plist from this new (empty) library into mobile library; open mobile library and merge into original iMac library: SAME ERROR
    * iMac+macbook pro #1: move mobile library drive to Macbook Pro and open there (even modified one image with an added caption), then moved mobile library drive back to iMac and open there and try to merge in original iMac library: SAME ERROR
    * iMac+macbook pro #2: option-click on Aperture icon on macbook pro and select to create new (empty) mobile library (on mobile drive!), then move mobile drive back to iMac and on iMac copy over DataModelVersion.plist from new (empty) library on mobile drive to original mobile library; open this original mobile library and merge in iMac library: SAME ERROR.
    Looking for help!
    Regards,
    Colin

  • Is there a way to change caption info from my iPad in Lightroom Mobile?

    I want my client to be able to caption photos as I do the processing from my laptop.  I want him to work from my iPad. Can this be done? I have the two devices synced. It seems to be working correctly. I just cant find the button to let me do the caption.

    Thank you so very much.  That is, unfortunately, the ONLY use that I have for the mobile app.  It will be useful **someday** but not today. Many, many thanks again.

  • Slideshow captions appear to have boxes around them when viewed on mobile devices

    Hi... I searched for this problem but couldn't find a reference - appologies if I didn't quite use the right search terms and it's already been answered.
    I am having problems with a basic slideshow widget - when viewed on a PC (iMac in this instance) the image captions, counter and navigation buttons do NOT have any visible borders (I haven't stroked or filled the container boxes, other than the nav buttons). However, view the same slideshow on an iPad, or iPhone and there appears to be boxes around the caption, counter and nav buttons. I would prefer there to be no visible box outlines.
    The problem page can be viewed here (remember, fine on a PC, not fine on a mobile device)
    http://mikehiggs.co.uk/musesite/case-studies.html
    There are two slide shows on the page as I tried two different widgets - both have the same problem.
    The odd thing is, I used the same method on the Home Page slideshow at the top of the page and this is working fine.
    If anyone can shed any light on this 'problem' I'd very much appreciate it - I have tried everything I know at this stage.
    Thanks in advance of any help.
    Addendum...
    If I change the slideshow transitions from 'horizontal' to 'fade' the problem goes away. But I would prefer the slideshow to slide.
    Just thought this extra info may help diagnose the problem.
    Message was edited by: MikeHiggs

    Hi Mike
    I tried to check the link in PC and phone both , i don't see boxes around the caption or counters.
    Its the same view in desktop and phone.
    Phone View :
    Desktop view :
    Can you please check with another phone device and if you still see the same effect , please upload few screenshots.
    Thanks,
    Sanjit

  • Horizontal scrolling with captioned images?

    Hey everybody I'm helping a friend with his new site and need help figuring this out:
    - I want to add left-aligned text captions below each of the horizonal scrolling images.
    - I also want the images/captions to automatically resize to fit every window size (as the images currently do) - would be great if the image caption texts would automatically resize and become smaller with smaller window sizes.
    Example here (this is a test without captions): http://briankokoska.com/indextest2.html
    If somebody could please try to code the page including the word "caption" left-aligned underneath each of the images I would be very greatful. This way i can add the proper captions myself.
    Thanks in advance for your help!!!

    Horizontal scrolling and fixed divisions don't work well in mobile devices.
    Try this code in a new, blank document and SaveAs test.html.  This works much better in mobile/tablet devices.
    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>BRIAN KOKOSKA</title>
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <!--[if lt IE 9]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
    <style>
    margin: 0;
    padding: 0;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    body {
    width: 98%;
    color: #000;
    padding: 0 1%;
    font-size: 125%;
    font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
    header {
    position: fixed;
    top: 0;
    right: 3%;
    margin: 0;
    width: 35%;
    font-weight: bold;
    text-align: right;
    background: rgba(255,255,251,0.5)
    header * { padding-right: 1% }
    header address a {
    padding-top: 25px;
    margin-bottom: 0;
    color: red
    header p { margin-top: 25px; }
    header h2 a {
    color: blue;
    font-size: 75%;
    margin-top: -10px;
    section { display: table; }
    article { display: table-row; }
    /**Captions**/
    article p {
    display: table-cell;
    vertical-align: middle;
    margin: 2%;
    padding: 2%;
    color: red;
    /**re-usable classes**/
    .center { text-align: center }
    .right { text-align: right }
    .red { background: rgba(255,0,0,0.5); }
    .white { background: rgba(204,204,204,0.5) }
    .blue { background: rgba(0,102,204,0.5) }
    /**links**/
    a img { border: none }
    a {
    text-decoration: none;
    color: #000;
    display: block;
    line-height: 2em;
    a:hover, a:active, a:focus { text-decoration: underline }
    /* Special Rules for Mobile, Tablets */
    @media only screen and (max-width: 1024px) {
    body { font-size: 90% }
    img { width: 100% }
    header {
    width: 100%;
    position: static;
    padding: 0.5%
    article p {
    display: block;
    padding: 0;
    font-size: 90%
    </style>
    </head>
    <body>
    <header>
    <h1 class="right">BRIAN KOKOSKA</h1>
    <address>
    <a href="mailto:[email protected]">[email protected] </a>
    </address>
    <h2><a href="http://mfineart.ca/artists/brian-kokoska-selected-works/" target="_blank">Macaulay &amp; Co. Fine Art</a></h2>
    <p class="blue"><a href="http://briankokoska.com/installationviews">INSTALLATION VIEWS</a><p>
    <p class="white"><a href="http://briankokoska.com/selectedworks">SELECTED WORKS</a></p>
    <p class="red"><a href="http://briankokoska.com/info">INFORMATION</a></p>
    </header>
    <section>
    <article>
    <p>Caption goes here...</p>
    <p><a href="http://lvl3gallery.com/post-hope-1262013-2172013/#1" target="_blank">
    <img src="http://briankokoska.com/briankokoska_posthope_smallest.jpg">
    </a> </p>
    <p>Caption goes here...</p>
    <p><a href="http://lvl3gallery.com/post-hope-1262013-2172013/#1" target="_blank">
    <img src="http://briankokoska.com/briankokoska_posthope_smallest2.jpg">
    </a> </p>
    <p>Caption goes here...</p>
    <p><a href="http://voxpopuligallery.org/exhibitions/painting-bitten-by-a-man/" target="_blank">
    <img src="http://briankokoska.com/briankokoska_paintingbittenbyaman_smallest.jpg">
    </a> </p>
    <p>Caption goes here...</p>
    <p><a href="http://voxpopuligallery.org/exhibitions/painting-bitten-by-a-man/" target="_blank">
    <img src="http://briankokoska.com/briankokoska_paintingbittenbyaman_smallest2.jpg">
    </a></p>
    <p> Caption goes here... </p>
    <p>image here</p>
    Etc.....
    </article>
    </section>
    </body>
    </html>
    Nancy O.

  • Any way to stop facebook exporter from using version names as the caption

    I tried the Aperture 3 facebook export and it is using the version names as the caption. If I change the caption on facebook it then changes the version name in my aperture library when it syncs with facebook. Is there anyway to have it use the caption meta data field instead? You would think if they had that option for mobile me they would have it for FB too.

    Add me to the list of people interested by this issue - but AFAIK there is no way to change this. Let's hope Apple fixes this soon.

  • Mobile me album file names lost

    I have used iPhoto to add two albums to my mobile me gallery and in the process have lost a lot of the file names. I am displaying the photos online so people can choose which ones they would like to order so really need the names/numbers. Is there a way of getting this information back without re-uploading them?
    http://gallery.me.com/alexjcrawford/100154 and http://gallery.me.com/alexjcrawford/100142
    Thanks in advance

    If you used the PSE Organizer and want to restore your albums, version sets, tags, captions, etc. you'll need to restore the catalog folder as well as all your photos.  See the section "Manage Catalog Files" in this tech note for common locations of the catalog folder:
    http://kb2.adobe.com/cps/404/kb404990.html

  • Naming Mobile Uploads Albums for Facebook

    Whenever I upload pictures from my Droid Incredible to my Facebook account, they automatically get placed in the "mobile uploads" album. Is there any way to create a new album when uploading? Thanks a bunch!

    @lady_g, yes there is a way! Follow the steps below:
    - Open your Photo Gallery (Gallery app)
    - Tap on Album (e.g. Camera Shots)
    - On the bottom bar, Tap on share button (the one with two arrow going in opposite directions)
    - On the "Share via" list, Tap on "Facebook for HTC Sense" (not Facebook!)
    - Now tap on one or more photos that you want to upload and tap the "Next" button
    - Optionally you can provide a caption for each photo on the next screen. Once you are done, Tap the "Upload" button
    - On the next screen, the very first field is the "Album" field. Tap on it to choose an existing Facebook album, OR tap on the first option on this list to "Create Album".
    - Provide an Album Name and tap OK.
    - Now choose how you would like to share this album and Tap "Done".
    Hope this helps!

  • "Mobile" Skin and 508

    Captivate 7 has a "Mobile" skin which provides substantially larger buttons for mLearning content.  Unfortunately, there is no closed caption button.  Can we turn on captions by default and can someone tell me how in V7 because when enabling it as an action I am having issues.

    After doing a Captivate 7 Update, the CC button is included now.  7.0.1.237 is the version where it now publishes correctly!

  • Displaying metadata on Mobile Me Web Galleries

    Is there way to control what meta data is shown in Mobile ME Galleries. For example I would like to have captions shown in the galleries, but currently only shows master file name.

    Haundd
    After logging into your Mobile Me Gallery, underneath each picture there is a file name, if you double click the file name, you can type in whatever caption you choose....... clicking away from the picture then saves it. But the length of the caption is limited.
    You could also try Batch Changing Metadata....
    1. In Aperture, select the project, from the project list (or one already listed in your Mobile Me Gallery) in which you would like to edit the Metadata (caption) for your picture's, in your Mobile Me Gallery.
    2. Then go to Metadata,(between "stacks & Window"... not in the project panel ) from the list choose > batch change.
    3. From the batch change list, where it says "Version Name Format" by default it says "Current Version Name" Click the small down arrow and select "Custom Name With index"
    4. Type in your caption where it says "Custom Name"
    5. Click ok and that will batch change all the captions in your project. Re Sync with your MM Gallery to update.
    When you enter a title in "Caption" in the IPTC capture field, this doesn't change the "Version Name"
    The Version name ie: 802K2102 is the file name that is allotted to your picture upon import.
    You could, upon initial import, type, for example "Africa".... in the version name field, and all the pictures would have "Africa" instead of 802K2102.
    These are work around's.... but if you wanted to have each individual photo, in a project, with a different caption across hundred's of photo's....... Not too sure how you would achieve that, or even if it's possible... I would like to know if it is.... :o)
    Hope this is helpful..
    Regards.... W....

  • Help!  code for specifying .vtt caption file doesn't work!

    Hi folks,
    I hope this is something simple.....
    I'm writing plain jane HTML5 code to play .mp4s on mobile devices that won't play Flash content.  I HAVE to have them accessible to the deaf and hard of hearing, so they have to be captioned.  I have the caption files for everything, in .vtt format (which this stuff is supposed to recognize).
    Here's the code:
    <video controls><source src="/sites/default/files/videos/Cathys_voicedintro_draft1.mp4" type="video/mp4">
    <track label="English" kind="captions" srclang="en" src="captions/Cathy_intro.vtt" default>
    </video>
    </body>
    When I hit the link to this page in a browser, the CC button appears for just a second or two....then it disappears.  The video plays fine.  On mobile devices, the video plays fine and the CC option is always there (on some devices) but turning on CC doesn't do anything.
    Have I missed something simple?  I'm on a serious deadline and this has stonewalled me.

    #1 You're going to need more than 1 MP4 file type as some browsers don't support MP4s.  I typically use MP4, OGV and WEBM to cover all bases.
    #2 Refer to this Mozilla development article on adding captions to videos.  Pay close attention to the Caption Menu CSS and scripts.
    Adding captions and subtitles to HTML5 video - App Center | MDN
    Nancy O.

  • Problem viewing captions in HTML Design page

    I'm currently trialling Dreamweaver CS6 on both an iMac and Macbook Pro, both of which are running Mountain Lion. When I create a HTML doc, copying and pasting a Source page, and look at in in Design some text is missing - specifically captions. However, they are in the document as they appear in the Live version of HTML.
    I only have this issue with the iMac, not Macbook Pro, but don't think this is relevant. Any suggestions as to how I can resolve it?

    Here's a couple of samples of code. Firsrly, the captions of these stories don't appear in Design but are OK in Live.
    <strong>
                        In Brief: KDG, SPT                    </strong><br />
              Kabel Deutschland KDG will start distributing Turner Broadcasting System Deutschland’s Cartoon Network HD in October, to be followed by Boomerang HD sometime in 2013. <a href="http://www.broadbandtvnews.com/2012/08/23/in-brief-kdg-spt/" class="more-link">[Read More]</a> <p> </p>
                        <strong>
                        Invitel eyes mobile market                    </strong><br />
              The Hungarian alternative telco Invitel, which is already a leading provider of triple play services in the country, may be about to enter the country’s mobile market.  <a href="http://www.broadbandtvnews.com/2012/08/23/invitel-eyes-mobile-market/" class="more-link">[Read More]</a> <p> </p>
                        <strong>
                        HbbTV consortium releases test suite                    </strong><br />
              The HbbTV (Hybrid Broadcast Broadband TV) consortium has announced the first release of its HbbTV test suite. <a href="http://www.broadbandtvnews.com/2012/08/23/hbbtv-consortium-releases-test-suite/" class="more-link">[Read More]</a> <p> </p>
    Another example of code that doesn't appear:
    <tr>
              <td height="15"><strong>August 23, 2012</strong></font></td>
              <td><div align="right"><a href="http://www.broadbandtvnews.com/category/event-coverage/ibc/"><strong><font color="#333333">Read Our IBC Special </font></strong></a><strong><font color="#333333">/ </font></strong><a href="http://www.broadbandtvnews.com/subscribe"><strong><font color="#333333">Subscribe to Broadband TV News</font></strong></a></font></div></td>

  • HOW TO SEE CAPTIONS WITH DVD PLAYER?

    In an effort to improve my Spanish, I have recorded a number of DVD's of TV programs that are in Spanish. Those TV programs put out captions on CC1 showing the Spanish words. After I recorded those programs I am able to see the program with its closed captions very clearly. Also, if I play a recorded DVD on my Windows PC on Real Player or Windows Media Player, the captions are visible. However, on my MacBook even though I activate captions under Features, I see no captions with DVDPlayer. I can get a separate caption window to come up, but no captions are shown. One help menu states that one can easily activate captions in System Preferences, but I find no reference to them even under Universal Access, Hearing. A search of System Prefs for "captions" yields no results.
    Can anyone tell me how to get the captions to show? (The system is analog line 21 captions).
    Can

    Adobe never produced a working flash player for iOS. In addition, Adobe has formally announced the death of Flash for ALL mobile devices. This inclueds BB, Android, Windows Phones, Android Tablets, etc.
    They tried putting Flash other mobile devices after Steve Jobs voiced is disdain for the CPU hogging pig that is Flash... Seems they finally admitted he was right after all.

  • Titles in LR mobile

    Friends,
    Is it possible to add titles, captions, etc. to images downloaded to the iPad through LR mobile?  If so, how do I do it, and will these titles sync to the desktop?  I looked in the manual and couldn't find it, or I missed it.
    Thanks!
    Steve

    It isn't possible.  Please add your vote and opinion to this topic in the official Adobe feedback forum (it says "keywording" in the topic title but it's really about metadata in general): Lightroom Mobile: Ability to do keywording on the move

  • Setting Metadata in LR Mobile?

    As a travel photographer my primary use for a mobile version of LR to to caption and keyword my images while I am out in the field. Download images from camera to iPad and then pull in to mobile from camera roll.   I have little/no desire to PROCESS the images, just to record what I have shot while I know what it is I am shooting.  I can find no way in LR Mobile to even add a simple caption to an image, let alone keywords or set all the other metadata such as location, city, state etc.  Am I missing something?

    Lightroom Mobile 1.0 has no provisions for modifying metadata. Right now, you can set a Pick/Reject Flag and that is about all.

Maybe you are looking for

  • How Can we get the data from Non-SAP to SAP in WebDynpro

    Hi, I hope u understand my query, How can we get the data from Non-SAP to SAP thru WebDynpro Programming. Help out with the steps for getting the data or procedure. Regards, Mutyapu

  • Error message when upgrading to Tiger

    Hello, I have an iMac G5 running 10.3.9 and I'm finally getting around to upgrading it to tiger. I've installed everything in software update, so I should be completely up to date, and I have all the RAM and hard drive space the apple support page sa

  • Adding additional fields to an Infoset Query

    Hi Experts, I have added a couple of additional fields to an infoset query using SQ02. I have also written code for filling in the fields. I have also added them to some Field Groups. Despite this, when I run the query, they are not being displayed i

  • Standard document interface is not available

    Hi All, I am using the method "get_spreadsheet_interface" from class "i_oi_document_proxy" to get the interface from an 2007 Excel File with multiple worksheets.  I have successfully opened the file using "open_document" but when I execute the "get_s

  • Safari repeated 'quit unexpectedly'

    On our son's Mac mini, running OS 10.4.11 1.5Ghz 512 RAM. Working uneventfully for several years. recently he's been playing free on line games with some downloads - solo, not interacting on line with anyone else. Now if click on safari we get a narr