Open file to print, without getting save prompt

I'd like to be able to open files, print them, then close the file, without getting the save prompt when I try to close the file. I am not altering the document in any way, I am only opening it to print it, then closing it again. Is there an option somewhere that I can go to change this?

Not at all likely. InDesign somehow thinks that the act of printing is changing the file, and that's why you get the prompt. There's no preference or option to train InDesign to see printing as non-editing. You'll just have to ignore it, just like the rest of have for years. Decades, actually, since PageMaker did the same thing.

Similar Messages

  • Cs6 Bridge will not open files in Photoshop cs6, get error message pasted below

    Windows cannot find C:/Program Files (x86)/Adobe/Adobe Photoshop CS3/Photoshop.exe
    I installed Photoshop CS6 Upgrade (64bit and 32Bit) to my PC which ran CS5 Extended.  When I deleted CS5, Bridge
    stopped opening files, whether I double clicked on the file or did Open with:  I get the same error message.

    By uninstalling CS5 you have corrupted file associations.  THey want to open in CS5 now and it is not on machine.
    You can either unistall CS6, do a script cleaner, and reinstall.
    Or you can change an entry in the registry.  Here is instructions from a previous post.
    I installed Photoshop CS6, then found CS5 was still there. I thought, hey, I don't need CS5 anymore, so I uninstalled CS5. then I found out that Photoshop was no longer available in 'Open with' when right-clicking an image...
    So I went into the Registry, HKEY_CLASSES_ROOT\Applications\Photoshop.exe\shell\open\command, and changed the (Default) from "C:\Program Files\Adobe\Adobe Photoshop CS5 (64 Bit)\Photoshop.exe" "%1" to "C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\Photoshop.exe" "%1" (so changed CS5 to CS6) - and now I see 'Adobe Photoshop CS6' in my 'Open with' list when right-clicking an image...

  • When clicking on a pdf attachment in my email I would get a dialog box asking whether to save or open file. I inadvertantly clicked Save with the 'Always do this' option checked. How can I reverse this and get the option dialog box back. Win 7 Ultimate

    How do I get the dialog box back when clicking on a pdf attachment in my email. Made the mistake of clicking save while the check box was ticked.

    From Control Panel | Programs & Features: right-click on Windows Essentials 2012, then select Repair all Windows Essentials programs.

  • Cannot open files while printing

    Does anyone know of a reason why when printing a large pdf (say around 100+ pages) i cannot open another file in the same program? The only way i have found around this is to: open one file to be printed in Reader then once the printing process has begun open another document via Open With and select Acrobat.
    This is slightly more productive than only being able to open one document at a time but only slightly. NOTE* If i open, say 5 documents before i try to print then choose one to print the printing dialog box will appear in each document i have opened; at this point i still cant do anything witht the opened documents but at least i can read them.
    This is really a major hiccup in my daily activites, what other options do i have and is there any way to open a PDF while printing another large one.
    **PLEASE NOTE** There is never an error message that comes up when i try to open a PDF while printing, simply put nothing happens until printing finishes then all of the files will open at once. I had a reccomendation to make sure it wasnt a system resources issue, which I can safely say it is not.
    Your help and observations would be greatly appricated.

    I am still having this really strange problem, anyone have any suggestions? **NOTE** I did try using a different comp to rule out hardware problems, the same thing happens, while printing when you try to open a document nothing happens at all until printing finishes then all of a sudden all the files you tried to open while printing open up all at once. Is there some setting or restriction i dont know about that is forcing me into this? I am printing 100+ pages of paper size Arch D (36X42) so having to wait to do any work on pfd's while this massive print job is going on really sucks. Also the printers are network printers to the information being sent to the printer is off the computer really quickly, so i dont think it has something to do with being lagged out or anything.
    Really any help at all would be great!

  • Download_my_file open file inside browser without dialog

    how do i amend the download_my_file procedure so that it will open a pdf, word etc file inside the browser automatically. i want it to behave just as any site does when i click a pdf, it doesnt ask me to save or open it, it just opens it inside my browser.
    here is my code
    -- set up HTTP header
    owa_util.mime_header( nvl(v_mime,'application/octet'), FALSE );
    -- set the size so the browser knows how much to download
    htp.p('Content-length: ' || v_length);
    -- the filename will be used by the browser if the users does a save as
    htp.p('Content-Disposition: attachment; filename="' || v_file_name || '"');
    -- close the headers
    owa_util.http_header_close;
    -- download the BLOB
    wpg_docload.download_file( Lob_loc );
    anybodys help would be greatly appreciated

    PROCEDURE SHOW_LOB (
                p_id          IN XE_LOBS.ID%TYPE
              , p_show_inline IN PLS_INTEGER DEFAULT 0
      IS
        l_mime_type    XE_LOBS.MIME_TYPE%TYPE ;
        l_file_name    XE_LOBS.FILE_NAME%TYPE;
        l_display_name XE_LOBS.DISPLAY_NAME%TYPE;
        l_lob_size     XE_LOBS.LOB_SIZE%TYPE;
        l_lob_value    BLOB;
        l_user_id      HTMLDB_USERS.USERNAME%TYPE DEFAULT -1;
        l_illegal_msg  Tool.long_msg_t%TYPE;
      BEGIN
        BEGIN
          SELECT mime_type  , file_name  , display_name  , lob_size  , lob_value
            INTO l_mime_type, l_file_name, l_display_name, l_lob_size, l_lob_value
            FROM XE_LOBS
           WHERE ID = p_id;
        EXCEPTION
          WHEN NO_DATA_FOUND THEN
            Pkg_Pragma_Core.auto_log_error('fnc "SHOW_LOB"!');
            RAISE Tool.MY_FORCED_EXCEPTION;
          WHEN OTHERS THEN
            Pkg_Pragma_Core.auto_log_error('fnc "SHOW_LOB"-2. when others)!');
            RAISE Tool.MY_FORCED_EXCEPTION;
        END;
        -- Set Up Http Header
        -- Use An Nvl Around The Mime Type And  If It Is A Null, Set It To
        -- Application/octect - Which May Launch A Download Window From Windows
        Owa_Util.MIME_HEADER(NVL(l_mime_type,'application/octet'), FALSE );
        -- Set The Size So The Browser Knows How Much To Download
        Htp.P('Content-length: ' || l_lob_size);
        IF p_show_inline=1 THEN
          Htp.P('Content-Disposition:  filename="'||l_file_name||'"');
        ELSE
             -- the filename will be used by the browser if the users does a save as ... extension work
          Htp.P('Content-Disposition:  attachment; filename="'||l_file_name||'"');
        END IF;
        -- Close The Headers
        Owa_Util.Http_Header_Close;
        -- Download The Blob
        Wpg_Docload.Download_File( l_lob_value );
      EXCEPTION
        WHEN Tool.MY_FORCED_EXCEPTION THEN
          htp.P(Tool.XE_LANG_MESSAGE(Tool.others_error_msg_user,Tool.others_error_msg_user_en)||' Back');
        WHEN OTHERS THEN
          Pkg_Pragma_Core.auto_log_error('fnc "SHOW_LOB"-when others error (glavni)!');
          htp.P(Tool.XE_LANG_MESSAGE(Tool.others_error_msg_user,Tool.others_error_msg_user_en)||' Back');
      END SHOW_LOB;If "p_show_inline" is 0 then save as dialog is shown, else if p_show_inline=1 then inline presentation of lob (in browser-that is what you want!)
    XE_LOBS is table where lobs are saved:
    XE> desc xe_lobs
    Name                                                  Null?    Type
    ID                                                    NOT NULL NUMBER(38)
    STATUS                                                NOT NULL NUMBER(38)
    MIME_TYPE                                                      VARCHAR2(128 CHAR)
    FILE_NAME                                                      VARCHAR2(255 CHAR)
    LOB_VALUE                                                      BLOB
    LOB_SIZE                                                       NUMBER(38)

  • Open file - Search word - Copy word - Save file with word found

    I have a little problem:
    1 .- I need to open a name.pdf
    2 .- Search (Find) for a word 2009NNNNNN
    3 .- Copy 2009NNNNNN
    3 .- Save the file with your name_2009NNNNN.pdf
    Can you help? Thanks
    ''WHY NOT WORKING''
    SendKeys "+^(F)" ' lanzo la secuencia ''buscar'' mediante mayúsculas (+) , control (^), y la letra F
    SendKeys "200911111" ' lanzo la búsqueda de la parte del fichero 200911111
    Application.Wait Now + TimeValue("0:00:05") ' hago una pausa
    SendKeys "{ENTER}" ' lanzo la tecla intro con la cadena {ENTER}
    SendKeys "^(c)" ' copio la cadena que por defecto se marca al completo ejemplo 200911111***
    SendKeys "+^(s)" ' inicio el salvado del fichero
    Application.Wait Now + TimeValue("0:00:05") ' hago una pausa
    SendKeys "{END}" ' me posiciono al final del nombre del fichero
    Application.Wait Now + TimeValue("0:00:05") ' hago una pausa
    SendKeys "{LEFT}{LEFT}{LEFT}{LEFT}" ' Me pongo justo delante del punto del pdf osea .pdf
    SendKeys "(_)"
    SendKeys "^(v)" ' Pego la cadena anteriormente buscada
    Application.Wait Now + TimeValue("0:00:05") ' hago una pausa
    SendKeys "{ENTER}" ' Pincho intro para guardar
    Application.Wait Now + TimeValue("0:00:05")
    SendKeys "^(q)" ' Cierro la ventana del .pdf
    http://www.ayudaexcel.com/foro/macros-y-programacion-vba/2785-extraer-dato-de-un-archivo-p df.html#post12531

    ¡Tanks!
    I understand that you ask me, I want. If,
    I want the search interface of the word and what needed to carry out the program.
    I do not know where to download the programming manual for Adobe. Do you know?
    Thanks for answering
    Entiendo que me preguntas, qué quiero yo . Si,
    quiero la interfaz de búsqueda de la palabra y aquello necesario para realizar el programa.
    No sé dónde bajar los manuales de programacion para el Adobe. ¿Tu sabes?
    Gracias por contestar

  • I can't open files to print such as insurance company or bank statements

    When I have an bank account open the statements won't print. It say's to move to desktop prior to attempting to open which I can not do

    Run disk utility on your hard drive to repair the permissions and verify the hard drive. 

  • Suddenly I can't open a PDF! I get a prompt to enter a serial number. What is this about?

    Also, myt Adobe Audition application won't open! I need to fix this fast. Is this a result of moving from purchased applications to CC?

    You can also try Creative Cloud applications ask for serial number
    Regards
    Rajshree

  • I'm trying to download, but when it goes to section after file is downloaded, i get a prompt for run as what user

    I'm trying to download Firefox, but when it asks for what user to run under it asks for a password that does not exist. It defaults to Administrator, which I am.

    Does it shows a error message? Would you add any image to this post for a better explanation?

  • Print without opening the file (using two Adobe versions)

    I used this a lot but recently it's not working.  Right click on the file, hit Print from the drop down and the file magiclly prints. (this magic saves a lot of time)
    Now, when I right click and hit print I get a "Open With" dialog box, forcing me to open the file and then print.
    I have Adobe Acrobat 6.0 Pro and also Adobe Reader 9.1 installed.  I have reader because many websites require 8.0 or higher for pdf browser viewing.  I am guessing the problem is somewhere in the file type association but don't know how to fix it.
    It used to work for me but after some update it's not workinig no more
    Thanks for your help!!!

    If you have a postscript printer or rip which has the ability to create hot folders to link to the printer queues you could simply drag-n-drop and PDL (page description language) file like PDF, PS, EPS to that hot folder to initiate printing. Again, very dependent on your printer/rip device.

  • Error 'Unable to open file' when downloading SAP Query to Excel

    Hi all
    I'm running a SAP Query which is set to download straight to a spreadsheet (Pivot Table / Microsoft Excel).  Intermittently it does not work -  apparently at random (at least, I've can't recreate the error at will).
    It does one of the following:
    - Works ok, and creates the pivot table
    - Gives an Excel error message 'Unable to open file', then returns to the 'save the data in a spreadsheet' popup when enter is pressed on the error.
    - Does not issue error message, just goes to the 'save the data in a spreadsheet' popup.
    In the last two cases, the excel pivot table sheet is not created.
    Has anyone seen anything similar, or have any idea as to what is causing the problem?
    Any help gratefully received!
    Not urgent as I've found a way round -  further testing seems to show that I don't get the error is Excel is already open - but in the past I've run many SAP query downloads without needing to open Excel first.  I suppose it's possible that this is just something to do with the Excel setup at the user site
    Message was edited by:
            E Gregory

    Hi,
    Ensure that file name with same name and in same path should not be open while saving the data.
    Award if it helps.
    Jogdand M B

  • Saving a Mac Word file by printing to PDF not possible anymore

    I have a  old version of Office v.X for Mac that will no longer allow me to save files by printing them as  save to PDF. I think the problem occured when I switched to Mac OS X 10.6.8. Does anyone know what the problem maybe and how I can fix it?

    Try opening up Font Book from the Applications folder. From there highlight all the fonts and try to validate them. Remove any duplicates as well.

  • Error when opening files on fileserver

    I can't open files in CS5 from our fileserver.  CS3 and CS4 can open files fine, but I get a message: "cannot open the document . . . You may not have permission or the document may be open already."
    If I try opening a file on the fileserver in CS5, I get the  message.  When I open the exact same file, copied to a local disk, it opens fine.
    I'm on Windows 7, ID 7.0.2, the server is MacOsX SnowLeopard Server with system all up to date.
    Any help would be much appreciated . . .

    The case was that the Sever was mapped as a fileserver, but after mapping it with drive letter it works fine...
    Thanks for all your help...

  • CS6 Won't open files - Program Error

    When I try to open files in CS6, I get an error "Could not complete your request because of a program error."     I have restarted PS and rebooted the machine.
    Running Mac OS 10.6.8
    2.8 GHz   Core i7
    12 GB Ram
    The same files open fine on CS5.

    Chris,
    There are no log files in the settings folder.
    Curt,
    I have the "Open in CS6" available in Bridge.   When I open a jpg from Bridge, same PS error.  If I open a CR2 in ACR, ACR is fine, but when I tell it "open image" (in ACR), ACR closes, and nothing happens in Photoshop.  No message.  If I double-click a CR2 image from bridge, I get the PS error.
    Howard,
    Same error regardless of file type.
    Thanks for the help.

  • Reader does not open files. give and error message that it has to close. uninstall will not work.

    Need help getting reader xi to open files or uninstall. Getting error message that it has to close due to and error when file is being opened. Uninstall give an unrecognized patch message. can you help with this?

    On which OS are you working? Is your Reader updated to the latest?
    If you are on Windows you can use AcroCleaner tool which will remove Reader 11 from your system.
    Reboot after clean up and then try reinstall from here

Maybe you are looking for