Exporting PDFs to EPS files without masks or invisible paths to release or deal with.

We send files to a CAD department which has issues with masks and paths which can't be seen in Acrobat, nor Illustrator unless in preview mode, and which cause problems when programming.
In other words, is there a function in distiller or acrobat or Illustrator which can provide a file using a plugin or flattener (preset) which gives me a vector file with just the black as seen on screen and no other vectors? Usually the PDF file is vector to begin with.
I've tried opening in Photoshop and get what I need but the file is sooooo big it is not very easy to manage.
We're Mac OS 10.6 based CS4 on the front end with very old cad software at the end. We have to save as AI/EPS 8.
TIA,
KC
[email protected]

Here is one way,
open the PDF in Illustrator, make a new layer, select the desired path(s) and move them to the new layer (drag the little box from the old layer to the new), delete the old layer(s). Save as .eps

Similar Messages

  • What determines how a PDF or EPS file is opened??????

    Hi I was wondering if anyone can tell, what determines how a PDF or EPS is opened in Photoshop.
    If I open a PDF in photoshop, the first thing that pops up is the settings for which you want it to open. i.e., color mode, resolution, you choose what you want and then open.
    I always thought that how the file was created determines the initial settings in which photoshop displays in that little dialogue box. (for example, if I open an illustrator eps file that I created in photoshop, it always prompts the correct settings (300dpi, CMYK) I click open and it works great.
    But when I open a PDF in photoshop it always displays the color mode as RGB, not cmyk. Which i find odd, because I know there is no RGB color space in the PDF.
    Today something weird happend, I created an Ad in Indesign, every image I am certain was 300 dpi, and the rest are vectors. Exported it to PDF with high resolution settings, but when I opened it up in Photoshop, the settins dialogue box promted it as 72dpi, which again I find odd because I know each image is 300, the rest are vectors, and I know the PDF preset to which I exported it creates high res images.
    Does anyone know what determines how a PDF or eps file is opened in Photoshop and why photoshop is rendering a PDF in which I am certain is hi res, to a low res?
    Thanks for any help. Kevin

    >Hi I was wondering if anyone can tell, what determines how a PDF or
    >EPS is opened in Photoshop.
    Nothing, really. EPS provides this info openly in its header, but it is not always right, so PS cannot even assume it would be correct to use that info. For PDF it's a different story. PDF is a container format that can contain any number of items in mixed resolutions and colorspaces, hence PS cannot assume anything. Likewise, you can have multiple pages, links, multimedia content, all of which may influence the result upon display or rasterization...
    Mylenium

  • I just started a free trial of the Adobe XI product that allows me to create an editable PDF. I'm done creating the form and ready to export it. When I click Export PDF from the File menu, it says Adobe encountered an unexpected error. What am I doing wro

    I just started a free trial of the Adobe XI product that allows me to create an editable PDF. I'm done creating the form and ready to export it. When I click Export PDF from the File menu, it says Adobe encountered an unexpected error. What am I doing wrong?

    Good to know  — there is no such application as "Adobe XI".
    "Adobe" is the name of the company.
    "XI" is indicative of the use of either Acrobat XI or Reader XI.
    Neither Acrobat XI Pro (for which Adobe provides a free, fully functional 30-day trial) nor Adobe Reader XI (the free to download and use PDF viewer that Adobe provides) have  an "Export PDF" entry under "File".
    "Export PDF" only is present in Adobe Reader XI over on the right on the "Tools" panel.
    The "Tools" panel provides a way for a user of Adobe Reader XI to connect to various By Subscription online services (gotta pay eh).
    Export PDF is one of these. A subscription lets you send a PDF file to the online internet service (aka "cloud" service). The service then exports to a supported file format (Word / Excel / ...) and the user selects / directs where the output file is to be saved on the user's local machine.
    Of course to use any of the online subscription services one must have an active (paid up in full) subscription to the service.
    So ---- As described the puzzle pieces don't fit eh.
    What specific Adobe (the company) applications are you using?
    Acrobat XI Pro? Adobe Reader XI? Both? 
    Be well....

  • ALT text not appearing in PDF for EPS files

    Hi,
    I have a created a document in InDesign CS5.5 which has images and text. the document should be accessibility complaint.
    The document has images which are in PSD, tiff, eps and PNG files. I have applied the Alt text for each images.
    After I export the document as PDF, when I mouse over the images, the Alt text is appearing for all the image formats except EPS file format. But Acrobat reads the Alt text for the image.
    I am wondering why the Acrobat is not showing the ALT text for EPS file formats when i mouse over the image.
    Is anyone facing the same problem? should I do anything in the settings?
    please help.
    Regards
    Ramji V K

    The EPS image is not created in photoshop. the image is created in Illustrator.
    Also, what do you mean by Single image? can you please explain a bit more about that?
    Thanks.

  • Applescript: Packaging and exporting PDFs for multiple files -- need some tweaks

    I found and tweaked a droplet script that isn't quite working right. I am hoping for some help with getting it to work the way I want. I tried and failed to learn to do this myself. Your help is greatly appreciated!
    Here's an example: I drag two files called "filename.indd" and "filename2.indd" onto the droplet. The script I have right now will output the packages and PDFs into the following folder structure:
    export folder
         filename folder
              filename.pdf
              filename folder
                   filename.indd
                   [Package contents]
         filename2 folder
              filename2.pdf
              filename2 folder
                   filename2.indd
                   [Package contents]
    Here's the folder structure I need (using a dialog box or script that intelligently knows that the directory to save in is the same as the files I dragged on to the droplet would be amazing):
    dialog box to choose new directory set to baseFolder
    or
    baseFolder <---- set to the current directory of the files I dragged onto the droplet
         filename folder
              filename.indd
              [Package contents]
              PDF folder             <--------new folder "PDF" created
                   filename.pdf
         filename2 folder
              filename2.indd
              [Package contents]
              PDF folder             <--------new folder "PDF" created
                   filename2.pdf
    Here's a script I found and modified:
    property baseFolder : (path to desktop as text) & "exports:"
    on open mgItems
              repeat with mgThisItem in mgItems
                        tell application id "com.adobe.InDesign"
                                  try
      open mgThisItem
                                            set mgDocName to name of active document
                                            set text item delimiters of AppleScript to ".indd"
                                            set mgShortName to text item 1 of mgDocName
                                            set targetFolderPath to my createFolder(mgShortName)
                                            set text item delimiters of AppleScript to ""
                                            set mgPackageFilePath to targetFolderPath & mgShortName as string
                                            set mgProofFilePath to mgPackageFilePath & ".pdf" as string
                                            set properties of PDF export preferences to properties of PDF export preset "[Smallest File Size]"
                                            tell the active document to export format PDF type to mgProofFilePath without showing options
                                            tell the active document to package to mgPackageFilePath with copying fonts, ignore preflight errors, copying profiles, updating graphics, including hidden layers, copying linked graphics and creating report
      close active document saving no
                                  on error e
      display dialog e
                                  end try
                        end tell
              end repeat
              display dialog "PDFs created and InDesign file packaged"
    end open
    on createFolder(nameString)
              set macFolderPath to baseFolder & nameString
              do shell script "mkdir -p " & quoted form of POSIX path of macFolderPath
              return macFolderPath & ":"
    end createFolder
    Thanks very much!

    ...anyone? :\

  • Opening PDF and PPT files without using BuddyApi

    Hi, please excuse my newness.
    I'm wanting to open pdf and ppt files through Director (I'm using 11.5) but I'm struggling with finding the right code to make it work. I saw that a lot of people are recommending Buddy Api. However I'm cheap and was hoping that there would be a way to open files without having to resort to using/paying for this xtra. Is there a reason why opening files in Director seems to be such a hassle?
    Thanks in advance.

    I'll also add that from my understanding, an unregistered version of Buddy API can be used in commercial applications.
    Buddy API is a great Xtra and if you're going to be developing applications with Director, this Xtra will be a valuable purchase. Buddy Xtra is recommended a lot in the Director forums for a good reason.
    Dean
    Director Lecturer / Consultant / Director Enthusiast
    http://www.deansdirectortutorials.com/
    http://www.multimediacreative.com.au

  • Can I convert a jpeg into an eps file without illustrator?

    I do not have illustrator and I need to convert a jpeg file into an eps file. Is there a way to do this without illustrator?

    You can re-save the jpeg as EPS from Photoshop,
    but if you need a vector eps, you will need Illustrator or an equivalent program to do it. Also, depending upon the complexity of your file, it may not be able to be an automatic convertsion.

  • Captivate 4 - Issue viewing exported PDF in published file on LMS

    I'm working in Captivate 4 and have included a link to a PDF document on a particular screen. It works beautifully when I view the published file until I move the files into the LMS - at that point, the PDF won't launch.
    Here's what I've done and hopefully someone can tell me what I need to do differently?? I created a click box on a screen and have set the On Success field to "Open URL or file". I browsed to find the location of my PDF and clicked the drop down arrow to select "New" and "Continue playing project" (so the learner can return to the original course when they're done reading the PDF). When I publish the file to Flash, I select the "Export PDF" option and it does it's magic. When I preview the published version, everything works beautifully, the course runs, the PDF launches and life is good. Then, I set up the course on our LMS and copy over the published files (including the source PDF). The course plays as expected until the learner clicks to view the PDF - at that point, nothing happens. What am I doing wrong? Does this have anything to do with Adobe Reader 9 (which many of our learners wouldn't have on their desktops)? Do I need to convert my PDF to HTM? Help... please!

    Hello,
    If I do understand your question all right (sorry, am not a native English speaker), I do believe you are mixing up two things. If you want indeed to publish to PDF (and not to SWF or EXE), you'll get a multimedia PDF (in which a SWF can play) but in that case the user really do need the Adobe Reader 9, previous versions do not support multimedia PDF.
    What seems a bit contradictory is that you start with mentioning an issue with a PDF that should be called from a CP-slide. The problem there could be that you were linking to an absolute path on your PC when browsing, can you check that? If you introduce simply the name of the PDF and you make sure that the PDF and the CP-published files (normally HTML, JS and SWF) are uploaded in the same folder, the CP will find the PDF. I think you now have a 'broken link' because of an absolute path reference for the PDF.
    Lilybiri

  • Save or export an opened .mp4 file without re-encoding

    How can I save or export an .mp4 file that I opened and trimmed without being required to re-encode it. I'm looking for an option to either save the .mp4 file without exporting, or export with a passthrough option such as the one available when using QuickTime Pro. Thanks.

    Hmm, I would have expected inclusion of the basic feature set of QuickTime Pro to be a prerequisite for any commercial audio editing program.
    The reason commercial audio editing programs don't work the way Quicktime Pro does is Quicktime Pro really isn't an audio app. If Quicktime is able to cut an trip an mp4 file (m4a, aac, whatever you call it) it's becaue it's editing the stream directly, probably similar to the way a file-splitter would work. MP3 was able to have this one too, one could chop an mp3 up in to parts without re-encoding...however, due to the way data is represente in a lossy format, you have several limitations in doing so.
    Commercial Audio applications don't do this because it's not going to be done by professionals...even if Audition had this feature, it wouldn't be able to work the same as cutting a wave file. You have servere limitations on where you can cut a lossy audio file up without having to re-encode it.
    Cutting the bitstream of an mp3 or m4a file is generally not a standard inclusion for any audio program...
    But, remember, Quicktime is a "basic" video editor...not an audio editor nor should it be confused for one.

  • InDesign CS5 exports PDFs where EPS elements have low resolution

    I am rather new to InDesign CS5. I am currently working on a magazine, where I use graphics in TIFF and EPS. The exported PDF shows graphics in correct quality (300 dpi - TIFF) and graphics with poor resolution -> EPS. How is that even possible? The problem disappears when I use .AI, but it should work with EPS to, shouldn't it?
    I figured that it might have something to do with the Transparency Flattener Presets, am I right? My presets are set to "low resolution" and it is not possible to set them to "hight resolution", as InDesign refuses to remember those settings.
    Please help!

    Well, I was just trying to figure out why it's happening and thought that it might have something to do with the transparency flattening.
    My colleagues, who also work with InDesign (althought with older versions), always use EPS and they never have problems. But your advice is not to use EPS format, am I right?

  • Image Processor Pro and Picture Processor load eps files without rasterizing them

    Hi. My name is Lucas. Im from Argentina, now living in Brazil. I have the problem that is in the title. Im new doing this stuff but reading a lot i discovered that both scripts open eps files and because they dont get reasterized, then saved files looks preety bad.
    I know that there are some parameters to open eps, ex:
    var epsOpenOptions = new EPSOpenOptions();
       epsOpenOptions.antiAlias = true;
       epsOpenOptions.mode = OpenDocumentMode.RGB;
       epsOpenOptions.resolution = 72;
       epsOpenOptions.constrainProportions = true;
    I have to say that looking for a solution a found a script and modified to suit partially my needs. I said partially because i need the script to look folders and save output files with same structure. Here is the script that manage one folder at a time:
    #target photoshop
    // Asks user for input folder
    var inputFolder = Folder.selectDialog("Select a folder to process");
    // Asks user for output folder
    var OutputFolder = Folder.selectDialog("Select a folder to save your Tiffs");
    if ( inputFolder != null && OutputFolder  != null ) {
       // Makes list of all files located in that folder
       var fileList = inputFolder.getFiles( "*.eps" );
       // Create a EPS option object [height & width are doc size]
       var epsOpenOptions = new EPSOpenOptions();
       epsOpenOptions.antiAlias = true;
       epsOpenOptions.mode = OpenDocumentMode.RGB;
       epsOpenOptions.resolution = 72;
       epsOpenOptions.constrainProportions = true;
       // Open each file in turn
       for (var i = 0; i < fileList.length; i++) {
          // open the file
          app.open( fileList[i], epsOpenOptions );
          var baseName = activeDocument.name.slice( 0,-4 );
          // put your code to 'save as' the file here
          var saveFile = new File ( OutputFolder + "/" + baseName + ".jpg" );
       SaveForWeb(saveFile,60); // set quality to suit
    function SaveForWeb(saveFile,jpegQuality) {
      var sfwOptions = new ExportOptionsSaveForWeb();
      sfwOptions.format = SaveDocumentType.JPEG;
      sfwOptions.includeProfile = false;
      sfwOptions.interlaced = 0;
      sfwOptions.optimized = true;
      sfwOptions.quality = jpegQuality;
    activeDocument.exportDocument(saveFile, ExportType.SAVEFORWEB, sfwOptions);
    activeDocument.close( SaveOptions.DONOTSAVECHANGES ); 
    So, if you know some way modify image processor pro or picture processor i will be very pleased.
    Because i will only use the script to manage eps files and save them as jpg (save for web) i dont need an special button to activate that option. Keep it simple. Thanx!!

    You can tweak ImageProcessorPro.jsx by make the following edit.
    Search for code that looks like this:
    ImageProcessor.prototype.openDocument = function(file) {
      var self = this;
      var settings = self.settings;
      var mode = DialogModes.NO;
      var ext = file.strf("%e").toLowerCase();
      var isRaw = ImageProcessor.CAMERA_RAW_FILES.contains(ext);
      if (isRaw) {
    and insert this code right after it:
      if (ext == "eps") {
        var epsOpenOptions = new EPSOpenOptions();
        epsOpenOptions.antiAlias = true;
        epsOpenOptions.mode = OpenDocumentMode.RGB;
        epsOpenOptions.resolution = 72;
        epsOpenOptions.constrainProportions = true;
        try {
          var doc = app.open(file, epsOpenOptions);
        } catch (e) {
          Error.runtimeError(9002, ZStrings.UnableToOpenErr);
        return doc;
    I haven't tested this at all but it looks good from here.

  • XmlDataProvider .... is gone completely in my Xaml file. Why? How many different ways to deal with xml data source through WPF

    I followed a procedure described in a book.
    1. insert "Inventory.xml" file to a project "WpfXmlDataBinding" .
    2. add the XML data source through the data panel of "blend for 2013", named it "InventoryXmlDataStore" and store it in the current document.
    3. dragged and droppped the nodes from the Data panel onto the artboard.
    Then I checked my Xaml file against the one provided by the book
    Xaml file by the book:
    <Window.Resources>
    <!-- This part is missing in my xaml file --><XmlDataProvider x:Key="InventoryDataSource"
    Source="\Inventory.xml"
    d:IsDataSource="True"/>
    <!-- This part is missing in my xaml file -->
    <DataTemplate x:Key="ProductTemplate">
    <StackPanel>
    <TextBlock Text="{Binding XPath=@ProductID}"/>
    <TextBlock Text="{Binding XPath=Cost}"/>
    <TextBlock Text="{Binding XPath=Description}"/>
    <CheckBox IsChecked="{Binding XPath=HotItem}"/>
    <TextBlock Text="{Binding XPath=Name}"/>
    </StackPanel>
    </DataTemplate>
    </Window.Resources>
    <Grid>
    <ListBox HorizontalAlignment="Left"
    ItemTemplate="{DynamicResource ProductTemplate}"
    ItemsSource="{Binding XPath=/Inventory/Product}"
    Margin="89,65,0,77" Width="200"/>
    </Grid>
    my Xaml file:
    <Window x:Class="WpfXmlDataBinding.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="MainWindow" Height="922" Width="874">
    <Window.Resources>
    <DataTemplate x:Key="ProductTemplate">
    <StackPanel>
    <TextBlock Text="{Binding XPath=@ProductID}"/>
    <TextBlock Text="{Binding XPath=Cost}"/>
    <TextBlock Text="{Binding XPath=Description}"/>
    <CheckBox IsChecked="{Binding XPath=HotItem}"/>
    <TextBlock Text="{Binding XPath=Name}"/>
    </StackPanel>
    </DataTemplate>
    </Window.Resources>
    <Grid DataContext="{Binding Source={StaticResource InventoryXmlDataStore}}">
    <ListBox HorizontalAlignment="Left" Height="370"
    ItemTemplate="{DynamicResource ProductTemplate}"
    ItemsSource="{Binding XPath=/Inventory/Product}"
    Margin="65,55,0,0" VerticalAlignment="Top" Width="270"/>     
        </Grid>
    </Window>
    All looks quite the same except the <XmlDataProvider ....> part under <Window.Resources>, which is gone completely in my Xaml file.
    1, Why?
    2, How many different ways to deal with xml data source through WPF?
    Thanks, guys.
    (ps My "WpfXmlDataBinding" runs without problem through.)

    Never do yourself down Richard.
    Leave that to other people.
    It's quite common for smart developers to think they're not as good as they are.
    I coach a fair bit and it's a surprisingly common feeling.
    And to repeat.
    Never use anything ends .. provider.  They're for trivial demo apps.  Transform xml into objects and use them.  Write it back as xml.  Preferably, use a database.
    You want to read a little mvvm theory first.
    http://en.wikipedia.org/wiki/Model_View_ViewModel
    Whatever you do, don't read Josh Smiths explanation.  I used to recommend it but it confuses the heck out newbies. Leave that until later.
    Laurent Bugnion did a great presentation at mix10.  Unfortunately that doesn't seem to be working on the MS site, but I have a copy.  Download and watch:
    http://1drv.ms/1IYxl3z
    I'm writing an article at the moment which is aimed at beginners.
    http://social.technet.microsoft.com/wiki/contents/articles/30564.wpf-uneventful-mvvm.aspx
    The sample is just a collection of techniques really.
    I have a sample which involves no real data but is intended to illustrate some aspects of how viewmodels "do stuff" and how you use datatemplates to generate UI.
    I can't remember if I recommended it previously to you:
    https://gallery.technet.microsoft.com/WPF-Dialler-simulator-d782db17
    And I have working samples which are aimed at illustrating line of business architecture.  This is an incomplete step by step series but I  think more than enough to chew on once you've done the previous stuff.
    http://social.technet.microsoft.com/wiki/contents/articles/28209.wpf-entity-framework-mvvm-walk-through-1.aspx
    The write up for step2 is work in progress.
    https://gallery.technet.microsoft.com/WPF-Entity-Framework-MVVM-78cdc204
    Hope that helps.
    Recent Technet articles: Property List Editing;
    Dynamic XAML

  • Exporting CSV can overwrite files without warning

    Warning about an undocumented, automatic deletion of files by Numbers.
    Export a iWork'09 Numbers (Version 2.0.5 (368))  document (with 2+ sheets) as a CSV with the same name as a folder in the destination and WHAM!
    Yes, WHAM - it deletes all files in that folder with no warning (and they are not sent to Trash, oh moan, on moan).
    A scenario - MyData.numbers (with 2+ sheets) stored in a MyData folder on the Desktop. Open it, export as CSV to Desktop, it deletes everything in folder including itself and replaces them with Sheet 1-Table 1.csv, etc. There is no warning this will happen.
    If there is only one sheet, it will create a MyData.csv on the Desktop and leave the folder alone.  If you do it again with one sheet, it will warn you the file exists.
    If you repeat it with a 2+ sheet document again, there is not warning, this time csv files in the folder will be replaced.
    This is horrid, unruly behaviour and cost me a huge amount of time repairing the damage.
    There is nothing in the user guide to prepare me for this unhappy event.
    You have been warned.  Apple please fix this.

    I must say that you are right on one point.
    Even if I feel that this format is the worst ever invented, I exported many times Numbers documents in csv format. I never go the described behavior.
    So, as I am honest, I created a folder with the same name than the stripped document's one.
    When I asked the app to export it, the save dialog displayed the default name : azertyuiop.csv
    As the folder was named azertyuiop, I was sure that there will not be any kind of problem.
    I was wrong and you were right.
    The result was not a folder azertyuiop.csv but the folder azertyuiop.
    Of course, I decided to check that I wasn't fooled by my memory.
    I made an other attempt with the name azertyuio.csv.
    This time, there was no existing folder. I was sure that I will get the object azertyuio.csv
    It's what my memory was repeating me.
    Alas, the result was a folder named azertyuio.
    So, I stop this message here and enter the Bug Reporter area.
    Yvan KOENIG (VALLAURIS, France) mardi 14 juin 2011 17:25:01
    As my Internet connection is in maintenancecr, I was unable to post it at the date_time used in my signature.
    So I had time available to preparer a bug report.
    Here it is :
    Bug ID# 9608202.
    Summary:
    Awfull behavior of Numbers
    Steps to Reproduce:
    Create a Numbers document with several tables.
    Export it as csv.
    The Export dialog offer a name, say azertyuiop.csv
    Expected Results:
    Several users and myself assumed that we will get an object named azertyuiop.csv containing one csv file for every existing table.
    Actual Results:
    in fact, what we get is a folder named azertyuiop (without the name extension displayed in the dialog)
    Worse, if a folder already exist with this name, THERE IS NO WARNING ISSUED.
    So, the entire content of the existing folder is destroyed.
    It’s really the worst kind of bug which I may imagine.
    Regression:
    Triple check that there is no existing folder with the same name than the document to export.
    Or no longer use the dedicated menu when we want to export as csv but trigger this AppleScript which will take care to build a unique name.
    --{code}
    tell application "Numbers"
              tell document 1
                        set dName to name
                        set dPath to path
              end tell
    end tell
    if dPath ends with ".numbers" then
              set barePath to text 1 thru -9 of dPath
    else
              set barePath to dPath
    end if
    set csvPath to barePath & (do shell script "date +_%Y%m%d_%H%M%S.csv")
    tell application "Numbers"
      save document dName in csvPath
    Yes, it's foolish but if the document contain several tables,
    the result will be the folder azertyuiop_20110614_174726.
    Only the enclosed files will be named table 1.csv, table 2.csv…
    end tell
    --{code}
    Yvan KOENIG (VALLAURIS, France) mardi 14 juin 2011 21:12:17
    iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.7
    Please : Search for questions similar to your own before submitting them to the community
    To be the AW6 successor, iWork MUST integrate a TRUE DB, not a list organizer !

  • Generate & Export PDF on the fly without holding entire pdf contents memory

    Hello Everyone,
    We are using Crystal Reports JRC (in our server side application. In a typical use-case the generated report is exported into the pdf format and streamed to the client/browser.
    My question is with regards to the current interface/implementation of the JRC export api(s), which returns an InputStream which is basically a ByteArrayInputStream?, Why ByteArrayInputStream ? why not a custom InputStream imeplementation which really benefits from the streaming approach, and give you the option to stream the contents as they are generated on the fly, instead of it holding the entire report contents in a byte-array, as is the case with using ByteArrayInputStream. Since, this often seems to choke our system with regards to memory footprint, when the generated report contains huge dataset.
    Please comment? Is that not possible ? Is there any reason why ByteArrayInputStream is the only way to retrieve the report contents ?
    Thanks,
    Farhan.

    We have new place called Idea Place, look up on the right hand side. Great place to add enhancement requests.
    Or the link: http://www.sdn.sap.com/irj/scn/idea-place

  • Export PDF creates 0kb file and Print Error.

    By "Print Error", I mean a simple pop-up window with the pages logo and the sentence "Print. Error while printing" even though I haven't asked for anything to be printed. The resulting pdf file is zero k in size and useless.
    I had this problem in iW '06 and thought that '08 might fix it. No dice though.
    Deleating prefs did not fix the issue. ['06 or '08]
    Anyone? Thanks.
    CSK
    Burbank, CA

    I suspect that you've turned off a couple fonts with Font Book (or perhaps removed them from the Fonts folder). Pages expects certain fonts to exist - even if we don't use them or even want them.

Maybe you are looking for