How to close documents?

When I open pages it has all my recent documents as open but minimized in the app if that makes sense. Feels unnecessary and I want to close them but not sure how? Any ideas? Many thanks

That is your Template Chooser.
If you don't want that, open recent files instead, or change your Preferences.
There are many ways you can choose to open your work.
Peter

Similar Messages

  • How To Close Documents Without Closing Entire App

    Since the latest Pages update, when I close all open documents, it automatically closes the entire program and then I have to wait 15 minutes to start it back up. Is there any setting I can change to fix this?

    That is just how long it takes the app to open up, give or take.
    Version 5.1
    Sometimes on my hard drive, sometimes to Apple's cloud, it has the same problem either way.

  • How to close documents in Preview?

    I can't close anything in Preview. When I got to "Show All Windows" it show all kinds of things I've recently opened.
    I go to each one and File > Window, and File > Close Selected Image but neither works. The window displaying the file disappears, but the file still shows up when I click and hold the Preview icon in my dock. I've tried the keystrokes (Command + W and Shift + Command + W), too. This just closes the windows, but nothing will keep them from showing up as open.
    I don't see any preferences to stop this. Surely I can avoid showcasing everything I've been opening to anybody who might use my computer, right? SURELY.

    One possibility:
    Where are these windows appearing? If they are appearing along the bottom of the screen in Show all windows, they are not open but are being shown as your history of recent items. A sort of heavy-handed way to eliminate this display of recent items is to set "Number of recent applictions", "Applications", to zero in System Preferences, General.
    charlie

  • Re:How to close and reopen a document immediately?

    Original Message available here:<br /><a href="/webx?14@@.3c055358">Dave Sykes, "How to close and reopen a document immediately?" #, 15 Nov 2007 4:46 am</a><br /><br />> Dave Sykes - 04:46am Nov 15, 2007 Pacific<br /> I would like to close a document and then immediately afterwards open it up again.<br />The documentation says "To process a command to close the document immediately, use IDocumentCommands::Close'', but it also points to SDKLayoutHelper::CloseDocument which uses IDocFileHandler::Close.<br />If I use IDocumentCommands::Close the close succeeds, but InDesign unexpectedly quits when it regains control.<br />If I use IDocFileHandler::Close then when I reopen the document I get the assert ``Calling SelectionExtentionRegistry::Initialize more than once!'' This is the same error I get by not closing the document at all.<br />I have also tried ProcessCommand(Utils<IDocumentCommands>()->CreateCloseCommand(docUIDRef)), but this also crashes InDesign when it regains control.<br />In all cases I am calling ProcessCommand(CmdUtils::CreateCommand(kCloseLayoutWinCmdBoss), as otherwise I get an error that the document is still referenced on close.<br />Is it possible to close all the layout windows and also close the document, so that it can be reopened immediately? <br /><br />I had the same issue and tried to solve it by closing all windows in the document's IWindowList and then calling IDocFileHandler::Close() with IDocFileHandler::kProcess to process the command immediately instead of scheduling it.<br />Unfortunately this still resulted in a crash.<br /><br />Eventually I got around it by adding the following line before re-opening the document:<br />CmdUtils::ProcessScheduledCmds (ICommand::kLowestPriority);<br /><br />This forced InDesign to completely close the document before re-opening it again.<br /><br />Hope this helps someone else too. :)<br /><br />- Jackeen

    I am having the same problem with InDesign CS4 version,
    I have tried the following:
    IDocFileHandler::Close() //with kSchedule command
    CmdUtils::ProcessScheduledCmds();     //Results into crash
    IWindowList::CloseAll()
    IDocFileHandler::Close() //with kSchedule command
    CmdUtils::ProcessScheduledCmds();     //Results into crash
    IDocumentList::CloseAll()
    IDocFileHandler::Close() //with kSchedule command
    CmdUtils::ProcessScheduledCmds();     //Results into crash
    IPresentationList::CloseAllPresentations()
    IDocFileHandler::Close() //with kSchedule command
    CmdUtils::ProcessScheduledCmds();     //Results into crash
    is Three anything else that could work.
    Thanks and Regards
    Saurabh Singhal

  • How do I get Pages to close documents on quit?

    Sometime in the recent past a change was made to Pages.... it use to close all documents on quit, and ask to save things. Now it just quits and holds onto all the documents, so by now I have a million open documents when I open Pages, since it never closes anything on quit. How do I set it to close documents on quit.... because most of the time this is how I clear my desktop/workspace of documents I'm done with. Currently they never close unless I specifically close each one individually....and at this point Pages is useless to me.
    Thanks
    z

    You might consider System Preferences > General > Close windows when quitting an application. Right above it, is Ask to keep changes when closing documents. If you select that, you can quit from Pages, and it will challenge you to Save your content, or revert to the prior version edit. The following is the dialog you receive from Pages v5 with this setting when you just Quit the application.

  • How to close 100 documents in CS5 desktop application

    Hi,
        I have list of document e.g 100 and want open,flow,save and closed it.
        The step i have taken is
       1.Opening a document as
                             SDKLayoutHelper objLHelper;
                             UIFlags uiFlags = K2::kSuppressUI;
                             IDFile idTemplateFile;
                             FileUtils::PMStringToIDFile(sTemplatePath,idTemplateFile);
                              docUIDRef = objLHelper.OpenDocument(idTemplateFile,uiFlags);
         2.Importing template native xml on document.
    3.Saving document as
                            IDFile idDocFile;
                           FileUtils::PMStringToIDFile(sDocpath,idDocFile);
                           objLHelper.SaveDocumentAs(docUIDRef,idDocFile,uiFlags);
    4.And Closing document as         IDocFileHandler::CloseCmdMode cmdMode = IDocFileHandler::kSchedule;
             objLHelper.CloseDocument(docUIDRef,kFalse,uiFlags,kFalse,cmdMode);
    But problem is that indesign unable to close document instantlly due which memory is going up and indesign crashing at the end.
    What should to do?
    Thanks
    Qamar

    Hi,
        I have found solution of my problem.It is something trikey but it working fine.
    As a beheviour of indesign desktop cannot possiable to do that so you can do as
    1.For example you have 100 documents in your for loop
    2.open document by calling javascript
    var myDocument1 = app.open("E:\\Templates\\MyDoc.indt",false);
    2.Save by sceond javascript call
    if(app.documents.length != 0)
            var activedoc = app.documents[0];
            activedoc.save("E:\\Templates\\MyDoc.indd");
    3.Get a document index no and by that achive a document pointer by using one script provider event that will used in the C++ code
    if(app.documents.length != 0)
            var activedoc = app.documents[0];
            var s = activedoc.toSource();
            var ret = app.speak(s);
    4.And finally closed the document
    if(app.documents.length != 0)
            var activedoc = app.documents[0];
             activedoc.close();
    Hopefully helpfull to such problem.
    Thanks
    Qamar

  • I have opened an attached document .doc in a mail. how to close it? I cannot come back to my mail...

    On y recently acquired ipad4, I have opened a word .doc file that I received as an attachment in an email, just by touching it.
    It opened directly and I see it very well
    My problem is that I don't find how to close it now, and each time I go back in my mail, I get the screen with this file opened, and I cannot go back to my mail.
    What is the tip to close this file?
    Thanks

    You are most welcome

  • How to close extended classic PO in ECC...

    Hi Friends...
    We are in SRM 7.02 and ECC 6.05 in Extended Classic Scenario. One PO had been created for 1 Quantity 3 years ago. There was no GR/IR document posted against that PO. Now that PO had been archieved from SRM. But still PO is available in ECC with open quantity and also its appearing in the open PO report. Now requester wanted, the PO to be closed in ECC and shouldnot appear in the open PO list.
    How to handle this situation.. How to close the extended classic PO in ECC at this scenario. As PO not available in SRM, we can not do anything from SRM side.
    Your inputs are appreciated....
    Regards
    Sivakumar Kandasamy

    Hi Sivakumar,
    If you mean how to archive PO in MM side, please refer to the following info:
    ====
    In ECC system, if you want to archive a MM PO, please use transaction
    SARA->archive object MM_EKKO.
    456129 FAQ: Archiving in purchasing
    401318 Archiving: Additional information
    ====
    If you want to delete this ECC PO, please use BAPI_PO_CHANGE and
    refer to the following test data:
    Parameters:    PURCHASEORDER      =  XXXXXXXXX
    Parameters:    POITEM
    PO_ITEM                        = 00010
    DELETE_IND                     = X
    Parameters:    POITEMX
    PO_ITEM                        = 00010
    PO_ITEMX                       = X
    DELETE_IND                     = X
    You also need to run BAPI_TRANSACTION_COMMIT after BAPI_PO_CHANGE for updating the change.
    Regards,
    Ivy

  • How to Close Service Purchase Orders

    Dear All,
    Please guide me how to close Service Purchase order if the part services are pending and Net value is not completed or no service entry done.
    But still we need to close the purchase order.
    Is there any manual provision in Service Entry Sheet or Purchase order ?
    Please help.
    Shailesh Panchal

    Hi,
    Activate Delivery Complete Indicator on Service Purchase Orders through configuration.
    SPRO-Materials Management-Purchasing-Purchase Order-Define Screen Layout at Document Level-PT9F-Define Screen Layout at Document Level-Optional
    Now check all the service purchase orders for which you want to close.
    Hope this will help you.
    BR,
    Patil

  • How to close contract..

    Dear All,
    I want to close contract which is created using ME31K .
    How to close it if my requirements are full (created PO and recd goods).
    And also how to close if requirements are still open (PO not created)
    Amit

    Hi,
    You have to close all purchasing documents (PR's,PO's).
    Make sure that all PO's are GR and all invoices for GR PO's are paid.
    You should not have open purchasing documents and when everything is closed and paid , only then you can mark your contract line item for deletion using T-code ME32K.
    Thanks
    Silas

  • Close document without exiting program

    In Dreamweaver 6, before I got a new computer, I could close
    a document window and the program would go back to a blank New
    Document screen. Now the entire program closes, and I can't find
    how to close a document without exiting the program. Does anyone
    know how to do this?
    Thanks!

    PREFERENCES | General > Show Welcome Screen
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "JoelW" <[email protected]> wrote in message
    news:g1el7u$e7t$[email protected]..
    > In Dreamweaver 6, before I got a new computer, I could
    close a document
    > window
    > and the program would go back to a blank New Document
    screen. Now the
    > entire
    > program closes, and I can't find how to close a document
    without exiting
    > the
    > program. Does anyone know how to do this?
    >
    > Thanks!
    >

  • JS: How to close Adobe reader/Acrobat?

    How to close a PDF file in Adobe reader/Acrobat using JS in Design?
    Thanks in advance.

    Here is an example:
    #target indesign
    var acroScript = 'var d = app.activeDocs;\r';
    acroScript += 'for ( var i in d ) d[i].closeDoc( true );';
    var bt = new BridgeTalk;
    bt.target = "acrobat";
    bt.body = acroScript;
    bt.send();
    It closes all open documents in Acrobat without saving. However it  works only on PC and only in certain versions of InDesign and Acrobat. (I tested it at work, in InDesign CS3 and Acrobat 8 Pro, on Windows XP)
    But at home computer I have Acrobat X version 10.1.1 and bridgetalk doesn't "see" it.
    Note that closeDoc method has an optional parameter -- bNoSave -- whether to close the document without saving. If false (the default), the user is prompted to save the document if it has been modified. If true, the document is closed without prompting the user and without saving, even if the document has been modified.
    Hope this helps.
    Kasyan

  • I can't permanently close documents in Preview.

    Hi! I'm having some troubles with Preview on Mac OSX Lion. I usually open a lot of PDFs and Pictures and naturally opened with Preview... But with the addition of Resume the pictures do show up again
    BUT its not that you just close the document and its gone...
    When I show the App Exposé and right click on the icon, it shows dozens of documents I have previously opened, still hidden and open in Preview!
    Any Help on this??
    Thanks!

    Hi,
    I'm having exactly the same problem as originally described in this post.  I've tried what is suggested but upon opening preview and going into expose, 10 or so photos are displayed in the lower half of the screen.  Can anyone please advise how to close them permanently?  If I click on a photo, it opens in a large window and if I click close then go into expose, it's still shown in the lower half of the expose screen.  Please help.
    Thanks
    Adam

  • How to close Open Outbound Deliveries

    Hi All,
    please could u tell me how to close Open Outbound Deliveries?
    Regards,
    Ramesh

    Ramesh,
    The delivery will be open until the PGI is completed and fully invoiced. If you don't want to inoice, then PGI needs to be reversed and delete the delivery.
    If all the subsequent documents are created for full qunaity and still the delivery is open, then you will need to set the status as completed in the debug level. Consult your ABAP expert.
    Prase

  • Close document

    hi is there anyway to close document like photoshop close all same like in illustrator ? or can me make action how plz

    Hi
    Pls mention the SAP version and Patch Level.
    Check the target document.
    Ashish Gupte

