InDesign "Save As" dialog box for every operation in INDB book file; updating page numbers, etc.

So I haven't used INDB files in awhile in InDesign, and today was the first time I attempted to adjust an old INDB (created originally with CS5).  For every operation of adjusting the book file, such as updating page/section number or adding/removing an INDD file I get a Save As dialog box for each constiuent INDD file.  This is quite annoying since the book has lots of INDDs, and I have to click through the tedious save as with each.  I previously worked with INDBs in CS5, and never encountered this, there was no need to save each INDD in the book just to update the page numbers.  I tried creating a new INDB in CS5.5 thinking that maybe it was because I was working from a file created with an older version of InDesign.  Does anyone know if there is a way to suppress the Save As dialog?  Another thing I noticed that is supremely frustrating is that this new build of InDesign doesn't default to saving the file in its original location, and I have unwittingly ended up saving files in other places, only to later realize it.  I am using InDesign CS5.5 Ver. 7.5.2 on Mac OSX 10.7.3  Any help is greatly appreciated. 

It will only happen once (and frankly, what you are doing is a very bad idea).
When you open the old book in CS5, you are converting to the new format. All of the legacy files also need to be converted, even if added to a new book in CS5.5, hence the Save As since ID will not overwrite the old versions until you tell it to (and that's the bad idea). I strongly recommend (though it's too late for any books you've already updated and overwritten) that you either continue to edit in the old version, or that you take the time to open each file in the original version if it's older than CS5, then export to interchange format (.inx or .idml, depending on version), open those files in CS5.5, save with new names so you don't overwrite anything, then add to a new book and proceed.
One of the reasons I recommend this seemingly time-consuming approach is that there are too many reports (another one yesterday) of some sort of problem that pops up late in the editing cycle when converting legacy files to CS5/5.5 by opening them directly and saving. This is a belt and suspenders insurance approach, and is far less labor intensive than starting over, which might end up being your other option down the road if something goes wrong.

Similar Messages

  • How to customize the Save as dialog Box for saving Web Query???

    Hello,
       we are usnging SAP NW Portal and BI 7.0 (SP14).
       We have published BI web queries in the Portal and it works just fine, now when the User select the Button "Save As" in the Context Menu of any web query, this will open a new Dialog Box name "Save As Dialog Box", so from this dialog box the user can select where to save the query, he/she have 3 options* to save qureies: My Favorites, Bex Portfolio and MyPortfolio, this also works fine.
      My Quetsion is: How can i customize the View of this "Save As" dialog box, so at the end the User can only select 2 Options:  My Favorites + MyPortfolio. So how to hide the Tab:  Bex Portfolio in the Dialog Box.
    Points for any good answer.
    Many Thanks and Regards,
    Nazih
    Edited by: Nazih Kayyali on Feb 3, 2009 4:04 AM

    In what you have posted, there is no reason it shouldn't work the same way in Acrobat 9. I would recommend that you submit your complete application to developer support.

  • Invoking a save as dialog box for known mime type

    What i need is, when the user clicks on the link to download the file it has to open up the standard file save as / open dialog box. I tried using the Content Disposition method of doing it as specified in previous posts but it prompts the save as dialog box as soon as the page loads. I don't want to do that way. i want the dailog box to appear only on clicking the <a href> link.My servlet code which writes out the html is given below. when the user clicks on the sane link gicen in my code, he should be able to save the image onto his local disk. please let me know how can this be done?
    package JRclient;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.io.*;
    public class totalnorm_zoom extends HttpServlet{
         Rconnection c;
         public void doGet(HttpServletRequest request,HttpServletResponse response)
         throws ServletException, IOException
              try{               
                   c=new Rconnection();
                   c.voidEval("data<-read.table(\"table50.txt\",header=TRUE,sep=\"\t\")");
                   c.voidEval("totnorm<-function(x,y){scale<-sum(x)/sum(y);xlab<-colnames(x);ylab<-colnames(y);x1<-x[[1]];y1<-scale*y[[1]];plot(x1,y1,xlab=xlab,ylab=ylab,col=6,col.lab=4);}");
                   c.voidEval("jpeg(\"plot.jpg\")");
                   String param1=request.getParameter("row");
                   String param2=request.getParameter("col");
                   int row=Integer.valueOf(param1).intValue();
                   int col=Integer.valueOf(param2).intValue();
                   c.voidEval("totnorm(data["+row+"],data["+col+"])");
                   c.voidEval("dev.off()");
                   c.close();
                   PrintWriter out=response.getWriter();
                   response.setContentType("text/html");
                   out.println("<html><head></head><body><form><img src=\"C:\\Program Files\\R\\rw2011\\bin\\plot.jpg\">"+"<center><a href=\"http://localhost/R/rw2011/bin/plot.jpg\">Save</a></form></body></html>");
                   out.close();
              catch (RSrvException e) {
                   // TODO Auto-generated catch block
                   e.printStackTrace();
    }

    Where did you get this command from? There's no such thing in Acrobat
    JavaScript as a Save object or an execevent method.
    Also, there's no need to save a file in a batch process. It happens
    automatically. If you really want to do it, use the saveAs method of the
    Document object. Have a look at the reference files to see how it's done.

  • How to make a dialog box for a user to choose a file from disk

    Hi there
    Is it possible to make a dialog box, for a photoshop user, to choose a txt file, to be process by my javascript ?
    I have a txt file with all the names and locations of psd files i want to process by photoshop. I have ex. 100 out of a folder with 250 images.
    If anyone have a shot "code sample" how to select a file - i will be happy.
    /T

    Here is an example of selecting a text file...
    var dlg=
    "dialog{text:'Script Interface',bounds:[100,100,500,220],"+
    "testFile:EditText{bounds:[10,40,310,60] , text:'' ,properties:{multiline:false,noecho:false,readonly:false}},"+
    "Browse:Button{bounds:[320,40,390,61] , text:'<<' },"+
    "statictext0:StaticText{bounds:[10,10,240,27] , text:'Please select Text File' ,properties:{scrolling:undefined,multiline:undefined}},"+
    "Process:Button{bounds:[10,80,190,101] , text:'Process' },"+
    "button2:Button{bounds:[210,80,390,101] , text:'Cancel' }};"
    var win = new Window(dlg,'test');
    win.center();
    win.testFile.enabled=false;
    win.Browse.onClick = function() {
    selectedFile = File.openDialog("Please select TEXT file.","TEXT File:*.txt");
      if(selectedFile != null) win.testFile.text =  decodeURI(selectedFile.fsName);
    win.Process.onClick = function() {
    if(win.testFile.text == '') {
      alert("No text file has been selected!");
      return;
    win.close(1);
    selectedFile.execute();
    win.show();

  • Save/open dialog box for FileWriter

    Hi,
    I have a JSP action link with onclick='onClickExport', defined in an underlying class file.
    The 'onClickExport' method in the class creates a file:
    fileName = "C:\\Temp\\SaveSearchResults.csv";
         File outputFile = new File(fileName);
         FileWriter out = new FileWriter(outputFile);I write results to the file using
    out.write statements and finally close it using out.closeAs you might have noticed the path for the file is hard-coded as C:\Temp, so the file gets written and downloaded there. Can I instead have the open/saveas dialog box pop-up where a user can type filename and select a location for the file to save...? (like content-disposition)
    Can somebody point me how to do that...
    thanks,
    nik

    JFileChooser can't be used with JSP. If invoked in Java on the server side, then the display will be on the server, and presumably, someone is not sitting there waiting for clients to want to save files remotely.
    On the client side, well, there's always applets, but that has nothing to do with JSP. And it would only be able to browser the local client, so a signed applet would be needed.

  • Strange folders appearing in "Save As" dialog box

    Hello
    *Description of Problem or Question:
    If you open a Web Intelligence report that has been sent to you from your Inbox I have noticed there are "extra" folders I wouldn't expect to see. As an administrator and can see the following extra "strange" folders:
    Categories
    Inboxes
    Internal Storage Folder
    Personal Categories
    Root Folder
    Temporary Storage
    User Folders
    (Please see attached screenshot)
    As a non-admin user I can only see the extra folder "Root Folder".
    This does look odd for a non-admin user as they see the same folder structure twice. E.g:
    Public Folders
    >>Finance Reports
    >>Operations Reports
    >>Root Folder
    >>>>>Finance Reports
    >>>>>Operations Reports
    Any ideas on how to hide these folders from the "save as" dialog box?
    It does only seems to happen if a report is opened from a users Inbox.
    *Product\Version\Service Pack\Fixpack (if applicable):
    BO XI 3.1 SP3
    *Relevant Environment Information (OS & version, java or .net & version, DB & version):
    Windows Server 2008 R2, Java, Oracle 11g
    *Sporadic or Consistent (if applicable): Consistent for SP3, does not appear on SP2
    Steps to Reproduce (if applicable):
    Send a webintelligence report to your inbox
    Open Webintelligence report sent to inbox in Infoview
    Click Document --> Save As

    Sorry I wasn't clear! When I try to save a 'PDF' file the "save as" dialog box opens. At the bottom the 'file name'is listed and below that it says, "save as type". You then pick what file type you want, like Adobe Reader for PDF. It used to say Adobe Reader as one of the choices but when I downloaded "Rocket PDF" it only says "Rocket PDF or "all files" as the only choices to save the document, no more Adobe Reader as a choice. I have deleted Rocket PDF and under 'default programs (Start button) I have set the "Pdf. files to open with Adobe Reader. Rocket PDF is still listed or' all files', nothing else! How can I get Adobe Reader as a choice back in the 'save as type' box?
    Thanks for any help.

  • 'Save as Type' box in 'Save As' dialog box

    I recently downloaded 'Rocket PDF' and now if I try to save any PDF. document, the only choices in the 'save as type' box are 'Rocket PDF' or 'All files'. No more 'Adobe Reader PDF. appears as a choice. I uninstalled 'Rocket PDF' and in the 'Default changes' I put 'Adobe Reader as the default to open 'PDF.'. Still, the only choices on the 'save as type ' are 'Rocket PDF' or 'All files'! How do I get Adobe Reader PDF' back as a choice in the 'save as type' box and delete 'Rocket PDF' as a choice?

    Sorry I wasn't clear! When I try to save a 'PDF' file the "save as" dialog box opens. At the bottom the 'file name'is listed and below that it says, "save as type". You then pick what file type you want, like Adobe Reader for PDF. It used to say Adobe Reader as one of the choices but when I downloaded "Rocket PDF" it only says "Rocket PDF or "all files" as the only choices to save the document, no more Adobe Reader as a choice. I have deleted Rocket PDF and under 'default programs (Start button) I have set the "Pdf. files to open with Adobe Reader. Rocket PDF is still listed or' all files', nothing else! How can I get Adobe Reader as a choice back in the 'save as type' box?
    Thanks for any help.

  • How to Display save as dialog box.

    Hai all,
    am having a jsp page in which i display some values in Table. if i click a button it should show a save as dialog box, from that i should give a file name then all the content must be save in that file name. Any one give idea to open save as dialogbox from button click.
    Thanks.

    You can t do what you want.
    But you can do something similar..
    In stead of save as do a submit to a servlet and have you servlet download the file to the client
    download by setting your contenttype to
    response.setHeader("Content-Disposition", "attachment; name=\""+filename+"\"; filename=\""+filename+"\";");

  • Why does it take so long for the Open, Save, or Save As Dialog Boxes to Open?

    I'm having a problem throught CS6 with the Open, Save, or Save As dialog boxes not opening for a period of time after clicking on the desired functions.  It can take over a minute just to get the Open dialog box up to browse for a file.  Eventually, the dialog boxes open, but during the time that it's trying to open, the program is unresponsive.  It is happening with all of my CS6 programs.  I have unistalled and reinstalled with no fix.  The programs are updated.  Anyone else having this trouble?  Any solutions?

    Thanks for your response.  The system is a Windows 7 64-bit system with 4GB RAM installed.  I am not trying to save anywhere in particular.  By default, it would open to the user's documents, and does eventually, but it currently just sits for about a full minute before doing anything.  This machine was saving properly when CS6 was first installed about 5 months ago. 
    I've checked for unconnected network drives. I've also renamed the Illustrator preferences file based on a reccomendation that I found elsewhere.  However, neither of these helped.
    I can provide screenshots or anything else that's needed.

  • How can I get the "Open" and "Save As" dialog boxes to open at larger than their default size?

    How can I get the "Open" and "Save As" dialog boxes to open at larger than their default size?  I would like them to open at the size they were previously resized like they used to in previous operating systems.  They currently open at a very small size and the first colum is only a few letters wide necessitating a resize practically every time one wants to use it.  Any help would be appreciated.

    hi Prasanth,
    select werks matnr from ZVSCHDRUN into table it_plant.
    sort it_plant by matnr werks.
    select
            vbeln
            posnr
            matnr
            werks
            erdat
            kbmeng
            vrkme
            from vbap
            into table it_vbap
            for all entries in it_plant
            where matnr = it_plant-matnr and
                  werks = it_plant-werks.
    and again i have to write one more select query for vbup.
    am i right?

  • Save as dialog box expanded to full screen, edge arrows flicker and will not pull the edges in.

    This problem presented itself out of the blue. The Save As dialog box expanded to full screen, and although the arrows that appear when the mouse cursor is over the edge of a window are present, they flicker and do not grab the edge to pull it in. Every other window on the computer does not have an issue like this. Restarting Firefox or the computer does not eliminate the problem. I am hoping that there is a settings file somewhere that the numeric value for the dialog box size can be changed, since I do not want to completely reinstall the browser.
    As a side note, if the browser has been running many downloads for a while, it will usually start failing to display information, and eventually will get to a point where the Save As box flickers for an instant and disappears and the entire browser becomes unresponsive for an hour or more. Downloads continue (including the one that it froze up on, albeit as a randomly named file in User...Temp), but it is not possible to restart the browser until the downloads complete (which in some cases can be several hours). Usually I revert to using IE11 until I can restart Firefox.
    Perhaps one of my strongest dislikes of Firefox though is the issue with its resistance to copy and paste operations in the Save As dialog box. Most websites offer files with cryptic and even identical names for different files, so renaming files is a critical operation if one is to keep track of and later identify the files one has. A problem unique to Firefox, attempts to highlight and paste in a better file name usually are met with a refusal to paste, a stuck context menu that can take a minute of clicking to clear, repeated jumping to the end of the file name, and other similar issues. I have encountered this problem repeatedly on different computers and different operating systems, it is a problem I have only ever encountered in Firefox.

    cor-el,
    I kept forgetting and procrastinating about following your instructions, since I have internet access only for limited amounts of time and usually I am busy with important tasks when I am.
    Out of the blue, the problem corrected itself (the Save As box started to open full screen, then shrunk down to a normal size and the edges can now be dragged to a custom size).
    Even the copy and paste problem in the filenaming area seems to have been less troublesome lately even though there have been no updates to Firefox in a few weeks.
    Even though I marked the solution as not helpful, the problem has in fact been resolved. I will save the solution instructions in case the issue returns.

  • Multiple programs crash using a Save As dialog box, suspected cause is interaction of machine with Robohelp

    Hi all,
    Apologies if this is in the wrong area, it could also be related to RoboSource Control.
    I have a problem with my entire system. I am getting regularly kicked out of programs when I try to add an attachment or save something. It occurs when a standard Windows 'Save As' or 'Open file' dialog box is opened to browse to a file path, and this regularly leads to being kicked out of the whole program. This happens in Chrome, all the microsoft office programs, outlook, adobe acrobat reader - everything in fact where I use one of these standard Windows file browsing dialog boxes. The kicking out is pretty indiscriminate - it doesn't happen every time. Sometimes it will take me 5 or 6 attemps to save something or add an attachment, having to reload the program each time. Sometimes, but rarely, it will work first time.
    The only program it doesn't happen in is Roboscreen Capture and Robohelp, which is odd in itself. Both the two other technical writers in my department have both exactly the same issue with their machines, and this never happens to anyone else in the office of about 40 people. The only thing me and the two other technical writers have in common with our machines is that we all have Robohelp and RoboSource Control and Roboscreen Capture.
    We use version control through RoboSource Control with Robohelp, this could be the problem. We are also raising this issue with our IT department.
    Can anyone on here give a helping hand to point me in the right direction?
    Many thanks,
    Matt.

    I've been hanging around these forums for about ten years and that's a new one on me. It's only happening to people with Rh but it doesn't happen in Rh, just about everything else.
    Are you maybe using a very old version of Rh on an operating system it wasn't designed for? I would doubt that as you would be seeing many more problems. What operating system are you using?
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • How can I add form field value to the file name in save as dialog box

    I do not want the form to be saved automatically, just want the form to auto populate the "file name" only.
    A little background on the forms I want to use:  My company has 70 retail outlets, I'll use one of our pdf forms called an "Incident Report" as an example.  I would like for a store manager to be able to complete the form, then email the form to the main office (I already have javascript to add field values and form name to the email subject line), once the main office receives it, I want for them to be able to file the pdf electronically on our server.  We have mutliple forms that we use so I do not want any of the forms to automatically save anywhere, (at this time anyway) I just want the office personnel to be able to click "save as" (or whatever they will need to click) and the form automatically add certain field values from the pdf they have received, of which will be different each time the form is sent to the office (Date, store #, employee name etc.) in addition to the name of the form in the "File name" of the "Save As" dialog box.  The main office employees will decide into which server file the pdf should be saved.
    I'm using Acrobat 8 professional, the stores and office personnel use Adobe reader.
    One little note:  We currently print and file a lot of paper on a daily bases, as soon as I can get this to work, we are going green.
    Me and a lot of trees in this will really apprecitate any help you can give with this!  :-)

    You might want to take a look at the document "Developing Acrobat Applications Using JavaScript" (js_developer_guide.pdf) which is part of the Adobe Acrobat SDK, which can be downloaded here. Read the "Privileged versus non-privileged context" (p. 45ff.). You will find an example for "Executing privileged methods in a non-privileged context". Should be almost exactly what you are looking for.
    Small Outline: For security reasons ("the user always has to know what's going on") you are not allowed to use the "Doc.saveAs"-method without the user permission (--> in a non-privileged context). In order to reach the goal of a privileged context you can use a trusted function. You do this by creating a JavaScript file (*.js) in either the Application-JavaScript-Folder (default location on Windows systems: "%ProgramFiles%\Adobe\Acrobat 10.0\Acrobat\Javascripts") or the User-JavaScript-Folder (default location on Windows systems: "%AppData%\Adobe\Acrobat\10.0\JavaScripts"). Add the following content to the new file:
    myTrustedBrowseForDoc = app.trustedFunction( function ( oArgs ) {
         app.beginPriv();
              var myTrustedRetn = app.browseForDoc( oArgs );
         app.endPriv();
         return myTrustedRetn;
    myTrustedSaveAs = app.trustedFunction( function ( doc, oArgs ) {
         app.beginPriv();
              var myTrustedRetn = doc.saveAs( oArgs );
         app.endPriv();
         return myTrustedRetn;
    The developer guide actually wants you to add this content to the existing "config.js" file. I recommend creating a new file, since its easier to deploy in a network. Either way, every client/user who needs to be able to save documents this way, needs this JavaScript Code in his Application/User-JavaScript-Folder.
    Within the Acrobat Document, which you want to obtain a certain file name, you can now use the trusted functions "myTrustedBrowseForDoc" and "myTrustedSaveAs" to store the file. To call the trusted functions and deliver the file name you can either you use a form field (button) or you add a new menu item. Add the following JavaScript Action to the button/menu item and change "Roller Coaster" to the name of the field which contains the value which you want to become the new file name:
    var fileName = this.getField("Roller Coaster").valueAsString;
    try {
         var oRetn = myTrustedBrowseForDoc({bSave: true, cFilenameInit: fileName + ".pdf"});
         try {
              myTrustedSaveAs(this, { cPath: oRetn.cPath, cFS:oRetn.cFS });
         catch(e) {
              console.println("Save not allowed, perhaps readonly.");
    catch(e) {
    console.println("User cancelled Save As dialog box");
    Good Luck!

  • Save As dialog box sort order

    I have a user with Adobe Acrobat 7 Standard installed on Windows XP SP3.  When they go to save a pdf document, the Save As dialog box is in list view and not sorted by folder/file name by default.  So, they have to change to Details view and then change the sort to be by name.  They have to do this every time they save a document.  Is there a way to change this?  They would like the sort order to be by name every time they open the Save As dialog box.

    Hello,
    Can you please follow these steps and provide the value for the configuration 'browser.download.useDownloadDir'
    # In the [[Location bar autocomplete|Location bar]], type '''about:config''' and press '''Enter'''. The about:config "''This might void your warranty!''" warning page may appear.
    # Click '''I'll be careful, I promise!''', to continue to the about:config page.
    Can you please provide the values for the following keys
    #browser.download.useDownloadDir
    #browser.download.lastDir
    Thank you

  • Bug: Navigation: Save As Dialog Boxes in Windows (thus any application) goes to Computer Drive C - instead of Quick Access

    Bug: Navigation: Save As Dialog Boxes in Windows (thus any application) still have its legacy behavior implemented and navigates to a computer drive, by preselecting and letting the user start at Computer > Drive C - instead of Quick Access.
    This is simply a forgotten correction after Quick Access has been introduced that needs to be corrected for Quick Access to work effectively (in a valuable way for the user) with files not just during create and modify operations on files - but also Open
    file - using File Dialog Boxes (although users may use launch instead for Opening files using i.e. Explorer or navigation from shortcuts on the desktop).
    This missing change of File Dialog Box behavior is unintended and now contradicts the new design with Quick Access for faster navigation (so you should not have to start with a scroll and extra navigation to look for Quick Access (contradiction:
    i.e. QUICK Access)
    Please support the new navigation provided by Quick Access intended to give Quick Access - thus Save As must be able to start here.
    For variability, may be provide an overriding option in Explorer>Folder Options>General (if you change the default behaviour in the File Dialogue) to have Save As start at Computer > Drive C.
    ! Remember to do the change for the Common File Dialog as well - used by most widespread software applications in the Adobe software applications portfolio, i.e. Adobe Photoshop CS6

    Thank you for your time and response! Unfortunately, we have the machine locked down pretty tight (they are public use computers that require heavy restriction) and it is set to restrict all drives so access is limited to the local profile. We did try
    testing your method, however, by adding the Desktop as an allowed location in the Office policy (which would not solve the issue for the other applications but was good for a test) using the path %userprofile%\desktop. When choosing that location, it does
    not throw the error but unfortunately, it does not remember like it did for your with the E: drive so it still always throws the error when first loading the dialogue box no matter what I do. If you're able to confirm that this is simply by design and we're
    just expected to inform our users to click through the errors, then I guess that's the accepted answer. Although, do you think that there might be a registry key value that is set after you save to the E: drive for the first time? Maybe we could set that value
    to %userprofile%\desktop if it's doing the redirection after the first save through registry. Thanks again!

Maybe you are looking for

  • The web cam is not found

    hi hope you can help me. happens that when i turn on the lap a message appears saying that the web cam could not be started and suggests to restart. i did it already but the same window is shown. moreover, i cant find the web cam app. model: toshiba

  • Translate to upper case a structure in ecc 6.0

    Hi, How to translate to upper case a structure in sys:ecc 6.0 (unicode) like it was possible in sys:4.7 TRANSLATE s_tab TO UPPER CASE. now I have an error message: "s_tab shall be a character-type". thanks

  • How do I connect my iPhone IOS 8.1.2 to iTunes 12.1

    I have an iPhone IOS v8.1.2 and I just updated my Macboon pro to 10.10.2, and iTunes to 12.1. When I plug in my iPhone then iTunes does not recognize it. I did not have any problems when using the prior software for the O/S and iTunes. Need help conn

  • JDBC -- XI -- IDoc Scenario... IDoc Extension not being created...

    Hi, I hope you can help with this issue... I have a scenario which involves mapping to an IDoc which we have extended. From IDX5 I can see the outbound message from XI and in the XML I can see the extension segments have been properly created. But wh

  • Apple brand VGA connector

    I purchased an Apple brand VGA connector for my iPad2.  When I plug it into the iPad the message that it is an unsupported part pops up on the screen?  Why is this when it is an Apple brand VGA connector/adapter?