file save... delay before dialog appears

Hello,
Since I upgrade to 10.4.5, the first time I choose "save" in every application , it takes a very long time (5 a 10 sec) before the saving dialog appears. Later in the same session for the same application it seems to work correctly, but the same thing happens with each other application. Is it normal, explainable or what ?
Michel Robbe

Hi, Michel.
Do you have an iDisk? If so, disable iDisk auto-sync in System Preferences > .Mac per this thread.
Good luck!
Dr. Smoke
Author: Troubleshooting Mac® OS X

Similar Messages

  • Why do I have to File Save twice before the Save menu is grayed out?

    Open a file into Photoshop CC
    Add a Levels layer
    Click File>Save
    The Save menu is still available when you click File. Doing another File>Save make the Save menu become grayed out (like it should the first time).
    System info:
    Adobe Photoshop Version: 2014.2.1 20141014.r.257 2014/10/14:23:59:59 CL 987299  x64
    Operating System: Mac OS 10.10.1 (the problem has occurred since Mac OS 10.8.x)
    Thanks for any help.
    Daniel

    I have OSX 10.10.1 and CC 2014.
    So I will open a PSD with an adjustment layer.
    I turn off and on the "eyeball" in the layers panel. It counts as a change.
    If you look at your document tab, you see a star at the end of the filename. It shows you made changes to  the file.
    File > Save would remove that star and File > Save does dim on my Macbook.
    If you are seeing it twice, the Preferences file may be corrupt. I suggest a reset.
    Macintosh - CMD-SHIFT-OPTION immediately after you double-click the PS icon.
    If that doesn't work uninstall/reinstall CC 2014 and updates'
    Let me know how it went and mark the answer correct only if this solved your problem.
    Gene

  • Illustrator CS4 file save delay

    Hello,
    When I save a file out of Illustrator CS4 as an AI, EPS or PDF file it takes about 30 seconds for the Illustrator save options dialogue box to pop up. It does not matter how small or large the file is. I tried uninstalling and reinstalling Illustrator with no sucsess. This just started happening within the last week with no changes to my system.
    Thank you,
    John Holland

    That was it! I changed my default printer back from the new network printer and the delay is gone! Thank you so much for your help.
    Sincerely,
    John

  • File-Save As Behaves Badly

    There are really two conditions I can't solve, both related to the File:Save As... menu item in Acrobat Pro v9.1.2...
    I should note that I have Acrobat Pro 9.1.2 installed, and I'm running Safari 4.0.2 (5530.19) on an MBP 2.5GHz C2D with 4GB of RAM. OS X v10.5.7 totally current.
    Condition 1:  When I grab a PDF document from a web page, it opens in it own Safari Window just fine, as expected. I get the Adobe Plug-in Tool Bar as expected. So now I want to File:Save As the downloaded document that I am now looking at in my Safari window
    I select File:Save As... and the expected dialog opens and the document title always defaults to 'downloadDocument' instead of the actual name of the file that I have grabbed, even if the html has passed the true file name to the browser and plug in. This means I have to retype the name of the document before I click OK. What a pain......
    I cannot find a preference or other setting that would be controlling this. I've looked through the Safari Prefs and the Adobe Prefs
    How do I get the default file name in the File:Save As dialog to be the name of the file I have grabbed?
    Condition 2:  Assume I am grabbing a number of PDF documents in sequence this way, and I want to save them all into the same target folder on my local drive or a mounted network share point.  So I grab the first file I want, retype the name of the file because it is now called 'downloadDocument', and then navigate to the desired target location and save the file.
    Now I grab the second through 'n'th PDF document in series, invoke File:Save As... again each time, and have to retype the correct name of the file each time, and then save each one.  you might think that Acrobat Pro would remember the last used target directory and open the File:Save As... dialog at that location on the target drive each time after the first time.  But no, it seems to point where ever it wishes to point.  And I can't find a preference to set.  Can't find any place to tell Acrobat Pro to always default the save to the same place as the preceding file.
    So it is insult upon injury.  Not only do I have to retype the name of every file.  I also have to navigate again to the desired target storage location for each and every file I download.
    This is clearly a pain, not very user friendly or efficient, and very frustrating.
    Can anyone help????
    TIA

    File save as does not work that way for me, something is up. I'd suggest two things to try:
    1) What happens if you try a different user? If this works properly you most likely have some sort of preference file corruption.
    2) Use applejack or onyx to remove your system and/or user cache.

  • When trying to save a file, no file dialog appears

    The last 2 weeks, often when I want to save a file --- any file, eg an image, I right-click "save image as" and then wait for a file dialog to ask where to save, then nothing, no matter how long I wait.
    If I exit Firefox and restart it it may work normally for a while, i.e., the dialog appears, but soon the same problem comes back. This is of course infuriating when you have gone through some tedious procedure, typed a captcha, a password, etc, etc before a website allows you to save a file.
    The other r-click options work -- I can open a file with an application, I can even use "DownThem All", but Firefox's own save dialog is unusable.
    Firefox 27.01 on XP

    You can check it DTA or another extension isn't causing this problem.
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem.
    *Switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance
    *Do NOT click the Reset button on the Safe Mode start window
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • Prevent File Save Dialog appearing?

    I have been using Excel 2010 to create Word Documents and then use .SaveAs to save the newly created file without any issues
    When I moved to Office 2013 the same code now presents a File Save dialog box.
    I have researched the issue and can find no way to prevent the Dialog appearing (and worse regardless of the user selection the Excel code crashes)
    The following is a simplified version of the troublesome code
    Sub TestWordSaveAs2()
    Dim InvoiceProFormaFileName As Variant
    Dim NewFileName As String
    Dim WordApplication As Object
    Dim WordDoc As Object
      ' Prompt for a word document
      InvoiceProFormaFileName = Application.GetOpenFilename(FileFilter:="Word Documents, *.docx", Title:="Any Word File", MultiSelect:=False)
      Set WordApplication = CreateObject("Word.Application")
      Set WordDoc = WordApplication.Documents.Open(InvoiceProFormaFileName) ' Open the pro-forma invoice
      ' Create a new name
      NewFileName = Replace(InvoiceProFormaFileName, ".docx", "2.docx")
      WordDoc.SaveAs2 Filename:=NewFileName, FileFormat:=16, AddtoRecentFiles:=False ' <======= this line Shows the File Save Dialog and then fails
      WordDoc.Close SaveChanges:=0 ' wdDoNotSaveChanges
      ' Finished with the Word Application so can close
      WordApplication.Quit
    End Sub
    Thank you in advance

    Hi,
    I have create a doc file and a excel file in my pc, after I run the code you have provided ,and choose the doc file I just created, it runs without any save dialog. And My Office is Pro Plus 2013 .
    I have upload my sample to OneDrive, you can download it here:
    http://1drv.ms/1DhnMe5
    When you run this sample, will this show the save dialog again ?
    To narrow down this issue, can you create a new empty word and choose it in the excel, does it will happen again? if it is convenient, can you share the doc file you're using? Have you update your office ?
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Save As Dialog Different on Exit vs. File - Save As...

    I started by opening a raw file through Camera Raw into a 16 bits/channel document.  My intent was to edit it a little and save as a JPEG.
    Photoshop CS5 Adobe added the ability to save a 16 bits/channel document as a JPEG, without first having to convert to 8 bits/channel.  BRAVO Adobe!  It's been great.
    However that functionality is specifically missing if one tries to exit Photoshop CS5 with an unsaved document.  Quite a lot of stuff is missing from the Save dialog that pops up there, actually.  It's like some kind of minimalist version.  Why?
    If I edit a 16 bits/channel document and try to exit before saving, this is the dialog it puts up:
    However, File - Save As yields this dialog:
    -Noel

    Thanks for clarifying. 
    I understand your thinking - you're trying to watch out for the newbie user and trying not to lose his/her layers, etc.
    The thing is, the way it is now makes it just a bit harder for a power-user who knows what he's doing to use Photoshop.  I've always disliked features that dumb systems down in the guise of protecting the less technical user at the expense of power.  This is not Photoshop Elements, after all!
    My case in point:  I opened a raw file, Camera Raw automatically applied the settings I had chosen and which the software had stored, I downsized the opened image, and wanted to save it as a JPEG.  It had no layers or other "fancy" attributes other than the fact that I always open raw files into 16 bits/channel depth (and I wouldn't want to change THAT default).  Since I don't, as a habit, leave applications open, I thought I would just close Photoshop and save the JPEG on the way out.  The dialog shown above defaulted to PSD, as I expected, but simply didn't allow me the choice to change it to JPEG.  So instead of just being able to blaze through the work in the quickest way, I had to cancel that dialog, choose File - Save As, then exit...
    Break in concentration and extra steps for the user who knows what he's doing.
    It seems to me that the act of prompting him on exit with a Save As dialog is all the notification needed that document information could be lost, and the user actively changing to another (lossy) format is the user's own confirmation that he/she knows what he/she is about to do.
    The more powerful Save As dialog just as it is today would be a perfect match for this.  It's a logical outgrowth of Save As A Copy, and the new feature where you're now allowing Save As JPEG directly from a 16 bit file.  By using the same dialog at the same time as making the product more powerful, you could simplify the implementation and save some future maintenance cost.
    -Noel

  • No Save As dialog appearing in 3D Toolkit

    Hi!
    When I right click a 3D annotation in Acrobat 3D v8 I can choose "Edit in 3D toolkit". Once there, I make some changes to the model and want to save it as a new u3d file. So I choose Save as from the file menu and the "Export Properties of Universal 3D Export" dialog appears but there is no option where to save the file.
    Is it not possible or am I missing something?
    /Joachim W

    It doesn't provide a SaveAs... dialog for an unnamed file.
    Here is a workaround:
    As soon as you bring the model into the 3D toolkit, click Save As..., saving it to the temp directory.
    Then load the temp file into the 3D toolkit.
    Click Save As... now and you will be able to save the u3d file anywhere you like.
    Laz

  • File Save dialog box not showing correct file name while saving file

    hi
    Currently, after the Submit button is hit, the File Save dialog box is displayed. If the user saves the file and then opens it then the output appears correct however if the user chooses to open the file without saving on the local machine then the correct viewer is not used to display the file. The name of the file is defaulted as qotSCopPrint.jsp and the default file viewer for jsp files is chosen to view the file. The format of the file is obviously not text (it is either pdf or rtf) so the output shows binary characters.

    data : v_repid like sy-repid.
    parameters : p_file like rlgrap-filename.
    initialization.
    v_repid = sy-repid.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file.
      CALL FUNCTION 'F4_FILENAME'
           EXPORTING
                program_name  = v_repid
                dynpro_number = syst-dynnr
                field_name    = 'P_FILE'
           IMPORTING
                file_name     = p_file.
    Message was edited by:
            Chandrasekhar Jagarlamudi

  • Windows File Save dialog freezes a virtual folder

    We have a shell namespace  extension that presents a remote document repository as a virtual  folder in the Desktop folder. When the File Save dialog box is opened from  within Adobe Reader or  Acrobat version 9, our  virtual folder appears inactivated. Even though the common dialog box displays  the items in the folder, it is not possible to select any of the items, e.g.,  using a mouse click or key code press.
    Note that the same common  dialog when running in open mode works fine. Our virtual folder is enabled, and  an item can be selected for the Open action. It appears that the problem shows  up only when the Save dialog runs from within Adobe Reader 9 or Acrobat  9.
    The problem appears to be  limited to Windows 7 and Vista. XP does not have the  problem.
    I would like to know  why and how the save dialog gets disabled, and would like to know how  to prevent the dialog from disabling the  virtual folder. 

    Hi,
    I have followed the example you mentioned to save a picture to the folder shortcut, and the name won't change to the shortcut. Also the picture would be saved into the original folder.
    Here is the steps I did:
    1. Create a folder named New folder in My documents:
    2. Select it and then press ctrl + C and right-click on destop choose paste shortcut(named New folder-Shortcut);
    3. Right-click on a picture in one webpage then open the save picture as dialog box;
    4. Navigate to the desktop folder shortcut and double-click into it, the file name field won't change;
    5. My machine is Windows 7 Enterprise SP1.
    Would you please tell some more details on how you saved the picture?
    In addition, there might be some other applications triggered this action, we may take a look with process monitor:
    The download link here:
    Process monitor
    And here is a blog talking about how to use it:
    Process Monitor - Hands-On Labs and Examples
    If possible, please redo the action, then upload the result into onedrive and paste the link here.
    Best regards
    Michael Shao
    TechNet Community Support

  • Presenter forces permanentely the file save dialog even for unchanged documents

    Presenter permanentely forces the "Do you want to save the changes ..." file save dialog to appear even for unchanged documents when I try to close it.
    To confirm the saving all times is not the solution because then I will loose the file's time/date stamp for the last real change.
    Not confirming the saving can be risky in case of any changes to the document which I am not aware anymore for that moment.
    Especially in case of having multiple documents open - this drives me really crazy.
    Deactivating the Adobe Presenter Add-in would solve the issue - so it is a problem related to Adobe Presenter (and not related to Powerpoint).
    I am using:
    Adobe Presenter 9.0.2
    Microsoft Office Professional Plus 2010
    Windows 7, 64 bit, Service Pack 1
    Thanks for your help
    Stefan

    The easiest way to solve the problem is to temporarily deactivate Adobe Presenter when you don't need it.
    In PowerPoint, go to File / Options / Add-Ins, select "COM Add-Ins" at the bottom of the window and click "Go".
    Then un-check the Adobe Presenter PowerPoint COM AddIn:
    You can easily reverse the process when you next need to use Presenter.

  • Presenter forces the file save dialog even for unchanged documents

    Presenter always forces the "Do you want to save the changes ..." file save dialog to appear even for unchanged documents.
    To confirm the saving all times is not the solution because then I will loose the file's time/date stamp for the last real change.
    Not confirming the saving can be risky in case of any changes to the document which I am not aware anymore for that moment.
    Especially in case of having multiple documents open - this drives me really crazy.
    Deactivating the Adobe Presenter Add-in would solve the issue - so it is a problem related to Adobe Presenter (and not related to Powerpoint).
    I am using:
    Adobe Presenter 9.0.2
    Microsoft Office Professional Plus 2010
    Windows 7, 64 bit, Service Pack 1
    Thanks for your help
    Stefan

    The easiest way to solve the problem is to temporarily deactivate Adobe Presenter when you don't need it.
    In PowerPoint, go to File / Options / Add-Ins, select "COM Add-Ins" at the bottom of the window and click "Go".
    Then un-check the Adobe Presenter PowerPoint COM AddIn:
    You can easily reverse the process when you next need to use Presenter.

  • How to write binary data to browser - File Save dialog

    Hi,
    problem:
    i have a working webservice and i get binary data from that webservice.
    my dynpro java  already works and i have byte[] b which has my binary result.
    what i want:
    when the user clicks on the button, the action onActionGetResult() is executed and inside this method, the byteArray b exists. what can i do, to say the dynpro application that it should  send the binary data direct to the browser, so that the "File Save Dialog" appears and the user can save the file to the harddisk
    any ideas?

    I've found the solution:
    IWDWindow window = wdComponentAPI.getWindowManager().createNonModalExternalWindow(
    res.getUrl(WDFileDownloadBehaviour.ALLOW_SAVE.ordinal()),
    res.getResourceName());
    window.show();
    this worked for me

  • Oracle BPM 10.3 File Save Dialog Box

    Hi,
    I am using Oracle BPM 10.3. Can anybody tell me that how to get a File Save Dialog box in the method. On the method call i want to call Save Dialog box which will save the file on the local computer.
    Thanks
    Edited by: user9293762 on Sep 2, 2010 9:35 AM

    The compilation within Studio works with a bit smaller (like 35MBytes) project, thus I think the problem is some sort of memory handling.
    The problem comes up while it is trying to compie/load 'external resources': it still works with 512M or even 256M of heap before this operation.
    Some weird thing is that I cannot set Xmx >640M, nor launcher.XXMaxPermSize > 1024M (winXP SP2, 2G RAM). While I'm sure that nothing is hacked around the memory allowance of Windows (i.e. how much memory does it allow for particular executables), I think this operation should be tested to work even on 256M heap...
    On the other hand, the ANT compilation works well.
    Well, almost well.
    I have had some errors in my project, which ALBPM6.0 said to be OK, like defining a String array attribute 'not null' and setting no default value; or defining some object to be abstract and instantiating it.
    However these errors are not always reported, e.g. during catalog compilation: XY must be explicitly instantiated before being used since it does not have a default initialization... thus made it static (however, it has been used as static all the time).
    I had to hack CatalogPublisher a bit so that I can read them on stdout, and correct those syntax errors.
    For this possibility, iterate over the non-empty foCheckerListener.getPresentationErr() in CatalogPublisher after checkXO().

  • [Solved] File "Save As" takes more than 20s before dialogue box opens

    Whenever I use File "Save As" in any non-kde application (eg firefox, medit, kino), the dialogue box opens immediately but then takes more than 20 seconds to display the contents of the initial directory, after which I can then save the file. Alternative directories can then be selected instantly without problem.  Starting File Save As again, causes the same long delay, so its not a caching issue.  This occurs in XFCE4, LXDE & KDE.
    KDE apps, however, list the contents virtually immediately, indicating that its not a disk or filing system problem.
    The XFCE4 theme (under Appearance > Style)  is Foresight, and the icon theme is Nuvola.  Changing these does not make any apparent difference.
    This is on a SATA drive with 84 GB free running Arch 64.
    Can anyone suggest how this can be rectified?
    Last edited by Cotton (2010-01-01 19:19:12)

    Many thanks for that - problem solved. 
    The file contained 323 lines pointing to a single directory with multiple subdirectories, none of which was a removable device.
    Moving the file to another location, resulted in the File Save As operation functioning properly.
    Not sure if I actually use gtk-bookmarks as it hadn't been modified in over 6 months.
    Anyway, thanks again - its made a big difference.

Maybe you are looking for

  • How do I add apps from launchpad to my iPad

    I have a bunch of medical apps that I paid for and put them on my macbook pro.  I recently won an ipad at an office drawing and want to transfer the apps I would like to use for work from my macbook to my ipad and preferably keep them on both.  How c

  • Framemaker 10 prints very slowly to pdf

    I am running win64 and do a lot of pdf generation in FrameMaker 10 using the Acrobat X printer driver. But printing to pdf is very slow. I have tried whatever suggestions I could find in groups. Setting the printer driver to  file did not help. Juggl

  • Ipod touch keeps shutting off even when charged help!!! any ideas?

    My ipod keeps randomly shutting off while in use even when charged any ideas why this is happening?

  • How to link  MC in library in CS5

    Hi, can u plz tell me how to link ball_mc from library in CS5 Thanks JaxNa

  • Uninstall issues help...

    I am trying to uninstall developer workplace and I am coming across an issue where it won't let me continue.  Once I enter my SAP System ID to uninstall, I get the message: "SAP system GMZ is based on AS Java. Cannot remove it." Are there any ideas h