Long wait after stop

With my previous Macbook Late 2008 I could stop and wake in a second, aven after very lon stop (days).
Whith my new MacbookPro, late 2012, when I lift the cover after a stop, it takes very long to get ready to work.
I went in energy saving options, but did not find any command that could help.
May I have your suggestions/help?
Thank you

With my previous Macbook Late 2008 I could stop and wake in a second, aven after very lon stop (days).
Whith my new MacbookPro, late 2012, when I lift the cover after a stop, it takes very long to get ready to work.
I went in energy saving options, but did not find any command that could help.
May I have your suggestions/help?
Thank you

Similar Messages

  • If the flash object is placed in 0px div, the creationComplete event is fired after a long wait time

    <Problem>
    My requirement is to hide flash object on browser. However, If the flash object is placed in 0px div, the creationComplete event is fired after a long wait time. Is this a bug of Flex? (or Flash Player?)
    <Sample Code>
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute"
              initialize="app_initialize(event);" creationComplete="app_creationComplete(event);" >
    <mx:Script>
            <![CDATA[
            import mx.events.FlexEvent;
        private function app_initialize(evt:mx.events.FlexEvent):void
                  ExternalInterface.call("alert", "application initialize.");
        private function app_creationComplete(evt:mx.events.FlexEvent):void
                  ExternalInterface.call("alert", "application creation complete.");
        private function button_creationComplete(evt:mx.events.FlexEvent):void
                  ExternalInterface.call("alert", "button creation complete.");
            ]]>
        </mx:Script>
        <mx:Button id="testButton"  label="button"  creationComplete="button_creationComplete(event);"/>
    </mx:Application>
    <Steps to reproduce>
    1) Dowload the following samples
    MySwf-src.zip
    https://files.acrobat.com/a/preview/c6b7a191-c6c4-486f-9345-e2b5c21a4c0b
    TestSwf.zip
    https://files.acrobat.com/a/preview/98e613e1-63b1-4b2f-93f3-f6e4f4a27f24
    2) Unzip TestSwf.zip.
    3) Copy MySwf.swf, TestInvisible.html, and TestVisible.html to "c:\inetpub\wwwroot\". (Need to install the IIS.)
    4) Visit "http://localhost/TestVisible.html" via IE. notice the creationComplete event fired after initialize event immediately.  -- Correct
    5) Visit "http://localhost/TestInvisible.html" via IE. notice the creationComplete event fired a long time after initialize event.  -- Incorrect
    <Environment>
    Win8.1x64+IIS8.5+IE11+Flash player(13.0.0.182)
    <Note>
    If the flash object is placed in 1px or larger div, the creationComplete event is fired immediately.
    The problem occurs with other browsers(IE9,IE10,FF,Chrome) too.

    Thank you for your response. The computers are indeed running Flash Pro CC 13.1.0.226. I tried to generate a minidump file on four different computers where Flash Pro hung, but was not able to do so on any of them as Flash Pro makes the entire system unresponsive. I get the spinning circle cursor and then the GUI of all apps greys out and fails to update. I don't actually get any sort of error message; everything simply stops responding.
    I was probably unclear above; even if I can alt-tab I can't really interact with any other programs once Flash Pro hangs beyond one or two mouse clicks. So on some computers I could right-click on the process in Process Explorer and choose to create a minidump, which then froze, or I might right-click on the process and have it immediatly freeze. I've experienced about two dozen crashes and I've never been able to really use another program or even kill the Flash process in task manager. I also have to power off the computer by holding down the power button, since while I might be able to open the Start menu I can't reach the point of being able to shut it down without it freezing.
    From what I was able to see in Process Explorer, Flash Pro was using <1% CPU and 120M private / 170M working memory.

  • My external HD of 1TB is not being recognized by the iMac and when after a long waiting period it does, the whole computer becomes extremely slow. Do I need any particular add-on to make it workable?

    My external HD of 1TB is not being recognized by the iMac and when after a long waiting period it does, the whole computer becomes extremely slow. Do I need any particular add-on to make it workable?
    Before I updated to OS X Mavericks I was using another external disk that was getting disconnected ocasionally so I bought a new ADATA HD710 portable 1TB Drive and moved the files to it. This new drive which is supposed to be OS X Mavericks compatible takes minutes to show the files especially when opening second and third level folders which has made mu iMac unusable
    What should I do?

    Your Mac should be able to recognize many different types of drives (including Windows-formatted drives) immediately for Reading, provided they are in good working condition and not damaged. There should be no need to transfer to a different type of drive.
    If there is no recognition of this drive, see if it can be seen in Disk Utility.
    If your aim is to transfer the data on it DO NOT use ERASE or PARTITION as these will completely erase all the information on the Drive.
    If the drive is present while the Mac sleeps, it is likely to drop out and not be seen any longer, especially if it is a USB-powered drive.

  • Long waiting times when going back to the organizer after doing changes of images. Elements 11.

    After doing changes of images and going back to the organizer I have to wait a long time. This was not the case when I used elements 9. I have a lot of images stored around 18000. There are also often long waiting times when I move around in the organizer. Any suggestion?
    Bo Augustsson

    Please see blog: http://psekb.blogspot.in/2013/04/how-to-improve-pses-performance-please.html
    Please let me know if that doesn't helps.
    ~Andromeda

  • New Socket takes too long / how to stop a Thread ?

    Hello to everyone,
    I have a problem that I have been hunting this ol' Sun website all day for a suitable answer, and have found people who have asked this same question and not gotten answers. Finally, with but a shred of hope left, I post...
    My really short version:
    A call to the Socket(InetAddress,int) constructor can take a very long time before it times out. How to limit the wait?
    My really detailed version:
    I have a GUI for which the user enters comm parameters, then the program does some I/O while the user waits (but there is a Cancel button for the Impatient), then the results are displayed. Here is quick pseudocode (which, by the way, worked great before there were Sockets in this program -- only serial ports):
    Main (GUI) thread:
         --> reset the stop request flag
         --> calls workerThread.start(), then brings up a Cancel dialog with a Cancel button (thus going to sleep)
         --> (awake by dialog closing -- dialog may have been closed by workerThread or by user)
         --> set stop request flag that worker thread checks (in case he's still alive)
         --> call workerThread.interrupt() (in case he's alive but asleep for some reason (???))
         --> call workerThread.join() to wait for worker thread to be dead (nothing to wait for if he's dead already)
         --> display worker thread's result data or "Cancelled..." information, whichever worker thread has set
    Worker thread:
         --> yield (to give main thread a chance to get the Cancel Dialog showing)
         --> do job, checking (every few code lines) that stop request flag is not set
         --> if stop request, stop and set cancelled flag for Main thread to handle
         --> if finish with no stop request, set result data for Main thread to handle
         --> take down Cancel Dialog (does nothing if not still up, takes down and wakes main thread if still up)
    THE PROBLEM: Worker thread's job involves doing IO, and it may need to instantiate a new Socket. If it is attempting to instantiate Socket with bad arguments, it can get stuck... The port int is hardcoded by the program, but the IPAddress must be typed by user.
    If the arguments to Socket(InetAddress, int) constructor contain a valid-but-not-in-use IP address, the worker thread will get stuck in the Socket constructor for a LONG time (I observed 1m:38s). There is nothing the Main thread can do to stop this wait?
    EVEN WORSE: If the user clicks the Cancel Button during this time, the dialog goes away soon/immediately, but then the GUI appears to be hanging (single-threaded look) until the long wait is over (after which the "Cancelled..." info is displayed).
    MY QUESTION: Is there nothing the Main thread can do to stop this wait?
    Your answers will be sincerely appreciated. Despite my hopeless attitude (see above), the folks at this forum really have yet to let me down ...
    /Mel

    http://developer.java.sun.com/developer/technicalArticles/Networking/timeouts/

  • Epson printer driver no longer working after 10.4.11 update

    It seems that my original Epson driver for my Stylus Photo 750 is no longer working after my latest Tiger update. The system does recognise it but shows an exclamation mark behind it and refuses to print with it (the document stays in the waiting line forever). Reinstalling as well as repairing permissions didn´t help. Fortunately the Gimp Epson driver is still working but I have no access to my coloursync profiles with this driver.
    I know that many printer drivers need to be rewritten for Leopard (one of the reasons I didn´t update yet) but it is not understandable why problems happen with a Tiger update.
    Does anyone know a workaround?
    Thanks very much
    Wolfgang

    I just discovered a similar problem. I have an old Epson SC3000 and under 10.4.11 my computer doesn't communicate with the printer. It's an AppleTalk printer, connected via Ethernet. I tried bypassing my network switch and connected it directly to the Mac-- no go. I then rebooted into 10.3.9 and printing works fine.
    I downloaded the driver from Epson and installed it in 10.4.11. When I try to add the printer in the Printer Setup Utility, the machine just hangs-- can't force quit the utility and eventually the Finder even stops responding. It takes a hard reboot to clear up.
    I can't say whether or not printing worked in earlier versions of 10.4. I haven't been using 10.4 for very long, and I rarely use the SC3000.

  • Re: HP 15-g020ca long wait time to reach lock screen windows 8

    i have the same issue as this guy but can't seem to figure it out.
    http://answers.microsoft.com/en-us/windows/forum/w​indows8_1-performance/45-seconds-delay-to-reach-lo​...
    long wait time when i open the lid of my notebook. it says locking for a good minute or more, if i do win+L to manually lock it , it takes the same amount of time. can anyone help!! thanks

    DSORacing wrote:
    I have same problem but in a 15-j040us. I made everything that you offer as solution but it cannot upgrade to Windows 8.1.  I read this post from another user with same graphics adapter that my laptop has and it looks like a solution, but at the same time, looks quite dangerous to make. Here is the post. http://208.74.204.203/t5/Notebook-Operating-Systems-and-Software/Updating-to-WIN-8-1-Fix-to-black-sc... Let me know if yu can help with this issue as soon as possible.
    Thanks!
    This  worked for me after 7 attempts with all kind of solutions on different forums. HP Envy 15 Notebook - Intel HD 4000, Nvidia 740
    Locate the F11 key and start tapping it as soon as you turn on the system.
    Stop tapping once you reach the recovery manager screen.
    Click Troubleshoot .
    On the Troubleshoot screen, click Recovery Manager .
    On the OS selection screen, click Windows 8 . Recovery Manager opens.
    Under I need immediate help , click Minimized Image Recovery .
    When Recovery Manager prompts you to back up your files, select a backup option.
    If you have already backed up personal files or you do not want to back up personal files, select Recover without backing up your files , then click Next . Continue to the next step.
    Follow the on screen options and complete the system recovery.
    After the system recovery is complete, click Finish to restart the computer. Complete the setup screens and wait until the computer finishes the setup
    -Then, make sure to install all updates via Windows Update. Do NOT install any drivers for graphics etc.
    -I did NOT do any updates with HP Assistant
    -Run the update via Wired network, disable WiFi and Bluetooth
    -I did disable all things in Autostart. Could be reached via Win8 taskmanager
    -Ran Microsoft Compability checker
    Update went fine this time.
    Some of my steps might not be needed. And of course if MS compbility checker says a driver is not compatible you will have to update it.
    Hopefully it will get you there.

  • IPad app no long works after upgrading to iOS 7.1.1

    iPad app no long works after upgrading to iOS 7.1.1

    Did you try deleting then reinstalling the app?  Sometimes developers will need to update their apps for compatibility.  If it still doesn't work after reinstalling, wait a few days to see if an app update becomes available.

  • Canon iP2700 is no longer working after update

    My Canon iP2700 is no longer working after doing an update yesterday. I am using the cnijfilter-ip2700series 3.30-2  from  https://aur.archlinux.org/packages.php?ID=41797 with cups 1.5.2. I have blacklisted usblp, but this doesn't help. My printer is recognized, and apparently I can print but nothing happens. This is my error log:
    tail -n 100 -f /var/log/cups/error_log
    D [09/Mar/2012:13:58:16 +0200] [Job 4683] usb_find_busses=0
    D [09/Mar/2012:13:58:16 +0200] [Job 4683] usb_find_devices=0
    D [09/Mar/2012:13:58:16 +0200] [Job 4683] STATE: +connecting-to-device
    D [09/Mar/2012:13:58:16 +0200] cupsdMarkDirty(-----S)
    D [09/Mar/2012:13:58:16 +0200] cupsdSetBusyState: newbusy="Dirty files", busy="Printing jobs and dirty files"
    D [09/Mar/2012:13:58:16 +0200] [Job 4683] STATE: -connecting-to-device
    D [09/Mar/2012:13:58:16 +0200] cupsdMarkDirty(-----S)
    D [09/Mar/2012:13:58:16 +0200] cupsdSetBusyState: newbusy="Printing jobs and dirty files", busy="Dirty files"
    I [09/Mar/2012:13:58:16 +0200] [Job 4683] Waiting for printer to become available.
    D [09/Mar/2012:13:58:16 +0200] cupsdAcceptClient: 16 from localhost (Domain)
    D [09/Mar/2012:13:58:16 +0200] cupsdReadClient: 16 POST / HTTP/1.1
    D [09/Mar/2012:13:58:16 +0200] cupsdSetBusyState: newbusy="Active clients, printing jobs, and dirty files", busy="Printing jobs and dirty files"
    D [09/Mar/2012:13:58:16 +0200] cupsdAuthorize: No authentication data provided.
    D [09/Mar/2012:13:58:16 +0200] cupsdReadClient: 16 1.1 Get-Notifications 1
    D [09/Mar/2012:13:58:16 +0200] Get-Notifications /
    D [09/Mar/2012:13:58:16 +0200] cupsdIsAuthorized: requesting-user-name="irenke"
    D [09/Mar/2012:13:58:16 +0200] Returning IPP successful-ok for Get-Notifications (/) from localhost
    D [09/Mar/2012:13:58:16 +0200] cupsdSetBusyState: newbusy="Printing jobs and dirty files", busy="Active clients, printing jobs, and dirty files"
    D [09/Mar/2012:13:58:16 +0200] cupsdReadClient: 16 WAITING Closing on EOF
    D [09/Mar/2012:13:58:16 +0200] cupsdCloseClient: 16
    D [09/Mar/2012:13:58:16 +0200] cupsdSetBusyState: newbusy="Printing jobs and dirty files", busy="Printing jobs and dirty files"
    And this part keeps repeating every 5 seconds with different timestamp, until I delete the document from queue.
    The CUPS ownership of the USB device file seems OK:
    ls -l /dev/bus/usb/001/006
    crw-rw---- 1 root lp 189, 5 Mar 9 14:17 /dev/bus/usb/001/006
    I've been working on this problem since yesterday and now i'm stuck. Can someone please help?
    EDIT
    I think it's something related to the driver. If i change the driver to another printer model from CUPS the printer works. Prints garbage, but at least works. So this means that we have to wait for a new driver or what?
    Last edited by otx (2012-03-09 14:21:27)

    See if this is any help: https://bbs.archlinux.org/viewtopic.php?id=136415

  • Internet Explorer 9 no longer works after an uninstall of HP Support Centre

    Internet Explorer 9 no longer works after an uninstall of HP Support Centre and drivers for 3 HP All-in-One printers (psc1310, C4180, F4200).  Intend to re-install for just C4180.  I selected option to remove for all related software, though the HP Update and Photosmart Essentials have been left.  IE9 stops working when launched (even when launched with no add-ons and with Protected Mode disabled and Advanced Settings restored) and regardless of initial URL.  If I remove the IE9 update then IE8 works fine.   I tried re-installing IE9 update, twice, and it continues to fail.
    I’m running Vista 32 Home Premium SP2 on Samsung Q210 with Norton 360 v5, SpywareBlaster and Spybot - Search & Destroy.
    This question was solved.
    View Solution.

    I now believe the problem with IE9 was not related to HP, but to a Windows Update replacement to the “Intel Corporation - Display - Mobile Intel(R) 4 Series Express Chipset Family” drivers:  Intel Corporation Display software update released in February, 2011 (useless link  http://winqual.microsoft.com/support/?driverid=20411791).   IE9 started working OK when I set “Use software rendering instead of GPU rendering*” (see http://forums.whirlpool.net.au/archive/1678709 with reference to “faulting module igdumdx32.dll”), so will now investigate removing that update.
    Sorry to have cast aspersions on HP.  MS did this to themselves, as usual.

  • Internet sharing no longer works after Lion 10.7.4 update

    Internet sharing no longer works after Lion 10.7.4 update. Hopefully Apple will fix this shortly. Little excuse for this kind of screw-up.

    so here is da answer
    1. go to finder>(computer name)>macintosh HD>library>preferences
    2. copy the entire systemconfiguration folder and systemconfiguration.old folder to your desktop
    3. restart mac and device which you share intenet to
    then you have internet that is about 3x slower than the da 10.7.3 intenet sharing, but works
    then, just wait for apple to release da 10.7.4 fixed
    please use da steps!

  • My telus email no longer works after installing the new os Yosemite

    my telus email no longer works after installing the new os Yosemite

    This is a problem between Telus and Yosemite.  Telus, of course, blames Apple. 
    Check the box that says "Allow insecure authentication"  That will get your email working.
    However, this box will get un-checked when you stop start Mac Mail.  The next time you start Mail, you'll have to re-check it for each Telus account.  (This is the bit that Apple needs to fix.) 

  • Back to my mac no longer works after upgrading to Lion

    Back to my Mac no longer works after upgrading to Lion
    After I upgraded my home machines to Lion, I can no longer access them from my work computer, which is running Snow Leopard. When they were both Snow leopard, it worked fine. How can I get them working again? I don't have control over the OS on my work computer. Is it necessary for me to downgrade all of my home computers to Snow leopard in order to get them talking again?
    Additionally the binoculars icon appears in the menu bar all of the time. In previous versions, this would only happen when somebody connected to my machine. Could these problems be related?

    OK, so further investigation has addressed the BTMM issue on a remote machine.
    With all machines running lion, I was having issues trying to log in to a standard user headless machine already running.  In Snow Leopard, I had no issues with this since you can log in via screen sharing using an admin login that's running a standard login.  Lion allows multiple accounts to be signed in which is handy since you can now run virtual sessions.  This means you can admin the remote computer without bothering the remote user.
    The problem was that now logging in using admin login brings up the admin account (which makes sense) instead of the desktop to the standard login.  I applied a similar solution to a problem that was related to screen sharing I found on this board.  What I believe to be the fix is to add the standard user to the screen sharing user list.  Then screen share to the remote account using the standard user credentials. 
    So on the remote computer, in System Settings->Sharing->Screen Sharing, add the standard user to be allowed access.  Previously I only had admins.  This may not be an ideal solution for what I'm trying to do since the remote computers primary login is the standard user to be used as a common computer, but it now works so I am happy with it.
    Now my only "problem" is my AEBS complaining about my MobileMe credentials, but it doesn't appear to have an impact on BTMM performance so I'll quietly wait for a fix down the road.

  • Checking out Pdf files to Local draft Folder option no longer works after office 2013 installed.

    Checking out Pdf files to Local draft Folder option no longer works after office 2013 installed.
    Summary :
    We are using SharePoint 2010 Ent edition and users were able to checkout Pdf files similar to local drafts folder like any other office file without any problem when they used office 2010.
    i.e
    Unfortunately ever since their machines upgraded with office 2013 recently , this functionality completely stopped working for PDF files. This has now become a big problem for the users when it comes to check out and replace PDF files.
    All browser plugins required for this functionality (i.e    SharePoint OpenDocuments Class ) are all available and active. All document libraries are configured to Checkout is required for editing files. Browser version
    used at the moment is IE9 (32 bit) version with windows 7. 
    Can anyone please help with this issue and any help to get away with this problem is much appreciated.

    Hi,
    Based on your description, my understanding is that the PDF files cannot be checked out to local drafts folder after Office 2013 is installed.
    Did this issue occur with Office files?
    I recommend to check if the Office files can be checked out to local drafts folder with Office 2013.
    And it is recommended to use Office 2010 with SharePoint 2010 for best practice.
    Thanks,
    Victoria
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Victoria Xia
    TechNet Community Support

  • My Photoshop and Bridge CS6 is getting spastic ( long waits when I back out of a folder, etc. ) Is it still OK to deactivate and reinstall?

    My Photoshop and Bridge CS6 is getting spastic ( long waits when I back out of a folder, etc. ) Is it still OK to deactivate and reinstall?

    First, have you tried resetting your Preferences? It does fix a lot of problems.
    Photoshop:
    If you need a quick and dirty way to restore your preferences, here's a way you can do it using a keyboard shortcut on launch:
    Windows - CTRL-SHIFT-ALT immediately after you double-click the PS icon.
    Macintosh - CMD-SHIFT-OPTION immediately after you double-click the PS icon.
    Bridge:
    Start Adobe Bridge and immediately press Ctrl+Alt+Shift (Windows) or Command+Option+Shift (Mac OS) until the Reset Settings dialog box appears. Select all three options--Reset Preferences, Reset Standard Workspaces, and Purge Entire Thumbnail Cache--and then click OK.

Maybe you are looking for

  • Can I set up a pro forma for multiple images

    Hi all Well I am a newbie to Keynote and I am really enjoying using it. I am trying to set up a pro forma for class photos at a school, the photos have been handed to me by the teachers but are all slightly different sizes. My question is can I set u

  • 10.4.7 Update and Classic System Folder

    I installed 10.4.7 with no problems. However, I needed to start Classic to run an old application, and when it started up, I got a message stating that changes were required. I allowed the changes to be made and the old application started up with no

  • Reference material for someone who wants to learn

    This may be the wrong place for this question, but it should be seen by the right people. I've been using Premier for 10 years editing other people's video. Now I've purchased an XH A1 and find myself a bit over my head in shooting quality video. I w

  • Sql - Insert problem in MsAccess

    Hello!!! J have problem with INSERT function, I use MsAccessm as database. My query is : INSERT INTO [Produkty-www] ( Id,Nazwa,Kod,Cena) VALUES 6646545,"Zlaczka prosta 22mm 1/2 ' z (KRoCIEC)",'JGK22-1/2Z',10.00) this is very import symbol ' in 1/2 '

  • Is there an object like StringBuffer, but for binary data?

    I like the performance of StringBuffer, it's very fast when I use the indexOf() and lastIndexOf() methods. Is there an equivalent buffer object for binary data so that I can quickly search for byte sequences fast instead of looping through it? Thanks