Size of the Indesign Document for the resolution of the iPad

When creating a document of 1024 x 768 size in inches is bigger than the iPad itself and greater than the printed version of the magazine:

10.6667 in WIDTH (768)
14.2222 in HEIGHT (1024 pixels)

Why is this?

the iPad screen density is 132 pixels per inch, InDesign uses 72 pixels per inch. Therefore, the size in inches is different, although the dimensions in pixels (1024 x 768) are the same in both cases.

Tomek

Tags: Digital Publishing Suite

Similar Questions

  • Development of InDesign documents for print and the web

    I develop InDesign documents for offset printing, but the Organization now wants to slip into the 21st century by also erect these same documents on the web (as interactive web pages that respond to user input). I'm looking for the outline of the best way to combat this, just so I don't waste too much time trying to learn the technology wrong or the fake software.

    I started to score my documents with XML, so I think the course on the web is from InDesign to XML format, then via XSLT or CSS in XHTML. What is the best or only way to do? I guess that DreamWeaver will also feature in the equation at some point.

    These documents are examination questions. They are pretty simple. All paras have paragraph styles, but there will be some substitutions of the police as bold, italic, underlined, clue, exposing. Without doubt, these must all XML tag, possibly using character styles? There are a lot of graphics inserted (files have and psd) which need to be converted to png, I guess. I have also attached metadata via XML attributes and I want that metadata to get to the web page and direct aid, action based on user input (like what answer they give to a question).

    As I have always worked on the print documents, I don't know XSLT, CSS, XHTML or HTML even if I just want to start on the right foot.

    Any suggestions welcome, including perhaps good tutorials or other resources. And of course, I want to automate this process as much as possible by using scripts.

    Thank you

    Brian

    For what it's worth, I would use the following XSLT to perform this task:

    http://www.w3.org/1999/XSL/transform">

    To test it in a browser, make sure that change you the file extension exported from "xml" to "html".

    In addition, make sure that your original InDesign document has the correct structure:

    Jeremy

  • Interactive InDesign Document for iPad

    Hello!

    I just created an interactive InDesign, building a portfolio file.

    This document has first page for an index page with thumbnails for each "job" that you can click and the document will then go to the corresponding page. Each work is on a separate page that has multiple slides on it, as an object of State multi, containing images and movies (currently in f4v format).

    I did like that to keep the structure of page as clean as possible. Now, I can have only 1 page for each work and have still several slides in this page.

    Now here's my problem: Is it possible to convert or export the document, so it can be seen on an iPad aswell? (either as an application or html5 or something that the iPad can read?)

    Some info about the complications:

    Since I used the functions which are not compatible with interactive PDF must be exported as a SWF file or in Florida when you export to SWF format, and an html file, it works on the web and on my computer but is not compatible if I wanted to open on an iPad.

    Flash Pro has a feature to export flash iPad apps and html5 documents which looks great BUT when export to format FLA of InDesign strips the document from animation, feature of the buttons and actions so I have to redo all the features in flash until I can export it from there. Unfortunately I do not know flash or actionscript.

    Is there a way either:

    -export in FLA format which includes all actions, so I could just open it in flash and export them directly from flash to html og iPad?

    -convert the SWF exported (including the resources folder) in html5?

    -Export directly from InDesign to iPad magazine or the application that takes in charge: buttons, multi-state-objects, videos, sounds etc?

    I'm running on a mac 10.8.2, creative cloud Adobe (InDesign CS6, CS6 Flash, generally all the apps should work on the latest updates thanks to this great service!)

    It is a process of conversion Indesign animation to html5 for re-use in DPS folios

    http://tv.adobe.com/watch/creative-suite-podcast-designers/go-from-ind esign-cs-55-to-html-5/#

    Think of "Animer Edge" to html5 animation.

  • Size of the document

    Is it possible to determine the size of the document using sketches from adobe?

    What happens if I take the document in photoshop and resize it more it will lose quality?

    HI Nadia,

    At the moment it is not possible to choose the sizes of canvas in the sketch, but in a coming update choose a document size will be possible. Until then, I hope this information will help a little:

    The exported files have a size of 2048 x 1536px (for anyone working on an iPad Pro it is 2732 2048px x); If you wish to send the job to CC in Photoshop, you can resize the work until (if I remember correctly) four times without loss of image quality.

    Who help me?

    Sue.

  • Pages automatically reformats to the correct size when you use Folio Builder or what I have to do format pages iPad, for example, in the placed InDesign document in place from the beginning?

    Pages automatically reformats to the correct size when you use Folio Builder or what I have to do format pages iPad, for example, in the placed InDesign document in place from the beginning?

    Transferred to DPS forum.

    You must configure the pages of appropriately for the target device. For iPad, it is 1024 x 768.

  • Photoshop CS6: Change the default resolution for the 'Document size' in the Image Size dialog box?

    I have a Canon EOS 40 d, Photoshop CS6 and Adobe Bridge CS6.  I shot everything in RAW.


    When it's time to change the images, I start by opening in RAW using Adobe Bridge.  When I finished to make adjustments, I click the button open an Image that contains the image to Photoshop.  When I put them to the top of the dialog box size of the Image, the size of the Document is still 240 DPI.


    Is it possible to change this default?  If so, how?

    Click on the text in blue at the bottom of the Camera raw window and change the ppi there.

  • How to add legend for all images in the indesign document using indesign javscript

    I want to add the legend for all images in the indesign document...

    It's my code... im being of error like:

    invalid parameter.

    capset(2) ();

    function capset()

    {

    var doc = app.activeDocument;

    var myPicture = doc.allGraphics;

    var f, i, myCaption;

    While (PIC = myPicture.pop ())

    {

    f = pic.geometricBounds;

    Add a frame to the parent of the image, which is a Page

    myCaption = pic.parent.textFrames.add ();

    define the position and size of the legend

    myCaption.geometricBounds = [[2], [1], [2] Go + 3 GB [3]];

    Add the contents of the placeholder

    myCaption.contents = "Caption";

    PIC.parent.groups.Add ([pic, myCaption]);

    }

    }

    Hello

    Runing a code with your doc that you note possible occurrences (groups, the elements anchored, locked, etc items)

    This presupposes to exclude grouped and docked:

    capset ();
    
    function capset()
    {
    var
      mDoc = app.activeDocument,
      // anchored or grouped items excluded
      myGraphics = mDoc.splineItems.everyItem().getElements(),
      picContainer, gb, myCaption;
    while(picContainer = myGraphics.pop() )
    {
      // exclude empty frames
      if (!picContainer.graphics.length) continue;
      gb= picContainer.geometricBounds;
      // add a frame to to picture's parent, which is a Page
      myCaption = picContainer.parent.textFrames.add ();
      // set position and size of the caption
      myCaption.geometricBounds = [gb[2], gb[1], gb[2]+3, gb[3]];
      // add placeholder contents
      myCaption.contents = "Caption";
      mDoc.groups.add ([picContainer, myCaption]);
      }
    }
    

    Jarek

  • When I open a new document for print in indesign, which is the default document PPI?

    When I open a new document for print in indesign, which is the default document PPI?

    There is no such association resolution level file in InDesign. The elements of your InDesign layout retain their respective characteristics; a 72 DPI raster image can coexist with a 300 ppi raster image and a 150 ppi raster image, as well as resolution independent vector graphics and text; and they all remain exactly as they are, independently of each other with respect to the resolution.

  • 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

  • Script to display the size of InDesign pages instead of the size of the Document format

    Hello, I have been very kindly helped with the script (using a text variable), which displays the size of the current page within an InDesign document below.

    The result gives it is based on Document format, and I was wondering if it was possible to amend it to base the result on the size of the Page instead (as you can now change the size of the page regardless of the configuration Document in InDesign using the Page tool). I don't know anything about the scripts by the way!

    Thank you very much in advance for any help.

    var doc = app.activeDocument;

    doc.viewPreferences.horizontalMeasurementUnits = MeasurementUnits.millimeters;

    doc.viewPreferences.verticalMeasurementUnits = MeasurementUnits.millimeters;

    var l = doc.documentPreferences.pageWidth,

    h = doc.documentPreferences.pageHeight,

    PageSize = app.activeDocument.textVariables.itemByName ("PageSize");

    pagesize.variableOptions.contents = h + w + "X mm", "mm";

    Try this,

    var doc = app.activeDocument;
    doc.viewPreferences.horizontalMeasurementUnits = MeasurementUnits.millimeters;
    doc.viewPreferences.verticalMeasurementUnits = MeasurementUnits.millimeters;
    for(var i =0;i
    

    Kind regards

    Cognet

  • How to reduce the size of Indesign documents PDF export?

    I wonder if there is a way for Indesign reduce the size of page of a multiple page document?

    I have a 38 page book that has a page size of 9 "x 8"... so the spread size is 9 "x 16".

    I want this in order to reduce the size of the exported PDF file.

    So if there is a way to reduce the size of PDF, that would work too.

    I looked everywhere but could not find a function that allows you to reformat and save this document to a 50 percent reduction, for example.

    Is there such a feature with Indesign on CS1? (or one of the more recent versions CS?)

    Currently the smallest PDF I can export this document is 8 MB. (it contains a lot of graphics)

    I want to get that figure up to 3 MB or more.

    I have the dpi all reduced to 72 dpi... which has helped to reduce the PDF of the original 58 MB.

    But how is it possible to make it even smaller for emailing?

    Thanks for your suggestions.

    And in the process you'll find yourself with a flattened PDF. If you send to a client for proofing, be prepared to explain that these ugly white lines in all directions does not print it. And when they print to a desktop printer and print some lines, you'll have a problem of real credibility on your hands.

    Just a warning.

    Bob

  • Hello I have PC and pay monthly. We are a small company. Question 1: For two years I have a full subscription to Adobe all programs. But the other day I would open an another user InDesign documents and could not open this with the error message: the

    Hello

    I have PC and pay monthly. We are a small company.

    Question 1: For two years I have a full subscription to Adobe all programs. But the other day I would open an another user InDesign documents and could not open this with the error message: "the document is done a new version than my version of InDesign. How should I do to upgrade my version to a version more recent?

    Question 2: I already have a license to use the software on two computers. Am I not allowed to use the same version I've taken down on adobe.com til two computers or terms here.

    Sincerely

    Stefan Svensson

    Hello

    Please see update requests in your desktop CC application.

    CC Adobe license can be activated on 2 machines using the same Adobe ID, but only one at a time.

    Reference: licenses and terms of use | Adobe

    Kind regards

    Sheena

  • How to reduce the size of the file for documents

    How to reduce the size of the file for documents

    The full version of Acrobat can do (not for free Acrobat Reader) for the pdf files.

    Please give us some info like what type of file you are talking about and software that you have at least.

  • Text for the size of the document variable

    I wonder if there is a way to put the size of the document in a text box (for example in the slug) when you print or export to PDF? Perhaps as a text variable? Someone suggested to use the script but I code (still ).

    Thank you

    benc_academie wrote:

    And while were at it, why not a variable for "Document name" or "name of the current layer?

    Type > text Variable > insert Variable > file name.

    What do you mean by "name of the current layer? Change the active layer (current) change the variable? Wow, I wouldn't change this file. Whenever I click on an object, the text could flow back. I don't see this feature.

  • The size of the InDesign document serious error whenever I try to change.

    Hello world.

    So this guard that happens every time I try to change the size of the document (after the strike in the new size and press OK).

    I don't know what is happening, and it's stressing out me!

    Someone met with this error message?Screen Shot 2014-11-17 at 12.03.58.png

    It wasn't a new document. A document existing, just try to change the size.

    In any case, it's working now. Copied and pasted everything in the new document. Suspect that the original file may be damaged.

Maybe you are looking for