Indesign cc page number sequence

I am using indesign cc! I want to change the page number sequence. Now we create the page number is auto setting left to right! But how can I change the view sequence right to left? Before I use cs5 it have the button on doc setting, now no this button, how can I do??

I think this is ME feature.
You can download indesign ME version, open the Creative Cloud app on your desktop. Then go to Preferences (On the top right corner) and under the "App Language" dropdown, select the version you want. Hebrew or Arabic that support english.

Similar Messages

  • Place multiple InDesign document pages (ImportedPages)

    Hello,
    I need a way to place multiple pages from an InDesign document in much the same way as the sample PlaceMulitpagePDF.jsx does but with InDesign documents rather than PDFs.
    The following is the critical line where the PDF page number to import is set:
    app.pdfPlacePreferences.pageNumber = myCounter;
    What is the equivalent command for setting the InDesign document page number when choosing a page to import?
    I have tried using:
    Application.ImportedPageAttribute.pageNumber
    but without result.
    TIA

    Why, thank you Mr. Schneider!
    I am embarassed to say that my problem was a couple of typos, (reading the Zanelli script made that obvious to me). The command should have been:
    app.importedPageAttributes.pageNumber
    Note the lowercase "i" on "imported" and the "s" after "Attribute."
    Your help is very much appreciated!

  • Can you tell me how I can ask for help with the following Indesign question:  I am a new Indesign user and a Creative Cloud member.  I was using the Window/Pages drop down window to view my pages alphabetically or by page number and also to determine whet

    I am a new Indesign user and a Creative Cloud member.  I was using the Window/Pages drop down window to view my pages alphabetically or by page number and also to determine whether or not my JPEG files were sufficiently HI-Res for the printer.  I don't know how I did it but somehow the window has changed so that now it does not have the alphabetical/numerical/Hi-Res information.  It just shows the pages in a two page spread in numerical order.  How can I restore the window so that I will be able to view the information as I did previously.
    Your help will be appreciated,
    Don Unwin
    [Personal Information Removed]

    The pages panel is not the place where you see this information.  You can customize the Links panel to show all sorts of things, including the page number, effective and actual ppi, and whether the link is OK or needs updating.

  • Return PDF page number from the name of the link in InDesign CS4 JS

    Hi, I need to return pdf page number of the linked file in InDesign.Here what I have so far, but my FilePath comes back undefined, and I am not sure if pageNmuber line would work:
        var myArtBack = app.activeDocument.pages[1].rectangles[0].graphics[0];
        var myArtBackName = myArtBack.itemLink.name;
        var myBackFilePath = myArtBackName.filePath;
        var myPageNumber  = myBackFilePath.PDFAttribute.pageNumber;
    Your help is highly appreciated.
    Yulia

    Your first problem is:
    var myBackFilePath = myArtBackName.filePath;
    That should be:
    var myBackFilePath = myArtBack.itemLink.filePath;
    What you should have done is something like:
    var myLink = myArtBack.itemLink;
    var myPageNumber = myLink.parent.pdfAttributes.pageNumber;
    Maybe you need the file path for some other purpose, but that's not the route to information about the PDF graphic (the parent of the link) which has the pdfAttributes property -- property names always start with a lowercase letter.
    Dave

  • Is there any way to link page number with the reference page number within text in InDesign CC and CS6?

    Is there any way to link page number with the reference page number within text in InDesign CC and CS6?

    You should ask in InDesign
    The Cloud forum is not about using individual programs
    The Cloud forum is about the Cloud as a delivery & install process
    If you will start at the Forums Index https://forums.adobe.com/welcome
    You will be able to select a forum for the specific Adobe product(s) you use
    Click the "down arrow" symbol on the right (where it says All communities) to open the drop down list and scroll

  • Page number of linked textframe in indesign document

    Hi,
      My indesign document has linked pages 1 - 10 (ie., linked textframes).  I want to take page number of selected text from 5th page., which textframe is linked textframe of 1st page.  When i use the following code for findpage, its returning the page no 1 instead of 5. 
    Kindly reply for me...
    var page = findPage(app.selection[0]);    // selection is a word/para
    function findPage(theObj)
        var thePage = theObj;
        if (thePage.hasOwnProperty("baseline"))
            thePage = thePage.parentTextFrames[0];
        while (thePage.constructor.name != "Page")
            var whatIsIt = thePage.constructor.name;
            switch (whatIsIt)
                case "Story" :
                    thePage = thePage.textFrames[-1].parent;
                    break;
                case  "Character" :
                    thePage = thePage.parentTextFrames[0];
                    break;
                case "Cell" :
                    if ( thePage.insertionPoints[0].parentTextFrames[0] == null)
                        // contents of cell is overset
                        thePage = tryHarderForCell(thePage);
                        if (thePage == null) return null;
                        break;
                    else
                        thePage = thePage.insertionPoints[0].parentTextFrames[0];
                        break;
                case "Application" :
                return null;
            thePage = thePage.parent;
        return thePage ;

    Hi,
      Thank u... Its working...

  • Modify width of rectangle based on page number in InDesign via Javascript

    I have a rectangle called `pageBar` on my master page !
    I would like to create a script that will automatically resize the width of the rectangle based on the page number.
    Something like : `width = 1280 * (pageNumber / pageTotal)`
    Any help would be much appreciated.
    Thanks in advance,
    J.

    Here's the script I ended up with. I'm a bit unhappy that I ended up having the literal string "pageBar" in it twice. The second instance is there to allow the script to be run on the same document twice -- that's one of the prices you pay for using master page items in a script rather than creating objects on the fly and applying an object style to them (better than setting selected properties):
    //DESCRIPTION: Size PageBar on each page
    (function() {
              if (app.documents.length > 0) {
                        sizePageBars(app.documents[0]);
              return;
    function sizePageBars(aDoc) {
              var pageBar = getMasterItem(aDoc, "pageBar");
              if (pageBar == null) return;
              // walk through the document's pages and deal with each page
              var theMaster = pageBar.parent;
              var numPages = aDoc.pages.length;
              for (var j = numPages - 1; j >= 0; j--) {
                        if (theMaster == aDoc.pages[j].appliedMaster) { // ignore pages with other masters
                                  processPage(aDoc.pages[j]);
              function processPage(page) {
                        // numPages, pageBar and j are visible as global variables in this function
                        // caculate desired width
                        var desiredHalfWidth = 1280 * (j + 1)/(numPages * 2); // j starts at zero;
                        // could be running script for a second time, so check to see if page already has pageBar on it
                        var bar = page.rectangles.item("pageBar");
                        if (bar == null) {
                                  var bar = pageBar.override(page);
                        var pBounds = bar.geometricBounds;
                        var xCenter = (pBounds[3] + pBounds[1])/2;
                        pBounds[1] = xCenter - desiredHalfWidth;
                        pBounds[3] = xCenter + desiredHalfWidth;
                        bar.geometricBounds = pBounds;
              function getMasterItem(aDoc, name) {
                        var appliedMaster = aDoc.pages[0].appliedMaster;
                        var anItem = appliedMaster.rectangles.item(name);
                        if (anItem == null) {
                                  alert("Couldn't locate 'pageBar' rectangle.");
                        return anItem;
    I was going to introduce to the resize method, but that would have first meant understanding it myself. The description in the object model viewer is a masterful demonstration of how not to communicate complicated information.
    So I did a web search and found myself on this page by Marc Autret: http://www.indiscripts.com/post/2013/05/indesign-scripting-forum-roundup-4
    Search that page for resize and you'll see what I mean. Compared to the simple manipulation of geometric bounds, using resize is a nightmare of complexity. Marc has simplified it by providing a function you can call, but I decided to just go with using the bounds.
    I hope this proves helpful to you.
    Dave

  • Page Number Error when export to PDF

    I am getting an error on page numbers for a book file when I export to PDF. The page numbers are set in the master pages and when I export each chapter individually the page number show fine. When I export the entire book, then some of the page numbers repeat. The pages are the right pages, but the numbers change incorrectly. For instance, the sequence goes, 58, 59, 58, 61 and 72, 73, 72, 73, 76.
    I've updated to the latest InDesign (7.5.2) and have tried multiple PDF export options (High Print, Press, PDF/X, etc) and nothing fixes it.
    Any suggestions?
    thanks

    This is a known (and fairly catastrophic) problem in CS5.5.
    Some people have found exporting the individual INDD files to IDML, resaving them as INDD files (don't overwrite your originals!! Make a backup first!), and recreating the book works...for a while.
    You could revert to CS5.0 if you have a license for it.
    CS6 is on the horizon and should fix this bug.
    Hopefully there'll be a CS5.5 maintenance update to do so as well.
    Sorry I don't have a better suggestion.

  • How to link a value in a cell to a page number?

    I have a series of diagrams that I'd like to create a table for showing the page it's on, and a description of it. during creation, i an simply store the value of the page number in an array, and use it when creating the table, however, if the diagram is moved onto another page, then the cell shows the wrong page number, and the table loses meaning. Is there a way I can link the page number shown in the table cell with that of the page number it's currently on?

    Excellent thank you. While I was creating this sample code, I kept seeing an undefined destination text with either PB or OV shown in the cross references. This was because the textframe inside the frame that contains the image wasn't set to the same geometricBoundaries as the container frame!
    #target indesign
    var doc = app.documents.add();
    // add new page with image
    var page = doc.pages.add();
    var imageGraphic = page.place(File('image.jpg'));
    var imageFrame = imageGraphic[0].parent;
    imageFrame.geometricBounds = [0,0,100,100];
    imageFrame.fit(FitOptions.fillProportionally);
    // add text frame to imageframe for hyperlink dest
    var tf = imageFrame.textFrames.add();
    tf.contents = " ";    // insert blank text
    tf.geometricBounds = [0,0,100,100];     // THIS IS VITAL otherwise the destination becomes invalid for some reason
    var destination = tf.paragraphs.item(0);    // find text / char destination
    var destination = doc.hyperlinkTextDestinations.add(destination, {name:"foo"});    // hyperlinktextdestination reference 
    var creditPage = doc.pages.add();
    var creditPageTF = creditPage.textFrames.add();
    creditPageTF.geometricBounds = [0,300, 100, 400];
    creditPageTF.contents = "...";
    var xRefForm = doc.crossReferenceFormats.item("Page Number");   // Default CS5 xref format that shows "Page 45" etc
    var sourceText = creditPageTF.paragraphs.item(0);
    var source = doc.crossReferenceSources.add(sourceText, xRefForm);
    var destination = doc.hyperlinkTextDestinations.item("foo");     // find text anchor by name from above
    var myLink = doc.hyperlinks.add(source, destination);
    myLink.visible = false;
    very confusingly, there seems to be two types of cross references for cs5, cross references for text, which are actually hyperlinks, and crossreferences for tocs i believe (which I know nothing about atm!)

  • How to find out the page number of an xml element

    Hi everybody, sorry for my very bad english (french guy! logical). I hope you see what I'm looking for.
    I'm scripting (javascript) an exporting script of every articles from a multi-pages indesign script.
    In fact I could have one or more article in one file, every one of them is on an separate xml element. for each I have to export an xml file named with, first, the page number where appears the xml element, second, the number of exported article.
    I'm success the second purpose, but not the first.
    Someone have an idea ?

    Try this,
    var myDoc=app.activeDocument;
    var root = myDoc.xmlElements[0];
    var docTag = root.evaluateXPathExpression('//doc');
    for(i=0; i<docTag.length; i++)
        var docPos = docTag[i].insertionPoints.lastItem();
        var docFrame = docPos.parentTextFrames[0];
        var docPage;
        try
             docPage = docFrame.parentPage;
    catch(e)
            docPage = docFrame.parent.name;
        alert(docPage.name);
    Vandy

  • Cross References Will Not Display Page Number

    Got some documents created in InDesign CS3 (MAC). When bringing them into CS4 (Windows) and trying to create a paragraph cross-reference the page numbers will not display. All the other text in the cross reference ("paragraph", the word "page", etc.) displays correctly. Even the cross reference under the "hyperlinks" toolbar shows nothing (instead of the usual # indicating a page number).
    However If I copy some of the same pages into a new document and create a cross reference in it the page number displays correctly. But since it's over 300 pages I really would hate to have to do that!
    Any ideas?

    Is it maybe because CS3 does not include the cross references function (not a feature until CS4)?
    That's a real problem if we use an outside source to create a lot of our documents and they're working in a previous version.

  • How to insert company logo and page number on every page except the first page?

    Hi, I am creating a newspaper and I've inserted the page number and company name on every page using the master page (you know the basic method).
    Problem is I don't want the page number or the logo to appear on the first page, how can I do this?
    Or will I have to copy and paste it on each page instead...? I'd rather not.
    I'd appreciate any help I can get.
    P.S. I'm using CS5 and obviously I'm talking about InDesign.

    Make another master and apply it to the first page.
    Take care, Mike

  • Error with master page "insert current page number" when exporting book

    Using InDesign CS 5.5 for Windows
    Recently upgraded from InDesign CS (the really old one from 2003). I did save a copy of all my old version files and kept the old ID installed just in case (after reading all the horror stories on here).
    In my old version of ID, I created a book made up of about 70 documents. Some of these documents are one page, others have multiple pages. In the multiple page documents, I used the "insert ... current page number" character (or whatever the command was in the old version) on a master page, and formatted it to read, for example: Page 1 of 17, Page 2 of 17, Page 3 of 17, etc. When I exported my book to a pdf, it worked fine. (I do not want/have consecutive page numbers throughout the book, only in individual documents. By this I mean my entire book is about 280 pages, but not all of these 280 pages are numbered, just the groups of pages from these multi-page documents. It doesn't read page 1 through 280.)
    Got my upgrade to 5.5 a few months ago, added some documents to the book, and (if i remember right) when I saved the book it asked to convert every old version document to the new version, which I said okay. When I exported the book to a pdf, some documents that are longer than 2 pages are now numbered wrong; the numbers are now going like this: Page 1 of 17, Page 2 of 17, Page 2 of 17 (supposed to be page 3), Page 2 of 17 (supposed to be page 4), etc. Every page but page 1 is now page 2 of whatever.
    If I open the individual document and export it to pdf, the page numbers work fine. It's only when the document is exported with the book that the page numbers mess up. And it's not all the documents in my book; this error starts at a particular document and continues from that point throughout the rest of the book, affecting any document longer than 2 pages. Multi-page documents before this point in the book export with the correct page numbers.
    I create new documents by doing a "save as" with a previously created document and cut and paste as needed, so I'm not having to reformat or set up page numbers on each new document. I don't use layers or styles (I'm sure there's a better way to do what I need, but I've only had time learn the basics, just enough to be functional.)
    My attempts to fix this so far (using version 5.5), testing with the first document where the error appears: (1) I've removed the document from the book, deleted the insert current page number character, re-entered the insert current page number character, saved, exported the individual document to pdf and it worked fine. Put it back in the book, save, export, and it's wrong. (2) I took the document out of the book again, exported the document to .idml, saved as new .indd with new name, exported to pdf and it worked fine. Put it back in the book, save, export, and it's wrong. (3) I started up my old ID version, opened the old version of this document, exported to .inx, closed, opened .inx in ID 5.5, saved as new .indd with new name, exported to pdf and it worked fine. Put it back in the book, save, export, and it's wrong. (4) I moved the document up in the book order, putting it above a document that has correctly numbered pages, saved, exported to pdf, and this document was still wrong, but the one that has been numbered correctly all along is still correct. (5) I've compared settings for this document to others that number correctly and cannot find any difference.
    It's like the page numbers get hung on "2" when I export the book, but only in the last two-thirds of the book. Sorry it's so lengthy, but I hope this description of my problem is understandable. Any advice, other than going back to my old version documents and starting over?
    Thanks for your time and for all the awesome information this forum provides!
    alice

    Mr. Spier
    Right after I posted my question, I saw a post from last year where somebody had similar problems. (I cringed because I spent almost 3 days researching this problem and never ran across that post; thanks for not scolding me for posting a semi re-run.) I decided to try one of the easier solutions: I opened the problem document from the book panel, went to the master page and deleted the text box containing the page number, copied the page number box from a document that worked correctly, and pasted it into the problem document. Saved that doc, closed, saved book, exported to pdf, and it worked!! The page number problem was fixed. I went back and did the same thing for the other problem documents and they all number correctly now. 
    Probably not the best way, but for now this will fix it; I may have to do it again next time I add to the book. Although I didn't follow your instructions, I'll mark this as answered since it's working now. If it keeps giving me problems, I'll try the .inx export/new book route.
    thanks for your time
    alice

  • Text Variable Help? Beginning section page number required

    Hi guys,
    My name is Arjun and I am working on a book in Indesign. I've created quite a few sections and want to create a header on top that displays,
    for example
    "Summary FirstX to LastX" (in bold are the variables)
    First X being that Sections first page number
    Last X being that Sections last page number
    There is a default preset that came with Indesign CS4 that allows you to create a Text variable for the last page number of that section. What about the beginning? I don't wan to turn that to static text as i have a lot of page shuffling to do and the more the automated the better.
    Thanks,
    Arjun

    I hadn't noticed that there isn't a First Page Number text variable building block. How odd.
    I would try setting up a "cross-reference" to the first paragraph in your section. (This is not part of the text variable dialog. Use the cross-reference window under Type & Tables in the Windows menu). I assume these will work on master pages, though I haven't tried it. It does seem odd that you'd need to use completely different tools for each page number!
    Be aware that there's now a hidden marker at the beginning of that paragraph, which the cross reference uses to know what page number to insert. So if you accidentally remove it (for instance, if you delete and retype the whole paragraph), you'll have to set up the cross reference again. And you'll have to explicitly create that cross reference in each section of your book, while the text variables are pretty automatic. So there could easily be a better solution that I haven't thought of.
    Good luck, and tell us what finally works...

  • Split PDF, name odd pages and name even pages in sequence

    I need help creating a script to ask the user for a PDF file then do the following:
    -Extract even pages and rename name with "_Front#" ending where "#" is a number sequence starting with 1.
    → ex: the PDF I choose when prompted is "anatomyBook". The extracted even pages would be:
         - anatomyBook_Front1,  anatomyBook_Front2, anatomyBook_Front3,...
    -Extract odd pages and name them similarly except replace "Front" with "Back" 
    Thanks for the help!

    Ok, I have solved some issues I found with the previous script and Automator configuration.
    The Filter Finder Items action apparently uses kMDItemKind to determine the file type, and if you choose a PDF file without an extension, this action will not pass the file to the Bash script. Result: 0.
    The mdls command, for the same reason will always fail to get a page count when it encounters a extensionless PDF file.
    Remove the entire mdls/egrep command sequence from the script.
    Wrote a shell function that runs Python, imports the CoreGraphics module, and returns the page count for PDF files with/out extensions. The function takes as its argument, the input PDF filename, which it passes into Python as a command-line argument ($1). It returns a page count.
    Replace entire Bash script in Automator with the following code.
    New Bash Script
    #!/bin/bash
    # Requirement: Install Skim PDF reader
    # Location: http://skim-app.sourceforge.net
    # Usage: progname.sh sample.pdf
    # Author: VikingOSX, August 2014, Apple Support Community
    function PDFpagecnt () {
    /usr/bin/python -c \
    "import sys
    from CoreGraphics import *
    pdfdoc = sys.argv[1]
    provider = CGDataProviderCreateWithFilename(pdfdoc)
    pdf = CGPDFDocumentCreateWithProvider(provider)
    print('{}'.format(pdf.getNumberOfPages()))" "${1}"
    function ASDialog () {
    `osascript <<-AppleScript
        set pdfFile to "${1}"
        set evens to "${2}"
        set odds to "${3}"
        set msg to ""
        set msg to msg & "PDF Processed: " & pdfFile & return
        set msg to msg & "Front Pages: " & tab & evens & return
        set msg to msg & "Back Pages: " & tab & odds
        tell application "System Events"
            display dialog msg with title "Processing Complete" giving up after 20
        end tell
        return quit
    AppleScript`
    skimPDF="/Applications/Skim.app/Contents/SharedSupport/skimpdf"
    pdfFile="$@"
    basename="${pdfFile%.*}"
    even=1
    odd=1
    pagecnt=$(PDFpagecnt "${pdfFile}")
    for mypdf in "$@"
    do
        for page in $(seq 1 $pagecnt)
        do
            if [[ $((page % 2)) == 0 ]]; then
                #even extractions
                `${skimPDF} extract "${pdfFile}" "${basename}""_Front"$((even)) -page ${page}`
                ((++even))
            else
                #odd extractions
                `${skimPDF} extract "${pdfFile}" "${basename}""_Back"$((odd)) -page ${page}`
                ((++odd))
            fi
        done
    done
    ASDialog "${pdfFile}" $((--even)) $((--odd))
    exit 0

Maybe you are looking for

  • Program giving dump when run in background

    Hi All, I have an ALV report in which I am using REUSE_ALV_GRID_DISPLAY. The report works perfectly in foreground. But when I execute in background I am getting dump. Dump details are given below. ShrtText     Unable to fulfil request for 134217728 b

  • Error while drag and drop in OAWD transaction

    Hi Expert, One of my user is trying to attach a document through Drag and Drop in OAWD transaction after he attaches a document and when he cancels on the cancel button he is getting the following error: Crtical error during Archiving: Archiving Dire

  • Display issue with some browser : OnMouse based on An Application Process

    Hello, I am playing a little bit with the Application Process and I tried to create something like the Aria Demo (onmouseover="ARIA_DETAIL(this, '#PERSON_ID#')") Indeed, no problem to make it work (using a default template among the 20 provided by Ap

  • WebLogic Server - Problem encoding file MS Word in jsp

    Hi, i'm new in this forum...sorry for my english but i don't speak it very well... I have a problem with encoding of a MS Word file (with WebLogic Server 8.1.4).....I have this file stored in a DB Oracle like a BLOB...then I extract this file and I o

  • Strange, indefinable bug in InDesign CS2014

    Can anybody tell me how to get rid of this strange bug? It steals the focus, and then returns it. It causes all sorts of problems. Sometimes it bugs a lot/many times in short time, sometimes less. The bug is only in InDesign. This started after I upd