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

Similar Messages

  • What is a good ID5 Document Setup for an epub ebook for the iPhone?

    I'd welcome some help using ID5 to create an ebook that is optimized for displaying on the iPhone.
    In particular, I'm looking for appropriate dimensions of the base page, in pixels, to enter in the Document Setup dialog box.
    From what I've read, 320 x 480 pixels should work well for both the iPhone 4 as well as previous versions.
    Is that accurate?
    The Setup page also includes boxes for Bleed and Slug. Should any values be entered there, or should they remain zero?
    Thanks for the help.
    -- Mike

    On InDesignSecrets David Blatner lays out the Good, the Bad, & the Ugly facts in Best Document Size for EPUB Export:
    function(){return A.apply(null,[this].concat($A(arguments)))}
    This is a great question because it seems like there should be… but the truth is that there isn’t. The reason there isn’t is important: You don’t lay out an EPUB “ebook.”
    Since you got off with a bad start, you might want to invest in your background material; either new book in New InDesign-to-eBook Resources should be good for starters.

  • LoginModule with JAAS, setup question for Frank Nimphius

    Hi Frank,
    i am trying to use a custom LoginModule in conjuction with the setup procedure in your "J2EE Security in Oracle ADF Web Applications" white paper. Have you done this before? can you provide roadmap for additional/alternate setup steps needed to use a LoginModule?
    this is my original post from early this week:
    JAAS Setup question
    thanks,
    brenden

    Brenden,
    please refer to the OC4J security documentation which si a part of the Oracle Application Server documentation that can be looked up online here on OTN. Custom LoginModule configurations require OC4J 9.0.4. In addition, this feature also only works with the jazn-data.xml provider and not with OID.
    From the perspective of this whitepaper, the LoginModule will be used by the OC4J container to authenticate users and thus should not require any change in teh paper.
    I haven't yet had the time created an example and document that showcases how to do this. Hopefully christmas will give me some rest to look into this.
    Frank

  • 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)

  • 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.

  • 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

  • Document Resizing question - InDesign CC

    In previous versions of InDesign that I've used, if I had something centered on a 12" x 18" page (so centered at 6" x 9"), I could decide to change the document setup size to a different sized paper, for example 13" x 19".  When I would do that, it would basically add 1/2" to all 4 sides evenly and my art would remain centered with a new point of 6.5" x 9.5".  When I do this in InDesign CC, my artwork stays at the 6" x 9" and is no longer centered.  Is there a preference setting or something I can do to fix this and make it add or subtract my new page size evenly to keep my art centerd?? 
    I'm using a Mac, OS X 10.6.8.
    Thanks in advance!

    A discussion like this had been posted before, and as I do research, I also found out that some Adobe InDesign users is already aware of this. A related topic for this one is here:
    http://forums.adobe.com/message/5445588#5445588
    And other website:
    http://idsecrets.wpengine.com/resize-page-from-upper-left-corner.php
    So, lets just hope that adobe include a fix for this since adobe is already working out an enhancement since InDesign CC is also sluggish compare to adobe InDesign CS6.

  • 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>

  • I can't find document setup under file in CS5. Help!

    I've looked everywhere...even in the Keyboard Shortcuts and menus, and it is not hidden. It is nowhere to be found.  Help!

    I dont know what specific settings you are looking for under the "old document setup", but here is a few options with the NEW look of CS5/CS6:
    To create a new document completely:
    File >New
    or:
    under Image> Image size:
    you can alter the size of the image you opened in Photoshop, as well as the document size.
    or:
    under image>canvas size, you can expand the canvas to a new size.
    I hope this is what you were looking for, if not just reply here to this post about a specific setting you seem to be missing.
    -janelle

Maybe you are looking for

  • Joining line paths in CS5

    Hi, I am working on a line art project and trying to figure out how to join an endpoint on one path to another path. Here is pic of what I am trying to do: http://imageshack.us/photo/my-images/862/screenshot20111215at150.png/ Is there a way to join a

  • SMQ1 purpose

    Hi, What is the purpose of cleaning the SMQ1,SMQ2,SMQS? While upgrading why it has to be deleted? Please let me know the reason. and if there we dont do, what will happen? Thanks in advance Savitha

  • How to monitor errors in timesten

    Hello DB experts, I have cached one table in timesten. I am inserting records in timesten.those records are successfully inserted in Timesten. we are inserting records in Timesten through sequence. These data are not replicated in oracle.it has been

  • Install problems with CC and LR5 CC

    The CC install has Photoshop CC listed and is install it but I don't see LR CC.  How do I install the CC version of LR5?   I'm on a 6 core MacPro tower running OS 10.9 and the full orig versions of PS6 and LR5 are already installed.

  • HOWTO: Perform a Calculation on One Row of a Query

    Use this method if you can't perform the calculation at the entity object level--for example, if the calculation involves columns from more than one table, involves transient attributes, or if your view object is pure SQL-based (i.e., not based on an