Maybe you are looking for

  • Which version of MSS to use with R/3 4.7 SR1 ext110?

    I am using  R/3 4.7 SR1 ext110. Do I use MSS 60.1.2 or MSS 50.4.2 Also what type of Iviews does MSS use, IAC or JAVA? Jeremy

  • Question on the value of an Upload item

    Hi all, I have an upload item (:P100_UPLOAD) with a Submit button. When I click on Submit I notice that the value of the upload item is different if access it from javascript or from PL/SQL process. From javascript (using html_GetElement('P100_UPLOAD

  • Delivery cost with multiple account assignment

    Dear SAP gurus, I found a problem in here. In my company we are using multiple account assignment in PO with multiple asset entered in one line. This PO actually will have customs and delivery cost inside of it, however it is not know at the time of

  • WebUtil  - oracle.forms.webutil.ole.oleFunctions bean not found.

    All, We're using webutil 1.0.6 on forms 9.0.4. Stuck up with the following error at runtime 'oracle.forms.webutil.ole.oleFunctions bean not found.'. In metalink, we noticed that webutil 1.0.6 should't be used with 9.0.4 unless some modification made

  • Queries on Business Process Monitoring (BPM) & Interface Monitoring

    Dear all, I have got a few queries on the subject and would greatly appreciate any valuable inputs. Before I proceed, want to clarify that I have downloaded all overtly available  documents (PDFs, SIMs) from the following URLs: http://service.sap.com