Problem saving and exporting of .idml

I try to save a project of 20 MB in .imdl with CC InDesign, but the result is an archive of the imdl of 1 or 2 MB that does not work. (I tried "Save as" and export). Does anyone know what is the problem?

It is expected that an IDML file will be smaller than its parent INDD file. number of bits extrinsic is ejected in the conversion process. (Things like previews of image, which will be recreated when the file is reopened with related files available).

You say the IDML does not work; What wrong with it?

Tags: InDesign

Similar Questions

  • How do you reapply the background noise that you have deleted after having saved and exported a file in Adobe Audition

    Hello

    I recently applied effects to a dossier of a cleaner noise adaptive and saved and exported the file as a .wav and MP3. Now I want to apply again the noise or, basically, to remove the effects that I applied. However, when I go to eliminate effects by going into the tab at the top right of the effects rack option to remove the effects is not highlighted and does not allow me to select.

    Does anyone know why this is? (A friend who uses Avid says he can reverse the removal of background noise) And, is there a way I can apply again the noise / remove the effect I applied?

    Thank you!

    Holly

    You can only cancel the Adaptive NR if you used in Multi-track mode, and you have the recorded session. You will need to go back to the original session and it cancel. But if you have, then the original file you used will always be intact anyway, like Multi-track is non-destructive.

    But if you did the NR in waveform mode to your original file and saved, well, then I'm afraid you're completely stuffed - save the file displays the result to him, and there is no possible "undo" mechanism, such as which relies on temporary files of the whole thing being recorded, and if you did with all that you would end up with a completely full hard drive without delay. That is why, if that's all you are concerned at all, then you change a copy of it, rather than the original.

  • Color change to image saved and exported

    Hi all

    I hope someone can help.

    I kept different images for a client, saved as CMYK and color from the client, other laptops, printers and phones is extremely different, almost like a RAW unedited image. I have checked through all the color settings and read all the forums, but nothing. The image I see in PS CS6 is very different from those printed and read by others, the skin is red and image has a very strong purple tinge. I'm going crazy...

    The suggestions will be extremely beneficial as contact for Adobe is good, does not exist!

    Kind regards

    There are several potential problems here. If you want to send clients, check first convert them to sRGB files.

    To go more in depth:

    • There is no such thing as 'generic' CMYK or RGB 'generic '. You have to study and work, specific CMYK and RGB icc profiles. Image > command Mode can be very misleading and lead to disastrous results, if you don't know that. What it does, is to refer to any CMYK or RGB profiles that you configured as your workspaces, in the Photoshop color settings.
    • To CMYK, you must have the right profile. The profile is one that describes in fact offset press and the papers that will be used for printed documents. Get this printer profile (or they tell you that you use). The default value of Photoshop's us Web Coated (SWOP), but it is actually not used anywhere outside America.
    • All CMYK and RGB profiles differ widely in range, otherwise said, what colors can be contained in this color space. Saturated colors that lie in the range in a single space, may be out of gamut in another. Then it just gets cut and may not be reproduced.
    • A line right profile conversion, so RGB > CMYK, RGB > RGB or something else, will keep the colors as much as possible. But out-of-range colors are lost and replaced by the closer in the range.
    • Photoshop is color managed will properly manage all these profiles and really show you what the file looks like. It will convert between them and preserve the appearance of the color. Many the most other viewers the picture are not the color management and don't know what an ICC profile. They cannot be trusted and will probably wrong colors displayed. Poor/lack of CMYK support in these viewers make it even worse.
  • Saving and exporting passwords

    I think to update to El Capitan of Cougar and I want to save my passwords web various on the external drive first. I forgot where an episodes on my iMac I can find these. Help and reminders please.

    Thank you

    Rob

    Make a backup before installing, preferable 2 backups on 2 different disks. Who will ensure that all of your data, including web passwords will be saved.

    Time Machine from the Clones and Archives

    Commonly used backup methods

  • Problem saving and loading multiple images in the same file

    Hello

    I am having a problem, I have a thah program creates a fileOutputSteam and a gzipOutputSteam and finally an imageIO wrote several images, then I do the reverse process, a
    FileInputsteam and an inputsteam of gzip, imageIO.read read only image of frist, not the rest.

    Can someone help me?
    PS: Sorry for my bad English, I'm Spanish

    Code:
    class Lector {
    
        // Atributos
        private String ruta;
        private static Collection<Imagen> imagenes;
    
        /**
         * Clase que carga un fichero .zip lleno de imagenes
         * @param ruta: ruta donde se halla el fichero .zip a cargar
         */
        public Lector(String ruta) {
        }
        /**
         * Constructor sin parametros
         */
        public Lector() {
        }
        /**
         * Metodo que setea el archivo que queremos cargar
         * @param ruta: Ruta del fichero a cargar
         */
        public void setArchivo(String ruta) {
            this.ruta = ruta;
            imagenes = new ArrayList<Imagen>();
        }
    
        /**
         *
         * @param output: Lugar donde sera representada la salida de la carga de imagenes
         * @return retorna 1 si la carga fue bien y 0 si fue mal
         * @throws FileNotFoundException : excepcion por  no haber encontrado el fichero
         * @throws IOException: excepcion por no poder leer el fichero
         */
        public int cargarImagenes(JTextArea output) throws FileNotFoundException, IOException {
            ZipEntry entrada;
            int contador = 0;
            String archTemp = "temp.jpg";
            FileInputStream fis = new FileInputStream(ruta);
            ZipInputStream zis = new ZipInputStream(new BufferedInputStream(fis));
            BufferedOutputStream dest = null;
            byte[] data = new byte[9000];
    
            // Leemos secuencialmente el archivo zip
            while ((entrada = zis.getNextEntry()) != null) {
                File bufferTemporal = new File(archTemp);
                System.out.println("Archivo " + entrada.getName() + " cargado!");
                output.append("Archivo " + entrada.getName() + " cargado!\n");
                if (!entrada.isDirectory()) {
                    FileOutputStream fos = new FileOutputStream(bufferTemporal);
                    dest = new BufferedOutputStream(fos, 9000);
    
                    while ((contador = zis.read(data, 0, 9000)) != -1) {
                        dest.write(data, 0, contador);
                    }
                       //Cerramos los buffers
                    dest.flush();
                    dest.close();
                    fos.flush();
                    fos.close();
    
                    FileInputStream fin = new FileInputStream(bufferTemporal);
                    BufferedImage bi = ImageIO.read(fin);
                    //Guardamos el fichero
                    imagenes.add(new Imagen(bi, entrada.getName()));
                }
               bufferTemporal.delete();
            }
     
            // Cerramos los bufferes
    
            fis.close();
            zis.close();
    
           
    
            saveAsGzip("dato.gz");
            loadAsGzip("dato.gz");
            return 1;
        }
        /**
         * Funcion que carga la simagenes de dentro del .zip y las guarda en el objeto Imagen
         * @return retorna 1 si la carga fue exitosa
         * @throws FileNotFoundException: Excepcion por no encontrar el archivo
         * @throws IOException: Excepcion por no poder leer el archivo
         */
        public int cargarImagenes() throws FileNotFoundException, IOException {
            ZipEntry entrada;
            int contador = 0;
            String archTemp = "temp.jpg";
            FileInputStream fis = new FileInputStream(ruta);
            ZipInputStream zis = new ZipInputStream(new BufferedInputStream(fis));
            BufferedOutputStream dest = null;
            byte[] data = new byte[9000];
    
            // Leemos secuencialmente el archivo zip
            while ((entrada = zis.getNextEntry()) != null) {
                File bufferTemporal = new File(archTemp);
                System.out.println("Archivo " + entrada.getName() + " cargado!");
    
                if (!entrada.isDirectory()) {
                    FileOutputStream fos = new FileOutputStream(bufferTemporal);
                    dest = new BufferedOutputStream(fos, 9000);
    
                    while ((contador = zis.read(data, 0, 9000)) != -1) {
                        dest.write(data, 0, contador);
                    }
    
                    dest.flush();
                    dest.close();
                    fos.flush();
                    fos.close();
                    java.io.FileInputStream fin = new FileInputStream(bufferTemporal);
                    BufferedImage bi = ImageIO.read(fin);
    
                    imagenes.add(new Imagen(bi, entrada.getName()));
                }
               
            }
    
            // Cerramos los bufferes
            fis.close();
            zis.close();
    
            dest.flush();
            dest.close();
    
            
            return 1;
        }
        /**
         * Funcion que retorna el array de peliculas
         * @return retorna el array de peliculas
         */
        public Collection<Imagen> getImagenes() {
            return imagenes;
        }
        public int saveAsGzip(String pathFichero) throws FileNotFoundException, IOException{
    
            FileOutputStream fos = new FileOutputStream(new File(pathFichero));
         //GZIPOutputStream gzip = new GZIPOutputStream(fos);
            BufferedImage temp2;
            Imagen img;
    
            Iterator ite = imagenes.iterator();
            while(ite.hasNext()){
                img = (Imagen) ite.next();
                temp2=img.getBufferedImagen();
                
                boolean i= ImageIO.write(temp2, "JPEG", fos);
                System.out.println(i);
    
            }
            System.out.println();
    
            //gzip.finish();
            fos.flush();
             
            fos.close();
           
            //gzip.close();
    
            return 1;
        }
        public int loadAsGzip(String pathFichero) throws FileNotFoundException, IOException{
    
            imagenes.clear();
            
            FileInputStream fos = new FileInputStream(new File(pathFichero));
         //GZIPInputStream gzip = new GZIPInputStream(fos);
            BufferedImage img;
    
    
                for(int i=0;i<=100; i++){
                    
    
                 
                    img=ImageIO.read(fos);
    
                    
                    if (img != null){System.out.println(img);
                    imagenes.add(new Imagen(img, String.valueOf(i)));}
                       
                    
    
    
            
                }
    
    
    
    
           // gzip.close();
            fos.close();
    
            return 1;
        }
    }
    Published by: sabre150 on October 28, 2010 01:43

    Moderator action: added
     tags to source.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        

    805814 wrote:
    Oh, sorry again, Ii have commented on all of the code not clear in my best English and posted the image of class:

    (sigh) OK, it's an improvement, but it is not yet an NBS! I think it would take me less time to write code that is a NBS that try to explain more (perhaps an example is better here?). In all cases, your code still seems to be mixing the two Zip and GZip. I've never dealt with GZip and could not be disturbed from now just for this problem, so I focused on using the Zip classes.

    Try this code:

    import java.awt.*;
    import java.awt.image.*;
    import javax.swing.*;
    import javax.imageio.*;
    import java.util.*;
    import java.util.zip.*;
    import java.io.*;
    
    /** SSCCE that demonstrates how to:
    1) Create some random images.
    2) Store them to a Zip File.
    3) Restore them from a Zip File
    Please study the code carefully, and note how in a single Java source of less
    than 100 lines of code, it manages to achieve the entire demo.!
    @author Andrew Thompson */
    class StoreImagesAsZip {
    
        static Random random;
        static int size = 60;
    
        public static BufferedImage getRandomImage() {
            BufferedImage bi = new BufferedImage(size,size,BufferedImage.TYPE_INT_RGB);
    
            Graphics2D g = bi.createGraphics();
            GradientPaint gp = new GradientPaint(
                (float)random.nextInt(size),
                (float)random.nextInt(size),
                new Color(random.nextInt(255),random.nextInt(255),random.nextInt(255) ),
                (float)random.nextInt(size),
                (float)random.nextInt(size),
                new Color(random.nextInt(255),random.nextInt(255),random.nextInt(255) )
                );
            g.setPaint(gp);
            g.fillRect(0,0,size,size);
    
            return bi;
        }
    
        static public void writeImagesToZip(File file, BufferedImage[] images) throws Exception {
            OutputStream os = new FileOutputStream(file);
            ZipOutputStream zos = new ZipOutputStream(os);
            // Zip does nothing for otherwise compressed media formats such as JPEG and PNG
            zos.setLevel( ZipOutputStream.STORED );
    
            for (int ii=0; ii< images.length; ii++) {
                ByteArrayOutputStream baos = new ByteArrayOutputStream();
                ImageIO.write(images[ii], "png", baos);
    
                ZipEntry ze = new ZipEntry( ii + ".png" );
                zos.putNextEntry( ze );
                zos.write( baos.toByteArray() );
                zos.closeEntry();
            }
            zos.flush();
            zos.close();
        }
    
        static public BufferedImage[] readImagesFromZip(File file) throws Exception {
            ArrayList images = new ArrayList();
    
            ZipFile zipFile = new ZipFile(file);
            Enumeration en = zipFile.entries();
            while (en.hasMoreElements()) {
                ZipEntry ze = (ZipEntry)en.nextElement();
                InputStream is = zipFile.getInputStream(ze);
                BufferedImage bi = ImageIO.read(is);
                images.add(bi);
            }
    
            BufferedImage[] imageArray = new BufferedImage[images.size()];
            for (int ii=0; ii
    

    Also note that I now invested a lot of time trying to help you. If you like what I've done, the best way to show that is on the occasion of my responses as "Helpful" or "correct". If the problem is "answered", make sure that mark also.

  • Data are skewed between saving and loading

    Hello

    I'll have a problem saving and loading the data in my VI. My software allows the user collect data from an acquisition of data which is then displayed on a graph for them to see. They can save the data, then load it back later to compare with the current data. Here is the basic methodology:

    1. the data are read in the program via a data acquisition

    2. data are saved in a file in spreadsheet to a table with the VI 'save in the spreadsheet file.

    3. the data is loaded to the program with the VI "read the spreadsheet file.

    4. the data are transferred in the same graph is was originally shown on

    However, when I save the data and reload, my chart is slightly distorted. I noticed a few things:

    1. the values of X are a little more for the loaded data vs the same data front to save/load (DECIMAL NUMBERS)

    2. the values of are are not affected. (WHOLE NUMBERS)

    3. the loaded data are more straight lines, which means that the same data point is used for row X or Y values

    attached is a screenshot of the graph - red data is from this session, Green data is loaded.

    export excel to this same graph is attached.

    No one noticed an interesting trend in this anomaly, or have any ideas on what I can check? My code does not change the values, but only manipulates them. Please let me know if you need more information, I've tried including as much as I could without a useless book.

    Thank you

    Joe

    To solve this kind of problem, replace the random number generators with a simple signal that you can easily identify as a linear ramp, the number of iterations or a low frequency sine wave. By selecting a signal that is suitable for your application, you should be able to tell if the data are all be recorded and in the right order.

    The use of nodes property to move data around sounds like a disaster in the making.  Examine the queues, user events, or functional global variables.

    Lynn

  • problem saving my logo

    Please guys how can I save my work of illlustrator cc Flash drive or desktop?

    When I try, I still have it but I'll have to open the Illustrator 1 link

    PAPIN,

    When you save it as AI, you can open the file with Illy, or another application that can open files HAVE (some may open some older versions); If you check create a Compatible PDF file, you can also open the file with Acrobat or Reader.

    Otherwise, you will need to save and export to another format.

    Normally, the files are saved and exported in any formats to suit the application.

    What you see on the desktop is not a link to the application, but the file itself. When you double-click on it, the application is open because it is necessary to open the file. You can try right click and open with and choose Acrobat or Reader and see what happens (Win talk).

  • I use LR 6.5 on an iMAC. Files RAF Fuji originally, I imported from an SD card worked and exported in the form of PSD and then after saving the files on an external hard drive RAF erased from Lightroom. I now want to import some RAF b HD files

    I use LR 6.5 on an iMAC. Files RAF Fuji originally, I imported from an SD card worked and exported in the form of PSD and then after saving the files on an external hard drive RAF erased from Lightroom. I now have to import some RAF of the HD files but LR shows them as dazed out and said that they have already been imported when I hover over the thumbnail. I have this problem when importing files in the same HD Canon CR2, and who have been treated exactly the same. Anyone got a clue as to why this is happening? Thanks, Phil

    Hi Phil,

    If Lightroom then reads these as duplicate files, it shows that they are already present in your Lightroom Catalog.

    You can search by file name and check if the image is present in your library.

    Kind regards

    Claes

  • Problem with the Master model and export

    ID CS 5.5. Version 7.5.3

    Windows 7

    Hi Forum,

    I do apply a single master model to a 28-page document.

    Master.PNG

    If I export to PDF using the predefined format for the smallest file size or PDF/X-4 export is correct:

    smallest.PNG

    If I export using the predefined PDF/X-1 or X 3 I get a few pages like this (block Logo and Page-no on both sides):

    X3.PNG

    This only happens on pages 8 and 9, 16-17, 22 and 23 of 28 pages.

    I tried exporting to idml and reopening.

    I removed the master of all pages, checked for parasites and then be given items the master.

    Drinks a lot of coffee!

    No pictures go to the gutter.

    I need the finished PDF to PDF/X-1 has.

    1.) why InDesign hate me?

    2.) can anyone please suggest a remedy?

    Thank you for your time and your consideration.

    No, but try to use individual bars instead. I think that there is a bug that does this.

  • problem with a css option and exporting images

    I looked for an answer to this small inconvenience for days that maybe someone can help out me?

    on the adobe tv section States Jim Babbage around the 12:00 mark that you can export EVERYTHING using the css and images-exporter like when using the option.you export html and images can be seen here:

    http://TV.Adobe.com/#VI+f1594v1010

    My problem is the check box for "current page only" is grayed out that so always check if I'm unable to export all pages at once in the option "css and images".

    I tried setting my preferences, and searching the forum and came up empty. does anyone know how to access this option?

    This occurs only in the css and images export option not in other export options that allow all pages to export at the same time.

    It is a nuisance minor I know but I would really only my programs work as they are supposed to (asking too i know, I know, but we can always hope!)

    Thanks in advance!

    is attached a comparison side by side (mine & adobe)

    In fact, the link you posted is from video of James Williamson.  To any

    rates of these videos have been created - including my own - that we used

    beta versions of the software, and sometimes features in the beta

    are not in the final version. This is the case for the multi-page

    exporting CSS and images. At some point in the beta version, it's a feature,

    but there were stability problems with the export of multiple pages for CSS

    and Images, so it has been removed during the FW THAT came out.

    There are other concerns I had with the export of several page to

    time, you ended up with a stylesheet for each page or incorporated

    styles for each page, which does not - IMO - a lot of sense. Defeats

    the purpose of a style sheet.

    HTH clearly things!

    Jim Babbage

    NewMedia Services

    http://www.newmediaservices.ca

    Partnership with Community MX-

    http://www.communitymx.com/author.cfm?cid=1036

    Adobe Community Expert

    http://www.Adobe.com/communities/experts/members/206.html

    Author - Lynda.com

    http://MovieLibrary.Lynda.com/authors/author/?aid=188

    Author: Peachpit Press

    http://www.Peachpit.com/store/product.aspx?ISBN=0321562879

  • Rendering and export failed with an unknown error because of the color of Lumetri?

    I am rendering & export failures with an 'unknown error' code within Premiere Pro and Media Encoder.  I think that the problem is related to the Lumetri color filter that is widely used in all of the timeline.  There are hundreds of clips and each clip has 2-4 color filters Lumetri applied.  Each clip also has the red giant Cosmo and filter FilmConvert Pro 2.36.1 coming to overlap (visually underneath by order of effects filters Panel) all filters from Lumetri.  The reason why I believe that the problem is related to the Lumetri color filter is that it is the first time that I use.  Previously, I used the filter red giant Colorista III coloring, but last week decided to try using the Lumetri color for the same effect.

    Please let me know if anyone has had similar experiences, what were their solutions, or if someone has some ideas on how to solve this problem.  I would really appreciate the help!

    System details:

    Windows Pro 64-bit 10

    Intel i7 5960 X 8-core 3.0GHz (cooled water and too quick to 4.2 GHz)

    64GB 2133 MHz DRAM (non-ECC)

    2 x Nvidia GTX 980 4 GB GPUs (not in SLI)

    Intel 750 PCIe 400 GB SSD (for BONES)

    SSD Pro 1 TB Samsung 840 (for Adobe Cache)

    SSD Pro 1 TB Samsung 840 (for export)

    Matrix RAID 5 of 48 TB (eight 6 TB HDs with MegaRAID, LSI 9361-8i card) (for media)

    Information on the timeline:

    1920 x 1080 (original video files are MP4 UHD scaled down by 50% in the timeline)

    23.976 fps

    CUDA Mercury Render Engine

    Length of the sequence: 14:30

    I have discovered a workaround of sorts.  I noticed that when rendered in PP he would make progress before a failure (the green line that precedes the timeline would get a little longer).  If I saved this progress and rebooted the system, then tried to make it again, it would make a little further.  I've done this dozens of times for 4 hours make completely a 14:30 long sequence.

    I noticed doing this routine that my CPU was maxxed on all rendered.  Resource monitor reported the use of CPU to 143% continuous (all other indicators RAM, disk speed, etc. were well under their maximums).  This brings me to suspect that maybe there is a problem with overheating of the CPU.  But who would be closed for the entire system, correct?

    Once the entire sequence has been made (all the green lines above clips) I tried export by using the "Use preview files" option enabled.  Failure again.  I tried export uncompressed AVI, Quicktimes and PNG sequences.  All have failed.  I tried to export to PP as well as TEA.  The two have not.  I tried to export with option 'To make maximum quality' is enabled.  Surprisingly, this product the longest time encoding managed (32 minutes before failure).  As by chance, using the option of MRQ kept my CPU loads sawtoothing between 100% and 75%, then maybe there's something to the CPU overheating theory?

    In an ultimate attempt desperate to save my video project (looming deadlines!) I divided the sequence of Assembly in five servings (I cut on the melted white or fade-to-black transitions) and exported to each of them.  This copy export times within 20 minutes.  It worked.

    I noticed this another Adobe Forums thread that seems to speak of the similar difficulties with effects of Lumetri in Creative Cloud 2015.  Perhaps the Lumetri effects are not ready for prime time?

    https://forums.Adobe.com/thread/1236018?start=0 & tstart = 0

    Please let me know if anyone has any ideas on this.  In the meantime, I'll wind up this project and never use Lumetri effects again.

    Hello Kevin,

    Thank you for offering help to solve this problem.

    I was able to export the majority of the sequence with all the Lumetri effects, red giant and FilmConvert mixed in clips.  After the sequence using the tedious method described above I segmented the sequence in the quarterfinals; all exported except one.  I divided it into two; Another exported doesn't have.  I cut half too, once again only half exported without failure.  I finally reduced the embarrassing part until a second sequence clips 35; an interview with green screen with superimposed titles and superposition of b-roll clips.

    I removed all the effects of the Lumetri of these clips and replaced by Red Giant Colorista III effects, which are very similar to the effect of Lumetri in the GUI and application.  The sequence made completely without "unknown error."  Then it was exported successfully (and used about 70% when compared to more CPU activity 110% with the Lumetri to export).

    The difference would be that the effect of color of Lumetri has this YUV icon next to it in the effect controls panel?  Which means that YUV?

    The problem is perhaps not totally related to the color of Lumetri effect (as I said, I was able to export the majority of the 14:30 sequences use, although gradually by segmentation of the sequence into smaller portions), but if the move is a solution then I'll use it.

    I lost a day to fix this.  If this thread is useful to someone else, then it was worthwhile.

  • Problem saving to the PDF/A format

    Hello

    I have problems saving my. PDF to PDF/A. My thesis deadline is in a few days, so quick help is appreciated.

    I use Mac Acrobat version 10.1.0

    When I export, I get this message:

    Screen Shot 2015-04-09 at 2.52.29 PM.png

    When I run the preflight, I get the following errors:

    Screen Shot 2015-04-09 at 3.50.15 PM.png

    The document has been exported from word to PDF, then edited in acrobat. It has been necessary to adapt the page numbering, since the word is impossible to work with.

    Please help, thanks!

    I had the same probems and solved it like this:

    • Option 1: Install the latest version of acrobat pro DC (that much improves the conversion of PDF/A-1). There is a trial version if you want to try first...
    • Possibility 2: If you're stuck with Acrobat X, try the following
      1. to export the file to Word using the 'Adobe PDF' printer and set the stanard to PDF/A-1b. This will provide you with a file conform to PDF/A-1.
      2. Make your changes in Acrobat (page numbering etc.)
      3. Use the preflight (convert to PDF/A-1) or you can try the File\Save as\PDF-A

    The two have worked for me...

  • Exporting to idml - idml settings - Adobe InDesign CS5

    Hi all

    I have a problem with the export of an idml file.

    I created a file Adobe InDesign Template (in this case a white book) and put a text in this model. When I want a new white paper I copy the new text, replacing the original text in the templete. So far so good.

    But when I export this new indesign file to .idml for purpose of the translation, the idml file still contains the original text of the InDesign template I created originally. It is very annoying for all translators, since they will translate the same text over and over again.

    The 3rd party software that we use to read and translate the file .idml is Deja-vu http://www.ATRIL.com/

    1. How to get rid of this 'inherited text' in the idml file?
    2. And how can I change the settings for the idml file?

    Hope you can help. Call Adobe support couldn't help me with this.

    Kind regards

    Joost

    It certainly has to do with the track changes.

    In my memory, it may be necessary to re - turn on track changes, accept all the changes, turn on turn off, then save under the file and close it.

    Open the new INDD file, then that exporting to IDML.

    Basically, if InDesign thinks that there are changes, they will be exposed in the IDML. So anything that reads IDML must be prepared for it. As you say, by filtering. The scariest part, at least if you're in shape the IDML, is that you must also manage InsertedText and MovedText. I guess that's not a big deal for the translation.

    In addition, if there are Notes in the document, those too will appear in the IDML.

  • Page auto numbering problem if I export to PDF

    I use IDS 5.5 with all updates. I set up a book and when I export to PDF for print, fourth chapter numbering remains the same (namelly pages 56 and 57) although I have implemented correctly master pages with the special character of AutoNumber. If I export only this chapter as a document, it exports all right. No problem with the numbers of the pages (?). In ID, the numbers look ok. I have not tried to print directly fron ID, I guess it will print ok, but it's a very strange behavior... Thanks much for any thoughts.

    It is unlikely, that there is a problem with Acrobat, try opening this chapter only and exportingit to idml, then resave as indd.

  • Engine session and export in binary form

    I seem to have a binary export problem when the script uses the targetengine session. I tried to work through the examples of export to Xhtml, but have had no luck. If someone could point me in the right direction that would be appreciated, or if it is not possible to save me the time to try to get to work.

    Here is an example of a simple dialog box that works like a jsx but not a jsxbin.

    
    

    #target indesign
    #targetengine "session"
    if(app.documents.length != 0){
    var myDialog = new Window('palette','Starting Pg No');
        myDialog.dPgNo = myDialog.add('panel',undefined,'File details');
        myDialog.dPgNo.alignChildren = 'left';
        myDialog.dPgNo.myPgNo = myDialog.dPgNo.add('group');
        myDialog.dPgNo.myPgNo.myGroup = myDialog.dPgNo.myPgNo.add('group');
        myDialog.dPgNo.btnGroup = myDialog.dPgNo.add('group');
        with (myDialog.dPgNo){
            myPgNo.myGroup.orientation = 'column';
            myPgNo.myGroup.alignChildren = 'right';
            myPgNo.myGroup.preferredSize = [90,15];
            myPgNo.myGroup.st  = myPgNo.myGroup.add('statictext',undefined,'Your Doc starting page is:');
            myPgNo.et = myPgNo.add('edittext', undefined, app.activeDocument.pages[0].name)
            btnGroup.btn = btnGroup.add('button', undefined, 'Update');
            btnGroup.alignment = 'right';
        }
    myDialog.show();

     

    myDialog.dPgNo.btnGroup.btn.onClick = function() {
        var myPagestart = myDialog.dPgNo.myPgNo.et.text;
        myDialog.close();
        if (app.activeDocument.pages[0].name != myPagestart){
            app.activeDocument.pages[0].appliedSection.continueNumbering = false;
            app.activeDocument.pages[0].appliedSection.pageNumberStart = parseInt(myPagestart);
            app.activeDocument.pages[0].appliedSection.sectionPrefix = "";
            alert("Your document start page has been changed to "+myPagestart+".");
        }
    myDialog.show();
    }
    }else{
        alert("Please open a document and try again.");
        }

    Hi John,.

    Create a folder in your Indesign Scripts folder Panel, lets call him myaccount.

    In this case, let's put two files, the first is your script as a binary file, the second is a charger as jsx file.

    Following should be pasted in ESTK and exported in the form of jsxbin, save the file in myFolder as myScript.jsxbin:

    app.scriptPreferences.userInteractionLevel = UserInteractionLevels.interactWithAll;
    If (app.documents.length! = 0) {}
    var myDialog = new window ("palette", "From Pg" no);
    myDialog.dPgNo = myDialog.add ('panel', undefined, 'File Details');
    myDialog.dPgNo.alignChildren = 'left ';
    myDialog.dPgNo.myPgNo = myDialog.dPgNo.add ('group');
    myDialog.dPgNo.myPgNo.myGroup = myDialog.dPgNo.myPgNo.add ('group');
    myDialog.dPgNo.btnGroup = myDialog.dPgNo.add ('group');
    with (myDialog.dPgNo) {}
    myPgNo.myGroup.orientation = "column";
    myPgNo.myGroup.alignChildren = 'right ';
    myPgNo.myGroup.preferredSize = [90.15];
    myPgNo.myGroup.st = myPgNo.myGroup.add ("statictext', undefined,' Doc your start page is :');")
    myPgNo.et = myPgNo.add ('edittext', not defined, app.activeDocument.pages [0] .name)
    btnGroup.btn = btnGroup.add ('button', undefined, 'Update');
    btnGroup.alignment = 'right ';
    }
    myDialog.show ();

    myDialog.dPgNo.btnGroup.btn.onClick = function() {}
    var myPagestart = myDialog.dPgNo.myPgNo.et.text;
    myDialog.close ();
    If (app.activeDocument.pages [0] .name! = myPagestart) {}
    app.activeDocument.pages [0].appliedSection.continueNumbering = false;
    app.activeDocument.pages [0].appliedSection.pageNumberStart = parseInt (myPagestart);
    app.activeDocument.pages [0].appliedSection.sectionPrefix = "";
    Alert ("your start page of document has been changed to" + myPagestart + ".");
    }
    myDialog.show ();
    }
    } else {}
    Alert ("Please open a document and try again.");
    }

    Following should be pasted in ESTK and saved in the jsx form, save the file in myFolder as myLoader.jsx:

    indesign #target
    #targetengine "session".
    var myScript = loadScript ("myScript.jsxbin");
    If (myScript! = undefined) {}
    Run it
    eval (MyScript);
    }

    function getScriptsFolderPath() {}
    try {}
    script var = app.activeScript;
    } catch (e) {}
    We are short of the ESTK
    script var = line (e.fileName);
    }
    Return script.path + ' / ';.
    }

    function loadScript (filename) {}
    var file = File (filename + getScriptsFolderPath ());

    script var = not defined;
    If (file.exists) {}
    leader. Open ();
    script = file.read ();
    leader. Close();
    } else {}
    Alert ("unable to locate the file:" + filename);
    Exit();
    }
    We return the script rather than the eval() here calls
    because the results of eval() are only valid in the
    scope of the function that called eval()
    return of script;
    }

    Now just open Indesign and run the myLoader.jsx script and it should work.

Maybe you are looking for