TS4040 How to close preview document?

Preview document unable to change, remove and save. it seems dead, how to closed it?
Thanks

If you can't close Preview, go to Apple menu > Force Quit or press Alt, Command and Esc keys, select Preview and press Quit or Force Quit

Similar Messages

  • 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

  • How do I crop a Preview document using Mountain Lion

    How do I crop a Preview document using Mountain Lion

    Bring up the Edit toolbar and choose the crop tool. Choose the area to crop. Then comd-k or "Crop" from the "Tools" menu.
    EDIT: As baltwo says if it's a document crop won't work.

  • How do I pull together multiple PDFs into one Preview Document?

    Folow up --- I learned from the video how to create one Preview document from mulple PDFs, but I need to know how to position pdf files in a main PDF Preview presentation document.  I need a lot more control over where a pdf is set in the final PDF document. Has anyone worked on this or have some advice.

    If you don't want to use them in InDesign for any other purpose than to assamble them in one new PDF I would rather use Adobe Acrobat Pro than InDesign.
    In Acrobat Pro: Create new Deocument > Form multiple Files, select further what you need.

  • HT3739 how do i preview a word document without it going into stack first? I downloaded (legally) microsoft word to this macbook I just purchased last week.

    how do I preview a word document without it going into stack first? I did download (legally) Microsoft Office to this Macbook I bought last week.  I tried removing stack from the dock and the word documents did the same thing, only flew to the top right of my screen instead....

    Hi
    Please find the links given below to call HP technical support.
    If you live in the US, contact HP Here.
    If you are in another part of the world, start Here.
    Let us know how it goes!
    "I work for HP."
    ****Click the (purple thumbs up icon in the lower right corner of a post) to say thanks****
    ****Please mark Accept As Solution if it solves your problem****
    Regards
    Manjunath

  • Auto-close Preview when last document is closed?

    Is there some way to automatically close preview when all of the documents have been closed? I like to keep my active app space clear of clutter and there's no point to have a quick-loading app like Preview remain active if I've closed out everything I was reading.

    Hi, isnoop.
    The short answer is: no. If there were, it would be in Preview's Preferences.
    You would have to Quit (Command-Q or Preview > Quit Preview) Preview.
    There's no reason to quit and relaunch an application like Preview if you're going to use it more than once between restarts. It's memory footprint is small when no images are displayed and it won't use CPU cycles unless you're working with it.
    Good luck!
    Dr. Smoke
    Author: Troubleshooting Mac® OS X

  • 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 can I close a document without saving changes?

    I'm using Pages 4.3 with OS10.9.1.
    Before I upgraded to OS10.9.1, when I closed a document (Command W) it asked me first if I want to save the changes I'd made to the document. I had the option of saving or not saving.
    Sometimes I want to close a document without saving the changes, for example if I edit a text, then decide I prefer the unedited version.
    But now that I'm using OS10.9.1, when I close a document, it automatically saves any changes I've made.
    How can I get back to the original option of saving or not saving changes when I close a document? This option was available with the same version of Pages, when used with an earlier OS.
    I've searched the Pages Users Guide, but can't find any answer, or default settings. Pages Preferences doesn't seem to address this.
    I'm not using track changes, so I don't think that's the problem.
    Any solutions would be greatly appreciated!

    [Viking: I am using v4.3. ... See my orginal post.]
    But I found the solution, for anyone else who is having the same problem....
    Open your computer's System Preferences > General, and click the box "Ask to keep changes when closing documents."
    Now, when you close a document in Pages, a window will open giving you the option of saving changes or not.
    (I don't know whether this works in Pagesv.5., buty it works with v.4.3)

  • How to close Acrobat reader with a button inside the document ?

    Hi,
    Is there any way to close acrobat reader using script ?
    Doing this :
    app.execMenuItem("Close");
    will close my document, but not the reader ...
    Any idea ?

    Hi Olivier,
    As you say the close script will close the current document only. It is not possible to script for closing the application (Acrobat or Reader).
    The user has to close the application.
    Niall

  • How to close and reopen a document immediately?

    I would like to close a document and then immediately afterwards open it up again.<br /><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 /><br />If I use IDocumentCommands::Close the close succeeds, but InDesign unexpectedly quits when it regains control.<br /><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 /><br />I have also tried ProcessCommand(Utils<IDocumentCommands>()->CreateCloseCommand(docUIDRef)), but this also crashes InDesign when it regains control. <br /><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 /><br />Is it possible to close all the layout windows and also close the document, so that it can be reopened immediately?

    Closing then opening a document can be tricky, especially if you are trying to save its contents first.
    If you try to save a file and then close it with a ProcessCmd then you'll have problems
    as the save cmd won't have time to complete before it is hit with the close cmd.
    You can save a document and then immediately request to close it with ScheduleCmd as this
    just queues the close request and will process it once the save has completed - this is okay.
    But you can't then just fire a request off to reopen the document as the previous commands
    are still being processed - this would be a problem.
    If you try to speed the process up by using ProcessScheduledCmds then you're
    basically doing a save and close with ProcessCmd and will probably have the same problems.
    The issue is that you need to leave InDesign alone while it finishes saving and empties its cmd queues.
    You'll probably need an asynchronous approach.
    Do a save on your document data - this lets you close it - but test if you need to save first.
    Do a ScheduleCmd to queue a request to close the document.
    Logic should now switch to the document observer.
    When you get the message that your document is closed _then_ fire the logic to open it.

  • 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

  • Problems with Acrobat 7.0 Browser document / close a document

    Hi,
    I'm trying to write an application in C# which let to preview pdf doc and to print them. For this, I use the Acrobat 7.0 Browser document control but I have some problems with it:
    I have a grid with some doc titles and when I select one of them, I want to preview it in the control and to print all the docs that I check.
    The problem is that sometimes the control freezes when I'm go from one doc to another one. Also, when I want to print them
    (with a loop on the grid: foreach line in the grid
    pdrbrowser.printallfit(docname);)
    the print command doesn't work, nothing is printed or just the first doc.
    I think that is because the doc is locked by the acrobat process, but I don't know how to close it. I don't want to kill the acrord32.exe process because I also open pdf doc with acrobat reader at the same time.

    It does sound like you are pushing the control in ways it may not be prepared to handle. Certainly, it isn't expecting to be printing a collection of documents - just one at a time.
    Also, you mention that you are on Acrobat 7 - have you tried updating to 8 to see if that improves things?
    Leonard

  • 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

  • After the update I don't know how to close running apps? I recall double clicking the main button then hold one app until they begin a jiggling motion. But that no longer works.

    How do close running apps?

    You still double tap the home button and the apps are lined up across the screen. Swipe up on the app preview thumbnail - drag it up off of the screen - and that will close the app.

  • Can anyone advise how to close apps on iPad with new iOS? I have multiple open and cannot close them.

    Can anyone advise how to close apps with the new iOS?  I have multiple open and cannot close them

    Double-tap on the Home button. You will see a preview of the app above the actual icon. Slide the preview up to kill it.
    Please get the iPhone User Guide (For iOS 7 Software)Sep 19, 2013 - 23 MB.

Maybe you are looking for

  • Automatic music upon opening website page

    Hello all. I was wandering if anyone knows how/if you can have music/theme play upon opening your webpage using iweb. I know that you can drap a song into the page where the person clicks on the play button, but can you have it open the page and play

  • I book doesnt work with power cord only

    Hello. I was just using my ibook g4 and shut it down. When i tried to turn it back on it worked for about 5 minutes then it shut off. I tried taking out the battery and holding down the power button for 5 seconds among other things. I gave up and bor

  • Error 6, Error message given

    Hi guys I can't seem to decipher why this error message is being given and how to get around it. Error 6 occurred at Open/Create/Replace File in NI_LVConfig.lvlibave Config File.vi->NI_LVConfig.lvlib:Close Config Data.vi->write settings.vi:5->LP3000+

  • Thinkpad x230 won't power on

    After a trip abroad, my laptop suddenly stopped powering on. I brought it home, connected it to a charger, and then tried turning it on. The power light flashed on but nothing happened, so I held it down to hard boot it, let it rest for a minute, and

  • Do I need to buy a new charger or a whole new iPod

    My iPod will only turn on and charge in my truck, when I try and plug it into my laptop it doesn't charge or turn on. As soon as I unplug it from the charger in my truck it turns off and won't turn back on even if it was fully charged