Library grid shortcut issues within web module

If I select any field within the site info dropdown and select something else (to de-select the text field), hitting "G" no longer takes me to the library grid. The shortcut works when I initially enter the web module, but if I select anything from any of the right panel's drop-down menus, the shortcut no longer works. Has anyone else experienced the similar issue? Using LR 1.3 & 10.5.1.

The shortcut isn't working even after hitting the escape key. I tried alternate screen modes and clicking various places around the screen, but to no avail. I tried one alternate test (unfortunately after the original post) and the issue seems to only affect the flash templates. If the issue actually affected others, I would think the updating of the dynamic information for presenting in LR was creating some loop with the flash module that prevented the shortcut key from working. But if the shortcut key works for others when working in a flash template after a dynamic field is selected and de-selected, it's obviously related to my setup (or user error as the case usually is).

Similar Messages

  • Using 2jee library in a web module dc for an applet

    hi,
    i have create an external library dc, added some jars to it and wrapped that external library DC in a  j2ee library dc.
    the web module dc uses the j2ee library dc. after building the web module dc, the jars will not be a part of the war file. 
    the web module dc delivery an applet that reference the jars in the applat tag.
    how i can resolve this problem in nwdi?
    regards
    h.rohr

    hi marc,
    i have create an external library with a compilation and an assembly public part. the j2ee server component library use (wrapped) external library and the web module dc use the j2ee server component library.
    the public parts are visible in j2ee component library dc.
    the web module dc use the dc reference  to j2ee server component dc.
    regards,
    heiko

  • I am having issues with my web module on Lightroom 4 (Mac OS 10.9.5). "an unknown error occurred" while trying to upload to my FTP (no changes in my FTP). Bandaid fix was to export to local folder and upload via Filezilla. However, now that is no longer w

    I am having issues with my web module on Lightroom 4 (Mac OS 10.9.5). "an unknown error occurred" while trying to upload to my FTP (no changes in my FTP). Bandaid fix was to export to local folder and upload via Filezilla. However, now that is no longer working and although upload completes, the URL takes you to a "Forbidden - do not have permission to read this file" page. Lightroom is changing the permissions of each file to 000 instead of 644 for index files and 755 for all others. How can I change the permissions settings in Lightroom?

    I am having issues with my web module on Lightroom 4 (Mac OS 10.9.5). "an unknown error occurred" while trying to upload to my FTP (no changes in my FTP). Bandaid fix was to export to local folder and upload via Filezilla. However, now that is no longer working and although upload completes, the URL takes you to a "Forbidden - do not have permission to read this file" page. Lightroom is changing the permissions of each file to 000 instead of 644 for index files and 755 for all others. How can I change the permissions settings in Lightroom?

  • JSP does not have visibility of java classes in simple Web Module Project

    Dear Experts
    I am developing what I thought would be a very simple Web Module Project for a simple webservice
    to allow a user to logon to Netweaver Portal with a simple logon and password.
    I have not done this in over 8 years, and am somewhat rusty.
    The webservice is package in  a .war and is deployed via an Enterprise Application project as a .ear.
    The issue I am having is that I want to enhance the presentation of the webservice through the
    provision of css and adding a couple of images. The "libraries" are visibile in the build path of web
    module project.
    At the top of my .jsp for logon form I want to import some java libraries in order
    to get String webpath = componentRequest.getWebResourcePath()"/":
    <%@ page session = "true"%>
    <%@ page import = "com.sapportals.portal.prt.resource.IResource" %>
    <%@ page import="com.sap.security.core.sapmimp.logon.SAPMLogonLogic" %>
    <%@ page import="com.sap.security.core.sapmimp.logon.SAPMLogonCertLogic" %>
    <%@ page import="com.sap.security.core.logonadmin.IAccessToLogic" %>
    <%@ page import="com.sap.security.core.logonadmin.ComponentAccessToLogic" %>
    <%  IAccessToLogic proxy = new ComponentAccessToLogic (componentRequest, aResponse, IAccessToLogic.ENV_LOGONCOMPONENT);
    final boolean inPortal = true;
    String webpath = componentRequest.getWebResourcePath()"/";
    // todo: find layout schema...
    aResponse.addResource(componentRequest.getResource(IResource.CSS, "css/main2.css"));
    %>
    However, during runtime the libraries are unknown and I get the following SAPJ2 EE errors
    indicating the methods etc are not known to the jsp:
    Full Message Text
    application [ctxhrofm] Processing HTTP request to servlet [jsp] finished with error.
    The error is: com.sap.engine.services.servlets_jsp.server.jsp.exceptions.CompilingException: Error while executing the compilation rocess: [/usr/sap/SQ1/JC20/j2ee/cluster/server3/apps/com.shell/sp~ctxhroap/servlet_jsp/ctxhrofm/work/jsp_LoginForm1310122356593.java22: package com.sapportals.portal.prt.resource does not exist
    import com.sapportals.portal.prt.resource.IResource;
                                              ^
    /usr/sap/SQ1/JC20/j2ee/cluster/server3/apps/com.shell/sp~ctxhroap/servlet_jsp/ctxhrofm/work/jsp_LoginForm1310122356593.java:23: package com.sap.security.core.sapmimp.logon does not exist
    import com.sap.security.core.sapmimp.logon.SAPMLogonLogic;
                                              ^
    /usr/sap/SQ1/JC20/j2ee/cluster/server3/apps/com.shell/sp~ctxhroap/servlet_jsp/ctxhrofm/work/jsp_LoginForm1310122356593.java:24: package com.sap.security.core.sapmimp.logon does not exist
    import com.sap.security.core.sapmimp.logon.SAPMLogonCertLogic;
                                              ^
    /usr/sap/SQ1/JC20/j2ee/cluster/server3/apps/com.shell/sp~ctxhroap/servlet_jsp/ctxhrofm/work/jsp_LoginForm1310122356593.java:25: package com.sap.security.core.logonadmin does not exist
    import com.sap.security.core.logonadmin.IAccessToLogic;
                                            ^
    /usr/sap/SQ1/JC20/j2ee/cluster/server3/apps/com.shell/sp~ctxhroap/servlet_jsp/ctxhrofm/work/jsp_LoginForm1310122356593.java:26: package com.sap.security.core.logonadmin does not exist
    import com.sap.security.core.logonadmin.ComponentAccessToLogic;
                                            ^
    /usr/sap/SQ1/JC20/j2ee/cluster/server3/apps/com.shell/sp~ctxhroap/servlet_jsp/ctxhrofm/work/jsp_LoginForm1310122356593.java:60: cannot resolve symbol
    symbol  : class IAccessToLogic
    location: class jsp_LoginForm1310122356593
    IAccessToLogic proxy = new ComponentAccessToLogic (componentRequest, aResponse, IAccessToLogic.ENV_LOGONCOMPONENT);
                              ^
    /usr/sap/SQ1/JC20/j2ee/cluster/server3/apps/com.shell/sp~ctxhroap/servlet_jsp/ctxhrofm/work/jsp_LoginForm1310122356593.java:60: cannot resolve symbol
    symbol  : class ComponentAccessToLogic
    location: class jsp_LoginForm1310122356593
    IAccessToLogic proxy = new ComponentAccessToLogic (componentRequest, aResponse, IAccessToLogic.ENV_LOGONCOMPONENT);
                                                        ^
    /usr/sap/SQ1/JC20/j2ee/cluster/server3/apps/com.shell/sp~ctxhroap/servlet_jsp/ctxhrofm/work/jsp_LoginForm1310122356593.java:60: cannot resolve symbol
    symbol  : variable componentRequest
    location: class jsp_LoginForm1310122356593
    IAccessToLogic proxy = new ComponentAccessToLogic (componentRequest, aResponse, IAccessToLogic.ENV_LOGONCOMPONENT);
                                                                                ^
    /usr/sap/SQ1/JC20/j2ee/cluster/server3/apps/com.shell/sp~ctxhroap/servlet_jsp/ctxhrofm/work/jsp_LoginForm1310122356593.java:60: cannot resolve symbol
    symbol  : variable aResponse
    location: class jsp_LoginForm1310122356593
    IAccessToLogic proxy = new ComponentAccessToLogic (componentRequest, aResponse, IAccessToLogic.ENV_LOGONCOMPONENT);
                                                                                    ^
    /usr/sap/SQ1/JC20/j2ee/cluster/server3/apps/com.shell/sp~ctxhroap/servlet_jsp/ctxhrofm/work/jsp_LoginForm1310122356593.java:60: cannot resolve symbol
    symbol  : variable IAccessToLogic
    location: class jsp_LoginForm1310122356593
    IAccessToLogic proxy = new ComponentAccessToLogic (componentRequest, aResponse, IAccessToLogic.ENV_LOGONCOMPONENT);
                                                                                    ^
    /usr/sap/SQ1/JC20/j2ee/cluster/server3/apps/com.shell/sp~ctxhroap/servlet_jsp/ctxhrofm/work/jsp_LoginForm1310122356593.java:63: cannot resolve symbol
    symbol  : variable componentRequest
    location: class jsp_LoginForm1310122356593
    String webpath = componentRequest.getWebResourcePath()"/";
                    ^
    /usr/sap/SQ1/JC20/j2ee/cluster/server3/apps/com.shell/sp~ctxhroap/servlet_jsp/ctxhrofm/work/jsp_LoginForm1310122356593.java:66: cannot resolve symbol
    symbol  : variable IResource
    location: class jsp_LoginForm1310122356593
    aResponse.addResource(componentRequest.getResource(IResource.CSS, "css/main2.css"));
                                                      ^
    /usr/sap/SQ1/JC20/j2ee/cluster/server3/apps/com.shell/sp~ctxhroap/servlet_jsp/ctxhrofm/work/jsp_LoginForm1310122356593.java:66: cannot resolve symbol
    symbol  : variable componentRequest
    location: class jsp_LoginForm1310122356593
    aResponse.addResource(componentRequest.getResource(IResource.CSS, "css/main2.css"));
                          ^
    /usr/sap/SQ1/JC20/j2ee/cluster/server3/apps/com.shell/sp~ctxhroap/servlet_jsp/ctxhrofm/work/jsp_LoginForm1310122356593.java:66: cannot resolve symbol
    symbol  : variable aResponse
    location: class jsp_LoginForm1310122356593
    aResponse.addResource(componentRequest.getResource(IResource.CSS, "css/main2.css"));
    ^
    14 errors
    Exception id: [0019996862AA007E00000436000077FB0004A78CA1BA8324]
    I have added the associated DCs for classes to used DCs and they are visible on the buildpath
    of my webservice.
    What am I missing?
    Many thanks for any advice offered
    Mike

    Have you made runtime references to used libraries...?
    refer page 20 ...in
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/60d99678-1a29-2d10-94b4-9d9a67b7199b?quicklink=index&overridelayout=true

  • DBD: Error while trying to load the transport provider for odbc. Failed to load the library. System error: The specified module could not be found.

    Hello Everyone,
    We are getting an error while trying to create an Universe via Microsoft -> MS Analysis Services 2014 -> OLEDB for OLAP Provider under Connection in UDT -"DBD: Error while trying to load the transport provider for odbc. Failed to load the library. System error: The specified module could not be found."  We have installed BI 4.1 SP05 in our system. As per earlier posts in scn in BO XI 3.x this issue used to be for improper installation of Integration KIT but in our scenarion Integration KIT is within the BO 4.1 package so no seperate installation is required. Moreover I have checked whether all the driver is present under file: "C:\Program Files (x86)\SAP BusinessObjects\SAP BusinessObjects Enterprise XI 4.0\dataAccess\connectionServer\drivers" and seems everything is fine. But still I am getting this error. One important point is we could use IDT because in IDT still we don't have option to connect with 'Microsoft Analysis Services - 2014 (XMLA)' as we are using Microsoft Analysis Services 2014 version.
    Kindly help if anyone has faced the same problem with SAP BO 4.1.
    Thanks and Best Regards,
    Ghosal

    Hello Everybody,
    The problem is solved now after installing "OLEDB drivers from SQL Server 2012 Feature Pack". We had OLEDB drivers that comes directly from SQL Server but that did not worked out in our case.
    Thanks for your support.
    Best Regards,
    Ghosal

  • Web Module created form NWDI does not appear in J2EE-Explorer View

    Hi,
    I have created a DC of Type Web Module. I had it checked in and activated it.
    Afterwards I went to "Inactive DCs" view and created a local project out of the DC.
    When I look at "J2EE Explorer" view, I do not see my newly created object. However it is visible in "J2EE DC Explorer" view. When I edit the .project file and remove the line
    <nature>com.sap.ide.eclipse.component.provider.dcnature</nature>
    I can edit the project in "J2EE Explorer" but not in "J2EE DC Explorer".
    When I am finished with my local work on component I have to copy the line
    <nature>com.sap.ide.eclipse.component.provider.dcnature</nature>
    back into .project-file. Is there a more elegant solution for editing web modules created from DCs?
    Thanks for your help,
    Andreas

    Hello Sidharth,
    By the term "extend", I meant, that
    - eg another developer created the dc,
    - I want to add further functionality to the dc (by "extend" I DID NOT THINK OF CREATING A CHILD COMPONENT).
    Maybe I understood the dc-concept wrong:
    I wanted to reference the JCO-library in my dc and I am missing the entry "Add/Remove Additional Libraries" in the context menu in "J2EE DC Explorer" perspective:
    Is that by design?;
    Do I have to
    - add references to external libraries (like JCO) in local, non-dc J2EE-projects by "Add/Remove Additional Libraries" and in
    - dc projects I have to reference external libraries by "Add Used DC" within the "DC Metadata"?
    Thanks for your help,
    Andreas

  • Can LR Web module converting file name hyphens into underscores be disabled

    Hi,
    I have problems when creating webpages from within LR.
    First I develop the RAW files and converts them to jpegs. Under Lightroom 3 I use the following settings under "Export location":
    Export to: Specific Folder
    Add to This Catalog: ticked
    Existing Files: Choose a new name for the exported file
    This is thus native Lightroom. For existing files the new filenames are generated with a hyphen follwed by a numeric suffix. as follows: for FileName.jpg this would be FileName-2.jpg, FileName-3.jpg.
    Afterwards I use the web module with the TTG Highslide Pro plugin to generate the webpages. For each image on the page there is a link to the original image to download it. It is here where a problem occurs. With the above mentioend naming convention (adding a hypen when files do already exist) there is no problem at all to display the photos nor as a tumbnail, nor in the slideshow.
    When trying to download the high resolution image however a problem occurs. The file can't be found. This is due to the hyperlink pointing to filenames like FileName_2.jpg and FileName_3.jpg. As the image itself is having a hyphen followed by a numeric suffix it can't be found when the link is pointing to that file using an underscore instead.
    So to me that's a little problem as I am not at the steering wheel at any of the two moments where a naming convention is applied; the automatic filename generation at time of export from Lightroom and the change of the hyphen to the underscore when generating the webpage.
    Any Idea how this can be solved? Or having an underscore used by the automatic naming in Lightroom, or using the hyphen (leaving the filename as it is) when generating the webpage with the LR web module.
    I posted that question already at the TTG forum and got the following respnse from Matthew: "Lightroom's Web module converts file name hyphens into underscores. It's not something I have any control over at all."
    Any help would be appreciated.
    Kind regards,
    Patrick

    I have the same problem in that filenames created with (for instance) photographer-place--year_month_day-filename.cr2 are exported by Lightroom 3.4.1 correctly, without change, into jpg versions, but TTG Highslide Gallery Pro (or, rather, Lightroom) forces a conversion eliminating the dashes and replacing them by underscores. TTG states on its website that this is unavoidable in the Lightroom web module, and recommends entering one's wishes in the "File Handling" tab within Lightroom Preferences.
    However, my LR preferences include the standard File Name Generation option "Replace illegal file name characters with: Dashes (-)" so this would indicate that a dash is not regarded by Lightroom as illegal and therefore should be left alone. As is in fact the case on a normal export from a raw cr2 to jpg: no change in Lightroom and therefore no problem. But export via LR via TTG causes an unwanted conversion from dashes to underscores.
    While searching the web I came across this old post http://thephotogeek.com/ttg-web-gallery-client-selections-lightroom/
    which mentions the question as a LR2 bug.
    I then exported a web gallery using LR's standard web template and here too all file names are converted from dashes to underscores, despite what is entered in LR's preferences. So my conclusion is that this remains a LR bug, and no fault of TTG.
    I am delighted with TTG and couldn't do without it, but am still stuck with this issue which shouldn't need to be an issue at all, if only LR would leave things alone.

  • Touchscreen monitor Windows 7 doesn't scroll library grid?

    A big bummer that in the library grid mode (or any other scrollable part of lightroom) I can't scroll with my touchscreen monitor like I can in IE or Chrome or Word etc.??  What is touchscreen compatible in lightroom? I would love for lightroom to be touchscreen friendly.

    When using Windows 7 built-in touchscreen/tablet functionality with a multi-touch compatible monitor, most larger popular programs will let you scroll vertically by just sliding your finger up or down anywhere within the active window, just like an ipad to scroll up or down. You don't have to use the scroll bars on the edge of the window which makes it nice to work through web pages, pdf files, word files etc.  Lightroom 3's library grid scrolls up and down, BUT you cant just finger slide up or down within the window area like most other programs, you have to resort to using the default small scroll bars on the side of the grid (which are too small for finger-touch sliding. thus killing the functionality of the touchscreen monitor).
    I am slightly hand impaired from doing tons of mousework but can work through many pages by touch. I know that lightroom is not built as a "touch-enabled" program (most aren't) but I was hoping, at least, the scrolling functionality that works with most others would work with lightroom.
    I own an Acer t231h 23" HD monitor with multi-touch capability with windows 7 64bit running an Intel I5 with 8gbs Ram, with a second 23" Dell monitor.  The acer monitor lays at 30degrees on my table and so I can stand over it and easily take care of business (still using mouse for 50% of work).

  • Need help using WEB module in Lightroom 2 for .mac/mobile me accounts

    Hello,
    I need help in finding the Server path information for Lightroom 2.  I am trying to use the Web module of Lightroom and build a website and instead of going through another hosting service, I want to use my Mobile ME account, can't I do that?
    I have the user name and password obviously but what is the server path, protocol, path?
    Help please!
    Thanks
    Ray

    For those Mac Users using iWeb, MobileMe, and Lightroom 2, here are step-by-step instructions on how to create a web gallery in Lightroom, upload the gallery to MobileMe, and finally, how to link the uploaded files to the wesite you created in iWeb.
    1. In the Lightroom Library module, create a collection of photos you want to display in your web gallery.  For illustration purposes, we will call your collection Sunsets.  Once created, it will be listed under Collections in the left panel of Lightroom.
    2. Switch to the Lightroom Web module and select the Sunsets collection (from the panel on the left of the screen.)
    3. Chose whichever template you like (from the list of Templates in the left panel).
    4. Fine tune the appearance of the gallery using the controls in the right hand panel of Lightroom 2.
    5. When you are satisfied with the gallery’s appearance, use your keyboard to type Command-S.  That will save your template settings (give it a unique name when saving).
    6. Open up Finder on your Mac.  Inside your username folder, create a new folder… I'll call it Web Files.  (You can choose any name you like, and locate the file anywhere on your Mac HD.)  You have just created the folder username/Web Files.
    7. Back in the Lightroom Web module, chose Export, at the bottom of the right panel, and export your gallery to the folder you just made (e.g. export to username/Web Files).  By doing so, you will have created /username/Web Files/Sunsets.
    8. Once again open Finder on your Mac.  Go to /username/Web Files/Sunsets and you will see 3 files in the Sunsets folder: bin, index.html, and resources.
    9. Open a second Finder window and in it, click on your iDisk icon.  You will soon see all of the files on your iDisk.
    10. In iDisk, click on the folder called /Web.  You will now see the /Sites folder inside the /Web folder.  I.e., /Web/Sites.
    11. Drag the Sunsets file from your Mac HD to the /Sites folder on your iDisk.  E.g, drag Sunsets from /username/Web Files/Sunsets on your Mac HD to the /Sites folder in iDisk /Web/Sites.  The Sunsets folder (and the three files it contains) will now upload to your iDisk on MobileMe.
    12. Open iWeb on your Mac. Add a new page to your website.  Call it “Galleries,” or anything you like. (You can also use an existing page if you wish.)
    13.  On that “Galleries” web page (or on an existing web page), create a picture icon, or a word, or a symbol, or anything else that you will activate as a hyperlink to your iDisk web files - specifically, you will link it to the Sunsets folder you just uploaded to iDisk.
    14. Activate the hyperlink in iWeb’s Inspector.  In the URL box, type:
    http://web.me.com/username/Sunsets  (Don’t forget to substitute your name for “username” and the name of your gallery for “Sunsets.”)
    15. Save your website in iWeb, and then publish your site.
    You will NOT see your gallery in iWeb – you will see only the link to the gallery that you uploaded to iDisk..  To view your gallery, either make hyperlinks active, using the Inspector in iWeb and click on he link to the gallery, or visit your website on the internet.  If you want to edit your gallery, you will have to do that in Lightroom… then repeat steps 7 – 11.  You cannot edit your gallery in iWeb, but you can use iWeb to change the appearance of the link to your gallery, or to change it’s location within your website.

  • Updating web module

    Hi everyone
    I am using LR 1.3 - Mac OX 10.4.X
    I have previously created a template in the web module from images that I loaded from the library.
    I then added this custom web module template and uploaded to my website.
    Everything works fine until I come to update the web gallery using this custom template.
    When I upload to the server or even export it, Lightroom is using the images and IPTC from the original template - in effect not updating the gallery on the browser.
    Do I need to delete the template and images from LR and start again, surely it is possible to update a saved custom template with new images, but I cannot see how.
    Thanks
    Eric Whitehead

    I'm a little confused by exactly what you're trying to do, but let me try to help.
    1) If you're trying to add images to an existing gallery on your website, it cannot be done. You need to recreate the entire gallery from scratch -- select all of the photos, generate and export the gallery -- and completely replace the existing gallery on your server.
    2) If you've selected images with which to create a gallery and moved to the Web module, the gallery should be generated. If you're attempting to apply a Template preset to the gallery, it should work ... UNLESS: You've updated the gallery to a newer version than that which was used to create the preset. Template presets need to be recreated when you update your gallery to a new version.
    Does that address your issue?

  • Web Module: Flexible Browser Preview

    It would be really useful to be able to select different browser to preview web gallery output from within LR, rather than be stuck with the default browser popping up each time I click the "Preview in Browser" button in the Web Module.
    Different browsers can give different results, and I always feel the need to test how Firefox, Opera and the old IE X for Mac will handle output, as well as my default (Safari). Currently, this means going into Safari's Prefs to switch defaults, or exporting and using "Open with..." on the index.html file. Neither option is very efficient...
    Maybe an Alt + Click on the Preview in Browser button could give a choice of browser??

    Rick -
    I tried republishing it in a different output name and I
    still had the same issue.
    I'm pretty sure it has something to do with the click boxes
    because I erased the first project I did and started from
    scratching, thinking I might have corrupted the file. It worked
    fine until I inserted the click boxes. I also took another demo I
    created without the click boxes. Once I added the click box and
    tried to preview it in Web Browser mode it started to freeze after
    the first slide.
    I don't understand why others can view the published version
    on their computers but I can only view it in Captivate preview
    mode.
    I also tried reinstalling Captivate and that didn't help.
    Any other suggestions?
    Thanks so much!

  • Web module colour shift

    As soon as I go to the web module in lightroom the colours in my images look terrible especially reds, and magentas. Even if I first change the images to sRGB it makes no difference. This only happens in the web module. Any ideas, as its making it unusable?
    By the way this is in the html galleries not the flash ones.

    Thanks for your quick responce Jao, my monitor is well callibrated, I publish books aswell as print my own images so my colour management is pretty good, and have had no issues anywhere else. Oh and yes it is a wide gamut screen - NEC.
    Its the flash that caused the problem. I used one of these first and beacause the colours were ogg I flicked the images into an html template, but it made no difference.
    Here's what I have found out.
    I had to drop all the images back into the develop module and view them, at which point lightroom re-rendered the images to show the correct colour. I then went back to the web module but straight into the html template and the images were good.
    Conclusion
    The html is OK but if you use flash you need to drop images through the devolop module to correct the colours, going back to the library module dosn't correct it.
    For windows the flash templates are useless.

  • Web Module / Collections?

    Is There anyway To Import Multiple Collections Seperated By the First Image In each Collection Show as its own section in the Web Module?
    Take the first Image Of the Collection? Than when you click on that Collection. It shows all the images within that collection?
    A Index Of the Images you want to show on the web?
    If anyone can help thanks.

    All I did was create a collection in Library by Create Collection and give it a name.
    Then drag the photos I want to that collection, then go to the Web module and they are not in the collection there, I need to do a Sort by Name or Sort by Kind and they then appear.

  • LR 3 Web Module Cell Number Bug ?

    Hi, folks, when in the web module and creating a basic web page with 3 digit numbered cells these numbers are obscured with photos in portrait orientation. No good for a client who is looking at portrait shots and wants to reference a photograph number.
    I use a file name for now but this should be corrected asap unless I am doing something wrong here.
    Cheers Mark

    Same thing occurs in Library Grid view when cells are in Compact mode. It's been this way since January 2006 and I don't see it changing any time soon. Also, using the cell number for any form of selection is fraught with dangers is in no way linked tot he actual image. Delete and image and every thing moves by one. Best solution is to use the file name.

  • SOLUTION: LR2 Develop/Library Keyboard Shortcuts

    For windows users - this is the latest update to my keyboard shortcuts for Library and Develop module. It has improved performance through caching.
    Quick access to Develop and Library module adjustments via your keyboard number pad. You'll need www.AutoHotKey.com to use this script.
    >; ----------------------------------------
    ; Gordon's Lightroom 2.0 Shortcuts Aug-22 2008
    ; www.night-ray.com
    ; Use numpad to perform certain develop and library functions.
    ; This effectively disables the number pad for digit entry
    ; (except 5 and 0) please use the main keyboard instead.
    ; Left/Right - Prev or Next photo
    ; Up/Down - Exposure
    ; Minus/Plus - Fill Light
    ; Page Up/Dn - Contrast
    ; Home/End - Color Temperature
    ; Div/Mult - Color Tint
    ; Enter - Paste Previous
    ; Dot (Delete) - AutoTone
    ; F9 Library Module
    ; F10 Develop Module
    ; F11 Slideshow Module
    ; F12 Web Module
    SetTitleMatchMode,2
    #IfWinActive, Lightroom
    F9::Send ^!1
    F10::Send ^!2
    F11::Send ^!3
    F12::Send ^!4
    #IfWinActive
    ; *** DEVELOP SHORTCUTS ***
    #IfWinActive, Lightroom - Develop
    numpad4:: Send ^{Left}
    numpad6:: Send ^{Right}
    numpad8:: lrdAdd(09)
    numpad2:: lrdSub(09)
    NumpadAdd:: lrdAdd(11)
    NumpadSub:: lrdSub(11)
    numpad9:: lrdAdd(14)
    numpad3:: lrdSub(14)
    numpad7:: lrdAdd(04)
    numpad1:: lrdSub(04)
    NumPadMult:: lrdAdd(05)
    NumPadDiv:: lrdSub(05)
    NumPadDot:: Send ^u
    NumPadEnter:: Send ^!v
    lrdAdd(delta) {
    instance := lrGetControl( Static, 6, "Treatment :", delta )
    ControlClick, Static%instance%
    Send {=}
    lrdSub(delta) {
    instance := lrGetControl( Static, 6, "Treatment :", delta )
    ControlClick, Static%instance%
    Send {-}
    #IfWinActive
    ; *** LIBRARY SHORTCUTS ***
    #IfWinActive, Lightroom - Library
    numpad4:: Send ^{Left}
    numpad6:: Send ^{Right}
    numpad8:: lrlClick(03)
    numpad2:: lrlClick(02)
    NumpadAdd:: lrlClick(11)
    NumpadSub:: lrlClick(10)
    numpad9:: lrlClick(23)
    numpad3:: lrlClick(22)
    numpad7:: lrlClick(-6)
    numpad1:: lrlClick(-7)
    NumPadMult:: lrlClick(-2)
    NumPadDiv:: lrlClick(-3)
    NumPadDot:: Send ^u
    NumPadEnter::Send ^!v
    lrlClick(delta) {
    instance := lrGetControl( Button, 6, "Auto Tone", delta )
    ControlSend, Button%instance%, {SPACE}, ahk_class AgWinMainFrame
    #IfWinActive
    ; Fetch the Control Instance using Type, Title, and Instance Delta
    lrGetControl( type, typeLen, title, delta ) {
    global lrLastTitle, lrLastCBase, lrLastCache
    if (lrLastTitle = title and lrLastCache > A_TickCount )
    ; Cached! Saves time.
    return lrLastCBase + delta
    else
    WinGet, ActiveControlList, ControlList, ahk_class AgWinMainFrame
    Loop, Parse, ActiveControlList, `n
    IfInString, A_LoopField, %type%
    ControlGetText, text, %A_LoopField%
    IfInString, text, %title%
    StringMid, controlbase, A_LoopField, typeLen+1
    lrLastTitle := title
    lrLastCBase := controlbase
    lrLastCache := A_TickCount + (120*1000)
    return controlbase + delta
    return 999999
    ; End

    The first post is now in the
    Lightroom FAQ. So, there should be no need to keep bumping the thread.
    IanLyons
    Forum Host

Maybe you are looking for

  • My blackberry keeps tuning off

    Whenever i listen to music my phone just turns off. the screen either goes white or black and now it wont turn back on at all ive tried taking the battery out but it just loads for a few seconds then turns off again. help!!!!!!!!

  • Help for Photoshop Elements 8

    The Mother Card of my computer was out. I lose all my logiciels and photos, documents...  Today, Idon't know the process for donload photoshop elements 8 that I bought at July 2010. Excuse me for my bad english and thank you for your answer.

  • WAD vs VC

    What really differentiates Visual Composer from Web Application Designer? I know it depends on in-house skill set but when do we use VC and when do we use WAD? Thanks, Praveen.

  • For ANSI X12 standard message will I get .sda and .xsd

    Hi Experts, For standard message will I get any .xsd and .sda files for EDIFACT and ANSI X12 etc... from SAP. OR If I get STANDARD MESSAGE only .xsd then it is required to create .sda and message type by using BIC MAPPING DESIGNER. Please kindly help

  • Getting this message:he backup disk image "/Volumes/Data/alicia's MacBook Pro.sparsebundle" is already in use.

    So my time capsule is 1 year old exactly and now I am getting this message:he backup disk image "/Volumes/Data/alicia's MacBook Pro.sparsebundle" is already in use. what does this mean and how do I fix it? i have 1.84T left of space. I have been usin