How to keep a custom file order when exporting a preview cataloge?

I export my LR catalog as a preview catalog for my editor.  He edits the photos, plus, he re-arranges the ORDER (sequence) of the photos for me.
When he exports it as a catalog and sends it back to me, the sequence is lost because I am guessing that the file order sequence will show only on his computer.
Given he cannot rename the files because that will lose the link/connection on import on my end, is there a way he can save the catalog so that the custom sequence stays the same on my end?

Klaus,
I wouldn't know that Microsoft provides access to the controls that Explorer and file dialog consist of.
There might be a different and more powerful solution though. The
WINDOWS Explorer / file dialog have a plugin API that allows you to
associate your own application for thumbnail creation with a particular
file extension. That way, TDMS thumbnails will show in any instance of
Explorer and
File Dialog without you having to make your own dialog. Basically, you
would need to compile the VI that creates the thumbnail into a
LabVIEW-built DLL and then wrap this DLL with some C++ boilerplate code
that Microsoft provides. You might want to have a look at the bottom of
this article to get an idea of how the whole thing works:
http://msdn.microsoft.com/msdnmag/issues/0600/w2kui2/default.aspx.
Hope that helps,
Herbert

Similar Messages

  • How to keep audio synchronized with video when exporting?

    I have a few .mp4 source files that I'd like to combine into a single file.  I've done the editing and exported.  When played, the audio is misaligned to the video.  As a test, I've tried exporting a single clip rather than joining a few and the same thing happens.  I end up with audio that is misaligned to the video after export even though they are perfectly synched in the source video.  As another test I've tried exporting a single clip to .mpeg rather than .mp4 and the audio stays perfectly synched with the video.  It seems the misalignment occurs whenever I export to .mp4.  I'm obviously missing a fundemental concept here.  Can anyone shed some light on it for me?  Thanks in advance.
    Brandon

    Hi Rafeek,
    One solution is to set the column width after manually or programmatically refresh the PivotTable, for example:
    Private Sub Worksheet_PivotTableUpdate(ByVal Target As PivotTable)
    Dim ws As Worksheet
    Set ws = Application.ActiveWorkbook.ActiveSheet
    ws.Columns("A").ColumnWidth = 10
    End Sub
    Another option is to set the column width, then protect the columns from been updated by the user, before refreshing the PivotTable, unprotect the worksheet. For example:
    Public Sub LockColumnA()
    Dim ws As Worksheet
    Set ws = Application.ActiveWorkbook.ActiveSheet
    ws.Columns("A").ColumnWidth = 10
    ws.Columns("A").Locked = True
    ws.Protect "123"
    End Sub
    Public Sub UnprotectWorksheet()
    Dim ws As Worksheet
    Set ws = Application.ActiveWorkbook.ActiveSheet
    ws.Unprotect ("123")
    End Sub
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How to keep User Order when exporting a collection?

    I made a collection of about 300 VC's, chosen from many folders in my catalogue. These images were taken over a 10 year period, using 3 different cameras and having different names and file types. The collection was sorted by "User Order". I spent a good deal of time organizing the collection so that the images made visual sense when shown as a slide show on a digital album.
    I exported the collection to my hard drive as jpegs, and checked the box to place them back in my catalogue, in a designated subfolder within my parent folder. All went well except they are now completely out of order, and that order makes no logical sense whatsoever - not by date, metadata, filename, attributes, nothing that I can figure out. I have to start all over again to reorder them - something that will take several hours.
    What did I do wrong? How can I keep my designated user order when I export a collection? 
    I am using LR 4.3.
    Thanks for your replies.
    René

    sunhotmoon wrote:
    What did I do wrong? How can I keep my designated user order when I export a collection? 
    Hi Rene,
    Lightroom does not maintain user order upon exporting. It would make no sense when not exporting back to catalog, but when exporting back to catalog I can see that it may be desirable - consider making a feature request (Idea) here:
    http://feedback.photoshop.com/photoshop_family/topics/new
    In the mean time, I *think* what most people do to assure export ordering is to name the files according to desired order, then sort by filename. I could be wrong about that, but that's all I got.
    Beware: If said approach is adopted, one would not be able to do incremental exports and maintain such ordering (e.g. when single image added to publish service), so all files would need to be re-exported if such change was made.
    I have requested access to sort order and added-order via plugin for plugin-assisted remedy, but so far no go.
    Another idea (which may not be acceptable) is to use capture-time to maintain sort order of exported photos (via a plugin like Exportant), then it would be easy enough to maintain user order by manipulating capture time (of exported photos I mean, post-export), but then you'd lose the true capture-time, granted: capture time could be put into some other field, but that might foul things up downstream... hmm - sorry for rambling/brain-storming out loud.
    Maybe somebody else has a better idea.
    Rob

  • How do you shuffle the image order when creating a new slideshow in apterture 3?  i would like to do this automatically when creating a new slideshow.  i see how you do it when you just play a slideshow.

    how do you shuffle the image order when creating a new slideshow in apterture 3?  i would like to do this automatically when creating a new slideshow.  i see how you do it with presets when you just play a slideshow, but i don't see an option to randomly shuffle the slide order when you create a new slideshow.  i know you can sort it by different fields, but i want it to be random.  thanks.

    If you want to rearrange images in random order you can try an AppleScript:
    retrieve a list of selected images from Aperture
    shuffe the list properly
    create an album in Aperture and add the images from the list to the album (make sure that the album set to be orederd manually)
    Here  is a sample script that shuffles the selected images and displays them in random order in Full Screen Mode:
    on removeItem(ims, i)
      -- remove the item at position "i" from a list ims
              if ims is {} then return {}
              if (length of ims is 1) then return {}
              if i < 2 then return rest of ims
              if (i = length of ims) then return (items 1 thru (i - 1) of ims)
              if i > (length of ims) then return ims -- should be error?
              return (items 1 thru (i - 1) of ims) & (items (i + 1) thru (length of ims) of ims)
    end removeItem
    on shuffle_items(ims)
      -- shuffle the items of the list "ims" randomly
              local numitems, ims_shuffled, nextrest, nextpick, i
              set numitems to length of ims
              if length of ims < 2 then return ims
              set ims_shuffled to {}
              set nextrest to ims
              repeat until nextrest is {}
                        set i to (random number (numitems - 1)) + 1
                        set nextpick to item i of nextrest
                        set beginning of ims_shuffled to nextpick
                        set numitems to numitems - 1
                        set nextrest to removeItem(nextrest, i)
              end repeat
              return ims_shuffled
    end shuffle_items
    on shuffleIms()
      -- retrieve the selected images from Aperture
      -- and display them in random order in full screen mode
              local imageSel, shuffled, i
              tell application "Aperture"
      activate
                        set imageSel to (get selection)
                        set shuffled to my shuffle_items(imageSel)
                        set fullscreen to true
                        if imageSel is {} then error "Please select some images."
                        repeat with i from 1 to count of shuffled
                                  reveal {item i of shuffled}
      delay 3 -- chnage that to the time you want
                        end repeat
                        set fullscreen to false
                        return shuffled
              end tell
    end shuffleIms
    shuffleIms()
    Some more code snippets to go from here:
    To create an album:
                        tell library 1
                                  if not (exists album "shuffledAlbum") then
      make new album with properties {name:"shuffledAlbum", image version:shuffled}
                                  end if
                        end tell
    And to add the images from the shuffled list to the album:
                        repeat with i from 1 to count of shuffled
                                  duplicate item i of shuffled to album "shuffledAlbum"
                        end repeat
    Regards
    Léonie

  • How to see the customer purchase order acknowledgement ?

    How to see the customer purchase order acknowledgement ?
    in that PO ACK where we see the UOM and Qty ?
    thanks & regards,
    Srikanth.

    hi
    Customer Purchase Order is nothing but the Sales Order in your system
    Customer Po acknowledgement is nothing but the Acknowledgement that is sent out (output type BA00) to the Customer after the Sales Order has been created.
    Note: Purchase is to Customer - Sales is to you as the Vendor.
    cheers
    Nandu
    Edited by: Nanda Kumar Veeraraghavan on Apr 1, 2008 12:11 AM

  • Does Anybody know how to keep the license files and Certificates in ISE-3315 During the upgrade.

    Hi,
    I have two ISE-3315 Appliances in production network.
    I need someone's help to explain, how to make the Secondary node as the primary admin note to reset-config.
    And then I would like to know how to keep the license files and Certificate during the Upgrade.
    Please help me to answer my questions.
    Thanks
    CSCO11872447

    The Cisco Identity Services Engine (ISE) provides distributed  deployment of runtime services with centralized configuration and  management. Multiple nodes can be deployed together in a distributed  fashion to support failover.
    If you register a  secondary Monitoring ISE node, it is recommended that you first back up  the primary Monitoring ISE node and then restore the data to the new  secondary Monitoring ISE node. This ensures that the history of the  primary Monitoring ISE node is in sync with the new secondary node as  new changes are replicated.
    Please  Check the below configuration guide for Secondary ISE- Nodes.
    http://www.cisco.com/en/US/docs/security/ise/1.0/user_guide/ise10_dis_deploy.pdf

  • Operating Firefox 3.6.3 on a new net book w/windows8. How to install the .json file that I exported from home machine

    Operating Firefox 3.6.3 on a new net book w/windows8. How to install the .json file that I exported from home machine

    I have the same problem
    Use Bookmarks > Organize Bookmarks -> Import & Backup - Restore = Choose file....
    i have backup of 6 .json files
    when i choose 1st one
    This will replace all of your current bookmarks with the backup. Are you sure?
    then i click on ok
    but there is no chage in my new bookmark
    please help
    thanks in advance

  • In aperture 3.4.5, I get unsupported file error when exporting version of photo I've edited using plugins?

    In aperture 3.4.5, I get unsupported file error when exporting version of photo I've edited using plugins. I have try reinstalling aperture three times, deleting plists a few times, reinstalling plugins, restarting my MacBook Pro many times. Everything I've tried may fix the problem for a very short while and I can export a few photos before it returns. The problem happens with topaz and photomatrix pro plugins after I edited and try to export version.

    I had the same problem with the Photomatix plug-in and this solved it for me. I realised it only happened with Photomatix and not other plug-ins so I checked where the plug-ins were installed. The Photomatix plug-in was installed in
    ~/Library/Application Support/Aperture/Plug-Ins/
    where ~ is the home location for the current user account. All the other plug-ins however were installed in
    Macintosh HD/Library/Application Support/Aperture/Plug-Ins/
    which is the location that makes them available to all user accounts on your Mac. Moving the Photomatix plug-in to this location solved the problem for me.
    Note that the Library directory under the first location is normally hidden, to get to it hold down the Option (Alt) key and select it from the Finder Go menu.

  • Float4() causes "error saving Pixel Bender Byte Code file" error when exporting for flash player

    Simple test
    <languageVersion : 1.0;>
    kernel untitled
    <   namespace : "Your Namespace";
        vendor : "Your Vendor";
        version : 1;
    >
        input image4 src;
        output pixel4 dst;
        void
        evaluatePixel()
            dst = float4(sampleNearest(src, outCoord()));
    The above code will produce a "error saving Pixel Bender Byte Code file" error when exporting for flash player in Pixel Bender Toolkit 2.5.449694.
    "dst = (sampleNearest(src, outCoord()));" works fine. And anything like "float4 a= float4(b);" will give same error.

    Thank you for the error report.  I'll put it into our bug database.  We're bottling things up for the current version.  Gven the workaround, it is unlikely we'll be addressing this bug soon.  Please accept my apologies for the annoyance this will cause.
    In your second example, float4 a = float4(b), does it return an error if b is only a float4 or regardless of what b is?  If b is a scalar float, for example, is the conversion performed correctly? If so, this could be an error that only crops up when using constructor/conversion syntax when the thing being converted is already the correct type.
    Thanks,
    Chuck.

  • How to avoid duplicated customer ref. no when create new sales order?

    Hi,
    In my company, we need input customer ref. no when create a new sales order, but I found there was no any validation to avoid input a existed number.
    Can somebody show me how to add some check function on this filed?
    thanks.

    Hi,
    This can be handled in standard system.
    Go to Administration> System Initialization> Document Settings>Per Document (Tab)> Select Sales Order-->Tick Block release (When duplicated  customer reference no. occurs).
    Thanks,
    Joseph

  • How Do I Save Tab Bar Order When Customized? Using Storyboards.

    Anyone out there who could really explain to my how i save the order of the tab bars when the application terminates, making them stay in the order when the application is re-launched? I have been all around the web for this one, and I can´t find a explenation that really explains how to do it. It would be really awsome if someone out there could help me with how I could solve this, really explaining where the different code should go. Keep in mind that i´m using storyboards!
    Cheers

    That URL is part of a support thread; I'm not sure why you are getting that error.
    Google's search preference ([http://support.google.com/websearch/bin/answer.py?hl=en&answer=425 Support Answer 425]) relates to what happens when you click a link in your search results page: whether it loads in the same tab or a new tab (or new window, if you don't divert new windows to tabs). So that's useful, but it doesn't address your request.
    The short term workarounds are:
    * If you usually search by pressing Enter, hold the Alt key to launch the search in a new tab -- setting the preference '''browser.search.openintab''' makes the Alt key unnecessary
    * If you usually search by clicking the magnifying glass icon, hold the Ctrl key to launch the search in a new tab or "middle-click" the button -- as far as I can tell, there is no preference to do this automatically
    Some tab-related add-ons might solve this problem. I saw one blog post saying Tab Mix Plus will change the magnifying glass behavior to always open in a new tab.

  • Maintaining custom sort order when copying between albums

    Is there any way that you folks have discovered to maintain the custom sort order of the images in an album when copying these images into a another album? Duping the album is not an answer, as I need to collate the contents of a number of albums into one.
    I tried selecting the contents of the album that I had just done the custom sorting in, and making it into one big stack, to try to move that to keep the order. Aperture informed me that stacking only works on images from one project.
    OK, since I now know this fact about stacking, is there any good way to merge projects? I have a ton of work on the images in the individual projects, and don't want to redo anything.
    Anyway, hope you get the problem, any help will be appreciated.
    PowerBook G4 1.67 2GB RAM 128MB ATI Video, External FW Drives for library   Mac OS X (10.4.7)  

    ou must have an older iPod.
    I believe the new sort order only works on the new iPods (Nano and Video)

  • How to keep the JSP content constant when page refresh?

    Hi All,
    When I click page tabs in WLP, it will trigger a refresh event.
    The portlet has a webflow with a refresh event whose destination is
    lastContentUrl(referent-namespace is portal, cloned from portlet2.wf).
    The question is when the page changed, the jsp files which use
    request.getParameter() to get parameters will fail to fulfill what they
    need because the event provide none parameter.
    So that everytime page changed, these portlets will have quite strange
    contents.
    How to keep these content constant when page changed?
    Sincerely,
    Alan.

    The problem is still there if the jsp file is about inserting a new record
    into the database.
    If these parameters are gotten from the session, mutliple insertings will be
    attempted when the portlet is refresh.
    Maybe we can put some control flags in the session to judge the correct
    behavior, but the method results the session full of parameters(control
    flags).
    Or is there any better design?
    Alan.
    "travis wissink" <[email protected]> ¼¶¼g©ó¶l¥ó
    news:3cc71962$[email protected]..
    >
    Alan,
    You could use the session to put your parameters in instead of letting itride completely
    on the request object. Although, your question is more than just makingthe content
    reappear, it’s about holding state. The project that I am working on, theusers
    decided that they want the page portlets to go back to the "normal" state,not the
    "Maximized" view. So, I put a processor in between the internal.refreshwildcard
    and the Preprocessor input processor so that all the portlets would beseen in their
    "normal" state.
    Good Luck
    -Travis
    "Alan Liu" <[email protected]> wrote:
    Hi All,
    When I click page tabs in WLP, it will trigger a refresh event.
    The portlet has a webflow with a refresh event whose destination is
    lastContentUrl(referent-namespace is portal, cloned from portlet2.wf).
    The question is when the page changed, the jsp files which use
    request.getParameter() to get parameters will fail to fulfill what they
    need because the event provide none parameter.
    So that everytime page changed, these portlets will have quite strange
    contents.
    How to keep these content constant when page changed?
    Sincerely,
    Alan.

  • How to create a custom file dialog box/vi (win)??

    Hello,
    I'd like to create a custom file dialog box to handle the reading of my tdms files. Basicly I want to extend the existing file select dialog box with a graphical preview of the data in the selected file. I know I can create all the logic for file selection by hand and use a list box to display the filelist, but I would rather prefer to somehow use the existing windows controls. So is it possible to get the windows file selector on the front panel of a vi and react to the user selection? If so, is there any example available on how to do this? Any other options? I'm using labview 8.2
    thanks for your input!
    klaus

    Klaus,
    I wouldn't know that Microsoft provides access to the controls that Explorer and file dialog consist of.
    There might be a different and more powerful solution though. The
    WINDOWS Explorer / file dialog have a plugin API that allows you to
    associate your own application for thumbnail creation with a particular
    file extension. That way, TDMS thumbnails will show in any instance of
    Explorer and
    File Dialog without you having to make your own dialog. Basically, you
    would need to compile the VI that creates the thumbnail into a
    LabVIEW-built DLL and then wrap this DLL with some C++ boilerplate code
    that Microsoft provides. You might want to have a look at the bottom of
    this article to get an idea of how the whole thing works:
    http://msdn.microsoft.com/msdnmag/issues/0600/w2kui2/default.aspx.
    Hope that helps,
    Herbert

  • How to specify the database file path when create FDM application

    Dear All,
    How to specify the database file path (MSSQL) when create FDM application?
    Right now, all data file are placed in the D:\ . I want to specify the database files (log and mdf file) in other place. How to do it?
    Thanks.

    Where is the highS2.xml located on the disk? If you add it to your project you should set its Build Action to Content and its Copy To Output Directory to Always in Visual Studio:
    Please remember to close your threads by marking helpful posts as answer once your issue has been solved and then start a new thread if you have a new question.

