BUG: Last Image of Large Number Being Moved fails

This has happened several times in organizing some folders.  Moving over 100 images at a time, it seems that one image near the end fails - I get the screen that Lightroom can't move the image right now.  It's always just one image.  I can move it on it's own just a second later and it works just fine.
While the Move operation is being fixed, consider that it could go way faster than it does now if the screen didn't have to be refreshed after each file has been moved.  I can see the value of the refresh if it's just a few images being moved, but for a large number, the refresh isn't helpful anyhow.
Paul Wasserman

I posted on this last week, and apparently a number of people have experienced this.
http://forums.adobe.com/thread/690900
Please report it on this bug report site so that it gets to the developers' attention sooner:
https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform
Bob

Similar Messages

  • Barcode CODE 128 with large number (being rounded?) (BI / XML Publisher 5.6.3)

    After by applying Patch 9440398 as per Oracle's Doc ID 1072226.1, I have successfully created a CODE 128 barcode.
    But I am having an issue when creating a barcode whose value is a large number. Specifically, a number larger than around 16 or so digits.
    Here's my situation...
    In my RTF template I am encoding a barcode for the number 420917229102808239800004365998 as follows:
    <?format-barcode:420917229102808239800004365998;'code128c'?>
    I then run the report and a PDF is generated with the barcode. Everything looks great so far.
    But when I scan the barcode, this is the value I am reading (tried it with several different scanner types):
    420917229102808300000000000000
    So:
         Value I was expecting:     420917229102808239800004365998
         Value I actually got:         420917229102808300000000000000
    It seems as if the number is getting rounded at the 16th digit (or so, it varies depending of the value I use).
    I have tried several examples and all seem to do the same.  But anything with 15 digits or less seems to works perfectly.
    Any ideas?
    Manny

    Yes, I have.
    But I have found the cause now.
    When working with parameters coming in from the concurrent manager, all the parameters define in the concurrent program in EBS need to be in the same case (upper, lower) as they have been defined in the data template.
    Once I changed all to be the same case, it worked.
    thanks for the effort.
    regards
    Ronny

  • WinRT bug report - ListView with large dataset being clipped

    I think I've found a bug in the Windows store (WinRT 8.1) version of the ListView (I've not tried on windows phone).
    When I create a page with a ListView and bind it to an ItemsSource with many items I find that as I start to scroll through these items the rendered ListViewItems will suddenly disappear as if they are hidden behind another control.
    I have created a simple example to demonstrate the issue.  Create a blank Universal app and replace the contents of the MainPage.xaml and MainPage.xaml.cs of the Win8 app with the code below.  Build and run the code and use the mouse to drag the
    scrollbar handle down to item 41351 and you will see that all items after that are not displayed.
    This looks like a bug to me but what does everyone else think?
    Does anyone know of a work-around?
    MainPage.xaml
    <Page
    x:Class="WinRTListViewClipping.MainPage"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="using:WinRTListViewClipping"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    mc:Ignorable="d"
    x:Name="Root">
    <Grid Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
    <ListView ItemsSource="{Binding Items}"/>
    </Grid>
    </Page>
    MainPage.xaml.cs
    using System;
    using System.Collections.Generic;
    using System.IO;
    using System.Linq;
    using System.Runtime.InteropServices.WindowsRuntime;
    using Windows.Foundation;
    using Windows.Foundation.Collections;
    using Windows.UI.Xaml;
    using Windows.UI.Xaml.Controls;
    using Windows.UI.Xaml.Controls.Primitives;
    using Windows.UI.Xaml.Data;
    using Windows.UI.Xaml.Input;
    using Windows.UI.Xaml.Media;
    using Windows.UI.Xaml.Navigation;
    // The Blank Page item template is documented at http://go.microsoft.com/fwlink/?LinkId=234238
    namespace WinRTListViewClipping
    /// <summary>
    /// An empty page that can be used on its own or navigated to within a Frame.
    /// </summary>
    public sealed partial class MainPage : Page
    public static readonly DependencyProperty ItemsProperty =
    DependencyProperty.Register(
    "Items",
    typeof(List<string>),
    typeof(MainPage),
    new PropertyMetadata(new List<string>()));
    public List<string> Items
    get { return (List<string>)GetValue(ItemsProperty); }
    set { SetValue(ItemsProperty, value); }
    public MainPage()
    DataContext = this;
    for (int idx = 0; idx < 100000; idx++)
    Items.Add("Item: " + idx.ToString());
    this.InitializeComponent();

    I've noticed an annoying feature of the WinRT ListView and I've created a simple example to demonstrate the problem.
    With the ListView I'm experiencing unwanted clipping where a lot of items are displayed.  In the following example the ListView works fine on the first 41350 items but after that you cannot see them.  They still seem to be there because you can
    move the focus using the cursor keys, but you just cannot see them.
    Does anyone know why this happens and if there's a work around or fix for it?
    Windows Store Example - XAML
    <Page
    x:Class="WinRTListViewClipping.MainPage"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="using:WinRTListViewClipping"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    mc:Ignorable="d"
    x:Name="Root">
    <Grid Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
    <ListView ItemsSource="{Binding Items}"/>
    </Grid>
    </Page>
    Windows Store Example - Code Behind
    using System;
    using System.Collections.Generic;
    using System.IO;
    using System.Linq;
    using System.Runtime.InteropServices.WindowsRuntime;
    using Windows.Foundation;
    using Windows.Foundation.Collections;
    using Windows.UI.Xaml;
    using Windows.UI.Xaml.Controls;
    using Windows.UI.Xaml.Controls.Primitives;
    using Windows.UI.Xaml.Data;
    using Windows.UI.Xaml.Input;
    using Windows.UI.Xaml.Media;
    using Windows.UI.Xaml.Navigation;
    // The Blank Page item template is documented at http://go.microsoft.com/fwlink/?LinkId=234238
    namespace WinRTListViewClipping
    /// <summary>
    /// An empty page that can be used on its own or navigated to within a Frame.
    /// </summary>
    public sealed partial class MainPage : Page
    public static readonly DependencyProperty ItemsProperty =
    DependencyProperty.Register(
    "Items",
    typeof(List<string>),
    typeof(MainPage),
    new PropertyMetadata(new List<string>()));
    public List<string> Items
    get { return (List<string>)GetValue(ItemsProperty); }
    set { SetValue(ItemsProperty, value); }
    public MainPage()
    DataContext = this;
    for (int idx = 0; idx < 100000; idx++)
    Items.Add("Item: " + idx.ToString());
    this.InitializeComponent();

  • File Bundle with large number of files failed

    Hi!
    Well, I thought there will appear problems. We do have some apps for distribution just by copying large amount of files (not large in size) to Windows (XP Pro, usually) machines. These is some programs which works from directory wo any special need for installation. Happy situation for admin. From one side. In ZfD 4.0.1 we did install this app on one of machines and then did take snapshot via special app (who remember) and did copy file to (Netware) server share, give rights for device (~ workstation) and associate it with ws via eDir and ... voila, next restart or whatsoever and app was there. Very nice, indeed, I miss this!
    So, I tried to make this happen on ZCM 10 (on SLES 11). Did app, sorry, bundle, upload files (first time it stuck, second time id accomplish, around 7500 files) and did distribution/launch association to ws (~device). And ... got errors. Several entries in log as examples below.
    Any ideas?
    More thanks, Alar.
    Error: [1/8/10 2:41:53 PM] BundleManager BUNDLE.UnknownExceptionOccurred An Unknown exception occurred trying to process task: Novell.Zenworks.AppModule.LaunchException: Exception of type 'Novell.Zenworks.AppModule.LaunchException' was thrown.
    at Novell.Zenworks.AppModule.AppActionItem.ProcessAct ion(APP_ACTION launchType, ActionContext context, ActionSetResult previousResults)
    Error: [1/8/10 2:41:54 PM] BundleManager ActionMan.FailureProcessingActionException Failed to process action: Information for id 51846d2388c028d8c471f1199b965859 has not been cached. Did you forget to call CacheContentInfo first?

    ZCM10 is not efficient in handling that number of files in a single
    bundle when they are in the content repo.
    Suggestions include zipping the files and uploading to the content repo
    and then downloading and extracting the zip as part of the bundle.
    Or Use the "Copy Directory" option to copy the files from a Network
    Source Directly like you did in ZDM.
    On 1/8/2010 8:56 AM, NovAlf wrote:
    >
    > Hi!
    > Well, I thought there will appear problems. We do have some apps for
    > distribution just by copying large amount of files (not large in size)
    > to Windows (XP Pro, usually) machines. These is some programs which
    > works from directory wo any special need for installation. Happy
    > situation for admin. From one side. In ZfD 4.0.1 we did install this app
    > on one of machines and then did take snapshot via special app (who
    > remember) and did copy file to (Netware) server share, give rights for
    > device (~ workstation) and associate it with ws via eDir and ... voila,
    > next restart or whatsoever and app was there. Very nice, indeed, I miss
    > this!
    > So, I tried to make this happen on ZCM 10 (on SLES 11). Did app, sorry,
    > bundle, upload files (first time it stuck, second time id accomplish,
    > around 7500 files) and did distribution/launch association to ws
    > (~device). And ... got errors. Several entries in log as examples
    > below.
    > Any ideas?
    > More thanks, Alar.
    > ---
    > Error: [1/8/10 2:41:53 PM] BundleManager
    > BUNDLE.UnknownExceptionOccurred An Unknown exception occurred trying to
    > process task: Novell.Zenworks.AppModule.LaunchException: Exception of
    > type 'Novell.Zenworks.AppModule.LaunchException' was thrown.
    > at Novell.Zenworks.AppModule.AppActionItem.ProcessAct ion(APP_ACTION
    > launchType, ActionContext context, ActionSetResult previousResults)
    > ---
    > Error: [1/8/10 2:41:54 PM] BundleManager
    > ActionMan.FailureProcessingActionException Failed to process action:
    > Information for id 51846d2388c028d8c471f1199b965859 has not been cached.
    > Did you forget to call CacheContentInfo first?
    > ---
    >
    >

  • I have accidentally deleted a large number of develped images in Lightroom before I did a backup. I reimported the original raw files back into Lightroom hoping the develop settings would be re-established but no luck. Notice system mau have done an auto-

    Question?
    I have accidentally deleted a large number of develped images in Lightroom before I did a backup. I reimported the original raw files back into Lightroom hoping the develop settings would be re-established but no luck. Notice system mau have done an auto-backup as have an lrcat-journal file. Can I use this to restore my develop settings. I also have jpgs generated from all the deleted images.

    Hello,
    if you have a backup of your catalog you can do the following:
    1. Backup your catalog first
    2. Restore your backup catalog to some location
    3. Open your current catalog and select "files->import from another catalog".
    4. Select your backup catalog and your lost images. LR ask you if you want to overwrite the current settings or save them as a virtual copy.
    As an alternativ you can open your backup catalog, select the "lost" images and save the development settings as xmp sidecar fiels (using ctrl-s). Then open your current catalog, seletct the images and use "Metadata->Read Metadata from files".

  • Last image placed in the document comes up as being modified constantly

    I have an indesign issue.
    Running CS4 (6.06) and CS5 (7.0.4)
    On snow leopard  10.6.8
    On a Mac Pro Quad-Core Intel Xeon
    My problem is that when I have a document with images in for some reason it seems that the last image placed in the document comes up as being modified.
    I do the required update everything appears up to date save the job and the same link will again show as being modified, so I get in to an infinite loop.
    This happen with documents saved locally and on a server, with documents I created and documents I have picked up form other artworkers.
    It is not an issue with specific link as we have seen this in many linked images, I tried to identify a trigger for this problem.
    I took 4 images placed them into a document save locally in my desktop opened closed the document after each image was placed, it work fine for all 4 images on there own. I added a text box to my document saved and the last image placed then flagged are being modified in my links panel, I deleted the image that was flagged as modified from the document and saved, as soon as I saved the next image in placed order now came up as being modified (this image was not flagged and being modified when I have 4 images placed).
    If I remove the text box from this document at any point then no images are flagged as modified.
    Just to confirm. This in not based around one document, specific images or one mac. I didn’t have this issue with 10.5.8 and Older CS4 on the same machine.
    Please help??

    You said this is not an issue on just one machine. Does this mean that other machines are alos showing this behavior?
    The first thing to try for any flakiness like this is: Replace Your Preferences
    That said, this sounds like it coud be some sort of conflict. Are you running any third-party plugins?

  • Possible bug for emails with a large number of recipients

    When receiving emails which was also sent to a large number of people (more than can fit in two lines), it then displays the text 'and 10 more..." or however more there are. Clicking on this text is supposed to then display all the email addresses the email was sent to. However clicking on this is for some reason doing nothing. Is this a bug, or am I the only one having this problem?

    When receiving emails which was also sent to a large number of people (more than can fit in two lines), it then displays the text 'and 10 more..." or however more there are. Clicking on this text is supposed to then display all the email addresses the email was sent to. However clicking on this is for some reason doing nothing. Is this a bug, or am I the only one having this problem?

  • How do I create new versions of a large number of images, and place them in a new location?

    Hello!
    I have been using Aperture for years, and have just one small problem.  There have been many times where I want to have multiple versions of a large number of images.  I like to do a color album and B&W album for example.
    Previously, I would click on all the images at one, and select new version.  The problem is this puts all of the new versions in a stack.  I then have to open all the stacks, and one by one move the new versions to a different album.  Is there any way to streamline this proccess?  When it's only 10 images, it's no problem.  When it's a few hundred (or more) its rather time consuming..
    What I'm hoping for is a way to either automatically have new versions populate a separate album, or for a way to easily select all the new versions I create at one time, and simply move them with as few steps as possible to a new destination.
    Thanks for any help,
    Ricardo

    Ricardo,
    in addition to Kirby's and phosgraphis's excellent suggestions, you may want to use the filters to further restrict your versions to the ones you want to access.
    For example, you mentioned
      I like to do a color album and B&W album for example.
    You could easily separate the color versions from the black-and-white versions by using the filter rule:
    Adjustment includes Black&white
         or
    Adjustment does not include Black&white
    With the above filter setting (Add rule > Adjustment includes Black&White) only the versions with Black&White adjustment are shown in the Browers. You could do similar to separate cropped versions from uncropped ones.
    Regards
    Léonie

  • How to handle a large number of images?

    I am writing a program that need handle a large number of images.
    How should i do to make it work faster and less memory.
    Is it a image pool i can use ? How is it works?

    Thank you for you reply.
    I need to handle images.For example a user upload an
    image via web browser and i need save too images ,one
    is the original image ,the other is the compressed
    image.And there may be a large number of images
    because my project is a web application.
    How should i do to reduce the stress of server?Well, you can find some answers under "Image I/O" for your image related IO problems here
    http://java.sun.com/products/java-media/jai/forDevelopers/jaifaq.html.

  • Problem with importing a large number of images to Lightroom?

    I'm trying to import a large number of images from disk to Lightroom. If I select more that approximately 1500 images (1250 works fine), I get an error message saying "files do not exist". If I reduce the number of files imported, everything works fine. I can import in groups as long as the number selected at any one time is less that the ~1500 limit.
    Has any one had a similar problems? I'm running LR 2.4 64-bit on Win7 RC 64-bit, Q6600 processor, 8 GB RAM.
    Does not seem like this should be a problem. Its a real hassle to my workflow. I'm working on a series of time-laps movies (here is a link to a sample: http://vimeo.com/6375019).

    Thanks for your reply Sean,
    It is an internal disk drive, SATA II interface.I have no other disk/file problems, this is unique to LR as far as I can tell.
    I'm loading files onto disk from a CF card reader outside of Lightroom, then opening LR and telling it to import from disk. I've never had a problem before with imports. Experimenting with number of files, somewhere between 1250 and 1500 is where the problem occurs.
    Been busy making time-lapse videos of the fire in LA, so I'm away from the computer most of the time.
    thanks,
    Dan Finnerty

  • BUGS: stop at last image and scrollable frames

    Hey,
    I think I've identified two bugs in the latest release:
    1) MSO slideshows that have Autoplay checked, don't respect the "Stop at last image" option, and return to the first stage regardless. This behavior only occures some of the times, and I am not certain what makes it happen. I think it may only happen with slideshows in which are configured to be exported in vector format.
    2) Scrollable boxes that are configured to be vertically scrollable only, are also horizontally scrollable, if the content of the scrollable box exeeds the horizontal limits of the scrollable frame.
    Did anyone else expirience these bugs? Any workarounds or fixes?
    Thanks

    Doesn’t anyone bother to read?
    I’m sorry, but It’s getting quite frustrating answering the same question over and over.
    We now have about 15 threads on the same subject.
    If you had read back just a few posts you’d know there’s a bug causing this.
    Bob

  • Changing Duration, Start/Finish, %comp all result in MS-Project warning that task(s) [normally the last task in the project plan] is being moved to start Sat Jan1, 84...

    Running MS-Project 2007 12.0.4518.1014 MSO (12.0.6607.1000) non-server edition.  The Project was created on July 17, 12.  It has gone through 162 revisions w/o presenting this warning.  The date range is 7/17/12 thru 5/3/13.  The task
    I'm changing (#16) shows a Start of 8/17/12 and Finish of 1/14/13; it has no Predecessors or Successors.  I'm changing the %comp to 100% and I get the warning message "You moved task 264 of 'project name' to start Sat Jan 1, '84. This is before
    the project start date (Tue Jul 17, '12)".  I have tried changing other tasks with the same resulting warning message.  I have tried breaking the Predecessor link to the last task only to be told of another task being moved to Jan 1, '84. 
    If I accept the move, 51 of the 264 rows (both completed and future tasks) are moved to start on 1/1/84 with everyone being flagged as a Milestone--the top summary task [Outline Seq 1] Start and Finish change from 7/17/12-5/3/13 to 8/17/12-2/19/13.
    Any thoughts as to what is happening behind the scenes to cause this warning and subsequent corruption of the plan?

    I will need to check w/FLS to determine--they control patching and releases.  As for your other questions...fixed start, every task is ASAP constrained by task sequencing only.  I've never ask MS-Project to Resource, Load Level.  Calculations
    are Automatic.  There are three tasks that have a SF relationship to a specific event such that their start is backward scheduled from when the dependent task starts depending upon the task sequences that drive it.  I have used this approach on many
    other projects and have never run into this issue.
    I agree that it sounds like a file corruption--just looking to nail down which event might have caused the corruption so that I can restore to a prior version and rebuild [obviously HOPING to eliminate the sequence that caused the file to be corrupted in
    the first place].

  • [svn] 3610: Fixing bug SDK-17173: Setting rotate to a large number doesn' t work anymore.

    Revision: 3610
    Author: [email protected]
    Date: 2008-10-13 17:33:25 -0700 (Mon, 13 Oct 2008)
    Log Message:
    Fixing bug SDK-17173: Setting rotate to a large number doesn't work anymore.
    The Flash Player clamps rotate between -180 and 180. We should do the same now that we're doing some of the calculations ourselves. This clamping logic was added to CompoundTransform.as. Also, clamping logic was added to UIComponent. This is because FP10 doesn't handle values greater than 2^15-1; FP 9 used to handle these values fine. I filed a FP bug for this (FP-749).
    QE: Yes - Please look out for any rotation failures
    Doc: No
    Bugs: SDK-17173
    Reviewer: Ely
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-17173
    http://bugs.adobe.com/jira/browse/FP-749
    http://bugs.adobe.com/jira/browse/SDK-17173
    Modified Paths:
    flex/sdk/trunk/frameworks/projects/framework/src/mx/core/UIComponent.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/geom/CompoundTransform.as

    Can we now assume that the touch SDK has been abandonned by Adobe? It's now a year after "should be updated soon", and currently if you try to download the touch SDK from this page you get the Photoshop 3 SDK instead!!!
    I ask as I'm about to remove Touch support from my app; the very few people that use touch are now having problems e.g., timeouts, with the latest version of Photoshop.
    Sandy

  • I have saved a large number of cd on an extermal drive via my laptop. I have now moved my external drive to my desk to but I tunes does not find all the CD i have saved on the external drive

    I have saved a large number of cd on an external drive via my laptop. I have now moved my external drive to my desk to but I tunes does not find all the CD i have saved on the external drive

    Depending on which email client software you use
    the files should be in 'your home folder' library, esp.
    if you use Mail application.... ~/Library/Mail
    Since you don't specify what mail application,
    that would most be associated with the file.
    I notice there are some items to the right of your post
    where it says "more like this' so that may be worth a
    look to see if similar issues were answered. Also, the
    Help viewer in your system is a searchable database.
    Seems that google also brings up fair information, too.
    Do you have a complete bootable clone of your entire
    Mac system on an externally enclosed hard disk drive?
    Good luck & happy computing!

  • How do I globally set in and out points on a large number of images?

    As the post asks: How do I globally set in and out points on a large number of images before sending to the timeline? In AVID I can do this in the Script view. How do I do it in FCP?
    Thanks in advance

    Thanks. I assumed I needed to set in and out points. I have not done an image sequence in FCP. If I have a 10 second image and a 2 second transition, but then change the duration of the transition to say 4 seconds then FCP will let me alter the transition duration?
    With regards to movie clips, what happens with setting global in and out points? How would I do that?
    Thanks in advance

Maybe you are looking for

  • Applet Download Incomplete

    I'm having a problem with the download of a large applet (approx. 1MB) getting cut short. Everything appears normal. The Java Extension Installation progress window comes up. But when it tries to run the applet it gets "load: class <className> not fo

  • Closing the browser in InfoView doesn't log the user off.

    In Business Objects XI R2 Infoview, closing the browser in InfoView doesn't log the user off no matter how you answer the subsequent popup question "A window has closed. Log off as well?" Is there a fix for this somewhere?

  • How can I connect to a NAS via internet

    I've been searching the forum for an answer and have found close but not quite. I'm running a Macbook on Snow leopard as is a friend that I am now working with. She (or rather, her husband) also has a NAS connected via a wireless router on a home net

  • Frequent Kernel Panics on Snow Leopard 10.6.8

    I recently bought a used MacbookPro5,1 with a 2,4 Ghz Core2Duo Processor. It was upgraded to 4 GB of RAM and a 750GB HDD by the previous owner. When I received it yesterday, it was running 10.6.3, I think. It worked flawlessly for the first couple of

  • N80: Problem of no Chinese Language while update t...

    Recently i just update my firmware to:- V 4.0623.0.41. 26-07-2006 RM-92 Nokia N80 (11) But it's can't support any chinese language. There are France etc language which i can't understand. How do i get the firmware which support chinese and english la