Export Format In PDF Articles - Vector as default

I would like to request that 'Vector' be made the default (or an option allowed for users to change the default) for 'Export Format in PDF Artciles' in Slideshows and Scrollable Frames.
In my line of work - newspaper and magazine publishing - roughly 99.9% of Slideshows and precisely 100% of Scrollable Frames contain text and therefore *must* be set to Vector otherwise our pages look pants on a Retina display. It is troublesome and needlessly expensive for us to be changing Raster content to Vector over and over and over again. And over and over. And over and over.
We're finding that big scrolls and MSOs might be set to Vector in our templates but, after a bit of chopping, changing and copy-pasting on live pages by designers, they revert to Raster. Can you imagine how infuriating it would be if you applied a custom Swatch to an object, only to have it keep reverting to Black? Well, this is what it's like with the Raster business.
Alistair

I would like to request that 'Vector' be made the default (or an option allowed for users to change the default) for 'Export Format in PDF Artciles' in Slideshows and Scrollable Frames.
In my line of work - newspaper and magazine publishing - roughly 99.9% of Slideshows and precisely 100% of Scrollable Frames contain text and therefore *must* be set to Vector otherwise our pages look pants on a Retina display. It is troublesome and needlessly expensive for us to be changing Raster content to Vector over and over and over again. And over and over. And over and over.
We're finding that big scrolls and MSOs might be set to Vector in our templates but, after a bit of chopping, changing and copy-pasting on live pages by designers, they revert to Raster. Can you imagine how infuriating it would be if you applied a custom Swatch to an object, only to have it keep reverting to Black? Well, this is what it's like with the Raster business.
Alistair

