CS 6 Document Setup issue

When I open a custom size document (or template) created in CS4 or below into CS6 the document setup shows letter 8.5X11 as the current document size. It does not reflect the custom size.  The actual page size is correct but the document setup dialogue does not reflect the correct dimensions. We noticed this because we have some scripts referencing this value and they were failing.  When the same documents are opened into CS5.5 everything is fine.  This is a new issue to CS6.  Any thoughts on how to correct this?
Thanks,
Brant

All of our envelope template files that are showing the problem today were originally created in CS4 or earlier, some of them maybe as early as INDD 2.0 (and some of those were probably PageMaker templates originally). Most of them had been updated to various versions over the years, and I updated all of them to CS6 .indt files shortly after we started using CS6. But as I opened and re-saved them, I tested each of them by printing to our various presets and they were fine. We have been using the templates successfully (and frequently) since then with no trouble at all.
These were all set up originally as custom-sized documents. I never used the page tool on these in CS5 (and we never had CS5.5).
Today's problem presented itself as I printed to our imagesetter using our standard preset - it sets the Paper Size to "Custom" with "Auto" selected in the Width and Height fields. The "Auto" setting retrieves the values from the Document Setup, and that's when I found that the Document Setup had Letter Portrait as the page setting, even though the document was clearly set up as "Custom": 57p0 x 24p9 (that's 9.5" x 4.125").
Another curiosity: When this problem appears, I am unable to change the document size in the Document Setup at all. No matter which standard size I choose (A4, Letter-Half, CD, whatever), the document doesn't change. So it seems to be corruption in the file itself - where it was introduced is anyone's guess (I guess).
I'm curious if the OP is experiencing the same inconsistent behavior.
-Bill

Similar Messages

  • We are trying to do a Quick payment from payment workbench and getting 'FRM-41830: List of values contains no entries' error for payment document column/field. Payment document setup looks good. Not sure what the issue is.

    We are trying to do a Quick payment from payment workbench and getting 'FRM-41830: List of values contains no entries' error for payment document column/field. Payment document setup looks good. Not sure what the issue is.

    Already gone through following three notes but didn't found resolution.
    APXPAWKB: FRM-41830 When Clicking on Payment Document LOV (Doc ID 1081305.1)
    R12: APXPAWKB: Payment Document Lov Is Empty When Entering A Payment (Doc ID 857587.1)
    R12: Payment Workbench Error: FRM-41830 List Of Values Contains No Entries (APXPAWKB.FMB) (Doc ID 1323875.1)

  • Intercompany billing document setup

    Hi,
          I would like to enquire on intercompany billing document setup.
          We have customized billing type ZIV for intercompany invoice, and ZIG for intercompany credit memo.
           Is is possible to set up the cancellation for each billing type as
              - ZIG for ZIV and
              - ZIV for ZIG
    min

    Hello MIN,
    For practice & understanding or test purpose, this can be ok.
    But, in actual or real time scenario, I don't think it hold good.
    See, you said ZIG is a Credit Memo for Inter-company right?
    How you are going to use it for cancellation?
    As I know, a Credit Note or Credit Memo is a document used to adjust or rectify errors made in a sales invoice which has already been processed and sent to a customer. If you have already sent an invoice to a customer but now need to provide a credit for that invoice, you would send them a Credit Note or Credit Memo. You can think of a credit note as a "negative invoice."
    But not CANCELLATION INVOICE.
    Logically, if you see, there will be a number range issue. So, just visualise, when you have to book an actual credit note, then what you are going to do? And how is you end user and auditor is going to recognize the credit memo?
    For your your purpose of having a different cancellation doc for inter-company sales invoice and credit memo, you can create a Z Cancellation Billing Doc, say, ZIC and assign it to ZIV & ZIG billing Doc.
    Hope it assist you.
    Thanks & Regards
    JP

  • Photoshop CS4 new document dialog issue...

    http://img50.imageshack.us/img50/7835/optionpu6.gif
    Can this Photoshop CS4 new document dialog issue be improved? Info in the pic.

    there's a feature request section at the top of the fourm allen. these kinds of posts should be done in there, so the programmers and engineers at adobe have them all in one place.

  • How do I center the header in document setup?

    I write books and want the title of my book to appear automatically on each page and centered.  When I go to Document Setup I don't find an option for centering.  I shouldn't have to force with spaces my book title to the center.  Where are the setup features with font style, size, center, left, right, etc?

    Ok.  I figured it out.  The problem had to do with the fact that I started the book using an older version of Pages on my Mac Pro and sent it to myself then added it to my iPad.  Once there I update, edit, add-to the story then iDisk the update so I have the most current version.
    To solve the problem I went into the iPad and called up the story in Pages, copied it into memory then created a new blank document.  There I went to the Page Settings and the header/footer were quite visible, including the three cells.  In the header I added the title of the book.  In the footer I added the Page 1 of X, hit Done and returned to the blank page.  I then pasted in the entire book. 
    Now all are fine.  The title header is centered and I have very nice page numbers.
    Thanks for the tip!

  • Script for Document Setup size...

    Hello All,
         I have a request for a script, not sure how one would go about it but here we go.
    An AI CS4 user selects a shape, they then execute a script that...
    Resizes the Document Setup Art Board to one inch larger (length width) than the selected shape.
    Then a rectangle is drawn in the document and is sized the same as the art board.
    Any help would be great!!!
    Thanks in advanced.
    Anton

    All,
         I am tweaking this script again and have run into a road block that you may have a simple answer for.  When I execute this script when selecting a single object it works perfect, if I execute it while selecting a group of objects the script will not apply the spot color to the selection.  The script will however do everything but apply the spot color.  Here is the latest edit. Thanks for any input.
    Anton
    #target illustrator
    function main() {
         if (app.documents.length == 0) {
              alert('Open a document before running this script');
              return; // Stop script here no doc open…
         } else {
              var docRef = app.activeDocument;
              with (docRef) {
                   if (selection.length == 0) {
                        alert('No items are selected…');
                        return; // Stop script here with no selection…
                   if (selection.length > 1) {
                        alert('Too many items are selected…');
                        return; // Stop script here with selection Array…
                   } else {
                        var ccSpotColor = cmykColor(0, 100, 0, 0);
                        var ccCol = spots.add()
                        ccCol.name = 'CC';
                        ccCol.color = ccSpotColor;
                        ccCol.tint = 100;
                        ccCol.colorType = ColorModel.SPOT;
                        var cc = new SpotColor();
                        cc.spot = ccCol;
                        var selVB = selection[0].visibleBounds;
                        var rectTop = selVB[1] + 36;
                        var rectLeft = selVB[0] - 36;
                        var rectWidth = (selVB[2] - selVB[0]) + 72;
                        var rectHeight = (selVB[1] - selVB[3]) + 72;
                        selection[0].parent.name = 'ARTWORK';
                        selection[0].filled = false;
                        selection[0].stroked = true;
                        selection[0].strokeColor = cc;
                        selection[0].strokeWidth = 1;
                        var regLayer = layers.add(); // Creates Regmark Layer
                        regLayer.name = 'Regmark';
                        var tcLayer = layers.add(); // Creates TC Layer
                        tcLayer.name = 'Through Cut';
                        var ccLayer = layers.add(); // Creates CC Layer
                        ccLayer.name = 'CC';
                             var Cutline = selection[0]
                             Cutline.move(ccLayer, ElementPlacement.INSIDE);
                             var ThroughCutBox = tcLayer.pathItems.rectangle(rectTop, rectLeft, rectWidth, rectHeight, false); //This is TC box
                        ThroughCutBox.stroked = false;
                        ThroughCutBox.filled = true;
                        var tcSpotColor = cmykColor(0, 100, 90, 0);
                        var tcCol = spots.add()
                        tcCol.name = 'TC';
                        tcCol.color = tcSpotColor;
                        tcCol.tint = 100;
                        tcCol.colorType = ColorModel.SPOT;
                        var tc = new SpotColor();
                        tc.spot = tcCol;
                        ThroughCutBox.fillColor = tc;
                             tcLayer.visible = false;// Make TC Layer Invisable     Here
                        artboards[0].artboardRect = (ThroughCutBox.visibleBounds);
                        redraw();
                        rectWidth = (rectWidth-72)/72;
                        rectWidth = roundToDP(rectWidth,1);
                        rectHeight = (rectHeight-72)/72;
                        rectHeight = roundToDP(rectHeight,1);
                        var textString = rectWidth + ' x ' + rectHeight;
                        prompt('Copy Me', textString);
    main();
    function roundToDP(nbr, dP) {
         dpNbr = Math.round(nbr*Math.pow(10,dP))/Math.pow(10,dP);
         return dpNbr;
    function cmykColor(c, m, y, k) {
         var newCMYK = new CMYKColor();
         newCMYK.cyan = c;
         newCMYK.magenta = m;
         newCMYK.yellow = y;
         newCMYK.black = k;
         return newCMYK;

  • Items outside of Document Setup size don't appear in PDF

    I have a document which I'm saving as a PDF with Preserve Illustrator Editing Capability selected. When I open this PDF in Acrobat critical elements just outside of the Document Setup size are not showing up. These are critical for the production but unless they are physically touching the Document Setup boundary they disappear from the PDF. How can I get these marks  and other elements to stay in the PDF side of the document without increasing the document size?
    MAC OS 10.5.8
    Illustrator CS3

    Can you post a screen shot I am not certain I understand what you man by essential objects?
    Here I just duplicated the art board and put some extra text on the second artboard and all the marks were on the first and second page of the pdf.
    I don't say you don't have a good point but what I think they should have is a feature like ID but that can be included in the pdf which is a library
    similar to the symbols panel that you could perhaps access fro acrobat for placement but what one can do is to put essential content on a layer and turn it off and export as a pdf as 1.8 acrobat compatible and when opened in Acrobat you can access that content in Acrobat by turning on the layer.

  • Setup issue in oracle projects - classifications link(standard link) is missing in oracle projects page

    Hi Team,
    I have a setup  issue in oracle projects
    I am unable to find the classifications link in oracle projects page.
    Navigation : Go to any projects responsibility-->search for the projects-->click on project -->click on setup Tab : At the bottom of the page, we can see some standard links along with UDA's.
    Here one standard link Classifications is missing.
    Can anybody guide me what setup we need to do get the link.
    Thank you.

    Hi,
    The classifications link is not appearing in your Project's Setup page because, Classifications must have been unchecked in the Project template from which your project has been created. You can find the Project template information by clicking on the Additional Information link in the same Project -setup page. Once you check the classification flag in the concerned Project Template, all future Project creations made out of this template would have the link enabled.
    But for the current project, classification link cannot be enabled.
    Rgds,
    Shan

  • Lockbox - SAP document clearing issue

    Hello all,
    Me along with our functional consultant are trying to figure out a lockbox document clearing issue and hope you could through some suggestions in. We are using FLB2 to clear SAP documents by using different search rules for invoice numbers on FLB2. Right now we have 5 different kinds of search rules based on document number (BELNR) and reference document number (XBLNR). We are able to clear the documents successfully if we have either document or reference documnet numbers in our input file using one of these 5 search rules. But now we would like to clear the documents also based on document assignment number (ZUONR). We tried few assignment numbers in the input file with all 5 search rules but FLB2 is not clearing any SAP documents. We are not sure if we need to have a new search rule specific to clearing the documents based on assignment numbers or how to create more search rules. Could you please suggest us if you have any thoughts on this?
    Thanks,

    Change AVIP-SFELD as ZUONR (for assignment number) and then put actual value you received in lockbox file in field AVIP-ZUONR. That way, payment advice is created for this check with value in assigment field and program will look for matching value in AR in assignment field.
    Also usually if customer is not found based on MICR number or based on match found using Doc# or Ref#, system will update AVIK / AVIP-KONTO as "*", so you need to search for customer number also and update it here.
    Hope this helps.

  • Document Setup question

    How do I get the content on a page to fall to the center when I enlarge the page in the Document Setup? In Indesign 5.5 it would center but in CC it falls to the top left corner.  I realize I could use and Alternate Layout or the Page Tool but then the Document Setup does not change.

    Try to use Page Tool (Re-center) on Master page

  • Document setup bleed lines absent

    I'm setting up the bleed on a set of InDesign CS5.5 documents. When I go to File: Document Setup: More Options, and set the bleed to .125 in, I don't see the little red bleed guide line outside my document outline. I've gone to InDesign: Preferences: Guides and Pasteboard, where I found there is an entry for the bleed guide. I can make guides just fine, I just can't get the bleed guide to show up on my pasteboard anymore.
    All clues welcome.
    Thanks.
    --jody.

    The show/hide guides commands have moved around a bit from versiontoe version, I think, but they shoud still be someplace in the View Menu whatever version you might have. They will not be visible, however, in Preview mode (the pasteboard will also disappear).

  • Document setup - trim

    Is there a way to make the document size snap to artwork, kind of like using the photoshop trim feature, without going into document setup?

    That's one of those tools I've never used before. I'll give it a try.
    Thanks
    french,
    >
    As far as I remember, you may DoubleClick the Artboard Tool, if you 
    have CS4 (maybe CS3, too).
    >
    I am still with 10.
    >

  • Document setup

    please help
    I dont get the document setup in the drop down menu when i tap on the tools logo in the menu bar in numbers on my ipad
    Is there something i need to do before it will show
    I am making really long invoices and i need to be able to set page breaks and print size

    Yes your are right it only shows up in pages .
    I got confused when I was going through the numbers online help , when you make a search in help for number you will also get answers from the pages help mixed with answers from numbers and keynote
    I guess it's a bug that apple will need to fix
    I still have not figured out how to split up my invoices in to seprate pages so .
    Now I have a 8 pages long invoice and I email it to myself as a PDF and print the PDF I end of with 8 pages compressed on to one a4
    I treid all different print settings and nothing works
    Any help would be great

  • Document Setup size change-frame defaults to centering

    In ID CS3, by default I have my Reference Point set to the upper left. I often get a repeat layout that may have a size change. If I originally had a 3"x5" ad and the repeat calls for a 4"x7", I reset the document setup. The frame goes to the left (0 x coord) but centers itself vertically (0.5" y coord). In QuarkXPress, the frame (box) would go to the 0 x and y coordinates. This is how i'd like InDesign to behave. Any way to do that?

    Hi Chinna, thank you for this - this is great - apologies if i didn't make it clear but this displays the info as an alert, and i needed it to appear in the "PageSize" text variable field as per the text in my post. However i think I've managed to work it out (pasted below if you're interested), and it works a treat now, so thank you ever so much for all your help.
    var doc = app.activeDocument; 
    doc.viewPreferences.horizontalMeasurementUnits = MeasurementUnits.millimeters; 
    doc.viewPreferences.verticalMeasurementUnits = MeasurementUnits.millimeters; 
    for(var i =0;i<doc.pages.length;i++)
        pagesize = app.activeDocument.textVariables.itemByName("PageSize"); 
    pagesize.variableOptions.contents = doc.pages[i].bounds[2] + "mm x " + doc.pages[i].bounds[3] + "mm"

  • "Type Options" in "Document Setup" scriptable?

    I would like to create a script (have not done one before) that changes the values of the superscript and subscript size/position in "Document Setup". After looking around, I did not see anything even related to this and only a comment on one site that it probably could not be done. So it this a lost cause? I have many files I would like to convert the values for.
    Thanks.

    I am on windows and tried SendKeys. I am pretty close, but the CNTRL and ALT modifiers don't seem to work. It works in notepad and Word, but Illustrator does not seem accept the modifier. For example, I try to just do a select all here (via WshShell.SendKeys "^a") but it just goes to the direct select tool (keyboard shortcut "a") instead.
    I just created and executed a test.wsf file:
       <job id="vbs">
          <script language="VBScript">
            ' Open Illustrator
            Set WshShell = CreateObject( "WScript.Shell" )
            WshShell.Run "Illustrator"
                   For testing purposes, Word does the select all correctly
                    'WshShell.Run "WinWord"
            ' Give two seconds to load/observe
            WScript.Sleep 2000
            'Activate Select Tool
            WshShell.SendKeys "V"
            'Activate Pen Tool
            WScript.Sleep 2000
            WshShell.SendKeys "P"
            'Select All
            WScript.Sleep 2000
            WshShell.SendKeys "^a"
          </script>
       </job>

Maybe you are looking for

  • How to find how many cursors are opend for application user

    Hi all, how to find out how many cursors are opend for application user and how many are opend for database user Regards, RM

  • When to clone both appl and Db.

    Hi, I have 10g DB and R12.0.6 ebs PROD we use to clone TEST instance as of PROD when developers or consultants request for a TEST instance same as PROD. My Question is. What are the scenario in which : 1)I need to clone only DB and just run autoconfi

  • Tiger won't reboot or archive install

    I have a Powerbook G4 and when I was using it as a firewire drive to a PC, it stopped booting. When I use my TIGER install DVD it says that all my files are there, that it doesn't need repair, and even allows me to choose it as my startup folder 10.4

  • ITunes won't play older purchases says the are not authorized

    SOme of the older TV shows I purchased with this account won't play on my laptop. I looked at the other posts on this issue but not of the advice is relevant. For example, one recommendation to get rid of the "this computer is not authorized" message

  • Help need to generate query

    Hi, I have the following info from a table named X. Col1 Col2 Col3 Col4 IT01 20 01 X IT01 20 50 X IT01 30 01 X IT01 30 50 X If Col4 has value 'X' all the 4 combinations of Col2 & Col3, The result should be displayed as Col1 Col4 IT01 X If the actual