Pdf export artwork missing

Hello illustrators.
im exporting a pdf from illustrator,and half of my artwork is missing!what can i have done wrong?
thank you.

Well, I don't have an answer to the question, but I have been able to come up with a workaround that others might be interested in...
What I did was split the presentation into two pieces and generate PDFs from each piece. The (shorter) pieces both exported correctly. Then I used PDFLab (http://www.iconus.ch/fabien/index.html), a free PDF Utility, to put the two pieces back together. The result was a single PDF that contained the entire presentation.
In my mind, the fact that this workaround was successful suggests to me that there is a bug in the PDF Export code of Keynote (at least v4.0.4 — I haven't bought into iWork 09 yet).

Similar Messages

  • Bug - PDF export missing brush strokes

    Can anyone reproduce this apparent bug in FHMX?
    1. Apply a brushstroke to an object.
    2. Group with 'Transform As Unit' checked.
    3. Duplicate object several times. Scale some of the copies
    larger and some
    smaller.
    4. Export document to PDF.
    Open exported PDF in Acrobat, Illustrator or Preview.
    Unexpected results:
    All of the scaled copies of the object are missing from the
    PDF.
    Judy Arndt
    FHMX 11.0.2, Mac OS 10.4.6

    Rich Hudgins wrote:
    > Confirmed in FH10 - OSX 10.4.x. I tried opening the PDF
    back into FH
    > just for kicks... very interesting. There are the exact
    number of
    > originals and dupes directly on top of the original.
    i.e. I made an
    > original and two smaller and two larger dupes, offset
    from the original.
    > In the FH opened PDF there were 5 exact copies of the
    original item
    > directly on top of each other. There were also 5
    nostroke-nofill copies
    > of the original shape without the brush stroke.
    Wow! Yes! Same here.
    Any transforms done to an object after being grouped with
    'Transform As
    Unit', are being ignored by the PDF Export.
    This series of steps will produce the same problem described
    by Makate.
    1. Apply a brushstroke to an object.
    2. Duplicate object and move it to another location on page.
    3. Group the duplicate object with 'Transform As Unit' (TAU)
    checked. Then
    scale it larger.
    4. Export document to PDF.
    Unexpected results:
    The duplicate object will be the same size as the original
    object.
    This will happen not only with brush strokes but with
    ordinary strokes. PDF
    Export is missing all transformations made after TAU is
    applied. If I
    remember correctly, TAU, which has been in FH since very
    early versions, is
    a kind of Postscript envelope. My theory is that because FH
    doesn't have a
    Postscript interpreter, it's missing the Postsript
    transformations.
    This limitation in PDF Export is very unfortunate because the
    default
    preference setting in a new FH installation is "Groups
    transform as unit by
    default". It is the logical way to preserve the appearance of
    artwork with
    strokes, brush strokes and vector effects. New users could
    not possibly know
    that this is one of the many limitations of PDF export. It's
    not listed in
    the technote, but it may be the reason for 'missing objects'.
    http://www.adobe.com/go/tn_13496
    Using Acrobat Pro/Distiller is the only safe way to generate
    PDF files from
    FreeHand.
    Judy Arndt

  • CS3: PDF-Export Transparency Issue when Image-Links are missing

    I have a Layout with a transparent Frame on the top most Layer. For this Workflow-Step I do not have access to the original Image-Links, so I guess that all I see are the embedded Preview-Pictures and InDesign reports that all Object-Links are missing.
    If I export this Layout as JPG, the resulting JPG looks like the WYSIWYG in InDesign, which is suitable for this workflow-step. However when I export as pdf, the Frame is not transparent anymore. Instead it is filled with white color and covers the rest of the Layout. In Adobe Reader I can actually select the wrongly covered Picture at the border of the frame and copy&paste it somewhere and it looks fine.
    When I provide the original Frame-Picture and repair the missing Link in InDesign, PDF-Export works fine.
    I have installed & updated InDesign on a new Mac OS X 10.4.11, so all settings should be default.
    Transparency Blend Space is set to CMYK. I tried all default PDF-Export Profiles and tried a lot of different settings in the pdf-export dialogue including different PDF-File-Versions, Simulate Overprint on/off, Color-Conversion disabled, disabling Picture-Compression and much more. I also tried to Print a PS-File and then use the Distiller: same result.
    I use Adobe InDesign CS3 V 5.0.2 and tried Adobe Reader 8.1.2 and Adobe Acrobat Pro 8 to display.
    Any Ideas?

    Transparency flattening REQUIRES having access to the high-resolution images to get good results. One of the slogans I teach printers is "Fatten before you flatten." Meaning, replace the low-res images with high-res images.

  • PDF Export: Missing Graphics

    PDF Export: Missing Graphics<br /><br />Below is a section of code we are using to export a document as a PDF. The code will work 99% of the time, but occasionally we are getting the resulting PDF with some of the linked PDF components completely missing!<br /><br />The only way we have been able to reproduce this is (strangely) by continually opening and closing 'Windows Explorer' windows (We are using CS2 on XP), just as the process begins, until the final PDF is created.<br /><br />Our customer (who has hilighted the problem) would clearly not be doing this but we feel there is an issue here. (If the keyboard and mouse are left completely alone, the process is successful... 100% OF THE TIME!).<br /><br />The problem occurs both on site and at base, the linked PDF's are located on the LAN.<br /><br />The code snippet (with error checking taken out for brevity) is below:<br /><br />     UIDRef pageUIDRef = PCSImageUtils::GetFirstPageUIDRef();<br />     UIDList temp = ((UIDList)(pageUIDRef));     <br /><br />     ErrorCode status = kFailure;<br />     do<br />     {<br />          // obtain command boss<br />                InterfacePtr<ICommand> pdfExportCmd(CmdUtils::CreateCommand(kPDFExportCmdBoss));<br />          <br />          // set export prefs<br />          InterfacePtr<IPDFExportPrefs> pdfExportPrefs(pdfExportCmd, UseDefaultIID());<br />          InterfacePtr<IPDFExportPrefs> appExportPrefs((IPDFExportPrefs*)::QuerySessionPreferences(IID_IPDFEXPORTPREFS));<br />          pdfExportPrefs->CopyPrefs(appExportPrefs);<br /><br />          // set SysFileData<br />          PMString pmFilePath("C:\\Outputfile.PDF");<br />          IDFile sysFilePath(pmFilePath);<br />          InterfacePtr<ISysFileData> trgSysFileData(pdfExportCmd, IID_ISYSFILEDATA);<br />          trgSysFileData->Set(sysFilePath);<br />          <br />          // set UI flags<br />          InterfacePtr<IUIFlagData> uiFlagData(pdfExportCmd, IID_IUIFLAGDATA);<br />          uiFlagData->Set(kSuppressUI);<br />          <br />          // set UIDList containing pages to output (item list of command)<br />          UIDList theList(temp);<br />          pdfExportCmd->SetItemList(theList);<br />          <br />          // set UIDRefs containing pages to output (IOutputPages)<br />          InterfacePtr<IOutputPages> outputPages(pdfExportCmd, UseDefaultIID());<br />          outputPages->Clear();<br />          IDataBase* db = theList.GetDataBase();<br />          outputPages->SetMasterDataBase(db);<br />          int32 nProgressItems = theList.Length(); <br />          for (int32 index = 0 ; index < nProgressItems ; index++) <br />          {<br />                  outputPages->AppendUIDRef(theList.GetRef(index));<br />          }<br /><br />          // set PDF document name (get name from IDocument)<br />          InterfacePtr<IDocument> doc ((IDocument*)db->QueryInstance(db->GetRootUID(), IID_IDOCUMENT));<br />          PMString documentName; <br />          doc->GetName(documentName);<br />          outputPages->SetName(documentName);<br />          <br />          // finally process command<br />          status = CmdUtils::ProcessCommand(pdfExportCmd);<br />     } while(false);<br /><br />Thanks in advance.<br /><br />Dave Wilson.

    Hi Dave,
    It looks like a problem with unsafe threads inside command ...
    Did you tried set some preferences from next ?
    SetPDFExOmitPDF( kExportOmitPDFOFF )
    SetPDFExOmitBitmapImages ( kExportOmitBitmapImagesOFF )
    may be help you stabilize export process ...
    Pavol Nachaj
    www.exec.cz
    Prague

  • PDF exported from InDesign missing background when opened in Illustrator

    Hello, I am having a bit of a frustrating problem.
    I'm working on graphics for a large project, and I have to get some of my files from InDesign into Illustrator (they are both CS5) for our printer.
    I would have normally designed them in Illustrator but ALL my graphics are in InDesign and we just found out once we started on production that he needs AI and needs our trim path set up for our irregular shapes. 
    For MOST of the documents, its been pretty easy (exporting to PDF > opening in illustrator and making a cut path > saving as AI) however I have this one file that is making me lose my mind.
    When I export it as PDF, it opens perfectly and looks normal in acrobat, and I also check it out in preview as well. The background shows up and everything. However when I open the PDF in illustrator it completely loses the background. I noticed it doing this before for a couple graphics, but I assumed that was because they had gradients drop shadows and transparencies and all that. This file has nothing weird except for a gradient grey background.
    Help? I'm including some screenshots of whats happening in the hopes that you guys can help solve it.
    So here we have me saving it, then opening it in Acrobat to check stuff out.
    Now here is what happens when I open it in Illustrator:

    Hi, Brie. I have been running into this issue for quite some time now. I also received the same response as you did. "Stop opening exported PDFs in Illustrator." This is an unsatisfactory answer for someone that works in the large format print industry that needs to preflight directly in the Illustrator program. I've done a ton of research and have been racking my brain for the last 2 years and have finally found sufficient workarounds for this issue. The downfall with these workarounds: all spot colors located in the gradients will convert to CMYK mixes. I'm still researching to see if there is a way to keep spot colors intact in these areas.
    A little back story: InDesign is converting the gradients into something called NChannel. It enables more accurate handling of color blending by including additional dot gain and color mixing info. Both InDesign and Acrobat have the ability to display these elements whereas Illustrator, from what I’m finding, does not. Which is why we’re seeing gradient elements drop out when opened in Illustrator.
    Workaround for CMYK Gradients
    Open PDF exported from INDD in Acrobat
    Go to Tools > Print Production > Convert Colors
    Object Type: Smooth Shade (this tells Acrobat to hone in on Gradients only)
    Color Type: DeviceCMYK
    Check Embed next to Conversion Profile (should be SWOP)
    Expand Document Colors on the right and Select DeviceCMYK in Color Spaces then click ok
    Save the PDF
    Workaround for 1 Spot Color in Gradients (Converts Spot Color located in Gradient to CMYK – all other Spots stay intact)
    Open PDF exported from INDD in Acrobat
    Go to Tools > Print Production > Convert Colors
    Object Type: Smooth Shade (this tells Acrobat to hone in on Gradients only)
    Color Type: Spot Color
    Check Embed next to Conversion Profile (should be SWOP)
    Expand Document Colors on the right and Select the Spot that is located in the Gradient in Color Spaces then click ok
    Save the PDF
    Workaround for 2 Spot Colors in Gradients (Converts Spot Colors located in Gradient to CMYK – all other Spots stay intact)
    Open PDF exported from INDD in Acrobat
    Go to Tools > Print Production > Convert Colors
    Object Type: Smooth Shade (this tells Acrobat to hone in on Gradients only)
    Color Type: Spot Color
    Check Embed next to Conversion Profile (should be SWOP)
    Expand Document Colors on the right and Select the DeviceN spot color that is located in the Gradient in Color Spaces then click ok
    Save the PDF
    Please try this and let me know if you have any questions! I'm always looking for new problems to solve! Good luck!
    - Jenny

  • Photoshop CS4 - Layers Missing in PDF Export

    Hi there,
    I'm working on a leaflet design for a client in Photoshop CS4 and am having a real issue with the PDF export. There are three layer groups all containing the same graphics, but when I export these to PDF - whether compressed or uncompressed and I've tried Reader 5 - 8 compatibility and with varying settings the layers do not appear in the PDF.
    They are visible as plain as day in Photoshop, but don't appear at all in the PDF.
    Any help would be gratefully appreciated,
    Many thanks,
    Martin Oxby
    mOxby Design
    Custom Web Design

    Thanks for your answer :-) I will try the gradually merging option first. I did flatten it but lost a LOT of quality in the PDF, which is not great when this has to go to the printer's.
    My image doesn't have clipping paths (probably hard to believe) but does have an epic number of layers. Here are the offending layers - nothing complex at all. The layers that don't appear, simply are the three squares which are in the 'Logo Squares' layer group.
    If this enlightens you at all please let me know and I'll get back to you again. Thanks for posting!

  • Keynote and PDF Export

    Exporting Keynote presentation in PDF via email is a great feature that has been awaited by potential business users.
    However, PDF exports from ipad do not seems to be supported by acrobat especially on PCs/windows system. Font conversion seems corrupted and text appears with bullets.
    Any hint on how to send keynote presentation converted in pdf properly ?
    Many thx

    I also ran into a bug with PDF export today. The PDF displayed properly on my mac, but when viewed on other laptops (and when uploaded to Scribd), the text was missing. :/
    Workaround was to export the keynote file to my mac, then use the desktop keynote app to re-export as PDF.

  • Single letters dropping out in PDFs exported from Indesign CS

    We are having font issues in some of our magazine's advertisements which proved very costly last month. First let me describe the work flow.
    We designed an ad in Indesign CS then exported it using the press setting in Indesign's PDF export option. Here the ad looked and printed fine. The ad was then placed in another Indesign file which was for the layout of one of our magazines. Here the ad still looked fine on screen and when printed out from Indesign. This next step is where the font issue occurs.
    When we export the the final magazine's press ready Indesign file, through the PDF press setting in Indesign again, single letters in these problem ads drop out. For example all of the Ds' in the entire ad will be missing. So a sentence in the ad that read "Dirt is Dark" will read " irt is  ark." 
    I am wondering if anyone else has had this problem occur and if they have a solution. The only thing I can think of is in the compression settings there is an option to compress text and line art. We are going to try to uncheck that box to see if it fixes the problem.
    Thank you for you help,
    Javin.

    I realized, of course, that it does make a difference. If you don't have the fonts on your system, a frequent issue with incoming ads, you couldn't embed the full font at all. You need to be sure that ads generated in CS have fully embedded fonts, not subsets, or risk dropouts. It will only happen when more than one ad uses the same font, but different glyphs.

  • Problem with PDF export and embedded font (characters disappear)

    Designer: Crystal Reports 2008 SP 2
    Engine: CR4E 2.0 SP2 (runtime_12.2.203)
    Hi there!
    we found a problem in the pdf export. It seems like there would be a problem with the embedded fonts, the problem is as follows:
    Rpt file with, for example only a text box which contains the german string " Änderungs Schlüssel ".
    Export the Rpt file with CR4E to a pdf file.
    When we open the pdf file in Adope Reader 8, the text appears to be correct,
    but if we print the PDF file from the Adope Reader, the text changes to " nderungs Schl sselu201C,
    here we are missing ther german umlaute.
    When we open the file for example with an alternative PDF reader like Foxit Reader, there they are also missing.
    After i found some posts here in the forum, there are people facing the same problem, since i couldn't find a solution in the forum, we build a little workaround for it that works for us.
    For all of you that have the same problem here the workaround:
    We used the IText JAVA library, this jar can can help as to fix the PDF file so the text is displayed correctly.
    Here the code:
    ReportClientDocument doc = new ReportClientDocument();
    doc.setReportAppServer(ReportClientDocument.inprocConnectionString);
    doc.open("C:\XY.rpt", OpenReportOptions._openAsReadOnly);
    //... database logon,.....
    InputStream inputStream = doc.getPrintOutputController().export(ReportExportFormat.PDF);
    inputStream = PDFHealer.heal(inputStream);
    //... write the stream some where

    The helper class using IText:
    import java.io.ByteArrayInputStream;
    import java.io.ByteArrayOutputStream;
    import java.io.IOException;
    import java.io.InputStream;
    import com.lowagie.text.Document;
    import com.lowagie.text.DocumentException;
    import com.lowagie.text.pdf.PdfContentByte;
    import com.lowagie.text.pdf.PdfImportedPage;
    import com.lowagie.text.pdf.PdfReader;
    import com.lowagie.text.pdf.PdfWriter;
    public class PDFHealer
       public static InputStream heal(InputStream in) throws DocumentException, IOException
          try
             ByteArrayOutputStream out = new ByteArrayOutputStream();
             PdfReader reader = new PdfReader(in);
             // we retrieve the total number of pages
             int n = reader.getNumberOfPages();
             // step 1: creation of a document-object
             Document document = new Document();
             // step 2: we create a writer that listens to the document
             PdfWriter writer = PdfWriter.getInstance(document, out);
             // step 3: we open the document
             document.open();
             // step 4: we add content
             PdfContentByte cb = writer.getDirectContent();
             int i = 0;
             while( i < n )
                document.newPage();
                i++;
                PdfImportedPage page1 = writer.getImportedPage(reader, i);
                cb.addTemplate(page1, 0, 0);
             // step 5: we close the document
             document.close();
             ByteArrayInputStream ret = new ByteArrayInputStream(out.toByteArray());
             out.close();
             return ret;
          finally
             in.close();

  • Crystal Reports for VS 2010 corrupts "some" Thai chars on PDF Export

    Any Thai character that contains a symbol above it (like an umlat in English) gets corrupted when exporting a report to PDF, yet the same report can be exported to Excel or Word without any issue.
    See the following character - once with a symbol above one without:
    ล้ ล
    The PDF file will not display the first character - instead it displays the second character overlayed on a box (like you get when the font does not contain the required character)
    If I create a text field in the Crystal designer, it does the same thing - but when I right click and edit, it displays correctly - until I click out of the field when the problem returns. So this suggests the problem is before the PDF export and maybe with the designer - but then why does it work if i export to Word?
    I have tried may different fonts - including those specifically recommended and used by the Thais, but all have the same issue.
    My work around at the moment is to use Word instead of PDF, as I do not believe there is a configuration change I can make that will resolve the issue, but would love to hear otherwise.
    I am using Crystal Reports for Visual Studio 2010 version 13 running on Windows 7 x64. I have a beta 2 download of v14, but it requires a key code which i do not have, so as yet ahave been unable to verify if this issue is resolved in that version.
    if anyone knows otherwise, please let me know
    Cheers
    Jed

    Thanks Don,
    (Good to know that version 13 I am running is the correct one)
    I have tried many UTF-8 fonts, with largely similar results, but this testing here is with Cordia New - a font largely aimed at Thai Language and the one our Thai customers always use.
    I have confirmed that right click and export from the IDE still shows the box on certain characters - but note that the box does not replace these characters (as would be the case if they were missing) but rather overlays them - which is why my subject includes the word 'corrupt'
    All testing so far in on my Windows 7 development machine - so no user issues are involved
    The code if fairly simple at this stage - define and load a data set - then link it to the report and use the built in export to disk functions:
                    OutboundSummary rpt = new OutboundSummary();
                    rpt.SetDataSource(outboundSummary);
                    string tempDir = Environment.GetEnvironmentVariable("TEMP") + "
                    string filename = tempDir + DateTime.Now.ToString("yyyy-MM-dd HH-mm-ss");
                    rpt.ExportToDisk(ExportFormatType.PortableDocFormat, filename + ".pdf");
                    rpt.ExportToDisk(ExportFormatType.WordForWindows, filename + ".doc");
    If anyone wanted to verify, here is a piece of Thai text that will show the problem
    ผลรวมแฟกซ์ที่ยังอยู่ในคิว
    To better illustrate the problem, the attached image will help
    [IMG]http://i55.tinypic.com/hweh42.jpg[/IMG]
    I am coming to the conclusion that perhaps these characters are not single characters - at least do not appear as such with each font - and perhaps Windows does some magic to make them appear correctly. I can see that Word automatically converts them to a suitable font - i.e. a mixed language text file imports into word with different fonts for different languages - and you cannot change the font to one that does not support the language. I can specify Arial from Crystal which does not contain thai characters at all - but export to word and they show correctly.
    Crystal spits the data out and Word converts it correctly, but acrobat does not - so maybe it is their fault?
    I have all language packs on my machine - and doing Chinese next suggests that even if I find a thai font that worked, it would not work in chinese, so am thinking word or rtf might be the winner.
    Cheers
    Jed

  • INDS PDF export issue

    Hi,
    Exporting large document from InDesign takes significantly long time in InDesign CS6 server. Our document has minimum 1200 page needs to be exported to PDF. It takes around 12 minute to export with "smallest file size" preset. Our requirement is to export quick PDF rather then smallest size pdf.
    Can some one suggest best setting to fastest PDF export from InDesign. Here is PDF export settings that we use as alternate to "smallest file size" ?
    //Basic PDF output options.
                pageRange = PageRange.allPages;
                acrobatCompatibility = AcrobatCompatibility.acrobat6;
                exportGuidesAndGrids = false;
                exportLayers = false;
                exportNonPrintingObjects = false;
                exportReaderSpreads = false;
                generateThumbnails = false;
                includeBookmarks = false;
                includeHyperlinks = true;
                includeICCProfiles = true;
                includeSlugWithPDF = false;
                includeStructure = false;
                interactiveElementsOption = InteractiveElementsOptions.doNotInclude;
                //Setting subsetFontsBelow to zero disallows font subsetting;
                //set subsetFontsBelow to some other value to use font subsetting.
                subsetFontsBelow = 0;
                //Bitmap compression/sampling/quality options.
                colorBitmapCompression = BitmapCompression.AUTO_COMPRESSION;
                colorBitmapQuality = CompressionQuality.LOW;
                colorBitmapSampling = Sampling.BICUBIC_DOWNSAMPLE;
                colorBitmapSamplingDPI = 100;
                thresholdToCompressColor = 150;
                //colorBitmapSamplingDPI is not needed when colorBitmapSampling is set to
                //none.
                grayscaleBitmapCompression = BitmapCompression.AUTO_COMPRESSION;
                grayscaleBitmapQuality = CompressionQuality.LOW;
                grayscaleBitmapSampling = Sampling.BICUBIC_DOWNSAMPLE;
                grayscaleBitmapSamplingDPI = 150;
                thresholdToCompressGray = 225;
                //grayscaleBitmapSamplingDPI is not needed when grayscaleBitmapSampling is
                //set to none.
                monochromeBitmapCompression = MonoBitmapCompression.CCIT4;
                monochromeBitmapSampling = Sampling.BICUBIC_DOWNSAMPLE;
                monochromeBitmapSamplingDPI = 300;
                thresholdToCompressMonochrome = 450;
                //monochromeBitmapSamplingDPI is not needed when monochromeBitmapSampling
                //is set to none.
                //Other compression options.
                compressionType = PDFCompressionType.compressObjects;
                compressTextAndLineArt = true;
                cropImagesToFrames = true;
                optimizePDF = false;
                pdfDestinationProfile = "sRGB IEC61966-2.1";
                pdfColorSpace = PDFColorSpace.RGB;
                //Set viewPDF to true to open the PDF in Acrobat or Adobe Reader.
                viewPDF = false;
    Many thanks in advance
    Mac

    I've redrawn it all and placed in new images and now its starting to do weird stuff like make the images disappear as well as making part of the transparency 20% (as set by me) but then making another section of it 100%.(See below - top one is correct, bottom is incorrect). I would agree with you that it may just be an issue with the file, except its happening across multiple computers. There's not really any chance its a dud version of CS5 is there? Its all legit so no real reason why it wouldn't be.
    Override Master Pages fixes it, but this is pretty disappointing if I need to have to do this every single time as it makes the master pages on half useful.
    We do have CS3 actually and I opened it in that, exported it as a .inx but same issue with elements missing - the stroke around the outside disappeared.
    Could it be anything to do with bringing across elements from Illustrator? Although the top element is appearing fine, and the bottom transparent element is a copied item so shouldn't be an issue. And the image disappearing - there's no real reason for that.

  • How do I set a PDF Export Preset to force a minimum line weight on output?

    How do I set a PDF Export Preset to force a minimum line weight on output?  I'm currently using one that came from a printer that works great - but I can't seem to find the option when creating one myself.  I have some placed Illustrator line art that is built with .25 line thickness and when I have it placed at 20% scale the lines are too thin to see in the PDF output.

    There is absolutely no way to force minimum line widths within InDesign itself, certainly not as part of the PDF export process!! And even one writes a script to go through every object within an InDesign document and both validate and fix line widths less than some particular threshold, such a script would be useless against placed artwork, the contents of which are not available for manual or programmatic inspection within InDesign.
    Note that one should be exceptionally careful in “fixing” hairlines, especially if you are placing vector artwork at very low magnification. It may actually be OK to let certain lines drop out. After a fixup on some content, you could end up with a messy mass of lines.
              - Dov

  • Indesign to pdf export issue, visibility of objects

    Hi everyone,
    I'm new to the forums, and this might be a serious newb question...
    My issue is as follows
    I've created a master document, with two brown boxes, one on top and one on bottom, when exporting to pdf, they go missing and magically dissappear.
    If I export in other formats, jpeg for ex, its all good.
    What am I doing wrong, all the other elements/objects/texts appear just fine on the pdf, except for those brown borders.
    Attached are a collection of screenshots, please let me know if you need anything else in order to help,
    Best,
    Yurij

    Hi peter,
    here are the links;
    pdf file; http://db.tt/3Uzyq4l
    ID File; http://db.tt/ODE9vJu
    Thank you again!
    Yurij
    ps.
    these are the full documents for both. please note I have excluded much of the text and remaining objects as its only the master I have an issue with
    ds.
    Message was edited by: gbcy

  • Acrobat XI PDF maker files missing

    Have just installed XI. I run Win7 and 32bit Office 2010. PDF export ribbon in showing in word and you can create pdf from this.
    The problem arises if you use the right click 'create pdf' function. More importantly, when using the merge multiple files to PDF function. In both cases it works ok with excel but fails on word (in the case of the merge multiple file function all other types f file go in but the word file fails)
    I get he message 'PDF maker files missing'. It suggests a repair that I have tried but that doesn't help.
    I have checked the COM add in isn't disabled. It's not.
    Just can't get this working. Help!!!

    Is it that none of the right click options are not working (Create PDF, Create PDF and Email or Combine only)?
    Try converting the word file by dragging and dropping the file to Acrobat interface/icon.
    Are you able to convert the word document to PDF from Acrobat Ribbon (Acrobat-> Create PDF) from within the word application?
    Is the issue with a particular word file or happening with all the word files?

  • The gallery widget and PDF export etc

    Hi all,
    I'm new to iBA so I have a lot of questions but I start with only two of them.
    I made a Photo portfolio type of iBook, using mainly the gallery widget after the intro chapters.
    Q1. Well, took some time to put it all together but now I'm close to finnish it, so I thought I had to preview how it looked as a PDF, and exported it.
    Quite surpricing that only the the first image on all pages with the gallery widget was present? Is that how it should be?
    I who thought the gallery widget navigations "buttons" would be converted to a link to the next image and that should get links for previous and next image and so fort, nutbut it didnt :-/
    Ok I can make pages for all images, but 700-800 pages for just them doesn't seem smooth IMHO :-)
    Q2. The gallery widget doesnt seem very flexable to handle both landscape and portright images att the same time, so I ended up making 2 pages for each gallery, one for landscape and one for portright mode images. What am I missing here?
    Wishlist for iBA:
    1. Make the gallery widget work for PDF export.
    2. Make the gallery widget flexible to auto-handle landscape and portraight images. (In runtime, in landskape mode of the iPad, the landscape images are shown as much as possible, and the portright ones fit in hight with perhaps a lightgray (customable?) background on the sides, and vise versa when held in portright mode.)
    /Cekari

    1.) Widgets by design require a way to interact - PDFs are just 'readable', so naturally the interaction can't be used and the first image is akin to a placeholder showing where the widget is laid out. In iBA's case, I think the PDF is most useful for proofing, demo, etc. - if a valid preview is desired, either publish as preview (still limited for some examples) or share as an .ibooks file via iTunes.
    2.) Layout your widgets in landscape, edit content in portrait and of course test in both. In those cases where you need a bit more control, bifurcate.
    Thanks for your wishlist: As always, feel free to use the 'Provide iBooks Author Feedback' menu item for features you'd like added in the future, etc.
    http://www.apple.com/feedback/ibooks-author.html
    New iBA users should see: Publishing With iBooks Author
    http://shop.oreilly.com/product/0636920025597.do
    Ken

Maybe you are looking for

  • Common mapping requirement

    A common requirement is sending a table from SAP to be output into a file. So if this is done using the RFC sender adapter and File receiver adapter (with content conversion), the only thing required is a mapping to remove the extraneous <item> node

  • In outlook 2010 can you change the meeting organizer?

    I need to subsitute a co-worker as the organizer of a meeting setup in Outlook 2010.  Can/How do I do that?

  • Which Apple ID should I use for iCloud?

    I'm thinking of signing up for iCloud. I have 2 Apple IDs. I have an iTunes @Mac.com and Mobile me @me.com. If I use the @me.com will I still be able to synch my iTunes across all of my devices. I would appreciate some advice.

  • Not showing iphone

    i need help because my iphone not showing up on my i tunes it also said my mobile dvice not started

  • Recover so

    I have a Nomad Jukebox Zen Xtra with 40 GB. I accidentally dropped my MP3 player and it was freaking out on me, so it came up with a recovery screen and I think I pressed reload and I pressed format data. Is there any way I can get my music back or m