Click to cancel Export to PDF

hi Everybody,
I have problem with my script..... when i Click "OK" button, PDF export... also when I click "Cancel" button, also PDF export.... ( i assume, button Cancel should be in seperate group).
can anybody tweak this... so when i click Cancel.... PDF should not export...
  var myCapsWin = new Window('dialog', 'Export PDF with preflight errors');
    myCapsWin.orientation = 'row';       
    myCapsWin.minimumSize = [230, 50];
    with(myCapsWin){
        myCapsWin.optPNL = add('panel');
        myCapsWin.optPNL.orientation = 'row';
        myCapsWin.btnGrp = add('group');
        myCapsWin.btnGrp.orientation = 'row';
        with(myCapsWin.btnGrp){
            myCapsWin.btnGrp.btnOK = add('button', undefined, 'OK');
            myCapsWin.btnGrp.btnCancel = add('button', undefined, 'Cancel');
    myCapsWin.center();
    var myCaps = myCapsWin.show();
    if(myCaps == true){
var myBar = new Window('palette', ' Export PDF Generating....', undefined, {closeButton:false,   maximizeButton:true,   minimizeButton:true });
myBar.add('progressbar',undefined, 1, 100);
myBar.children[0].preferredSize = [250,15];
myBar.show();
myBar.children[0].value = myBar.children[0].value+10;
var myPDFFilePath;
var InDJobOption = app.pdfExportPresets;
myBar.children[0].value = myBar.children[0].value+10;
myBar.children[0].value = myBar.children[0].value+20;
myPDFFilePath = myOutFolderPathName+"/"+app.documents[0].name.split(".indd")[0].split(".INDD")[0]+".pdf";
myBar.children[0].value = myBar.children[0].value+20;
app.documents[0].exportFile (ExportFormat.pdfType, myPDFFilePath, false, myJobOptionName);
myBar.children[0].value = myBar.children[0].value+100;
myBar.close();
$.sleep(10);
exit(0);
thanks
shil..

myPrint () ;
function myPrint () {
    var mydoc = app.activeDocument;
    var myParas = mydoc.stories.everyItem().paragraphs.everyItem().getElements();
    for (i=0; i<myParas.length; i++) {
        myPara = myParas[i];
        if (myPara.contents == "XXX")
        alert("The Job has XXX, \r Please WRITE NOTE to XXX ")
    var myJobOptionName = "XXXPDF"; //Please provide a PDF job option name which is available in InDesign.
    var myOutFolderPathName = "/Users/Desktop/Out/"; //Please change your path as per requirement
    var myProfile = app.preflightProfiles.itemByName("bala"); //Please change Preflight profile name which is available in InDesign.
    var myDoc = app.documents.item(0);
    var myProcess = app.preflightProcesses.add(myDoc, myProfile);
    myProcess.waitForProcess();
    var myResults = myProcess.processResults;
    var myTest = myResults.indexOf("None");
    var PDFExport = false;
    if (myTest == 0){
        var Win = new Window('dialog', 'Export PDF to Print');
        Win.orientation = 'row';       
        Win.minimumSize = [230, 50];
        with(Win){
            Win.optPNL = add('panel');
            Win.optPNL.orientation = 'row';
            Win.btnGrp = add('group');
            Win.btnGrp.orientation = 'row';
            with(Win.btnGrp){
                Win.btnGrp.btnOK = add('button', undefined, 'OK')
            //btnOK.onClick = PreflightError ();
            with(Win){
                Win.btnGrp1 = add('group');
                Win.btnGrp1.btnCancel = add('button', undefined, 'Cancel')
                //Win.btnGrp1.btnCancel.onClick = "";
                 Win.hide();
        Win.center();
        //Cancel.onClick = doExit();
        Win.btnGrp.btnOK.onClick = function ()  { PDFExport = true; Win.hide();} //To overcome model dialog box error
        Win.show();   
        if (PDFExport == true){
            var myPDFFilePath;
            var InDJobOption = app.pdfExportPresets;
            myPDFFilePath = myOutFolderPathName+"/"+app.documents[0].name.split(".indd")[0].split (".INDD")[0]+".pdf";     
            app.documents[0].exportFile (ExportFormat.pdfType, myPDFFilePath, false, myJobOptionName);
    else{
        var myCapsWin = new Window('dialog', 'Export PDF with preflight errors');
        myCapsWin.orientation = 'row';       
        myCapsWin.minimumSize = [230, 50];
        with(myCapsWin){
            myCapsWin.optPNL = add('panel');
            myCapsWin.optPNL.orientation = 'row';
            myCapsWin.btnGrp = add('group');
            myCapsWin.btnGrp.orientation = 'row';
            with(myCapsWin.btnGrp){
            myCapsWin.btnGrp.btnOK = add('button', undefined, 'OK');
            myCapsWin.btnGrp.btnCancel = add('button', undefined, 'Cancel');
    myCapsWin.center();
    var myCaps = myCapsWin.show();
    if(myCaps == true){
        var myBar = new Window('palette', ' Export PDF Generating....', undefined, {closeButton:false,   maximizeButton:true,   minimizeButton:true });
        myBar.add('progressbar',undefined, 1, 100);
        myBar.children[0].preferredSize = [250,15];
        myBar.show();
        myBar.children[0].value = myBar.children[0].value+10;
        var myPDFFilePath;
        var InDJobOption = app.pdfExportPresets;
        myBar.children[0].value = myBar.children[0].value+10;
        myBar.children[0].value = myBar.children[0].value+20;
        myPDFFilePath = myOutFolderPathName+"/"+app.documents[0].name.split(".indd")[0].split (".INDD")[0]+".pdf";
        myBar.children[0].value = myBar.children[0].value+20;
        app.documents[0].exportFile (ExportFormat.pdfType, myPDFFilePath, false, myJobOptionName);
        myBar.children[0].value = myBar.children[0].value+100;
        myBar.close();
        $.sleep(10);
        exit(0);

Similar Messages

  • Cancel export to pdf

    Post Author: [email protected]
    CA Forum: Exporting
    We have an web application (asp.net, c#, sql server 2000) where the user can export a report to pdf.
    We see that the methode ReportDocument.export() takes a lot of time. When the user closes the window, sql server is still executing the query for the report. Is there a way to cancel the query in sql server when the user closes the window.
    Thanx in advance

    Post Author: [email protected]
    CA Forum: Exporting
    We have an web application (asp.net, c#, sql server 2000) where the user can export a report to pdf.
    We see that the methode ReportDocument.export() takes a lot of time. When the user closes the window, sql server is still executing the query for the report. Is there a way to cancel the query in sql server when the user closes the window.
    Thanx in advance

  • Anyone know how to export a PDF from InDesign so it is "click to go to next page" instead of "scroll to go to next page"?

    Anyone know how to export a PDF from InDesign so it is "click to go to next page" instead of "scroll to go to next page"?

    I don't use the latest InDesign, but in the past ID's options for exporting to PDF did not allow setting how a PDF should be viewed once exported.  However, these settings can be adjusted in Acrobat through Preferences: check out Page Layout and Zoom under Page Display.
    David

  • I cannot get the Output Module to work. I was able to get the button to show up, but when I click on it, nothing happens. i need to export a PDF asap

    I cannot get the Output Module to work. I was able to get the button to show up, but when I click on it, nothing happens. i need to export a PDF asap. I am trying to export 33 PSD files in BRIDGE to a PDF like I used to do on my other computer with bridge.

    Let's start with the general things.
    When you have a problem with one particular site, a good "first thing to try" is clearing your Firefox cache and deleting your saved cookies for the site.
    (1) Bypass Firefox's Cache
    Use Ctrl+Shift+r to reload the page fresh from the server.
    Alternately, you also can clear Firefox's cache completely using:
    orange Firefox button (or Tools menu) > Options > Advanced
    On the Network mini-tab > Cached Web Content : "Clear Now"
    If you have a large hard drive, this might take a few minutes.
    (2) Remove the site's cookies (save any pending work first). While viewing a page on the site, try either:
    * right-click and choose View Page Info > Security > "View Cookies"
    * Alt+t (open the classic Tools menu) > Page Info > Security > "View Cookies"
    In the dialog that opens, you can remove the site's cookies individually.
    Then try reloading the page. Does that help?

  • When I select the file to export from pdf to word, thens click the Export button, nothing happens.

    When I select the file to export from pdf to word, thens click the Export button, nothing happens.

    Firefox 19 was just released.  You may want to consider upgrading, then trying again.
    Glad to hear IE worked though!
    -David

  • Exporting to PDF without clicking any button

    Hi,
    Is there a way we can export the output of the WEB report to PDF without having to hit a button "Export to PDF"?
    The moment I open the report, the contents should get exported to PDF in a new window which I can print later.
    Please share your ideas.
    Regards,
    Shameem

    Hi
    You can try on Information Broadcasting.
    Regards,
    Chama.

  • SSRS report export to PDF hangs in Abode 9.4

    HI,
    I have a SSRS 2008 report which get exported as PDF. I render the ssrs report byte[] array as content attachment on to my web page. It renders with open/save/cancel. But on click of the open, the report get hanged. This issue is with the abode version 9.4
    Font used in the report is Airal Unicode MS.(this is for different locale) Size of the pdf is less than 150 kb.
    Please help.

    For your case, you may want to look into data-driven subscription where you may be able to run individual report and export them to pdf and have them deliver via email if you have that email in a table. Good luck

  • Export to PDF doesn't retain page settings

    Create a report with lots of columns and then change the page settings to be landscape and shrink to fit. Now run the report and print the report as a PDF. It works as expected.
    Now export this same report as a PDF. The export will not retain the page settings. Instead, it will export the PDF in portrait and it will not shrink to fit.
    If you email the report to someone, it also doesn't retain the page settings.
    I opened a TAR on this issue and I was told this was not a current feature of Discoverer. Exporting does not retain page settings by design and it would be an enhancement request to get this new functionality.
    We build a lot of custom Oracle Reports right now so that users can drill from one level to another. With OracleBI Discoverer, I can now do this with linking to sheets. With Oracle Reports, I can render the report in PDF format which is a business requirement. With OracleBI Discoverer, I can do this too except I can't export the PDF because it doesn't fit on the page correctly.
    Anyone else need this functionality?
    On another "enhancement request" note, I would like to be able to schedule exports. OracleBI Discoverer is getting close to providing an alternative to Oracle Reports which is great because it is faster to build and deploy reports and it is licensed by the CPU so I don't have to worry about buying Report Builder licenses. Lastly, business users can build their own reports rather than someone in IT doing it.

    ok, here's what I have found out (thanks to our Viewer guru, Matthew):
    The print/PDF preferences are currently not saved, so you are right when you say you have to re-apply those settings.
    However, there is a way to persist these changes within a session (note that since these changes are session-resident only, you will lose them once you exit Viewer).
    The short one line explanation of the workaround is to make the changes using the 'Printable Page' link, generate a 'Preview' or the entire PDF report, and then use the worksheet breadcrumb link to return to the worksheet. This ensures that the PDF changes you made are available during the sesion to the worksheet. You can always undo these settings by clicking the 'Revert to saved' link.
    I have posted the same information, but with screenshots, to http://oraclebi.blogspot.com/2005/12/pdf-settings-in-viewer.html
    Thanks
    Abhinav
    Oracle Business Intelligence Product Management
    BI on Oracle: http://www.oracle.com/bi/
    BI on OTN: http://www.oracle.com/technology/products/bi/
    Discoverer: http://www.oracle.com/technology/products/discoverer/
    BI Beans: http://www.oracle.com/technology/products/bib/
    BI Software: http://www.oracle.com/technology/software/products/ias/devuse.html
    Documentation: http://www.oracle.com/technology/documentation/appserver1012.html
    BI Samples: http://www.oracle.com/technology/products/bi/samples/
    OTN Forum: Discoverer
    Blog: http://oraclebi.blogspot.com/

  • Program crashes when I try to export to pdf file using CR for VS2010

    I'm using VS2010, framework 4.0. I can view, print, and export the report to excel. When I click export, select pdf, enter a file name, and click save...I get the following message:
    Value cannot be null.
    Parameter name: window
    I added Ludek's code to limit exports to pdf and excel to my JPTreportView.xaml.vb file:
    Public Class JPTReportView
            Private Sub UserControl_Loaded(ByVal sender As System.Object, ByVal e As System.Windows.RoutedEventArgs) Handles MyBase.Loaded
                reportViewer.ViewerCore.ReportSource = Me.DataContext.ReportSource
                reportViewer.ViewerCore.ToggleGroupTree = False
                reportViewer.ViewerCore.ToggleParameterPanel = False
                reportViewer.ViewerCore.ToggleSidePanel = False
                Dim exportFlags = (CrystalDecisions.Shared.ViewerExportFormats.PdfFormat Or CrystalDecisions.Shared.ViewerExportFormats.ExcelFormat)
                reportViewer.ViewerCore.AllowedExportFormats = exportFlags
            End Sub
        End Class

    My parameters are set in the code and are set to "Do not show" in the report. The pdf export did not work before I added the code to limit the export options. The code in JptReportView.xaml:
    <UserControl xmlns:my="clr-namespace:SAPBusinessObjects.WPF.Viewer;assembly=SAPBusinessObjects.WPF.Viewer"
                 x:Class="View.JPTReportView"
                 xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
                 xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
                 xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
                 xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
                 mc:Ignorable="d"
                 d:DesignHeight="300" d:DesignWidth="300">
        <my:CrystalReportsViewer Name="reportViewer" ShowOpenFileButton="False" ShowToggleSidePanelButton="False"     ShowRefreshButton="False" ShowLogo="False" Focusable="True" />
    </UserControl>

  • How can I auto export a PDF File using the "Smallest File Size" preset and set the Exported File Name based on information from an Imported PDF?

    Greetings all,
    I am trying to create a script to automate a PDF export process for my company for inDesign. I’m fairly new to inDesign itself and have no previous experience with javascript, although I did take C++ in high school and have found it helpful in putting this code together.
    We have an inDesign template file and then use the Multi-page PDF importer script to import PDF files. We then have to export two version of each file that we import, then delete the imported file and all of the pages to reset the template. This has to be done for nearly 1000 pdf files each month and is quite tedious. I’m working on automating the process as much as possible. I’ve managed to piece together code that will cleanup the file much quicker and am now trying to automate the PDF exports themselves.
    The files are sent to us as “TRUGLY#####_Client” and need to be exported as “POP#####_Client_Date-Range_North/South.pdf”
    For example, TRUGLY12345_Client needs to be exported as POP12345_Client_Mar01-Mar31_North and POP12345_Client_Mar01-Mar31_South.
    There are two templates built into the template file for the north and south file that are toggled easily via layer visibility switches. I need to get a code that can ideally read the #s from the imported Trugly file as well as the Client and input those into variables to use when exporting. The date range is found in the same place in the top right of each pdf file. I am not sure if this can be read somehow or if it will have to be input manually. I can put North or South into the file name based on which template layer is visible.
    I am not sure how to go about doing this. I did find the following code for exporting to PDF with preset but it requires me to select a preset and then type the full file name. How can I set it to automatically use the “Smallest File Size” preset without prompting me to choose and then automatically input some or preferably all of the file name automatically? (If the entire filename is possible then I don’t even want a prompt to appear so it will be fully automated!)
    PDF Export Code (Originally from here: Simple PDF Export with Preset selection | IndiSnip [InDesign® Snippets]):
    var myPresets = app.pdfExportPresets.everyItem().name;
    myPresets.unshift("- Select Preset -");
    var myWin = new Window('dialog', 'PDF Export Presets');
    myWin.orientation = 'row';
    with(myWin){
        myWin.sText = add('statictext', undefined, 'Select PDF Export preset:');
        myWin.myPDFExport = add('dropdownlist',undefined,undefined,{items:myPresets});
        myWin.myPDFExport.selection = 0;
        myWin.btnOK = add('button', undefined, 'OK');
    myWin.center();
    var myWindow = myWin.show();
    if(myWindow == true && myWin.myPDFExport.selection.index != 0){
        var myPreset = app.pdfExportPresets.item(String(myWin.myPDFExport.selection));
        myFile = File(File.saveDialog("Save file with preset: " + myPreset.name,"PDF files: *.pdf"));
        if(myFile != null){
            app.activeDocument.exportFile(ExportFormat.PDF_TYPE, myFile, false, myPreset);
        }else{
            alert("No File selected");
    }else{
        alert("No PDF Preset selected");
    So far my code does the following:
    1) Runs the Multi-Page PDF Import Script
    2) Runs PDF Export Script Above
    3) Toggles the Template
    4) Runs #2 Again
    5) Deletes the imported PDF and all pages and toggles template again.
    It’s close and much better than the original process which was almost 100% manual but I’d like to remove the Preset prompt from the PDF script and have it automatically select the “Smallest File Size” preset. and then if there’s a way to have it auto-fill in the file name so no user input is required at all other than selecting each file to import. (If there’s a way to setup a batch action for the multi-import script that would be even better!)
    Thanks in advance and if there’s anything else I can provide that would help please let me know! Even a nudge in the right direction will be a big help!

    If you hold down the option key, it will typically show the location. Or you can often hit option-return on the file and it will reveal the file in the Finder, instead of opening it.
    Final option is to open it, and just option-click the filename in the toolbar of Preview and it should show you the location.
    It's probably an attachment to an email you've received. If you have Mail set to cache emails and their attachments it'll be stashed in a subdirectory of ~/Library/Mail. Which is fine.

  • Get blank report in Crystal Report Viewer when exporting to PDF

    I have an application that creates reports in the CrystalReportViewer while at the same time exports a PDF of that report.  I am having a problem in which
    performing the export causes the report in the ReportViewer and the PDF report to be blank. They have the header and column labels but no data.  If I
    comment out the Me.Export(reportExportOptions) line at the end of the exportPDFReport method the report in the ReportViewer works fine, displaying
    data on the report. 
    I have other forms that perfrom this same type of function on different reports and work fine.  In fact they use the same exportPDFReport method.  This leads
    me to believe that a difference in the reports may be causing the problem.  But I can't figure out why.
    I am using .net 3.5 with Crystal Reports 2008 (CR2008) full edition in Visual Studio 2008.  Although the reports that work were probably created using
    VS 2005 and the VS 2005 edition of Crystal, and which have since been updated to CR2008.
    Has anyone else experienced this problem?  If so, how did you resolve it?
    Thanks for any help!
    Code is below
    Public Class frmAgedReceivables
      Inherits CustomWinControls.CustomForm
      Implements ICustomForm
    ... other properties and methods
    Public Sub CreateAgedPremiumsReport()
        Dim billingType As String = "Direct"
        Dim reportType As String = String.Empty
        Dim frmDateProcess As New frmEnterProcessMonth()
        frmDateProcess.pikMonthYear.Value = TurmsController.CodeEffectiveDate
        frmDateProcess.lblMessage.Text = "Enter Processing Date"
        If frmDateProcess.ShowDialog(Me) = Windows.Forms.DialogResult.Cancel Then
          Return
        End If
        Me.InForceStripStatusLabel1.Text = "Creating Report"
        Me.Refresh()
        Dim report As New AgedReceivablesReport()
        report.Load(report.ReportPathAndName)
        Me.Refresh()
        Dim reportParmsArrayList As ArrayList = New ArrayList()
        reportParmsArrayList.Add(report.ParameterFields.Item(0).Name)
        reportParmsArrayList.Add(frmDateProcess.pikMonthYear.Value)
        reportParmsArrayList.Add(report.ParameterFields.Item(1).Name)
        If AgencyBillRadioButton.Checked Then
          billingType = "Agency"
        End If
        reportParmsArrayList.Add(billingType)
        reportParmsArrayList.Add(report.ParameterFields.Item(2).Name)
        reportParmsArrayList.Add(TurmsController.CurrentUser.UserName.Value)
        reportParmsArrayList.Add(report.ParameterFields.Item(3).Name)
        If NAICCheckBox.Checked Then
          reportType = "NAIC"
        End If
        reportParmsArrayList.Add(reportType)
        Dim parms As String() = {frmDateProcess.pikMonthYear.Value, billingType, reportType}
        Me.InForceStripStatusLabel1.Text = "Loading Data"
        Me.Refresh()
        report.getData(parms)
        Dim reportParms() = reportParmsArrayList.ToArray
        report.loadParameters(reportParms)
        report.ExportFileName = Microsoft.VisualBasic.Format(frmDateProcess.pikMonthYear.Value, "yyyyMM") + report.GetType.Name
        report.ExportFormat = CrystalDecisions.Shared.ExportFormatType.PortableDocFormat
        report.exportPDFReport()
        Me.CrystalReportViewer1.ReportSource = report
      End Sub
    End Class  
    Public MustInherit Class TurmsReport
      Inherits CrystalDecisions.CrystalReports.Engine.ReportDocument
    Implements _ITurmsReport
    ... other properties and methods
        Public Sub exportPDFReport() Implements _ITurmsReport.exportPDFReport
          Dim reportExportOptions As New ExportOptions
          Dim reportDiskFileDestinationOptions As New DiskFileDestinationOptions
          Dim reportFormatTypeOptions As New PdfRtfWordFormatOptions
          reportDiskFileDestinationOptions.DiskFileName = getExportPathAndName(ExportType.PDF)
          If Me.UsePageRange _
          AndAlso Me.FirstPageNumber > 0 _
          AndAlso Me.LastPageNumber > 0 Then
            reportFormatTypeOptions.UsePageRange = True
            reportFormatTypeOptions.FirstPageNumber = Me.FirstPageNumber
            reportFormatTypeOptions.LastPageNumber = Me.LastPageNumber
          End If
          With reportExportOptions
            .ExportDestinationType = CrystalDecisions.Shared.ExportDestinationType.DiskFile
            .ExportFormatType = ExportFormatType.PortableDocFormat
            .ExportDestinationOptions = reportDiskFileDestinationOptions
            .ExportFormatOptions = reportFormatTypeOptions
          End With
          If Not System.IO.Directory.Exists(Me.ExportFilePath) Then
            System.IO.Directory.CreateDirectory(Me.ExportFilePath)
          End If
          Me.Export(reportExportOptions)
      End Sub
    End Class 

    Pretty much. 
    Seems I had at one time hard coded a record selection statement that I forgot to remove which caused the report to be blank.  That solved my problem, but there still seems to be an issue in that the Crystal Report Viewer performed differently when I tried to export to PDF (no records displayed) then when I didn't (records displayed).
    Chip

  • SSRS - Export multiple pdf file

    SSRS report background :
    Report generating 50 student details with 50 page (each student one page- group by student).
    now data will export one pdf file with 50 page where each page having one student details. 
    Requirement :
    instead of one single pdf with 50 page i want 50 pdf file so i can send each report to respective student

    generating one pdf file with 50 page where each page having one student details.
    Hi ,
    Please follow below steps;
    Step1. Create one Row Group based on Student.
    Step2.Row Group has been created. We can see the Group1 in the Row Group Pane.
    Right Click on the Group1 column Delete Columns only.
    Delete Column window comes, Choose Delete column only and click on
    Step3.Now you can see the Group1 column is deleted but Group1 is still available in the report that groups data Student wise.
    Step4.Go to Group1 property by right click on Group1 in Row grouping pane.
    In the Group property, go to Page Break Page Break Option Check the box for “Between each instance of a group” and “at the end of group”.
    Right click on the Tablix go to Tablix property. Tablix property windows comes: Check “Add Page break after” and in column header, check “Repeat header columns on each page.”
    Step5.After implementing Page Break and Grouping, run the report and export it to PDF.
    Thanks.

  • Exporting to PDF from PageMaker 7.0 in Classic

    Since upgrading to 10.4 I have been unable to export to PDF from PageMaker 7.0.1. Adobe tech support says there is a problem with the Adobe Postscript driver. I have downloaded and installed a new Adobe PS driver but still get a message that says Adobe PS cannot be used because of an internal error. There is a code (-30581). Anybody having this problem?

    Did Adobe say your copy might be corrupt, or there was a general incompatibility between AdobePS and your Classic version, or what please?
    I don't happen to know a specific solutioni, but you might try this workaround, even though it sounds rather klunky until you're used to it:
    Use Apple's own Desktop Printer Utility to built a virtual Desktop Printer using Translator Postscript, which will automatically be set as the default Classic printer, even though it doesn't actually appear on the Desktop, and should be accessible through either AdobePS or Apple's own LaserWriter driver.
    Tell that to print to File, which should produce a .ps file that will double-click open in Preview, which can convert to PDF.

  • InDesign doesn't let embed the font while exporting to PDF

    I used a font while working on a document in InDesign and later while exporting to PDF I got a warning that the software is unable to include that font.
    Is there a way to go around it? It was a free cyrillic font and it's not possible to buy it. I suppose creating outlines is not the right way to go
    Thanks in advance

    Eugene Tyson wrote:
    … Most free fonts that I know of don't allow embedding - for this reason it's not a good idea to use a free font. …
    I'm no particular fan of so-called “free fonts” — you most often get exactly what you pay for. However, that having been said, in my years of gathering such fonts for debugging and problem solving, in fact very few of them are actually set with the protection bits to prohibit embedding. For TrueType and OpenType fonts, you can readily check outside of InDesign as to whether a font is embeddable in a PDF file. For Windows, right-click on a font file and check the properties; embedding privileges are described in one of the tabs. For MacOS, the FontBook utility can provide the same information for a font.
    The problem is that when you attempt to use a font that is physically protected against embedding, you pretty much need to follow the advice given by Eugene. Personally, I would recommend the use a different font option, checking the font prior to using it for your rights to embed it in PDF.
    Note that font licensing is legal minefield. Many fonts that are posted on-line are not really free. Some are shareware with restrictions in their written licenses that require payment for commercial use (often in ReadMe files which may somehow be “lost” when such fonts are reposted over and over again) or even pirated fonts (i.e., commercial fonts simply illegally posted on-line).
    My personal recommendation is that for any commercial use, you explicitly license your fonts from a known, reliable source to avoid possible legal issues in the future.
              - Dov

  • Exporting large PDF document in inDesign

    I'm exporting a large file (3m in length x 1.2m in width) in inDesign to PDF for print and the document just will not save, or if it does, only half the document actually saves. Help please!

    I don't think so. A PDF can have several hundrets of miles now.
    Viele Grüße
    Wilhelm Georg Adelberger
    Von meinem iPhone gesendet
    Am 09.07.2014 um 12:09 schrieb Peter Spier <[email protected]>:
    Exporting large PDF document in inDesign
    created by Peter Spier in InDesign - View the full discussion
    Your file may be larger than the maximum dimensions for a PDF (not sure what they are, currently). Try working at half-size in ID and see if it makes a difference.
    Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at https://forums.adobe.com/message/6535116#6535116
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page:
    To unsubscribe from this thread, please visit the message page at . In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in InDesign by email or at Adobe Community
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

Maybe you are looking for