Uploading multiple items one at a time - file view resets

In my work, I need to upload many files, one at a time, using an interface through the browser.
When I go to upload multiple files, one at a time, using 10.6.2, the Finder takes me back one or two levels down from the file location between uploads. In 10.4, the Finder always took me back to the folder last accessed.
Is there a Preference, Shareware like TinkerTool, or a Terminal Command I can use so that I always go back to the folder last accessed?

OK. Wow. I did not realize the question was so obtuse. Feel free to ask for clarification (no reason to be nasty or flame me).
"what mechanism is being used"
In my original post, I did say I was uploading via a browser. So I don't know if this clarifies for you or not.
Using Firefox or Safari.
Uploading photos, one at a time, to a website that uses the browser (rather than FTP).
In OS 10.4.11, after each photo, I would upload a second one and the dialog box would open up to the same folder as the previous upload, greatly simplifying the process.
In OS 10.6.3, after each photo, I would go to upload a second photo and the dialog box would open one level down, or sometimes seemingly randomly, two levels down. This requires me to navigate back to the folder with the photos which greatly increases the amount of time between each upload.
It would be helpful if I could show photos to explain.
I am not certain that this really clarifies my original posting. Does this make sense or do you need more info?

Similar Messages

  • Multiple file uploads, or only one at a time?

    I have multiple files in folders on my iPad.  I want to upload entire folders of documents.  So far I have only been able to upload one document at a time.  Then after uploading, I have to put them in acrobat.com folders one document at a time.  It is very time consuming.  Is there any way to upload multiple files at one time?  Once the documents are uploaded, is it possible to move multiple documents into a folder at one time?  Or does each document have to be a separate upload action, and each move into folder a separate document-by-document one at a time?

    On my iPad I have been opening and saving pdf's in Adobe Reader.  I would like to upload these pdf files from the iPad Adobe Reader to acrobat.com.  I have thus far been uploading them from the iPad one fie at a time.  It is very slow and tedious.  There is also no way to get multiple pdf files from the iPad Adobe Reader to a computer except one file at a time.  So it seems that once I used the iPad Adobe Reader app to save the files, I am stuck with one file at a time movement.  I did, however, find that once I get files to acrobat.com, I can move multiples files at a time into folders on acrobat.com via the iPad.  The problem is getting them uploaded from the iPad Adobe Reader app to acrobat.com. Is there a solution I'm missing, or am I correct in my understanding of the iPad Adobe Reader app upload situation?

  • How to upload multiple items of sales order?

    I have extracted open sales order and transferred it to an excel file.
    Some SO doument has multiple items on one SO.
    If I will upload that SO document (with multiple items) into a new server, how am I suppose to itemize that this document has multiple items?
    I hope my explanation is clear.

    Hi,
    Suppose you are uploading through LSMW
    Then when you recording in t-code VA01 that time you have to enter MULTIPLE ITEMS, so record will capture multiple items then same you maintain in excel and upload.
    Kapil

  • Can Lightroom 4 upload multiple web galleries at a time?

    My client wants to group multiple web galleries in a single collection then upload them to his website enmass.  I maintain they must be uploaded one at a time.  Which is correct?

    Bob,
    Lightroom being a 64 bit application can run multiple threads for one task of uploading web galleries in a single collection.
    However it cannot handle multiple uploads together.
    Mandhir

  • Spiked CPU when viewing multiple streams one at a time then publishing

    Hi all,
    We're finding the Flash Player's CPU process 'ratchets' slightly higher each time a user views a new webcam stream one at a time in a WebcamSubscriber.
    For example, I'm watching the stream for User A, then that stream is deleted and I then watch the stream for user B, then that stream is deleted and I watch the stream A, B, or C, and so on.  It seems to 'ratchet' higher by the same amount regardless of whether I've seen that particular user's stream before.
    It's only a few percentage points of CPU usage each time, but in the aggregate it can get to 100% usage and crash the flash player quickly. 
    Some details of our tests:
    - We've managed to contain it so this only happens when the user is also publishing.
    - If a user has been watching for a long time without publishing, then starts publishing, the CPU usage will suddenly spike as soon as they start publishing.  In our tests it spikes as much and more as if they had been publishing the entire time. 
    - If the user starts publishing before they start watching, they're not affected by this spike. 
    - If a user starts publishing but hasn't been watching the streams, the publishing CPU usage is normal. 
    - Refreshing the browser page and publishing again, CPU usage is normal. 
    - Calling System.gc(); while running in the flash player debugger seems to have no effect on the CPU spikes.  Whatever streams are being kept around must still have something pointing to them so they won't be garbage collected. 
    To subscribe to each successive stream, we're doing that by setting
    webcamSubscriber.publisherIDs = [ newStreamID ];
    We've been experimenting for a long time with different settings that might reduce the CPU spikes and ratcheting, but haven't been able to resolve the issue.
    How can we prevent this CPU ratcheting and spking?
    Thanks very much,
    -Trace

    Is it possible that you have other components that are interfering or spiking your CPU. Also if possible can you share your code.
    Would you be able to check this link and see it hogs your CPU for more subscribers. - http://blogs.adobe.com/arunpon/files/2011/05/WebCameraFinal31.swf
    Code for the app in the link
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" xmlns:rtc="http://ns.adobe.com/rtc">
         <mx:Script>
              <![CDATA[
                   import com.adobe.coreUI.controls.CameraUserBar;
                   import com.adobe.rtc.collaboration.WebcamSubscriber;
                   import com.adobe.rtc.events.CollectionNodeEvent;
                   import com.adobe.rtc.events.SessionEvent;
                   import com.adobe.rtc.events.SharedPropertyEvent;
                   import com.adobe.rtc.events.StreamEvent;
                   import com.adobe.rtc.events.UserEvent;
                   import com.adobe.rtc.messaging.UserRoles;
                   import com.adobe.rtc.sharedManagers.StreamManager;
                   import com.adobe.rtc.sharedManagers.descriptors.StreamDescriptor;
                   import com.adobe.rtc.sharedModel.SharedProperty;
                   protected var _camSubscribers:Object;
                   protected var _currentSubscriber:WebcamSubscriber ;
                   protected var _sharedProperty:SharedProperty ;
                    *  Handler for the stop and start buttons.
                   protected function startBtn_clickHandler(event:MouseEvent):void
                        if ( startBtn.label == "Start" ) {
                             webCamPub.publish();
                             startBtn.label = "Stop" ;
                             if (_camSubscribers && _camSubscribers[cSession.userManager.myUserID]) {
                                  var webcamSubscriber:WebcamSubscriber = _camSubscribers[cSession.userManager.myUserID];
                                  smallSubscriberContainer.addChild(webcamSubscriber);
                        }else if (startBtn.label == "Stop" ){
                             webCamPub.stop();
                             startBtn.label = "Start" ;
                    * SynchronizationChange event handler. Initialize the Shared property used to sync the Subscriber info
                    * who would be the centre of the app.
                   protected function cSession_synchronizationChangeHandler(event:Event):void
                        if (cSession.isSynchronized) {
                             _sharedProperty = new SharedProperty();
                             _sharedProperty.isSessionDependent = true ;
                             _sharedProperty.sharedID = "webcamShare2" ;
                             _sharedProperty.connectSession = cSession ;
                             _sharedProperty.subscribe();
                             _sharedProperty.addEventListener(SharedPropertyEvent.CHANGE,onChange);
                             _camSubscribers = new Object();
                             cSession.streamManager.addEventListener(StreamEvent.STREAM_RECEIVE,onStreamRecieved);
                             cSession.streamManager.addEventListener(StreamEvent.STREAM_DELETE,onStreamDelete);
                             addExistingStreamers();
                    *  Set up a thumbnail subscriber for every new camera stream
                   protected function onStreamRecieved(p_evt:StreamEvent):void
                        if (p_evt.streamDescriptor.type == StreamManager.CAMERA_STREAM) {
                             setUpfromDescriptor(p_evt.streamDescriptor);
                    * Clicking a subscriber updates the shared value, which in turn enlarges the thumbnail after getting updated
                   protected function onClick(p_evt:MouseEvent):void
                        if ( (p_evt.currentTarget is WebcamSubscriber) &&  !(p_evt.target.parent is CameraUserBar)) {
                             _sharedProperty.value = (p_evt.currentTarget as WebcamSubscriber).publisherIDs;
                    * Clean up when a user stops publishing his camera or exits his app.
                   protected function onStreamDelete(p_evt:StreamEvent):void
                        if (p_evt.streamDescriptor.type == StreamManager.CAMERA_STREAM) {
                             if ( _camSubscribers[p_evt.streamDescriptor.streamPublisherID]) {
                                  var webcamSubscriber:WebcamSubscriber = _camSubscribers[p_evt.streamDescriptor.streamPublisherID];
                                  if (webcamSubscriber) {
                                       smallSubscriberContainer.removeChild(webcamSubscriber);    
                                  if (p_evt.streamDescriptor.streamPublisherID != cSession.userManager.myUserID) {
                                       webcamSubscriber.removeEventListener(UserEvent.STREAM_CHANGE,onCameraPause);
                                       webcamSubscriber.removeEventListener(UserEvent.USER_BOOTED,onUserBooted);
                                       delete _camSubscribers[p_evt.streamDescriptor.streamPublisherID];
                                       webcamSubscriber.close();
                                       webcamSubscriber = null;
                                  } else {
                                       if (_currentSubscriber && _currentSubscriber.publisherIDs[0] == cSession.userManager.myUserID) {
                                            _sharedProperty.value = null;
                    * Logic for handling the Pause event on CameraUserBar on every Subscriber
                   protected function onCameraPause(p_evt:UserEvent):void
                        var userStreams:Array = cSession.streamManager.getStreamsForPublisher(p_evt.userDescriptor.userID,StreamManager.CAMERA_STREAM);
                        if (userStreams.length == 0) {
                             trace("onCameraPause: no userStreams");
                             return;
                        for (var i:int = 0; i< userStreams.length ; i++ ) {
                             if (userStreams[i].type == StreamManager.CAMERA_STREAM ) {
                                  break;
                        var streamDescriptor:StreamDescriptor = userStreams[i];
                        if ( streamDescriptor.streamPublisherID == cSession.userManager.myUserID ) {
                             cSession.streamManager.pauseStream(StreamManager.CAMERA_STREAM,!streamDescriptor.pause,streamDescriptor.streamPublisherID);
                    * Initial set up of all users who are streaming when this app launches
                   protected function addExistingStreamers():void
                        var streamDescritpors:Object = cSession.streamManager.getStreamsOfType(StreamManager.CAMERA_STREAM);
                        for (var i:String in streamDescritpors) {
                             setUpfromDescriptor(streamDescritpors[i]);
                    * Helper method to create a thumbnail subscriber.
                   protected function setUpfromDescriptor(p_descriptor:StreamDescriptor):void
                        if (! _camSubscribers[p_descriptor.streamPublisherID]) {
                             var webCamSubscriber:WebcamSubscriber = new WebcamSubscriber();
                             webCamSubscriber.connectSession = cSession ;
                             webCamSubscriber.addEventListener(UserEvent.STREAM_CHANGE,onCameraPause);
                             webCamSubscriber.addEventListener(UserEvent.USER_BOOTED,onUserBooted);
                             webCamSubscriber.webcamPublisher = webCamPub;
                             webCamSubscriber.subscribe();
                             webCamSubscriber.sharedID = p_descriptor.streamPublisherID;
                             webCamSubscriber.publisherIDs = [p_descriptor.streamPublisherID];
                             webCamSubscriber.height = webCamSubscriber.width = 180;
                             webCamSubscriber.addEventListener(MouseEvent.CLICK, onClick);
                             smallSubscriberContainer.addChild(webCamSubscriber);
                             _camSubscribers[p_descriptor.streamPublisherID] = webCamSubscriber;
                    * This method is the listener to SharedPropertyEvent.CHANGE event. It updates the centred subscribes as its value
                    * changes.
                   protected function onChange(p_evt:SharedPropertyEvent):void
                        if ( _currentSubscriber != null ) {
                             _currentSubscriber.removeEventListener(UserEvent.USER_BOOTED,onUserBooted);
                             _currentSubscriber.removeEventListener(UserEvent.STREAM_CHANGE,onCameraPause);
                             centeredSubscriber.removeChild(_currentSubscriber);
                             _currentSubscriber.close();
                             _currentSubscriber = null ;
                        if ( _sharedProperty.value == null || _sharedProperty.value.length == 0 ) {
                             return ;
                        _currentSubscriber = new WebcamSubscriber();
                        _currentSubscriber.connectSession = cSession ;
                        _currentSubscriber.subscribe();
                        _currentSubscriber.webcamPublisher = webCamPub ;
                        _currentSubscriber.publisherIDs = _sharedProperty.value ;
                        _currentSubscriber.addEventListener(UserEvent.USER_BOOTED,onUserBooted);
                        _currentSubscriber.addEventListener(UserEvent.STREAM_CHANGE,onCameraPause);
                        _currentSubscriber.width = _currentSubscriber.height = 500;
                        centeredSubscriber.addChild(_currentSubscriber);
                    * Logic for handling the Close event on CameraUserBar on every Subscriber
                   protected function onUserBooted(p_evt:UserEvent=null):void
                        var tmpFlag:Boolean = false;
                        if (_currentSubscriber && _currentSubscriber.publisherIDs[0] == p_evt.userDescriptor.userID) {
                             if (_currentSubscriber.parent) {
                                  _currentSubscriber.removeEventListener(UserEvent.USER_BOOTED,onUserBooted);
                                  _currentSubscriber.removeEventListener(UserEvent.STREAM_CHANGE,onCameraPause);
                                  _currentSubscriber.close();
                                  _currentSubscriber.parent.removeChild(_currentSubscriber);
                                  _currentSubscriber = null;
                                  _sharedProperty.value = null;
                             tmpFlag = true;
                        if ( _camSubscribers[p_evt.userDescriptor.userID]) {
                             var webcamSubscriber:WebcamSubscriber = _camSubscribers[p_evt.userDescriptor.userID];
                             tmpFlag = true;
                        if (tmpFlag) {
                             webCamPub.stop();
                             startBtn.label = "Start";
              ]]>
         </mx:Script>
         <!--
         You would likely use external authentication here for a deployed application;
         you would certainly not hard code Adobe IDs here.
         -->
         <rtc:AdobeHSAuthenticator
              id="auth"
              userName="Your Username"
              password="Your password" />
         <rtc:ConnectSessionContainer id="cSession" authenticator="{auth}" width="100%" height="100%" roomURL="Your RoomUrl">
              <mx:VBox id="rootContainer" width="100%" height="800" horizontalAlign="center">
                   <rtc:WebcamPublisher width="1" height="1" id="webCamPub"/>
                   <mx:VBox width="500" height="500" id="centeredSubscriber" horizontalAlign="center" verticalAlign="middle"/>
                   <mx:Label text="Click on a Subscriber thumbnail to make it bigger." />
                   <mx:HBox width="100%" height="200" horizontalAlign="center" verticalAlign="top" id="smallSubscriberContainer" creationComplete="cSession_synchronizationChangeHandler(event)"/>
                   <mx:Button  id="startBtn" label="Start"  click="startBtn_clickHandler(event)" height="20"/>
              </mx:VBox>
         </rtc:ConnectSessionContainer>
    </mx:Application>
    Thanks
    Arun

  • IS there a way to load and purchase different photos from iPhoto and ship them at the same time? the only way that I can find is to purchase each photo (or multiple of one) at a time, which increases the cost of shipping, as I want to get one print of 20

    Is there a way to order multiple different prints in any quantity from Iphoto? it appears currently like I would have to ship each separately, even if only one print... is there a way around this so I can can get several DIFFERENT prints of any quantity and ship all at the same time?

    Sure - easiest way is to make an album for photos you want to order and drag photos to it - when it is complete open the album, select all and order
    LN

  • Can't import folders only one at a time files. (thousands!)

    OK here's the problem: I just reinstalled XP on my computer and when I either add by file or by folder it doesn't show in my library. I have 7,000 songs and I see that that when i dip threw the folders and catch an individual file it will add, but i would quite literally have to do that thousands of times for that to work. Before I wiped my computer clean I just copied my itunes library to an old hard-drive. So its organized the way itunes does it with countless folders if it was just one folder with all those files it would be easy, Ive been researching for hours now and yeah i should of burn it via export library but to little to late for me now. Ugh I just organized my library too! Album art and all! Guess it was naive to think it was as simple as putting it in my itunes folder and abra-cadabra! it be there. Please help and I'll be your best freind.

    Ever since the macmail app, changed it's appearence etc.
    What are you talking about? Mail hasn’t changed its appearance since Mac OS X 10.4 (Tiger) was released.
    If you’re not using Mac OS X’s Mail, but .Mac mail on the web instead, you’re posting in the wrong forum. The right forum for such questions would be .Mac Email On The Web. This forum is for discussing issues related to the Mail & Address Book applications included with Mac OS X 10.4 (Tiger).

  • Multiple MPEG one at a time

    I have a small business where I have multiple mpegs that I play in a different order at different shows. When I use Quicktime and select several movies it play them all at one in different windows. I change the setting to open a different window out.
    Is it possible to select 10 mpegs and make them play one after the other in Quicktime. I want it to be like a playlist in iTunes.
    Thanks!
    Denald

    You can use MPEG Streamclip and join them all together so you have one long movie. Use batch list mode, it has two options - one to fix timecode errors ( do always) and join together ( do in this case).
    There are several QT players like NicePlayer or XinePlayer that have playlists.

  • Upload multiple files to a data item in sharepoint list

    The image above shows a list item with two pdf files attached to it.  This is an access databse that was pushed to this sharepoint list.  When we attached these files we used the "attach file" from the edit menu at the top of the page.
     They are put into a data item called "copy of sepration report", which I can't seem to find when I edit the list.  As a further on discussion of this we would like to be able to upload multiple items into their own data field.  I.E.
    one could be seperation report, and another could be accidents, and another would be disciplinary.  Each would have the capability of having multiple items uploaded to it.
    What am I missing????

    Since you can't attach document to list item field, you may need to think other way around. You can create a document library and have the document library all these fields (separation report, copy of separation report etc.). So instead of list item having
    the documents attached, the document library will have the fields attached. Also you can group the fields into two groups - fields that are not directly related to document and fields that are directly related to document. Then you can move the document related
    fields to document library and create another list with the non-related-to-document fields and linking this new list to document library using lookup
    Thanks,
    Sohel Rana
    http://ranaictiu-technicalblog.blogspot.com

  • How does iCal, or Calendar, order the display of multiple events for the same time?

    I can't for the life of me figure out how iCal orders the display of multiple items at the same time.  Does anyone have a clue?  It's not alphabetical.  It's not according the the order of the calendars in the left pane.  Is it just random?  Any help would be greatly appreciated.

    In the focus lost eventhandling start a thread which does
    the actual handling.
    the new thread waits for a little time (0.1 seconds)
    the click event of the button checks for a thread like the one above and tells it not to execute
    This way you execute the for the lost focus event only if
    the ok button isn't clicked in the same process ... not
    realy good, because it kind of relies on the ordering of threads ... but maybe it still works for you?

  • Is it possible to query multiple items in a single OPC read?

    I am trying to read several data items at one time via OPC. Is this possible? If so, how? I have tried passing multiple URLs to specific items and a single URL header with multiple variable names. Both methods return an OPC error about invalid items. I am trying to do this to speed up OPC access times. Reading each item one-at-a-time is a little time consuming for our application.

    The only way to read multiple datapoints via OPC is to build an OPC item that contains multiple pieces of information. I checked this here, and I had no problem reading an array of data from an OPC Server with DataSocket.
    I read the "opc:/Matrikon.OPC.Simulation/Random.ArrayOfReal8" data item from a Matrikon OPC Simulation Server that publishes an array data item. The OPC Demo server is available for free download at http://www.matrikon.com/opc/htdocs/simx.htm. You can read this as an array of doubles in LabVIEW.
    For your application all you will need to read your data multiple items at a time is a server that can publish arrays.
    Hope this helps.

  • Upload more than one original in a DIR

    Hi all,
    is possible to upload more than one original document at a time into a DIR (for DMS than for Easy DMS) ?
    Thanks a lot,
    Marco.

    hi, Marco
    U can upload more thean one [N -Number] Original Files in to DIR.
    Condition is U have configure in SPRO, TC DC10
    or U can navigate, in SPRO>Cross application>Document management>control data>Define Document type
    set flag 'Use Kpro.
    Supose u did not select this option, the limitation of original application file only 2 u can upload in every DIR.
    Benakaraja
    ??p
    Edited by: benaka rajes on Jul 3, 2009 4:20 PM

  • Upload multiple documents missing

    The upload documents option is missing for a user that has Office 2012, Sharepoint 2010  and IE 9 on their local machine. It is working fine on the server that has Office 2010, Sharepoint 2010 and IE9. So it looks like it is either an Office 2012
    issue or a setting on IE but I have no idea what. Could their be a compatibility issue between Sharepoint 2010 and Office 2012? has anyone else had this problem?
    thanks.

    Your question is a bit unclear:
    There isn't an office 2012 that i know of. Do you mean Office 2013?
    Does the user have a development SharePoint instance installed on a Windows 7 machine? The more normal exaple would be that you have one SharePoint 2010 installation on the server and a user accessing the site from a Windows 7 desktop.
    Is the user able to upload single documents using the Upload Document button on the ribbon but is unable to upload multiple items?
    If all of that is true: The user is probably missing Silverlight or the steps in the link Amit included should be followed.

  • How do I select multiple items?

    Happy New Year.  I am a new Mac user.  Recently switched from Windows.  How do I select multiple rows?  In windows you can CONTROL+click to select multiple items 1 at a time and SHIFT+click to select multiple items in groups.  I figured out to do COMMAND+click on Mac to select multiples 1 at a time.  I need to delete ALOT of rows.  How do I select multiples in groups? 
    Thanks.

    KarenSelena and BobHarris have given you the direct sequences.
    You can also select multiple disjoint ranges with combinations of ⌘ (command key) click and ⇑ (shift key) click, too.
    As you use OS X, you'll find a large number of ⌘ and ⇑ and ˄ (control key) and ⌥ (option key) clicks and shortcuts available (and some were mentioned earlier), and shortcuts such as ⌘ A (select all), ⌘ Z (undo) and a whole host of other shortcuts available.
    Here is Apple's Mac 101 / Mac Basics site, which has a good (and free) introduction toward learning to use your Mac.

  • How do I delete multiple items at once instead of one at a time?

    How do I delete multiple items at once instead of one at a time? I have several duplicate items in my library and would like to delete the duplicates. Thanks!

    You can select multiple items using shift to select a range and control to add or remove items from it.
    Regarding duplciates, Apple's official advice is here... HT2905 - How to find and remove duplicate items in your iTunes library. It is a manual process and the article fails to explain some of the potential pitfalls.
    Use Shift > View > Show Exact Duplicate Items to display duplicates as this is normally a more useful selection. You need to manually select all but one of each group of identical tracks to remove. Sorting the list by Date Added may make it easier to select the appropriate tracks, however this works best when performed immediately after the dupes have been created.  If you have multiple entries in iTunes connected to the same file on the hard drive then don't send to the recycle bin. This can happen, for example, if you start iTunes with a disconnected external drive, then connect it, reimport from your media folder, then restart iTunes.
    Use my DeDuper script if you're not sure, don't want to do it by hand, or want to preserve ratings, play counts and playlist membership. See this thread for background. Please take note of the warning to backup your library before deduping, whether you do so by hand or using my script, in case something goes wrong.
    (If you don't see the menu bar press ALT to show it temporarily or CTRL+B to keep it displayed)
    tt2

Maybe you are looking for

  • Error in import-check of ESS SC in dev system CMS

    Hi all, Im facing some error msgs while performing an import-check of the ESS SC in Dev system of cms. i had no probs in importing other scs for sap-jtech, pcui_gp and others. i downladed ESS 600 SP 10 frm servicemktplace. however the file downloads

  • ITunes won't load into my system, requires Administrator, I am the Administrator, what do I do?

    I uninstalled iTunes because it kept shutting down. I figured the best thing was to start over. After uninstalling iTunes, when I went to load the newest version 10.5 it wouldn't finish the installation telling me to log on as the administrator. I'm

  • Creating pdf from scanner problem

    using acrobat xi, when I try to create from scanner, Xerox phaser 3200, predefined setting, e.g.. autodetect, causes program to crash. custom scan works and worked ok on previous version 6. does anyone have any thought s on this. I've updated drivers

  • [RFC][Authorization] Prevent Dump on RFC Call

    Hi, I would like to have a tool to check consistencies throughout different SAP systems for a given user. For this, I call the Bapi called 'BAPI_USER_GET_DETAIL'. The problem is that, depending RFC user defined in SM59, it may end by a DUMP. Thus, is

  • Lightroom 1 upgrade question

    So, LR3 is right around the corner.  I have LR1 installed, and I received LR2 (upgrade) as a Christmas gift... What I'm trying to figure out is this:  Should I return LR2, pocket the cash, wait for LR3, and upgrade then?  I don't believe Adobe has re