Maybe you are looking for

  • ICal suggestion

    I would like to make a suggestion to iCal. in Month View of Calendar, there is no Weeks of the year. For example, November 17th~23rd is the 42nd week of the year. Can Apple add this info at the side of Calendar? Much obliged.

  • Column name in a query contains special characters

    Hi folks, The column name in a query contains special characters. For example ~ or ^. The creator of the table put these column names under double quotation while creating the table. When I get the column names form the result set meta data object it

  • File - convert - xslt 1.0 disabled

    Hello all, How can i enable file -> convert -> xslt 1.0 in dreamweaver 8? Thanks in advance, Carest

  • SOAP adapter URL causing problems

    Hi gurus, As of PI 7.1, SAP is recommending to use: http://host:port/XISOAPAdapter/MessageServlet?senderParty=FP&senderService=FS&interface=IF&receiverParty=TP&receiverService=TS&interfaceNamespace=IFNamespace instead of http://<serverhost>:<port>/XI

  • Unable to run xlock

    Hello. I am trying to run xclock on newly built solaris box[Solaris 10 11/06 s10x_u3wos_10 X86] - These are the steps I followed: # DISPLAY=localhost:0.0 # export DISPLAY # xclock xclock: not found # cd /usr/openwin/bin # ./xclock Error: Can't open d