change the page size second in 3 pages

Hello

I wonder, how do I change my second page 3 page double with ExtendScript size?

(I'm trying to generate coverage with the spine)

app.activeWindow.activeSpread.pages [1] .resize (CoordinateSpaces.innerCoordinates, AnchorPoint.centerAnchor, ResizeMethods.ADDING_CURRENT_DIMENSIONS_TO, [-1000, 0])

Tags: InDesign

Similar Questions

  • Change the page size and text in Firefox 35.0.1

    I had a small red P at the top right of Firefox that changed the page size and the fonts that I lost after a reset: How do I get it back?

    Do you mean this extension?

    You can check the "Old data Firefox" folder on the desktop to see what extensions you previously had.

  • A way to change the font, size and "BOLD" to each page?

    Due to problems described here https://support.mozilla.org/en-US/questions/1012057?esab=a & s = & r = 0 & as = s I erase that I need something (an extension, perhaps) I want to recognize and change the font size and "BOLD" fonts in each page.
    Is there something like this?
    Maybe also for the bookmarks bar...

    You can use the NoSquint extension to define the size of the font (zoom text/page) and the color of the text on web pages.

  • Change the page size - grayed out of boxes

    I'm changing the page size of the pages within a document. Apparently, you're supposed to select the pages in the Pages panel and then change the height and width of the Panel settings. My height and width boxes are grayed out. What have I done wrong?

    Your screenshot shows you the active Selection (the black arrow) tool, not the Page tool (the third tool from above).

  • Batch to change the page size of InDesign documents

    I have about 300 documents in InDesign (2014 cc, Mavericks) a page of various page sizes. Each page is wider than 4 inches and 4 inches larger than the content of the page. The content is in middle of the page - actually make a margin of 2 inches (but with no margin guides) around the content. What I need to do, is get the page of all documents will have to be a specific page size, 7,125 "x 9.75".

    I was able to accomplish this by putting all the docs in a book, make a master page 7,125 "x 9.75" on a doc, synchronize the other docs and then opening each doc and apply the master page. The last piece was a bit a lot of work and I would like to avoid it in the future.

    Could write a script that opens some InDesign documents (in or not in a book) and changes the various sizes of page to the necessary size? I've never written scripts before, so no idea if it's possible or how to do it.

    I put the following on another forum and got help, but it took that I have control over the creation of the original documentation. And I did not. "Is there a way to globally apply a master page to all pages of all documents in a book?

    Any help is greatly appreciated.

    Hello

    What is your requirement

    var myFolder = Folder.selectDialog("Select the Folder contains Indesign Files")
    
    var myFiles = myFolder.getFiles("*.indd")
    
    alert("Total Indesign Files: " + myFiles.length)
    
    for(i=0; i
    

    Concerning

    Siraj

  • Change the page size, unexpected behavior, CC

    Hi, having a problem with the changes after the change of the page. In a nutshell if I get cardboard PMPoint transformation (0,0) before a change of page size, the result is exactly as planned, the origin of the page in the editing table. After I change the page size using kSetPageSetupPrefsCmdBoss and run the transformation even recalibrated value is identical before changing the page size.

    Here's some quick code and output to illustrate. PageSizing:; DoYourThing() called and made the intial processing, prints the output in InspectTransformation(), then call ChangePageSize() and remembers InspectTransformation().

    Sub PageSizing: DoYourThing()

    {

    IDocument* theFrontDoc = Utils<ILayoutUIUtils> ()->GetFrontDocument();

    if (theFrontDoc is nil) { cost < < "Need a doc." } < < endl; return; }

    fDoc = theFrontDoc;

    GetPageSpreadRefs()1); Download the UIDRef from the 1st page and spread

    if (fPageRef == UIDRef:gNull) { cost < < "Invalid Page" UIDRef. < < endl;} return; }

    if (fSpreadRef == UIDRef:gNull) { cost < < "Invalid spread UIDRef." } < < endl; return; }

    cost < < "before changing the size of the Page." << ENDL ;

    InspectTranforms();

    bool16 sizeChangeResult = ChangePageSize();

    if (sizeChangeResult) {

    cost < < "after changing the size of the Page." << ENDL ;

    InspectTranforms();

    }

    }

    Sub PageSizing: InspectTranforms()

    {

    do {

    PMPoint leftTopPage (0, 0); / / Page coords

    InterfacePtr<IGeometry> pageGeo (fPageRef UseDefaultIID(());

    PMMatrix page2Pb =:pageGeo InnerToPasteboardMatrix();

    PMRect pageBoundsInPasteboard = pageGeo->GetStrokeBoundingBox(page2Pb);

    PMPoint pageOriginInPasteboard is pageBoundsInPasteboard. LeftTop ();

    Helper:PrintPoint(pageOriginInPasteboard, 'Origin of the dough pension Page.');

    InterfacePtr<ITransform> pageTransform (fPageRef UseDefaultIID(());

    PMPoint leftTopInPasteboard = leftTopPage;

            :: TransformInnerPointToPasteboard() pageTransform, & leftTopInPasteboard);

    Helper:PrintPoint(leftTopInPasteboard, "transformed the point (0,0) in cardboard coords.") );

    } while (kFalse);

    }

    bool16 PageSizing: ChangePageSize()

    {

    bool16 retval = kFalse;

    do {

    InterfacePtr<IPageSetupPrefs> docPrefs (fDoc->GetDocWorkSpace(), UseDefaultIID());

    if (docPrefs is nil) { cost < < "Nile IPageSetupPrefs" < < endl;} Break; }

    InterfacePtr<ICommand> pageSizeCmd (CmdUtils:kSetPageSetupPrefsCmdBossCreateCommand());

    if (pageSizeCmd is nil) { cost < < 'No command' < < endl;} Break; }

    InterfacePtr<IDocSetupCmdData> cmdData (pageSizeCmd IID_IDOCSETUPCMDDATA);

    if (cmdData is nil) { cost < < 'Data command nothingness' < < endl;} Break; }

    PMPageSize currPgSz = docPrefs->GetPageSizePref(); / / 612, 792

    PMPageSize newPgSz (currPgSz. OutputWidth() + 50, currPgSz. OutputHeight () + 50);

    DocPageBinding link = Utils<ILayoutUtils> ()->GetDocumentPageBinding(:GetUIDRef(fDoc));

    cmdData->SetDocSetupCmdData(:GetUIDRef(fDoc),)

    newPgSz,

    docPrefs->GetNumPagesPref(en)

    docPrefs->GetPagesPerSpreadPref(en)

    docPrefs->GetWideOrientationPref(en)

    Liaison);

    Error code ec = pageSizeCmd ProcessCommand() CmdUtils:);

    retval = (ec == kSuccess);

    if (! retval) { cost < < "Resize the page command failed." } < < endl;}

    } while (kFalse);

    Return retval;

    }

    The output

    consoleOutput.png

    As you can see the origin of the page is different after the order of page size, but the transformation returns the same value of 0.0.

    Am I missing something about transformations or the order of page size?

    Thanks for any help. Mike

    Hello Mike,.

    you was not assuming that the upper left corner of a page in coordinates (0, 0) pasteborad. That is right. But you assuming that the upper left corner of a page in internal coordinates is (0, 0). And it is wrong. The origin of the page in internal coordinates is (0, 0) after resizing.

    Markus

  • How can I change the page size of a pdf document so that I can check on my iphone more clearly?

    How can I change the page size of a pdf document so that I can check on my iphone more clearly?

    This is way beyond what can be done with PDF, except by copying the text and make a new document in Word or something.

    That said, Adobe Reader on Windows may display the text AS IF the PDF file has been divided. It's the text reformatting. It may be possible in Reader for iPhone, you can try the player for ios forum.

  • Starting with HP Officejet 6600 and cannot change the page size

    Hello

    You have just purchased HP Officejet 6600 all-in-in-one and found that there not a duplexer, which is very very annoying! However, if I can just change the paper size, I can live with the disadvantage to the paper.  I have a Word document that is the flyer for our company, a document A4 which must be printed on A5 paper.  Old Canon printer I could make the A4 as an A5, but now I can't.

    Hope I explained the correct problem and the TIA for help.

    In my copy of Word 2007, I am able to evolve in A5 paper.

    Be sure to select A5 in 6600 preferences.

  • Prevent the user from changing the page in URL - Apex 5

    Dear community of Apex,

    We seek to protect our handling of URL pages.  The protection of session state is enabled, and each page has page value «Arguments must have Checksum» access protection  However, the documentation seems to discuss in order to prevent the user from element values in the URL.  We want to prevent the user to change the page ID in the URL.  Currently, a user is able to hack the URL and take in the middle of a wizard process for example.  Is it possible to stop this?  Other that an element of creative previous train stop check.

    * Version: Application Express 5.0.1.00.06

    Thank you

    Barry

    bSamuel wrote:

    We seek to protect our handling of URL pages.  The protection of session state is enabled, and each page has page value «Arguments must have Checksum» access protection  However, the documentation seems to discuss in order to prevent the user from element values in the URL.  We want to prevent the user to change the page ID in the URL.  Currently, a user is able to hack the URL and take in the middle of a wizard process for example.  Is it possible to stop this?  Other that an element of creative previous train stop check.

    Hi Barry

    Affecting the security attribute Access Page Protection page No. URL Access and navigate between pages using the type of the Page Management Branch (uncheck the option creates a branch using redirection page in the Wizard) will avoid this:

    No URL access -Page can not be found using a URL, but the page can be the target of a type of Page Management Branch, is not doing a URL redirect.

    It is a little more restrictive that a normal direction of the session state values cannot be positioned or erased declaratively in the branch, but is not often necessary in a several step wizard, and it's pretty simple to work round using prior processes - or post-branche or by referencing the item values directly from other pages.

  • I create my web and download it to Dreamweaver, but it came as I wanted. Now, I need to change the page, but it does not allow me to do so because that is block need help

    Hello

    I create my web and download it to Dreamweaver, but it came as I wanted. Now, I need to change the page, but it does not allow me to do so because that is block need help

    First, set the folder of your site.  Go to Site > new Site > tell DW where to save files to the local site.

    http://layersmagazine.com/defining-site-Dreamweaver.html

    Nancy O.

  • How to change the page numbers after adding &amp; save page numbers in the pdf document - need to change the existing page printed on the upper right in the header numbers

    How to change the page numbers after you add and save the page numbers in the pdf document - need to change the existing page printed on the upper right in the header numbers.

    These page numbers were initially created using Acrobat PDF header and footer.

    I have a 750 page pdf document that I've created.

    I have to sometimes the pages up and down after that I added the page numbers in the document by using the Header_Footer tool on the right column of tools.

    But after you save the document, if I get a few pages around, I can't go back and change the page numbers.

    I thought that the page numbers, as indicated in the header and footer must have changed automatically, but I guess that once its print, that it cannot be edited - is that, as what is?

    So I guess we should always first get a copy without numbers of pages before confirming the documents and the creation of an index.

    A way to remove these page numbers already there and add new page numbers.

    Its a lot of work to align 750 court documents and then realize that you must move some and then realize the page numbers cannot be changed and thus begin to do this all over again to compile which can take about 10 hours.

    My question is quite simple, but I hope that overall, I got my point. Sorry if I made it is too complex.

    If no simple way, want to know if anyone has another different tool or a few recommendations to better highlight what I'm doing wrong.

    Thank you for your review and response.

    You should be able to update with tools - Pages - header & foot-

    Update... It not work for you?

    If this isn't the case, then try to remove from this menu and then re - adding them.

    Tuesday, June 23, 2015 23:55, Fortune Mile [email protected]>

  • Change the Page numbers in the index

    Hello

    I have a catalog and I added two pages in the middle of the catalog. Now, due to the addition of two pages, I need to update the page numbers on the index with the new page numbers. I only need to increase each of the page by two numbers, but that starts only at a certain point. Thus, for example, on one of the index I have, 1-70 page numbers may remain the same, since the two extra pages were added AFTER page 70. But every number after 70 must increase by 2.

    I have a find and replace script. I create a table in excel and drop into the document. The script then takes any word or number that is listed in column A and replace it with what is in column B. I used initially this script to find and replace in the catalog product codes, and it worked great, because all the product codes were quite unique.

    Try to use this same script to change the page numbers, but she totally fizzled. The problem is that the same number is repeated later in the table, so the script has the table constantly replace all numbers with the first two. So, here is a small sample of my table:

    Col Col B

    423 425

    422 424

    421 423

    420 422

    But when I run the script, here is what it will turn into:

    Col Col B

    423 becomes 425 425

    422 becomes 424 424

    421 becomes 425 423 becomes 425

    420 becomes 424 422 becomes 424

    Because it alters the table, all corresponding numbers in the document then will increase to 425 or 424.

    Is there a way to ensure that the script does not change the information in the table that she uses as a reference?

    Here is the script below. I didn't write (makes a very nice person on these forums) and don't know anything about the scripts.

    the_table = app.selection [0] .tables [0];
    app.findChangeTextOptions = null;
    with (app.findChangeTextOptions)
    {
    caseSensitive = true;
    wholeWord = true;
    }
    app.findTextPreferences = null;
    app.changeTextPreferences = null;
    for (row = 0; row < the_table.rows.length; line ++)
    {
    If (the_table.rows [row] .cells [0] .silence == ")
    continue;
    app.findTextPreferences.findWhat = the_table.rows [row] .cells [0] .silence;
    app.changeTextPreferences.changeTo = the_table.rows [row] .cells [1] .silence;
    app.activeDocument.changeText ();
    }

    Thank you very much!

    It should work, but make sure you do backup first. I'm not going to say once: first make a backup copy. Yes, I said that you should make a backup first!

    Copy the following script, paste it into an editor appropriate - Adobe ESTK which comes with InDesign is good enough. Save it as "omgwrongnumbers.jsx" in your user Scripts folder. Select as little text as possible, the script will be blindly increment (or decrement) all numbers in the range. And then double-click the script runs.

    //DESCRIPTION:omg the page numbers are all wrong!
    // A Jongware Script 18-Aug-2010
    if (app.documents.length == 0)
    {
         alert ("Oh give me some text to play with :'(");
         exit(0);
    }
    if (app.selection.length != 1)
    {
         alert ("We can't go on like this. Select some text first.");
         exit(0);
    }
    
    myDialog = app.dialogs.add ({name:"omg the numbers are wrong!",canCancel:true});
    
    with (myDialog)
    {
         with (dialogColumns.add())
         {
              with (dialogRows.add())
                   staticTexts.add ({staticLabel:"First to change"});
              with (dialogRows.add())
                   aBox = integerEditboxes.add({editContents:"1"});
              with (dialogRows.add())
                   staticTexts.add ({staticLabel:"Last to change"});
              with (dialogRows.add())
                   bBox = integerEditboxes.add({editContents:"99999"});
              with (dialogRows.add())
                   staticTexts.add ({staticLabel:"Add or subtract this value"});
              with (dialogRows.add())
                   cBox = integerEditboxes.add({editContents:"2"});
         }
    }
    if (!myDialog.show())
    {
         myDialog.destroy();
         exit(0);
    }
    first = aBox.editValue;
    last = bBox.editValue;
    step = cBox.editValue;
    
    if (first < 1 || first > last || step == 0)
    {
         alert ("Now you're pulling my nose arentya");
         exit(0);
    }
    app.findGrepPreferences = null;
    app.findGrepPreferences.findWhat = "\\b\\d+\\b";
    list = app.selection[0].findGrep(true);
    changes = 0;
    for (i=0; i= first && n <= last)
              changes++, list[i].contents = String(n+step);
    }
    alert ("Number of changes: "+changes);
    
  • I can't go in the settings of fonts. How to change the font size?

    I had downloaded the latest version of Firefox and I finished it sync for my Android phone. I went into a kind of dialog box settings and accidentally changed my fonts and text settings and now I can't read any of my Gmail which is in my account on my desktop - it's too small. I'm trying to figure out how I can enter in the content settings (I feel that I do once I have enter the menu 'options' on the content settings page, but I don't know how to bring up the menu of the content/page settings). I use my desktop PC for work and I can't use it with the font settings and how they are now. I also read where the issues are taken, but no one knows how to find the answers to the questions people are asking. How do we get the answers that people give us on the issue, we asked?

    I hope you can help me as soon as POSSIBLE, I can change what I as soon as POSSIBLE. I'm working on my pc 24/7 for the work and is not helping me when I can't read the emails and I can't solve the problem.

    Thank you!

    Hi Upset2,

    Sorry to hear that you are having problems with font sizes in Firefox on your desktop.

    Text sizes really small for each Web site you visit, or is it just your emails?
    Text sizes are really small on your desktop and Android or only one?

    There are several things that could cause your text sizes to seem strange, so I'll take you by a couple.

    First of all, your email page could have a zoom. On your PC, could you please try open Gmail and then by clicking on the icon at the top right of your screen that looks like three lines?

    This will bring up a new menu and near the top of the menu are three buttons: a minus (-), a percentage (that is to say, he could say 70%) and a plus (+). Please click button percentage - this should Gmail zoom to 100%.

    If that doesn't fix it, let's try using the method on your printout. To access the content settings screen, click the button in the top right that looks like three lines. Click on Preferences. A new window will open. Click on the 'Content' button and follow the instructions that you change the font size.

    There is another version of the instructions I just gave you, with screenshots, here: font size and zoom - increase the size of web pages

    Mozilla Support issues are all handled by volunteers, and at peak hours, there may be a delay. Thanks for your patience!

    I hope this helps.

    Jayelbe

  • possible to change the font size of the bookmark toolsbar?

    possible to change the font size of the bookmark toolsbar?
    upgrade to firefox v22 and notice this bookmark toolsbar got bigger, some bookmark font cannot be displayed, it is normal? possible to change?

    Hello

    Firefox on Windows is now after display, scaling options that can make the biggest text on screens at high resolution.
    You can adjust the resolution of your screen.
    To change it follow these steps:

    • Type of topic: config in the Firefox address bar and hit the Enter key.
    • If the warning that this might void your warranty , click I'll be careful, I promised.
    • Search for layout.css.devPixelsPerPx

    • Double-click layout.css.devPixelsPerPx to edit its value. The default value is - 1.0 in Firefox 22 and above. Change it to 1.0 to run as in previous versions of Firefox.

    If necessary, further adjust the value of 0.1 or 0.05. Values between 1.0 and around 0.5 to reduce the size of the elements. Use a value greater than 1.0 to increase the size. For example, a value of 1.25 will increase the font size of the 125% to account for the default DPI setting in Windows 8. Check the value that you enter. Definition of a value that is too small will take everything away and too high will explode things.

    If the web pages should always be adjusted so you can watch the extension Default FullZoom Level or NoSquint .

    To adjust the font size for the user interface, you can use the extension of theme font & size changer .

    This solve your problems? Please report to us!

    Thank you.

  • I was using Firefox on a Web site, and all of a sudden, everything changed for these little characters that I can hardly read it. Any suggestions as to how I can change the font size? Ray Fowler

    When you use Firefox, the font size is automatically changed to so small I can hardly read it. How can I change the font size in Mozilla Firefox?

    Reset the page zoom on pages that cause problems: view > Zoom > reset (Ctrl + 0 (zero); Cmd + 0 on Mac)

  • What happened to the bar that says 'file, edit' etc.? How can I change the font size to display Hotmail? Where can I access 'Cancel '? Thank you-

    How can I access the toolbar which includes "file, print" etc.? How can I change the font size of my hotmail home page? It used to be using "display".

    In Firefox 3.6 and later Windows, you can hide the menu bar on "view > toolbars" or via the contextual right click menu on a toolbar.
    Press F10 or press and hold the Alt key to bring up the menu bar temporarily.
    Go to "view > toolbars", right click on the menu bar, or press Alt + V T to select to show or hide toolbars (click on an entry to switch from the State).

    See also what happened to the file, edit and view menus? and http://kb.mozillazine.org/Toolbar_customization

Maybe you are looking for