Visible home window when closing document

Hi,
in Acrobat 11, the application frame with the toolbars, tools, ... was hidden as soon as a document has been closed with CMD + W on the Mac. In Acrobat DC, the Home window appears when closing a document with CMD + W and I need to hit the same again to hide/close the application frame.
How could I revert to the old behavior?
Thanks and kind regards,
Yves

Hi Daren@Sync, MikeA-McArdle
You might wish to fill the Feature Request Form so that this information can be passed on:
https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform
Regards,
Anubha

Similar Messages

  • "Examine Document when closing document" doesn't always remove information.

    Hi,
    Environment:
    Acrobat v9.4.6
    Scenario:
    Open Acrobat and go to "Edit | Preferences", then enable "Examine Document when closing document". Exit Acrobat.
    Use any program (I tested a print to pdf, in both Win7's Wordpad and Microsoft Word 2010) and create a pdf.
    Open that pdf, make a minor change, perhaps with Typewriter.
    Exit document and select the third "Examine Document" dialog option of "Remove the information, then close the document".
    Adobe Acrobat prompts "Do you want to save changes to 'whatever.pdf' before closing". Click Yes button and save the pdf.
    Problem:
    You would think the personally identifieable information and various metadata would have been automatically removed because you selected the third "Examine Document" dialog option of "Remove the information, then close the document". However the information it is not removed. If you analyize the pdf, you will still find (for example) that your Windows login name is in the pdf. "Document | Examine Document" function will also show that it's still in there also.
    Observation:
    If on exiting a modified pdf, and you select the second "Examine Document" dialog option of "Remove the information, but do not close the document", at least before the document fully exits, you are presented with the "Document | Examine Document" function, where you can then remove metadata via the checkmarks and remove button.
    What's up with the "Problem" ?
    Regards,
    Brcobrem

    HI Bill@VT,
    In my original post, I said:
    Exit document and select the third "Examine Document" dialog option of "Remove the information, then close the document".
    Adobe Acrobat prompts "Do you want to save changes to 'whatever.pdf' before closing". Click Yes button and save the pdf.
    At the point that I '...Click Yes button and save the pdf", Adobe exits.
    Regards.
    Brcobrem

  • How can I implement a comfirmation window when closing javafx application?

    hi,guys
    I'd like to add a confirmation window when user is closing my javafx application,if user click yes, I will close the application,if no ,I wouldn't close it ,how can I implement this function?
    primaryStage.setOnCloseRequest(new EventHandler<WindowEvent>(){
                   @Override
                   public void handle(WindowEvent arg0) {
                        try
                             //todo
                        catch(Exception ex)
                             System.out.print(ex.getMessage()+"\r\n");
            });

    Hi. Here is an example:
    import javafx.event.ActionEvent;
    import javafx.event.EventHandler;
    import javafx.geometry.Pos;
    import javafx.stage.*;
    import javafx.scene.*;
    import javafx.scene.paint.Color;
    import javafx.scene.layout.*;
    import javafx.scene.control.*;
    public class ModalDialog {
        public ModalDialog(final Stage stg) {
         final Stage stage = new Stage();          
            //Initialize the Stage with type of modal
            stage.initModality(Modality.APPLICATION_MODAL);
            //Set the owner of the Stage
            stage.initOwner(stg);
            Group group =  new Group();
            HBox hb = new HBox();
             hb.setSpacing(20);
            hb.setAlignment(Pos.CENTER);
            Label label = new Label("You are about to close \n your application: ");
            Button no  = new Button("No");
            no.setOnAction(new EventHandler<ActionEvent>() {
                public void handle(ActionEvent event) {
                       stage.hide();
            Button yes  = new Button("Yes");
            yes.setOnAction(new EventHandler<ActionEvent>() {
                public void handle(ActionEvent event) {
                       stg.close();
             hb.getChildren().addAll(yes, no);
             VBox vb =  new VBox();
             vb.setSpacing(20);
             vb.setAlignment(Pos.CENTER);
             vb.getChildren().addAll(label,hb);
            stage.setTitle("Closing ...");
            stage.setScene(new Scene( vb, 260, 110, Color.LIGHTCYAN));       
            stage.show();
    }Test:
       import javafx.application.Application;
    import javafx.event.ActionEvent;
    import javafx.event.EventHandler;
    import javafx.scene.Group;
    import javafx.scene.Scene;
    import javafx.scene.control.Button;
    import javafx.scene.paint.Color;
    import javafx.stage.Stage;
    import javafx.stage.*;
    * @author Shakir
    public class ModalTest extends Application {
         * @param args the command line arguments
        public static void main(String[] args) {
            Application.launch(ModalTest.class, args);
        @Override
        public void start(final Stage primaryStage) {
            primaryStage.setTitle("Hello World");
            Group root = new Group();
            Scene scene = new Scene(root, 300, 250, Color.LIGHTGREEN);
           primaryStage.setOnCloseRequest(new EventHandler<WindowEvent>(){
                   @Override
                   public void handle(WindowEvent arg0) {
                                    arg0.consume();
                        try
                         ModalDialog md = new ModalDialog(primaryStage);
                        catch(Exception ex)
                             System.out.print(ex.getMessage()+"\r\n");
            primaryStage.setScene(scene);
            primaryStage.show();
    }

  • Hide visible command window when running cscript.exe

    I'm using vbs wrappers when I'm installing applications with MDT because they offer me better control and logging capability. Currently when task sequencer executes application install with cscript.exe there is this visible command window. Is it possible
    to completely hide it without big modifications to MDT?

    If you are using ZTIUtility.vbs then I recommend:
    oUtility.RunWithConsoleLoggingAndHidden "cmd.exe /c echo Hello World!"
    Keith Garner - Principal Consultant [owner] -
    http://DeploymentLive.com

  • Display popup window when closing "X" web browser

    Hi All - how I can display a popup window when user press "X" from web browser.
    I know how to create popups windows but where I can code the popup window when the user close the browser?
    e.g. I press at the top right the web browser "X" to close the browser, how I can display a popup asking if they want to SAVE the data before closing the browser.
    thanks!
    -Jason PV

    Hi Manas,
    are you sure?
    If you close the browser window - even if you have set the portal work protect mode, set the app as dirty and running the app in the portal - the windows closes without any complaint.
    If you were in the portal and tried to navigate away from the page, that would be a different thing - but a browser close is just that. You can capture the onUnload event of the browser window (not in WD - but JS) but you have no way of detecting that it is not just a page refresh.
    Do a search for "intercepting browser close events" via google etc, to see just how tricky to build a solution would be.
    So I'd say - no ability to stop browser close events - or to react to them - but yes to portal navigation type event within the portal. And further to that - I'd suggest using the FPM work protect mode interface to help you take advantage of the Portal work protection.
    Cheers,

  • InDesign occasionally crashing when closing document

    We have a plug-in which automatically processes documents, in this case opens, prints, and closes. Occasionally InDesign crashes while performing these actions. From the information I have through our own logs and the crash dump it appears to crash while the document is being displayed (HorzRulerView::DrawRulers()) however, our log is reporting that we have already requested the document to be closed. My questions are:
    1) After executing kOpenFileCmdBoss and returning kSuccess can the document contents (images etc.) continue to be rendered?
    2) If the process above is possible should InDesign prevent the documents closure before it has completed?
    3) Is there an SDK call we can make in our plug-in to ensure the open has fully completed?
    Regards
    Peter

    Hi Peter,
    I may have seen something similar a week ago. My project takes commands from an external source to create, open, close and save documents. The commands are in a queue that is read and processed during a call IdleTask::RunTask().
    I found that if I closed a document and then opened a new one in the same RunTask call, I'd get a crash when trying to open the new document. It's hard to say for certain what was going on, but I suspect the database was in an inconsistent state due to the close only being scheduled rather than processed there and then.
    My solution was on closing a document, return control to the application and open the new document on the next call to RunTask. I haven't had a crash since.
    Hope this helps.
    APMABC

  • Sound and settings not working ("Task Host Window" when closing)

    Okay I am not sure where to focus exactly and I am not good at articulating these problems because I don't know much about computers, so I will just try and make a simple list of problems that occured at the exact same time, and therefor must be related:
    I had just installed an update which took quite a while.
    Every time I close down my computer it says "Task Host Window" has to be shut down. It says underneath (translated from Danish): "Assignment host is stopping background tasks
    Sound doesn't work. Not normally or with different speakers or anything like that. The sound icon shows a red circle with an X
    Automatic start up programmes such as Dropbox and Sticky Notes don't start up unless I do no manually
    Most parts of settings just show blank when I try to access them eg. control panel and parts of PC settings
    Saving words documents (I suspect because OneDrive has to be accessed first) is really slow, but once they are saved ctrl+S works like a charm
    I have tried:
    I heard turning off onedrive would help, but when I go to PC setting -> OneDrive it doesn't respond
    I tried a HotFix for Task Host Window but nothing happened
    Trouble Shooting the sound by clicking the sound icon (which has a red circle with an X) tells me 'one or more sound services isn't running' and when I click 'see more ways' it goes to a blank site within control panel
    I suspect there's some simple way to start the sound manually and it's simply being blocked, and honestly if I could just get it to start manually when I needed it, I could live with all these other problems. The sound is the most important!!
    Thank you in advance
    ps. I haven't been able to find my exact operating system and notebook information due to the problems with the settings, but I know it's an EVNY with a sound system by BEATS BY DRE and the operating system is windows 8

    @Johanne1 ,
    Hello and thank you for posting on the HP support forums. 
    From what you are explaining here, you are having a Windows settings issue.
    Here are some links you may find useful.
    Change programs that run automatically at startup
    Here is a link that will help fix windows issues as well.
    Diagnose and repair Windows File and Folder Problems automatically
    Let me know how things go.
    Thank you again for posting and have a great day.
    Please click the "Thumbs Up" on the bottom right of this post to say thank you if you appreciate the support I provide!
    Also be sure to mark my post as “Accept as Solution" if you feel my post solved your issue, it will help others who face the same challenge find the same solution.
    D5GR
    I work on behalf of HP

  • Photoshop crash on windows when loading document before extension is initialized

    Hi, I came across wierd problem in Photoshop. I have an action script extension switched on and when I start Photoshop and choose to open a recent file before extension is completly initialized, Photoshop crashes. It doesn't happen on Mac.
    Have you ever seen such behaviour and possibly have an idea how to fix it?
    Luky

    Yep, it's my panel from Window -> Extensions. Unfortunatelly I can't send you sample.
    But what's happening: when I start Photoshop and panel is active so before onCreationComplete is called I try to open a file from recent list. And then Photoshop crashes (and wants to call home with report)
    If I wait till onCreationComplete is completed everything works fine

  • How can I make Reader the active window when opening documents?

    I am having trouble with this because right now documents open in the background and Adobe Reader does not become the active window.  This requires an extra click on Adobe to bring the opened document to the foreground.
    Nowhere to be found in Preferences.
    My system is Linux RedHat 2.16.0
    Adobe Reader 9.3.1
    Thanks a bunch.

    Sir,
    Inspect the following methods (all available to, say, a JFrame) - they might help you out:
    setVisible
    setState (to (de)iconify)
    toFront (request to bring to front)
    requestFocus

  • Icon bounces and alert sounds when closing document

    I couldn't find any info on this in the knowledgebase, help, or forums but I'm hoping someone else has seen this and can help.
    When I open a PDF in Acrobat Pro 8.0, and the program has just been opened: if I close the PDF I was viewing, Acrobat's icon bounces and I get a beep (my system alert beep). The icon continues to bounce until I click on it, but there are no other warning windows and it doesn't happen again until I've restarted Acrobat.
    Does anyone know what this is and how I can disable it?

    I think I have a fix... and I have tried them all without success but this one worked. Tech support gave me these instructions. It broke Acrobat though. It would immediately crash and give me a message saying Acrobat had a serious problem and that I should reinstall it. Once I reinstalled it though, no more bouncing icon. Below are the insructions from Tech.
    From Tech
    "Try the following: Go to your HDD > Library > Applications Support.
    Control Click on the Adobe folder and click on Get Info. Under
    Ownership and Permissions, see if you have Read access or Read and Write
    Access. If you only have Read
    access, click on the details to expand the list, and unlock the Owner
    section. Set yourself to be the owner and set it to read and write.
    Click the button at the very bottom to Apply to
    enclosed Items.
    Do the same to the FLEXnet Publisher folder in Application support.
    I have seen this behavior sometimes happen if you do not have read and
    write access to one or more folders that the authentication process
    needs when you launch Acrobat.
    Acrobat checks for authentication after a few seconds of being open. If
    it fails, Acrobat closes without an error. Resetting the permissions to
    full read and write will hopefully clear
    up the problem."

  • Upgraded to 3.6.10 now cannot open a new window, when closing firefox, it hangs and will not reopen without closing firefox via task manager

    Since the upgrade (which took many attempts) after about 2-3 clicks, i cannot open new windows. I can open new tabs, but never a new window.

    See "Hang at exit":
    * http://kb.mozillazine.org/Firefox_hangs
    * [[Firefox hangs]]

  • Warning Window When Closing PhotoShop

    Everytime I exit out of PhotoShop (Photoshop/Quit Photoshop), I receive a warning window that states, "Photoshop has quit unexpectedly", followed by the following details:
    Process:    
    Adobe Photoshop CS5 [531]
    Path:       
    /Applications/Adobe Photoshop CS5/Adobe Photoshop CS5.app/Contents/MacOS/Adobe Photoshop CS5
    Identifier: 
    com.adobe.Photoshop
    Version:    
    12.0.4 (12.0.4x20110407.r.1265] [12.0.4)
    Code Type:  
    X86 (Native)
    Parent Process:  launchd [230]
    Date/Time:  
    2012-01-10 11:23:28.283 -0800
    OS Version: 
    Mac OS X 10.7.2 (11C74)
    Report Version:  9
    Interval Since Last Report:     
    178983 sec
    Crashes Since Last Report:      
    7
    Per-App Interval Since Last Report:  43963 sec
    Per-App Crashes Since Last Report:   5
    Anonymous UUID:                 
    4523D6D2-62B2-4B67-89C4-87B9592C12F4
    Any ideas, or has anyone else experienced this issue?  This really seems to have started with the installation of Lion??  Thanks!

    Hello
    You may have more answer to post to ADOBE forum , you are here in iMac forum
    Problem report is only thecnical , not explain anything about you particular use , just a guess but report could be exist only for statistic
    From your report you use Adobe Photoshop CS5 with Mac OS X 10.7.2 , you may need to update to CS5.5
    check for that on adobe web site
    HTH
    Pierre

  • When closing a Word doc can you stop 'Do you want to keep this new document?'

    Hi,
    Everytime I close a Word document I keep getting the save document dialogue box appearing with the text 'Do you want to keep this new document [filename]?You can choose to save your changes, or delete this document immediately. You can’t undo this action.'.
    How can you stop this? I just want to be able to open a Word document, view it and close it without the hastle of being asked if I want to save it or delete it.
    Thanks for any help on this.
    P.

    Hi Pete,
    When you open a Word document in Pages, it is converted to Pages format. Pages is asking if you want to save as a Pages document (and replace the Word document). You can stop the Save dialogue box by:
    System Preferences > General > Uncheck Ask to keep changes when closing documents.
    However, I would be careful. This will apply to all documents that you open in Pages (or Numbers or other apps). You might have a Pages document where you do want a reminder to save. Small problem to say 'Don't Save' to a Word document that you open to view, but don't want to save. I find it is safer to turn on 'Ask to keep changes when closing documents'. That puts you in charge of your work.
    Another way to just view a document is to open the document in Preview or TextEdit (right click or control click, Open With).
    Regards,
    Ian.

  • Popup to confirm when closing browser window?

    Hi
    I want to display popup confirm window when closing browser window, "changes will be lost" yes or no. for this i searched forums got some idea, about "WORK PROTECT MODE". this will work only when our application running from portal. my doubt is where should i write code for this??? any help
    Thanks,
    kris.

    Hi Thomas,
    We are on ECC6.0 enph5.
    In system configuration in epc.loader(service) the value for work protect mode is set as 1 - Protect unsaved data (open page in a new window) 
    1)Is it possible to override this value within WD ABAP application? for example show popup window when there is unsaved data
    2)In this scenario what is the significance of L_PORTAL_MANAGER->SET_WORK_PROTECT_MODE
    and   L_PORTAL_MANAGER->SET_APPLICATION_DIRTY_FLAG
    3)Where exactly  L_PORTAL_MANAGER->SET_APPLICATION_DIRTY_FLAG has to coded. It does trigger modify method of the view.
    Thanks,
    chamu

  • Disable save prompt when closing form

    Hello,
    I am looking for a scripting command to stop the prompt to save a form. I am sending the form via a submit button, so a locally saved copy is unnecessary since the form will be attached to a sent email.
    Does anyone know how to stop the prompt to save the form once it is completed?
    Thanks in advance for any insight!

    Go to System Preferences > General & check "Ask to keep changes when closing documents."

Maybe you are looking for

  • Message Mapping: Map value from the first element in a context in target el

    Hi experts, I have a problem with a message mapping in XI. I hope you can help me. At first I will give you a source and a target structure. Then I will explain the problem. <u>Source structure:</u> <E1EDP01>    <E1EDPT1>       <TDID> ... </TDID>    

  • How can I sort pictures by date and than by time stamp ?

    The approx. 2.000 pictures was taken by two cameras. Both cameras intern date and time where adjusted before the for session. It seems that Aperture 3.3.1 can´t manage it, can it? In the browser there is only one common field for date and time. I sho

  • List as function parameter type

    Hi, how to declare list parameter type in function ? I want to call function with list, param2 = ('A', 'B', 'C'...) for example: function(param1, param2) thx

  • Internet Explorer error when running my demo

    I created a demo, an interactive software simulation and a quiz in Captivate. I published it and then zipped it up and took the zip file over to the media folder in Microsoft's LMS or LCDS. When I preview or run it, I continually get Internet Explore

  • Error making gnucash

    I was finally able to get all the dependencies for gnucash 2.2.6 and did a ./configure which went fine. then when I did a make I get the following errors: /usr/bin/ld: warning: libgnutls.so.13, needed by /usr/lib/gcc/i686-pc-linux-gnu/4.3.1/../../../