Similar Messages

  • "Memory full." error while exporting report to PDF format - CR2008SP2

    <br>
    Hello,<br>
    <br>
    I am developing a C#.NET application that uses the CR2008 SP2 .NET libraries. This application performs some database updates and uses CR2008 SP2 to run 7 different reports and export the results to PDF files. This application is a console application that only uses Crystal to export the rendered reports - it does not use previews or printing.<br>
    <br>
    The specific pattern of this application is as follows:<br>
    <br>
    - perform some database updates<br>
    - render report #1 and export it as a PDF file<br>
    - perform some database updates<br>
    - render report #2 and export it as a PDF file<br>
    ... pattern repeats to report #7 ...<br>
    <br>
    This application works fine as long as I run only one instance of it at a time. The problem occurs when I try to run multiple instances of this application at the same time. When I run multiple instances of this application at the same time (against totally different databases) each instance will start up happily and begin running through the process described above. After a few moments one or more instances will fail during the report export. The specific error is as follows:<br>
    <br>
    "Memory full. Failed to export the report. Not enough memory for operation."<br>
    <br>
    The error always comes from the call to:<br>
    <br>
    CrystalDecisions.CrystalReports.Engine.ReportDocument.ExportToDisk(Format, FileName)<br>
    <br>
    I have watched the memory consumption of these instances of my application while they are running. They never seem to exceed approximately 52MB each. At this time task manager reports over 1GB of physical memory free. These numbers lead me to believe that memory is not actually "full".<br>
    <br>
    Here are some specifics about the environment:<br>
    <br>
    Dell Vostro 1720 / P8600 / 4GB<br>
    Windows 7 Ultimate x64<br>
    SQL Server 2008 SP1 x64<br>
    Crystal Reports 2008 SP2<br>
    <br>
    Specifics about the C# application:<br>
    <br>
    IDE: Visual Studio 2008 SP1<br>
    Type: Console Application<br>
    Target platform: x86<br>
    .NET Framework: 3.5 SP1<br>
    Crystal References:<br>
    - CrystalDecisions.CrystalReports.Engine (v12.0.2000.0)<br>
    - CrystalDecisions.Shared (v12.0.2000.0)<br>
    <br>
    Specifics about the report templates:<br>
    <br>
    The report templates are RPT files saved from CR2008 SP2. They are relatively simple. A few of them (maybe 3) contain a single subreport.<br>
    <br>
    Specifics about the database:<br>
    <br>
    Each database is approximately 1GB in size. The database contains many tables but the reports only access a handful of tables. Each table that the reports access have maybe a few hundred rows tops. Most have less than 100. Likewise, when the reports perform their selections the resulting rowset for the reports is anywhere from about 20 records to a few hundred records tops.<br>
    <br>
    A few items to note:<br>
    <br>
    - Multiple instances of my application need to be able to run on a single machine at the same time. It is a specific design requirement.<br>
    - My application works fine as long as I run only one instance of it at a time.<br>
    - My application works fine when I run multiple instances if I comment out the Crystal part of it.<br>
    - My application works fine when I run multiple instances if I change the export format from PDF to HTML32 or HTML40 (have not tried any others)<br>
    - The machine has over 1GB of physical memory free when this error occurs.<br>
    - I have taken steps to ensure that I am properly disposing of my CrystalDecisions.CrystalReports.Engine.ReportDocument instance just after each export is complete. I have tried to use the "using" keyword, as well as explicitly setting the instance to null and calling the .NET framework garbage collector. This did not seem to help.<br>
    <br>
    Any assistance with this issue would be greatly appreciated.<br>
    <br>
    Steve<br>
    <br>
    Edited by: scbraddy on Mar 11, 2010 1:53 AM

    <br>
    Jonathan & Ludek,<br>
    <br>
    Thanks for the timely response and good suggestions guys!<br>
    <br>
    I have performed a few more tests today in order to help answer some of your questions.<br>
    <br>
    Below are my responses. Some of them are answers to questions and some of them are observations based on tests I have performed today.<br>
    <br>
    - The database system is SQL Server 2008 SP1 Developer Edition x64.<br>
    <br>
    - The C# application connects to the database using the native .NET SQL client (System.Data.Sql).<br>
    <br>
    - During runtime I connect the report to the database by looping through the ReportDocument.Database.Tables collection. For each Table found I create a CrystalDecisions.Shared.TableLogOnInfo instance, fill in the table name, server name, database name, user ID, and password, and use Table.ApplyLogOnInfo() to apply it. I do the same thing for the subreports collection if there are any. Like I said, about half of the reports contain a single subreport.<br>
    <br>
    - The report templates are currently set to use the "SQLOLEDB" Provider. The Database Type is set to "OLE DB (ADO)". I am not entirely sure what you mean by trying a different database driver. I assume you mean to change the provider? If so, given the fact that we are using SQL Server 2008, what would I change it to?<br>
    <br>
    - If I do not perform the database updates during application runtime (instead, perform them ahead of time and then allow the application to only render the reports) then I still have the same problem. Nothing changes.<br>
    <br>
    - I installed the Fix Pack 2.5, rebooted, and tried again. Same problem.<br>
    <br>
    - I do not beleive that I am using XML transforms. How would I know?<br>
    <br>
    - Regarding fragmented memory: It is hard for me to believe that, given the amount of memory free on the machine once all processes are up and running (1GB+), and the size of the processes (~50MB), that a contiguous block could not be found. Maybe there is some Crystal process that is attempting to balloon out of control, but as far as I can tell my application is not getting very big. I will not rule this out of course because I don't know for sure.<br>
    <br>
    - Regarding killing the process once a report is rendered: The problem with this is that the application needs to perform these 7 groups of updates and render these 7 reports in a specific sequence all as part of one complete "pass". Also, this application needs to be able to be able to handle a scneario where one or more instance of the application is started on a single machine at roughly the same time (pointed at different databases). The application actually does work fine in this regard (staying well within the capabilities of my 4GB laptop even when 8 of them are running) except that I always get the same error when I choose PDF as my export format.<br>
    <br>
    - I ran a test today where I changed the export format to HTML40 and started 8 instances of the application at the same time, each working from a different copy of the database. The instances ran a little slow but did complete in good time with no errors. Please note that changing the export format to PDF will cause the application to fail with the "memory full" error if even only 2 instances are running at the same time. The only way I can successfully complete a run with the export format set to PDF is to run only 1 instance at a time. I can run it over and over all day long and it will not fail, as long as only 1 instance is running at a given time. As of yesterday I had only proven that the application would complete when using the HTML40 export format when 2 or 4 instances are running, but today I doubled it again (to 8) and still no failure while using HTML40. This is possibly the most interesting fact about this problem, and is another reason why I am skeptical that memory fragmentation is the culprit.<br>
    <br>
    We would like to solve this problem because we would like to continue to target the PDF format. It is the standard report export format for our applications. If we cannot solve this problem we may call a meeting and decide whether to proceed with the HTML40 export format, or possibly dump Crystal from this project altogether.<br>
    <br>
    Thanks again for your interest in our problem and your timely and helpful responses. I'm really not sure where to go next ... maybe change the database provider in the templates? I will need some specific advice in this area because I'm not sure what to do. Any more ideas you guys have will be greatly appreciated on this end!<br>
    <br>
    Steve<br>
    <br>
    Edited by: scbraddy on Mar 12, 2010 2:18 AM

  • How to change default Export Format Type in Crystal Report Viewer

    We are coding in VB.NET 2005 using the CR2008 SP1 .NET objects.
    The Crystal Report Viewer, when displayed, defaults the export type as .rpt (Crystal Reports).
    We distribute our .NET application to our customers.  99% of the time, this .rpt format is useless to our customers as they do not have crystal reports developer.  They usually export to a .pdf or .xls format.  Is there a way to default this export option to something other than .rpt?
    Thank you.

    Yes, that's as much as I figured.
    With the Crystal for .NET methods, the CrystalDecisions.CrystalReports.Engine's reportdocument object has an ExportToDisk method.  We wanted to use this (as we used something similar with the RDC) to prompt the user to export.  However, the reportdocument's exporttodisk method does not have an argument that allows for Prompting the user (true/false) like the RDC's export did.  You have to actually know ahead of time the type of export the user wants as well as the filename.  Well, we do not, and therefore, want the user to be able to select the type of export they want as well as enter their own filename.  We want the Crystal methods to prompt for this.  Since we are unable to, we've had to resort to declaring a reportviewer object and setting the viewer's reportsource = to the reportdocument.  We then use the ExportReport() method which defaults to .rpt (which none of our end users have Crystal Developer).  This is why we want to know if there is a way to reset the default export method to something more common (such as .pdf or .xls).  Is there a way to change the reportdocument's file type in order to default the export type?  Just trying to come up with some sort of workaround...
    Thanks

  • Pullout tab exported to pdf as vector, horizontal okay, vertical pixelized. Version 23.

    Hi all,
    I created a pullout tab, in the settings exported to pdf as vector,
    when i publish the app, the horizontal view is okay, the vertical one is pixelized. The folio is version 23. What can explain the difference?
    thanks in advance,

    Hi Neal, alternate layouts, that was the term I was looking for... :-)
    So, I made a pullout tab made out of text and transparancy buttons, placed it on both the V as H Canvas Page, updated the article, made sure the Version was vs23, and uploaded it to folio builder
    As I recall, I changed the Version setting later on in the process. Would it make a difference i I started with a vs23 Folio to begin with? Somehow it feels as not beeing the answer...

  • IllegalArgumentException error while exporting report in PDF format

    Hi all,
    we are using Crystal Report 2008, Java 1.5.22 and JRC 11.8.4.1094 to export reports in pdf format within java.
    It is working fine for all reports except for a specific report where it gives IllegalArgumentException while exporting the PDF.
    Below the error occurred:
    12:39:16,875 ERROR [c] Disk Exporter: no output file was created by an exporter
    12:39:16,875 ERROR <b> PdfExporter: caught Exception in PDFFormatter.finalizeFormatJob (from destination?); aborting export
    java.lang.IllegalArgumentException
         at com.crystaldecisions.reports.exporters.destination.disk.c.a(Unknown Source)
         at com.crystaldecisions.reports.exporters.format.page.pdf.b.a(Unknown Source)
         at com.crystaldecisions.reports.a.e.if(Unknown Source)
         at com.crystaldecisions.reports.formatter.a.c.if(Unknown Source)
         at com.crystaldecisions.reports.formatter.a.c.a(Unknown Source)
         at com.businessobjects.reports.sdk.b.b.int(Unknown Source)
         at com.businessobjects.reports.sdk.JRCCommunicationAdapter.request(Unknown Source)
         at com.crystaldecisions.proxy.remoteagent.x.a(Unknown Source)
         at com.crystaldecisions.proxy.remoteagent.q.a(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.dd.a(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.ReportSource.a(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.ReportSource.a(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.ReportSource.export(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.AdvancedReportSource.export(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.NonDCPAdvancedReportSource.export(Unknown Source)
         at com.crystaldecisions.reports.reportengineinterface.JPEReportSource.export(Unknown Source)
         at com.crystaldecisions.report.web.event.br.a(Unknown Source)
         at com.crystaldecisions.report.web.event.w.a(Unknown Source)
         at com.crystaldecisions.report.web.event.b7.broadcast(Unknown Source)
         at com.crystaldecisions.report.web.event.av.a(Unknown Source)
         at com.crystaldecisions.report.web.WorkflowController.do(Unknown Source)
         at com.crystaldecisions.report.web.WorkflowController.doLifecycle(Unknown Source)
         at com.crystaldecisions.report.web.ServerControl.a(Unknown Source)
         at com.crystaldecisions.report.web.viewer.ReportExportControl.a(Unknown Source)
         at com.crystaldecisions.report.web.ServerControl.getHtmlContent(Unknown Source)
    12:39:16,875 INFO  [c] Disk Exporter: finalizing export to destination
    12:39:16,875 ERROR [JRCCommunicationAdapter] Failed to export report
    com.crystaldecisions.reports.exporters.format.page.pdf.a.a: Unknown exception is thrown
         at com.crystaldecisions.reports.exporters.format.page.pdf.b.a(Unknown Source)
         at com.crystaldecisions.reports.a.e.if(Unknown Source)
         at com.crystaldecisions.reports.formatter.a.c.if(Unknown Source)
         at com.crystaldecisions.reports.formatter.a.c.a(Unknown Source)
         at com.businessobjects.reports.sdk.b.b.int(Unknown Source)
         at com.businessobjects.reports.sdk.JRCCommunicationAdapter.request(Unknown Source)
         at com.crystaldecisions.proxy.remoteagent.x.a(Unknown Source)
         at com.crystaldecisions.proxy.remoteagent.q.a(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.dd.a(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.ReportSource.a(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.ReportSource.a(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.ReportSource.export(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.AdvancedReportSource.export(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.NonDCPAdvancedReportSource.export(Unknown Source)
         at com.crystaldecisions.reports.reportengineinterface.JPEReportSource.export(Unknown Source)
         at com.crystaldecisions.report.web.event.br.a(Unknown Source)
         at com.crystaldecisions.report.web.event.w.a(Unknown Source)
         at com.crystaldecisions.report.web.event.b7.broadcast(Unknown Source)
         at com.crystaldecisions.report.web.event.av.a(Unknown Source)
         at com.crystaldecisions.report.web.WorkflowController.do(Unknown Source)
         at com.crystaldecisions.report.web.WorkflowController.doLifecycle(Unknown Source)
         at com.crystaldecisions.report.web.ServerControl.a(Unknown Source)
         at com.crystaldecisions.report.web.viewer.ReportExportControl.a(Unknown Source)
         at com.crystaldecisions.report.web.ServerControl.getHtmlContent(Unknown Source)
    Caused by: java.lang.IllegalArgumentException
         at com.crystaldecisions.reports.exporters.destination.disk.c.a(Unknown Source)
         ... 56 more
    Have an idea?
    Thanks

    Hello Andrea.
    I searched through the SAP Notes for the error that you are encountering.  There is an SAP Note that exists titled the following:
    1332907 - Report being exported to PDF format using the Crystal Reports for Eclipse 1.x runtime, errors with the exception: PdfExporter: caught Exception in PDFFormatter.finalizeFormatJob
    Since you may not have access to the SAP Notes, I will extract the details that are mentioned in the note here:
    =============================================
    Symptom
    Attempting to export a report to Adobe PDF format using the Crystal Reports for Eclipse 1.x runtime results in an exception.
    The exception indicates "PdfExporter: caught Exception in PDFFormatter.finalizeFormatJob"
    Environment
    Windows 2003
    Apache Tomcat 5.0
    Crystal Reports for Eclipse version 1.x
    Reproducing the Issue
    Using the Crystal Reports for Eclipse runtime version 1.x attempt to export a report to PDF format that has the "Repeat Group Header on Each Page" option enabled.
    Note: This does not occur if this option is enabled in a subreport.
    Cause
    When the "Repeat Group Header on Each Page" is enabled for a group in a main report the Crystal Reports for Eclipse 1.x runtime is unable to correclty format the PDF document which results in an exception.
    Resolution
    Updating the application to use Crystal Reports for Eclipse version 2.x runtime will resolve the issue.
    The most recent updates to the Crystal Reports for Eclipse runtime can be freely downloaded from the SAP SDN Website. 
    http://www.sdn.sap.com/irj/boc/crystalreports-java
    =============================================
    Since you are on JRC 11.8.4.1094 which is Crystal Reports for Eclipse 1.x, this may be the cause of your problem.
    I hope that this helps.
    Regards.
    - Robert

  • How to set default export format in CrystalReports Viewer

    When Viewing Crystal Reports in InfoView, the top left button can choose export file format, how to set it default to Excel?

    Hi Jennie Xiang,
    You can set the default export format in Crystal designer before publishing in infoview.
    Open the report in Crystal designer and go to file>export>export options--> select the export option to xls and check the options that you want and click on OK.
    Now try exporting the report by clicking on export button then you can see the first option as xls with all format options that you have selected before by default.
    By saving this report at server (infoview) you can get the same options while exporting from viewer.
    Regards,
    Ragahvendra

  • Setting default export quality for PDFs in Pages 5.0

    Hi,
    Anyone know if it is possible to set a default export quality for PDFs in Pages 5.0.  Even if it remembered the last used setting that would be helpful.
    Thanks,
    Nick

    OK,  I have managed to get higher quality images from the PDF renderer. Here is what I have found:
    1) The PDF renderer in Reporting Services 2005 will size all images that it is given at 96 DPI no matter what DPI the image is when you pass it to the renderer. That means that a 300 DPI image or even a 600 DPI image will be sized in the PDF as if it is only 96 DPI. That means your high DPI image will render much larger than you expect.
    So you might expect a 300 DPI image that is 6.5 inches wide to render properly at 1950 pixels. Yet, the PDF renderer will size it as it were 96 DPI which would make the image 20.3 inches long!
    2) There is good news though. Despite sizing the images as if they were 96 DPI, the PDF renderer appears to render higher DPI images at a higher quality than 96 DPI. So despite the sizing being wrong, the image actually is rendering at a higher quality.
    This means that you should size the image to the proper number of inches based on 96 DPI calculations. Then you can use Bitmap.SetResolution to set your images to at least 300 DPI.  That should give you a higher quality image that is the proper number of pixels to fit properly in your report.
    I am able to do all of this sizing dynamically because I am using objects as my data sources, but I am sure there are VB functions you could use in the report itself to accomplish the same task.
    It is late, and I've been at this project all day long, so forgive me if I have explained anything poorly or gotten any concepts long. Yet, at this late hour, I believe this is what the renderer is doing.
    I hope this helps someone else in the future, or at least points them in the right direction.

  • Selectively exporting sheets in pdf format

    I have a Numbers '09 file with 12 sheets in it. I would like to share just 8 of these sheets by exporting them in pdf format. How can I selectively choose the 8 different sheets ? I currently find that the export command automatically converts all 12 of the sheets into a single pdf file.

    Arul,
    It wouldn't be too difficult to Print or Export the entire document to PDF and then open it in Preview and delete the four sheets you don't want, unless I'm missing something. Preview is powerful and easy to use.
    Jerry

  • PDF export format options are ignored when exporting

    I can't get the PDF export format options to work.  No exception is thrown; it's as though the export format options are simply ignored.  In broad terms, the relevant code looks like this:
    ExportOptions exportOptions = new ExportOptions();
    exportOptions.setExportFormatType(ReportExportFormat.PDF);
    PDFExportFormatOptions pdfExportOptions = new PDFExportFormatOptions();
    pdfExportOptions.setCreateBookmarksFromGroupTree(true);
    exportOptions.setFormatOptions(pdfExportOptions);
    ByteArrayInputStream byteArrayInputStream =
        (ByteArrayInputStream)reportClientDoc.getPrintOutputController().export(exportOptions);
    Other options (setting start and end pages for export) are also ignored.
    Curiously, I am able to apply export format options just fine for other formats; e.g. when setting the export format type to ReportExportFormat.characterSeparatedValues and using a CharacterSeparatedValuesExportFormatOptions object as appropriate, I am able to set options like delimiter and separator just fine.
    How can I prevent the PDF export format options from being ignored?

    hi
    Are you using RAS or Crystal Report runtime? and what's the version? It might be a bug. Have you tried:
    ByteArrayInputStream byteArrayInputStream =
        (ByteArrayInputStream)reportClientDoc.getPrintOutputController().export(ReportExportFormat.PDF);
    and does it work?

  • I have signed in for ExportPDF and yet I'm unable to export my PDF article to word. Any ideas please

    I have signed in for ExportPDF and yet I'm unable to export my PDF article to word. Any ideas please?

    What happens when you sign in and try to do this?

  • Disable "Export to interactive PDF" default

    For some reason, when I click on "Save Book to PDF", the "Export to interactive PDF" comes up automatically. This happened for the first time today, though I have never used that function. The problem is, I need to use my presets, but there is no way to access them. When I try a single file, there is no problem, but the Book just won't let me get to my presets.
         I have a PC, Windows 7, InDesign CS6, and Acrobat 10.1.6.
         I am really in a panic here since I have to get the PDF to the publisher and am stuck...

    Yes, the "Export to interactive PDF" pops up without my asking for it, and when I "Cancel," the whole process cancels.
      I tried PRINT BOOK and then PDF, but I could not choose the presets that way.
         Oooh, I got it. I missed the little open  at the bottom of the SAVE dialogue box. It must have defaulted to that after the latest Acrobat update. Sorry for the stupidity.

  • Help with export format - can I meet ad requirements?

    Help!
    I need to create a color ad for magazine. Starting with a file in either PDF or EPS. Need to tweek existing file by changing some of the text and adding a logo. Final product is for magazine ad with media requirements:
    Preferred High Resolution PDF
    Embedded fonts - no true type fonts, only Type 1 or open Type fonts
    300 DPI
    supporting images must be CMYK, not RGB
    I also have PS CS3. I have experienced output issues with printers in past, especially using the PDF export format from Pages (problems with fonts and layers).
    From reading other posts my plan was to start in Pages, insert PDF file, overlay text and logo, print to Postscript, then open in PSCS3 where I would "save as PDF." Only concern is uncertain resolution of original PDF which is a small file (about 100k for quarter page color ad).
    Other thought was to start with EPS in PS, save as PDF or TiFF, open in Pages to ad text/logo, then back to PS. Trying to avoid PS for main editing, just more versed in PAGES.
    Will this work?
    Any comments appreciated!!

    Good evening from Normandy
    In response to Barbara's point:
    It is serious. At an early stage in my magazine project I lost a client because the background colour in his ad had changed after CMYK separation, and when I noticed it was too late. The client is with us now and very happy with the quality of his ad.
    Pages colour palette allows adjusting CMYK separation WITHIN Pages (note: it is also available in other Mac applications, even in SimpleText). Click on the rainbow circle in the tool bar to open it. Click on the second icon with colour sliders, in the drop down menu click on CMYK sliders. They show percentage content of the four colours used in professional printing - Cyan(blue), Magenta (purple), Yellow and Black.
    With Pages you work in what-i-see-what-i-get mode (WYSIWYG) which is wonderfully intuitive and the results in print are satisfactory more often than not. As a general rule of thumb, however, I would recommend avoiding sharp, vibrant colours. What looks exciting on screen comes out dull on paper. Mind physiology here: screen colours are generated to go staight into your eyes, but the colours on paper are a reflected and refracted sun- or electric light.
    It also makes sense to avoid colours that are too feeble. I used light blue colour wash for background with Cyan reading of 8 percent and it completely disappeared in print. After consulting with my printers I had to change the reading to 15 percent.
    Another printers tool is colour-code or colour-guide tablets. They are like a stack of cards with changing colour sequences with exact CMYK percentage reading for each shade of colour. They can be purchased at specialised shops and web-sites, but are costly. Weigh your needs against costs. In my work I have to pay more attention to general lay-out rather than to colours, so I decided against investing in colour tablets.
    Another work-around here is to use colour combinations from Apple's own templates that come with iWork suite. Copy colours that work nicely together from templates to your colour palette (I wish there was a feature allowing to give custom names to composite colours) and they will be available for use in your projects.
    Re ColourSync utility mentioned here by Dragon. I agree, it is a powerful tool, but Barbara's point is especially relevant here: you have to know what you are doing. I invested some time in creating new workflows with ColourSync. The improvement in quality was dramatic, but while some problems were solved, others appeared. A short article I wrote re using Colour Sync is here:
    i-work-in-pages.blogspot.com/2006/10/preparing-colour-separated-pdfs-using.html
    So after a while I dropped ColourSync method and started using Enfocus PitStop which allows adjusting PDFs right at the CMYK conversion stage.
    Another work-around which makes life even easier is to ask your computer service people to prepare Distiller settings exactly to your requirements as a separate folder which you can install as default in your Distiller settings. That way you just drag-n-drop your files onto the Distiller icon in the Dock and get perfect press quality PDFs in no time.
    It is worth remembering that we are mostly end-users, not developers or technicians. Remembering this saves a lot of heart-ache. I call it the Renaissance Man dilemma - if you spend to much time chasing too many things your main goal is not achieved. Leonardo da Vinci was famous for not finishing his projects, because he always got distracted by exciting technical solutions that he stumbled upon while working...
    This is more in response to Angiomans thread than to Barbara's comment now, but I assume he followed Dragon's invitation to this thread.
    Cheers everybody - it is really exciting to share things with people who have similar experiences.
    Alex,
    Normandy
    <edited by host>

  • FAQ: Why doesn't AVI appear as an export format in the Render Queue?

    [For information on rendering and exporting, see "Basics of rendering and exporting".]
    On Windows versions of After Effects, AVI appears listed with the more comprehensive name, "Video for Windows". In fact, it's the format specified by the default Output Module template. The Format Options button will reveal the AVI/VfW codecs available on your system.
    On Mac systems, AVI/Video for Windows is not available as a direct export option (except through the File > Export path, which is really not recommended). Export a lossless intermediate file from the Render Queue instead (for example, a Quicktime file). You can then use a number of converter applications (including Quicktime Pro, for example) to convert this intermediate file to an AVI file.

    Post Author: Rob Murnick
    CA Forum: .NET
    I'm starting to get the opinion that it can't be done - can't find any information explaining how, anyway.  Perhaps this is because .HTML format often uses it's own folder for storing image files, etc..., and the other formats (rpt, .pdf, .xls, .doc and .rtf) simply use a file.  The "Export Report" dialog would need to be a bit more complicated to switch between saving as a file and saving a set of files in a (potentially new) folder, so I'm just going to hide the Export button on the CrystalReportViewer control, add an external "Export" button, and roll my own dialog.

  • PDF Article Blur

    Thank you to everyone who participates in this forum. It has really made a difference to me as I create my first dps app.
    I have a question concerning the on-load blur and sharpen of pdf based articles on ipad (3).
    I understand that this is expected behaviour, but I am experiencing delays of a much longer duration than 1-2 seconds. I have found no published apps that are anywhere near the lag I am experiencing. So I was wondering if the experience using Adobe Content Viewer might be different than after the app is actually published? I sure hope so!
    If not, the lag is unacceptable. So short of using jpeg format, are there any suggestions for modifying? We have a large app (153MB) 14 articles with lots of MSO (most set to vector) and several in-app browser displays (html and pdf) plus 8 videos (1 per article). There is a lot of text, so PDF and vector give a much better experience if it weren't for the long blur.

    In some cases, transparency effects create a longer load time in PDF articles. For the articles that experience exceptionally long load times, one option is to consider editing or removing the transparency effects.
    Another option is to intersperse pages with memory-intensive overlays and static pages.
    If these options don't work, using PNG articles instead of PDF avoids the load delay but frequently increases folio size (and pinch/zoom page is disabled).

  • Help needed: audio missing - export to html & pdf

    audio missing - export to html & pdf
    both soundtrack and audio on specific pages play fine as slideshow and as export Quicktime.
    exports to html & pdf are missing audio entirely.
    the audio assets are not in the html folder.
    i am not doing anything complicated, one .tiff image per page, approx 12mg apiece.
    one soundtrack and one additional page specific audio track.
    box checked for saving audio files in preferences and while 'saving'.
    tried triggering with 'begin audio' builds.
    tried different approved formats for audio.
    tried different themes. at default settings.
    i am out of ideas. any suggestions?
    much appreciated.

    Sound files are not included in html or pdf exports. There is no way to make it happen. If you need the sound you can export as Quicktime.

Maybe you are looking for

  • Phone 4s reboots on its own

    What do I do when my phone shutdown and restarts itself even after I replaced the battery

  • Cannot select Outlook 2003 to sync calendar, tasks etc. ver 6.0

    I have desktop software 6.0 install on a Windows 7 64 bit laptop. I installed ver 6.0 desktop manager, connected my Curve 8530, it recognized it and synced my media. I have office 2003 and outlook installed, and it is running fine. When I try to sele

  • Display Continuous Fluctuations in Input Data in Module Pool Screen

    Dear All, We are working on a Weighbridge Interface scenario, where the weighbridge is sending data to a digitizer, which is connected to the COM port of a PC. The objective is to read the data from the digitizer, and display in a Module pool screen.

  • Apple TV does not recognize itunes

    Hi, I recently bought Apple TV 2012 Full HD. The network is functioning properly and the Apple TV recognizes the network (I can download movies, youtube, etc on the Apple TV). Problem is, it wont load the itunes library from my Mac. It furthermore wo

  • Finding A Good Source for Free GUI Menu Code

    Instead of writing everything from scratch, I am looking to find basic code already written that would be a good foundation for my own GUI. Anyone know where to get this? THANX