Spot Removal and slow system after a few clicks

Hello All,
I just wanted to bring attention to a very annoying issue. If you use spot removal function a few times in a lightroom session, you end up with the impossibility to use it anymore if you do not exit lightroom and start again from zero.
What I mean is that after a few clicks on spot removal on 2-3 pictures, when you need to use it again on picture number 4, for example, the function is almost unusable (very slow movements that make impossible to put the spot tool in the right place).
If you then exit lightroom and start again everythimg is fine for a while. It seems it is allocating memory each time you use it....anybody having the same problem? Any idea how to solve it? I have been dealing with this since previous versions and it has never ben solved (if it is indeed a bug!).
Thanks all!
Cristiano

Hi Hans,
yes, I guess we'll have to wait...
I have worked with lightroom in the past and then moved to NX2 for a couple of months because I was loving the picture control correspondance with my raw files....then I was so desperate that I moved back to LR. NX2 was too slow and a very bad piece of software for me...altough I will keep an eye to future releases.
I am on a Mac.
Thanks!
Cristiano

Similar Messages

  • When i try to open week cal it loads and then closes after a few seconds...I have checked for updates, turned the phone off then on, closed out of the app and then opened it again...nothing works!  Any suggestions?

    When i try to open week cal it loads and then closes after a few seconds...I have checked for updates, turned the phone off then on, closed out of the app and then opened it again...nothing works!  I have thought about deleting the app from my phone and then reloading it again but I worry that it will delete all my calendar info???  Any suggestions?

    To reset, press and hold the Home and power buttons until the silver apple appears.
    I would delete the app, reset the phone and then download the app again. Your calendar information should be stored on the phone as Week Cal uses the Calendar app information.
    Best of luck.

  • I am using laptop hitting and slow system not working

    i am using laptop hitting and slow system not working and very late opan file browser every think . plez help me

    Hi,
    Shut down the notebook.  Tap away at the esc key as you start the notebook to enter the Start-up Menu.  Select the Bios option ( usually f10 ) and under the Advanced or Diagnostic tab you should find the facility to run tests on both the Hard Drive and Memory.  Post back with the details of any error messages.
    Note:  If the option to run these tests is not available in the Bios Menu, use the f2 diagnostic menu instead.
    Can you also post back with the following details.
    1.  The full Model No. and Product No. of your notebook - see Here for a guide on locating this information.
    2.  The full version of the operating system you are using ( ie Windows 7 64bit ).
    Regards,
    DP-K
    ****Click the White thumb to say thanks****
    ****Please mark Accept As Solution if it solves your problem****
    ****I don't work for HP****
    Microsoft MVP - Windows Experience

  • Tweens/add/remove childs works fine, but after a few clicks it goes to the crapper

    I keep checking this and checking this, but its obvious I'm missing something. after a few clicks the entire design breaks down. Anyone have any insight? Here's the code...
    import fl.transitions.Tween;
    import fl.transitions.easing.*;
    import fl.transitions.TweenEvent;
    whitePanel_mc.addEventListener(Event.ENTER_FRAME, startUpAni);
    greyPanel_mc.addEventListener(Event.ENTER_FRAME, startUpAni);
    greyPanel2_mc.addEventListener(Event.ENTER_FRAME, startUpAni);
    redPanel_mc.addEventListener(Event.ENTER_FRAME, startUpAni);
    bgPanel_mc.addEventListener(Event.ENTER_FRAME, startUpAni);
    banner_mc.buttonMode = true;
    websites_mc.buttonMode = true;
    content_mc.buttonMode = true;
    contact_mc.buttonMode = true;
    var startAd_mc:StartAd = new StartAd();
    var return_mc:Return = new Return();
    var infoText1_mc:Info = new Info();
    var infoText2_mc:Info2 = new Info2();
    function getReturnBtn(e:TweenEvent):void
    banner_mc.removeEventListener(MouseEvent.CLICK, startBanText);
    contact_mc.removeEventListener(MouseEvent.CLICK, startConText);
    content_mc.removeEventListener(MouseEvent.CLICK, startContText);
    websites_mc.removeEventListener(MouseEvent.CLICK, startWebText);
    return_mc.buttonMode = true;
    return_mc.x = 100;
    return_mc.y = 466;
    return_mc.addEventListener(MouseEvent.CLICK, restoreMainMenu);
    addChild(return_mc);
    function startWebText(e:MouseEvent):void
    var contMenuTween:Tween = new Tween(content_mc, "x", Strong.easeOut, content_mc.x, 0, 6, false);
    var conMenuTween:Tween = new Tween(contact_mc, "x", Strong.easeOut, contact_mc.x, 0, 6, false);
    var banMenuTween:Tween = new Tween(banner_mc, "x", Strong.easeOut, banner_mc.x, 0, 6, false);
    var wTween:Tween = new Tween(whitePanel_mc, "x", Strong.easeOut, whitePanel_mc.x, 899, 12, false);
    var gTween:Tween = new Tween(greyPanel_mc, "x", Strong.easeOut, greyPanel_mc.x, 899, 12, false);
    var g2Tween:Tween = new Tween(greyPanel2_mc, "x", Strong.easeOut, greyPanel2_mc.x, 899, 12, false);
    infoText1_mc.x = 25;
    infoText1_mc.y = 25;
    infoText1_mc.gotoAndStop("websites");
    addChild(infoText1_mc);
    infoText2_mc.x = 458;
    infoText2_mc.y = 120;
    infoText2_mc.gotoAndStop("websites");
    addChild(infoText2_mc);
    removeChild(startAd_mc);
    banMenuTween.addEventListener(TweenEvent.MOTION_FINISH, getReturnBtn);
    function startContText(e:MouseEvent):void
    var webMenuTween:Tween = new Tween(websites_mc, "x", Strong.easeOut, websites_mc.x, 0, 6, false);
    var conMenuTween:Tween = new Tween(contact_mc, "x", Strong.easeOut, contact_mc.x, 0, 6, false);
    var banMenuTween:Tween = new Tween(banner_mc, "x", Strong.easeOut, banner_mc.x, 0, 6, false);
    var wTween:Tween = new Tween(whitePanel_mc, "x", Strong.easeOut, whitePanel_mc.x, 899, 12, false);
    var gTween:Tween = new Tween(greyPanel_mc, "x", Strong.easeOut, greyPanel_mc.x, 899, 12, false);
    var g2Tween:Tween = new Tween(greyPanel2_mc, "x", Strong.easeOut, greyPanel2_mc.x, 899, 12, false);
    infoText1_mc.x = 25;
    infoText1_mc.y = 25;
    infoText1_mc.gotoAndStop("content");
    addChild(infoText1_mc);
    infoText2_mc.x = 458;
    infoText2_mc.y = 120;
    infoText2_mc.gotoAndStop("content");
    addChild(infoText2_mc);
    removeChild(startAd_mc);
    banMenuTween.addEventListener(TweenEvent.MOTION_FINISH, getReturnBtn);
    function startConText(e:MouseEvent):void
    var webMenuTween:Tween = new Tween(websites_mc, "x", Strong.easeOut, websites_mc.x, 0, 6, false);
    var contMenuTween:Tween = new Tween(content_mc, "x", Strong.easeOut, content_mc.x, 0, 6, false);
    var banMenuTween:Tween = new Tween(banner_mc, "x", Strong.easeOut, banner_mc.x, 0, 6, false);
    var wTween:Tween = new Tween(whitePanel_mc, "x", Strong.easeOut, whitePanel_mc.x, 899, 12, false);
    var gTween:Tween = new Tween(greyPanel_mc, "x", Strong.easeOut, greyPanel_mc.x, 899, 12, false);
    var g2Tween:Tween = new Tween(greyPanel2_mc, "x", Strong.easeOut, greyPanel2_mc.x, 899, 12, false);
    infoText1_mc.x = 25;
    infoText1_mc.y = 25;
    infoText1_mc.gotoAndStop("contact");
    addChild(infoText1_mc);
    removeChild(startAd_mc);
    banMenuTween.addEventListener(TweenEvent.MOTION_FINISH, getReturnBtn);
    function startBanText(e:MouseEvent):void
    var webMenuTween:Tween = new Tween(websites_mc, "x", Strong.easeOut, websites_mc.x, 0, 6, false);
    var contMenuTween:Tween = new Tween(content_mc, "x", Strong.easeOut, content_mc.x, 0, 6, false);
    var conMenuTween:Tween = new Tween(contact_mc, "x", Strong.easeOut, contact_mc.x, 0, 6, false);
    var wTween:Tween = new Tween(whitePanel_mc, "x", Strong.easeOut, whitePanel_mc.x, 899, 12, false);
    var gTween:Tween = new Tween(greyPanel_mc, "x", Strong.easeOut, greyPanel_mc.x, 899, 12, false);
    var g2Tween:Tween = new Tween(greyPanel2_mc, "x", Strong.easeOut, greyPanel2_mc.x, 899, 12, false);
    infoText1_mc.x = 25;
    infoText1_mc.y = 25;
    infoText1_mc.gotoAndStop("banners");
    addChild(infoText1_mc);
    infoText2_mc.x = 458;
    infoText2_mc.y = 120;
    infoText2_mc.gotoAndStop("banners");
    addChild(infoText2_mc);
    removeChild(startAd_mc);
    contMenuTween.addEventListener(TweenEvent.MOTION_FINISH, getReturnBtn);
    function restoreMainMenu(e:MouseEvent):void
    removeChild(return_mc);
    removeChild(infoText1_mc);
    if (infoText2_mc.visible == true)
      removeChild(infoText2_mc);
    return_mc.removeEventListener(MouseEvent.CLICK, restoreMainMenu);
    stage.addEventListener(Event.ENTER_FRAME, startMenuAni);
    whitePanel_mc.addEventListener(Event.ENTER_FRAME, startUpAni);
    function startUpAni(e:Event):void
    var wTween:Tween = new Tween(whitePanel_mc, "x", Strong.easeOut, whitePanel_mc.x, 330, 6, false);
    var gTween:Tween = new Tween(greyPanel_mc, "x", Strong.easeOut, greyPanel_mc.x, 356, 10, false);
    var g2Tween:Tween = new Tween(greyPanel2_mc, "x", Strong.easeOut, greyPanel2_mc.x, 393, 14, false);
    var rTween:Tween = new Tween(redPanel_mc, "x", Strong.easeOut, redPanel_mc.x, 428, 18, false);
    var bTween:Tween = new Tween(bgPanel_mc, "x", Strong.easeOut, bgPanel_mc.x, 454, 20, false);
    rTween.addEventListener(TweenEvent.MOTION_FINISH, removeAni);
    function removeAni(e:TweenEvent):void
    whitePanel_mc.removeEventListener(Event.ENTER_FRAME, startUpAni);
    greyPanel_mc.removeEventListener(Event.ENTER_FRAME, startUpAni);
    greyPanel2_mc.removeEventListener(Event.ENTER_FRAME, startUpAni);
    redPanel_mc.removeEventListener(Event.ENTER_FRAME, startUpAni);
    bgPanel_mc.removeEventListener(Event.ENTER_FRAME, startUpAni);
    stage.addEventListener(Event.ENTER_FRAME, startMenuAni);
    function startMenuAni(e:Event):void
    var contTween:Tween = new Tween(contact_mc, "x", Strong.easeOut, contact_mc.x, 100, 3, false);
    var webTween:Tween = new Tween(websites_mc, "x", Strong.easeOut, websites_mc.x, 150, 3, false);
    var conTween:Tween = new Tween(content_mc, "x", Strong.easeOut, content_mc.x, 200, 3, false);
    var banTween:Tween = new Tween(banner_mc, "x", Strong.easeOut, banner_mc.x, 250, 3, false);
    banTween.addEventListener(TweenEvent.MOTION_FINISH, removeMenuAni);
    banner_mc.removeEventListener(MouseEvent.CLICK, startBanText);
    contact_mc.removeEventListener(MouseEvent.CLICK, startConText);
    content_mc.removeEventListener(MouseEvent.CLICK, startContText);
    websites_mc.removeEventListener(MouseEvent.CLICK, startWebText);
    startAd_mc.x = 25;
    startAd_mc.y = 25;
    addChild(startAd_mc);
    function removeMenuAni(e:Event):void
    stage.removeEventListener(Event.ENTER_FRAME, startMenuAni);
    banner_mc.addEventListener(MouseEvent.CLICK, startBanText);
    contact_mc.addEventListener(MouseEvent.CLICK, startConText);
    content_mc.addEventListener(MouseEvent.CLICK, startContText);
    websites_mc.addEventListener(MouseEvent.CLICK, startWebText);
    Is it the tweens? do I have too many? Should I create variables for the exact destinations of the objects? Should I create some null references? Should I index some of it with array(s)? I know i'm missing something...
    This can actually be viewed here as well... www.calladorn.com

    Ideas anyone?

  • HT201177 My new Mac Mini is plugged directly into my tv via hdmi cable and the screen will abruptly go blank and then return after a few seconds. Why is this happening?

    So I recently got a Mac Mini about two weeks ago and for some reason while I am on it the display will go blank and then return after a few seconds. It is happening very frequently. I checked the HDMI cable, I checked my tv and nothing seems to be wrong with them and I don't know what is going on.
    I am getting a bit frustrated because this Mac is brand spanking new and it is totally acting up for no reason whatsoever.
    Could someone please help me with this? I don't want my new computer to be useless. I need it.

    Which TV model do you have?
    Be aware of the fact that very many TVs do expect video signals on their HDMI inputs, not data signals from Macs or PCs. Please consult your TV manual if PCs or Macs can definitely be connected via HDMI, or if e.g. only DVI or RGB/VGA connectors are to be used.
    In case of DVI inputs for data being present, it's not a problem if an HDMI->DVI adapter, or better, cable is being used.
    Many users here are overlooking this potential reason for problems, assuming that HDMI outputs must always communicate with any HDMI input, certainly also because TV manufacturers do not "advertise" such limitations loudly.
    AV receivers with multiple HDMI inputs and a single HDMI video output to the TV are typically more "tolerant" and provide a sort of "converter" function. If present, feed a Mac's HDMI signal into the receiver, not the TV directly. If the receiver does not have enough HDMI inputs, consider to connect rather a video source (DVD player or similar) directly to the TV than the the Mac.

  • Lightroom 4 - Spot removal and adjustment brush issues

    In Lightroom 4, my spot removal and adjustment brush tools will not work on all areas of photos (in particular faces and the center of photos). The cursor seems to show the tool only on the outside portions of the photo.  Any suggestions?

    I have seen this a couple time and a restart of Lr has always fixed it.  It seems like there is some kine of dialog box waiting for input "hidden" behind Lr as it its not there if you minimize Lr.  This has been reported many times for a LONG time so it is probably one of the Lr bugs that is not getting fixed.  To be fair to Adobe, if someone could reproduce this problem it might get fixed but it seems to be pretty obscure.  BTW, I think Ihave seen reports of it in Lr5 also so hopefully it will get fixed in Lr 6

  • My ipod on my iphone has been replaced by "music" but now it will not play- it started and then crashed after a few seconds- now my music is blank

    Please help, I have installed Icloud on my iphone 4 and now I cannot play any music, my ipod has been replaced by a music file and it jammed after a few seconds of play- after downloading back from icloud.  The music is there somewhere becuase it streams in my car but on the phone the screen is blacnk and I have no controls.
    Thanks for any help
    Jacqueline

    Delete the music in your iTunes library, then go to iTunes store, Quick Link, 'Purchased' to redownload again.

  • My music file did  not download correctly and stops playing after a few seconds.

    My music files did not download correctly from itunes and stop playing after a few seconds.

    Assuming you are in a region where you are allowed to redownload your past purchases, delete the current copies from your iTunes library and then download again from your purchased history. If the problem persists, or that facility is not available in your region contact the iTunes Store support staff through the report a problem links in your account history.
    tt2

  • Dv5t-1000 CTO Sound sputters and OS slows down after a few hours

    I am running Vista 32bit SP1 on a DV5T-1000 CTO machine, 4gb ram 2.0ghz c2d
    I've noticed that after a few hours of use, usually after I leave the machine on alone and coming back to it, the sound completely degrades and the OS response completely slows down to a crawl. It is especially prominent if I go to something like youtube and watch a video. the whole thing sputters and stutters and sounds horrible and the os slows to a crawl.
    however, if I pause the video, until it's fully loaded, THEN play it, all is well, and my OS goes back to full speed...
    but the longer I leave my PC on the WORSE it gets. if I leave it overnight, and come back in the morning, the result is horrible. I have an audio alert to notify me if I have email. normally it just does a quick 'beeep-booop, taking about a quarter of a second' as it flashes the message in the corner. If i leave the machine on over night, the next morning the message will go 'b-e-e-e-e-e-e-e-e-e-e-e-e-p-p-p-p-p-p b-b-b-b-o-o-o-o-o-o-p-p-p-p-' and takes about 5 seconds to complete the notification!
    At this point, if I try to restart the computer, or shut it down from the start menu, it does nothing. I go to start select restart, nothing. I go to start, select shutdown, nothing. I have to physically hold down the power button and kill the computer!
    I've updated to all the latest drivers for all my components straight of the h-p site. I even tried upgrading my nvidia drivers to the latest from nvidia.com. that didn't work so I reverted back to the h-p ones (from LAST YEAR by the way, can we get an UPDATE!)
    so please, tell me WHAT GIVES! In addition to using my computer for daily activities, I also produce music on it. And if I use my pc for more than 2 hours, and I want to work on music, I have to reboot or suffer as my computer completely locks up.
    PS. this thing says I cant make a word using the letters h and p... is this a JOKE?!?!?!?!?!?!

    sorry about my tone, I don't realize how I sound when I'm typing, though I do think it's ridiculous that a forum about h-p doesn't allow you SAY h-p
    anyway, I'm still at a loss for what to do, and it just occured to me that this may not be the place to get official help. are there h-p people here? or should I be contacting support? I have a feeling all they're going to tell me is to update the drivers...

  • Spot Removal VERY slow in LR CC

    Doing my tests and the spot removal is atrociously slow...what gives?

    Mark,
    There is a known problem with the spot removal tool in LR3.x and Adobe is aware and working on it.  No known time frame for a fix since there is no real pattern as to which systems are impacted.  You should have plently of resources to run LR3.3 so don't upgrade hardware yet.  It have twice the cores and memory and have the same problem.  In fact, if you open a RAW image in Adobe Raw via Photoshop CS5, you will probably find that the spot removal tool behaves normally there (just like in LR2.x).
    We can only be patient at this time.  I did find that by turning off hyper-threading performance did improve a bit with the spot removal tool so if your quad-core has that capability turned on, you might see if you can turn it off in the BIOS.
    Jeff

  • Sluggish and Slowness MacBookPro after clean install Mavericks

    Hi,
    My MacBook Pro 2012 become slow and sluggish after clean install Mavericks. I have to longgg waiting for applications to run ( even my old laptop can run Windows faster!! ). Compare I bought this MBP with Mountain Lion , this one is much slower with Mavericks. There are audible harddrive activity.
    I already done with NVAM & SMC reset but still nothing change on performance.
    Hope anybody here can help me since a quite a fews days i keep thinking to resolve this matter.
    Hardware Information:
              MacBook Pro (13-inch, Mid 2012)
              MacBook Pro - model: MacBookPro9,2
              1 2.5 GHz Intel Core i5 CPU: 2 cores
              4 GB RAM
    Video Information:
              Intel HD Graphics 4000 - VRAM: 1024 MB
    System Software:
              OS X 10.9.1 (13B42) - Uptime: 0 days 2:58:42
    Disk Information:
              APPLE HDD ST500LM012 disk0 : (500.11 GB)
                        EFI (disk0s1) <not mounted>: 209.7 MB
                        Macintosh HD (disk0s2) /: 499.25 GB (480.26 GB free)
                        Recovery HD (disk0s3) <not mounted>: 650 MB
              MATSHITADVD-R   UJ-8A8 
    USB Information:
              Apple Inc. FaceTime HD Camera (Built-in)
              Apple Computer, Inc. IR Receiver
              Apple Inc. BRCM20702 Hub
                        Apple Inc. Bluetooth USB Host Controller
              Apple Inc. Apple Internal Keyboard / Trackpad
    FireWire Information:
    Thunderbolt Information:
              Apple Inc. thunderbolt_bus
    Kernel Extensions:
    Problem System Launch Daemons:
    Problem System Launch Agents:
    Launch Daemons:
    Launch Agents:
    User Launch Agents:
    User Login Items:
              None
    Internet Plug-ins:
              Default Browser: Version: 537 - SDK 10.9
              QuickTime Plugin: Version: 7.7.3
    Audio Plug-ins:
              BluetoothAudioPlugIn: Version: 1.0 - SDK 10.9
              AirPlay: Version: 1.9 - SDK 10.9
              AppleAVBAudio: Version: 2.0.0 - SDK 10.9
              iSightAudio: Version: 7.7.3 - SDK 10.9
    3rd Party Preference Panes:
              None
    Bad Fonts:
              None
    Old Applications:
              None
    Time Machine:
              Auto backup: YES
              Volumes being backed up:
                        Macintosh HD: Disk size: 464.96 GB Disk used: 17.68 GB
              Destinations:
                        WD My Passport [Local] (Last used)
                        Total size: 465.41 GB
                        Total number of backups: 2
                        Oldest backup: 2014-01-31 14:48:18 +0000
                        Last backup: 2014-02-01 07:31:57 +0000
                        Size of backup disk: Adequate
                                  Backup size 465.41 GB > (Disk used 17.68 GB X 3)
              Time Machine details may not be accurate.
              All volumes being backed up may not be listed.
    Top Processes by CPU:
                   3%          WindowServer
                   1%          EtreCheck
                   0%          imagent
    Top Processes by Memory:
              127 MB          com.apple.IconServicesAgent
              70 MB          mds_stores
              37 MB          mds
              37 MB          WindowServer
              29 MB          Activity Monitor
    Virtual Memory Information:
              2.23 GB          Free RAM
              941 MB          Active RAM
              222 MB          Inactive RAM
              644 MB          Wired RAM
              257 MB          Page-ins
              0 B          Page-outs

    @mamatcyber  @ Linc Davis
    Same issue here I have done clean installs using Super Duper (Back-up All Fresh clean slate...)
    and still Mavericks is getting slower and slower.....
    Using Gimp it now takes 5 mins to export a .jpeg file  500k !
    OSX 10.9.1
    Processor 2.26ghz
    Ram 2gb
    250gb HD  196gbfree
    Even just now I did a clean install and i'm seeing the spinning beach ball with Firefox, and it's slow to opening up volumes.
    This is Ridiculous Apple!

  • IMac - Slowing Down After A Few Hours

    After restart, the system is quick.
    After a few hours, User Switching and Application launching is very slow.
    Lots of spinning red wait time.
    Cannot see any process names taking up CPU cycles.
    Not sure about the memory situation. 3 hours after restart I'm seeing:
    Wired 87
    Active 277
    Inactive 138
    Used 501
    Free 16
    VM Size 7.6G
    Page In 125446
    Page Out 60662
    Any ideas how to chase this problem?
    iMac Intel   Mac OS X (10.4.7)   512K, 2G Dual Core

    Number one is memory. I can tell you that the new Intel systems absolutely love memory, and judging by your pageouts you're way under what it needs. I've installed 2gb in mine, and on numerous occasions I've checked my Activity Monitor and it's been using nearly 1gb. I'd recommend upgrading the memory asap.
    Number 2 is programs. How many are you trying to use at once? 512 won't support many. I don't mean to sound like I'm insulting you or anything... not sure if you've been using Mac long or not... but are you closing out programs after using them or just closing the windows?

  • 6950 2Go : green and yellow dots after a few minutes of play

    Hi,
    I bought a radeon hd 6950 a few days ago. I didn't have any problem playing GTA 4 with my old graphic card but now I have some issues with the 6950. After a few minutes of play, some green and yellow dots (or crosses) randomly appear onscreen.
    I have uninstalled my previous driver before installing the 6950. I have the catalyst 11.4 installed. Msi live update doesn't find any newer bios and the fan works. Do you know what the problem could be ?
    Edit : here are my specs :
    CPU phenom 2 x4 965BE 3.4ghz
    motherboard gigabyte GA-MA770T-UD3 bios F10 (latest)
    Memory 2x4 GB CORSAIR DDR3 PC3-12800
    video card MSI R6950-2PM2D2GD5
    hard drive Western Digital 500 Go 32 Mo 7200 tr/min - SATA II - Caviar Black
    A PCI express wifi card
    OS Windows seven 64
    PSU Corsair TX V2 650W +12V~53A, +5V~30A, +3.3V~30A

    I play GTA 4 on steam. I checked the cache in case and it's ok.
    It might be a problem with GTA4 now that you name it. I turned the game off as soon as the artifacts appeared for fear that it would damage my expensive device. The artifacts always appeared 4 minutes after I loaded my savegame. That's why I thought of a memory overload or a heat issue. However I eventually noticed that the game follows a weather scheme, and that it always rains 4 minutes after I load my savegame.
    So I googled rain+GTA 4 and I found other people with similar issues. So it might be software related after all.
    http://forums.amd.com/game/messageview.cfm?catid=279&threadid=149805
    I'm sorry if I annoyed you or whatever. Don't be to hard on me though : I wasted a whole day running benchmarks and I have a mute-out-of-rage girlfriend in the kitchen.
    Thank you and have a good day.
    edit: wasn't this issue fixed by 10.12a ati drivers ?

  • Spot Removal and Clone Stamp data

    I understand that Ver 1.0 includes "non destructive" spot removal, clone stamp etc. How is this data stored? While I understand how image adjustments are stored as metadata in an XMP sidecar or DNG, if this data is simple text, how can changes to image content also be be stored in these files? As a new version of the RAW image data?

    > "I hadn't realised that metadata could support such functions".
    If you want further thoughts on what metadata could do in future, think of actions in Photoshop.
    Imagine that you ran an action as you were editing a file, then instead of saving the changed image, you saved the original image with the action embedded in the file. Then, when you opened the file in future, Ps automatically ran the action. That would be an example of non-destructive order-dependent metadata.
    Unfortunately, the restrictions on actions, such as not including brush-use, limits the value of such a method. But it is a way of thinking about this topic. (Note that Lr 1.0 holds the brush size in the clone/heal metadata, while Photoshop can't hold brush-use in actions! In that case, Lr is already ahead of Ps).
    A very powerful feature of Ps is the layer mask. Being a greyscale image, it would not fit well into XMP metadata. Perhaps this is an example where Lr will "never" catch up. (Never say never!)
    I've seen several people ask for localised editing in Lr. There are various possibilities for making selections for local editing other than using the full power of layer masks. In fact, a number of the standard ways of creating selections appear to have relatively simple parameters. (Standard marquee tools, select color range, etc. Even refine edges). But a Lr with too many of those in would compete strongly with Ps itself! Perhaps this will be driven by what the natural competitors to Lr do in future.

  • I had to remove and reistall Firefox after it would not open. When I try to install Windows asks for a password for me to download? How do I get around this?

    I downloaded Axis from Yahoo. The next day Firefox would not open at all. I removed and tried to reinstall. Now whenever I try to reinstall Firefox, windows asks me to enter a password before I can install. How do I get around this?

    Yes, sometimes the problem can happen before the window is able to show up.
    As for the administrator password I'll double check if that's normal or also a symptom, but helping you with the password is not our area of expertise, you'd need to get support from Microsoft. Do you know if your account is admin or limited? You can try putting your credentials in.

Maybe you are looking for

  • The application was unable to start correctly (0xc000007b)

    I have a subscription to Adobe Creative Cloud and recently installed all apps. They all worked fine until I recently installed iLivid - big mistake! (at least I think this is the culprit from other articles I found). Now I can no longer use Illustrat

  • Any Function which can solve my problem.

    Hi all I am working on Character based report from which i use to take print on my check using dot matrix printer. my query is 1) when i want to type my amount in words there may be chances of overlapping my amount in words with other field because m

  • Where the INTERACTION HISTORY for the BP are stored in SAP CRM

    Hi all, We are using CRM 7.0 EHP1. In the WEBUI, under Accounts, we are seeing the Interaction history as seperate assignment block. Like wise we are seeing the same assignment block with details for Contact, Employee etc. Where these Interaction his

  • Adobe CS on Mac

    (Sorry if this was the wrong place to post this- looked and couldn't find a better place). I just purchased Adobe CS2 Standard. It does not include Acrobat, although the Premium version of CS2 includes Acrobat 7. If I buy Acrobat separately, can I "g

  • No archivelog mode backups

    I am curious if anyone knows of any software out there that can backup a database that is in no archivelog mode while it is running? I don't want to do this....but I am curious to see if there is any that I have not heard of for a writeup I am doing.