Exporting to a PDF from CR XI is different on different servers

Post Author: gauravgupta2325
CA Forum: Deployment
Hi,
My application is installed at diffrent machines but reporting server is same for all the installed applications. The configuration of the First server is : -
1.  CrystalXI dot net runtime
2. Crystal decisions 9 runtime
3. .Net Framework 2.0
Second server has Crystal XI runtime and No .net Framework  just .net interop files.
The Report created on second server is fine. There is no cut -off of columns in reports. But the same report is being called from second server then there is cut-off of colums.
But the reports are being called from the same machine only the application installed on different machines.
Its really surprising why is it behaving so unpredicatbly.
Please help me.
Thanks
Gaurav Gupta

CS4 is not supported on Yosemite, and unless you did a clean install (rather than a migration) on the new system there is little chance it will work.

Similar Messages

  • Can't view some images or export them to PDF from CS6 InDesign

    I recently reimaged my Win7 PC hard drive and I was told by Adobe that I needed to reinstall CS6.
    I was editing a document I've been working on for months and when I went to export it to PDF, like I've done many times in the past (pre-reimaged hard drive), I got an error message during the PDF export. Now when I view the document in ID, many of the graphics on other pages display as grey boxes and I can't export to PDF(or print to PDF) anything but grey boxes or no images for many of the images/graphics. Or, I may get a PDF without the graphics, but a dark area for the drop shadow only in place of the graphic. When I try to relink the graphics I get an error message that says "You don't have permission to open this file. Contact the file owner or an administrator to obtain permission." I am the file owner and admin. These files gave me no problems before this reinstall.
    I also found that if I try to open an offending AI or EPS files in AI CS6, I get a similar message that says, "Can't open the illustration. The file may be read only, or the files is in use by another application, or you do not have the required permissions. Please save the document with a different name, or in a different folder or directory. -54"
    I uninstalled and reinstalled CS6 again (as administrator), and did the appropriate updates. Same results.
    I also opened another client's file and had a similar issue when I exported to PDF.
    I tried to save the first file to IDML so I could open it in CS5, which (CS5) has been working perfectly since the reinstall. When I created the IDML from CS6, it did some really strange things when opening it in CS5, including while opening the IDML file, it would "call" an ID CS6-based file, which of course, CS5 didn't like at all. It then goes into an endless loop which requires Windows Task Manager to get out of the program.
    Any ideas as to what's going on here? Do I need to change some settings in ID? Acrobat?
    Thanks in advance for any assistance you can provide.

    I found the solution in other discussions...
    I need to run iTunes in 32-Bit mode.
    https://discussions.apple.com/message/17717305#17717305

  • AS) export single page PDFs from multi-artboards

    I'm not exactly sure where my new problem lies. I'm trying to save out single page PDFs from an Illustrator CS4 document with multiple artboards. Each artboard should become a PDF. I can get a multi page PDF, but when it saves single page files, I get white PDFs with error messages on them (I think it is saving .ai files with a .pdf extension).
    this is where I am now (simplified, of course):
    tell application "Adobe Illustrator"
    set docName to name of current document
    set itemNumber to 1
    tell application "Finder" to set fileLoc to path to desktop as string
    set pageCount to (count artboards in document docName)
    tell current document
    set allPlacedItems to placed items
    repeat with h from 1 to (count of allPlacedItems)
    set thisPlacedItem to item h of allPlacedItems
    tell thisPlacedItem to embed
    end repeat
    set allTextItems to text frames
    repeat with j from 1 to (count of allTextItems)
    set thisTextItem to item j of allTextItems
    tell thisTextItem to convert to paths
    end repeat
    end tell
    repeat with i from 1 to pageCount
    set pdfSaveOptions to {class:PDF save options, pdfXstandard:PDFX None, compatibility:Acrobat 6, preserve editability:false, generate thumbnails:false, optimization:false, acrobat layers:false, artboard range:i, view pdf:false, color downsampling:0, color resample:nodownsample, color compression:none, grayscale downsampling:0, grayscale resample:nodownsample, grayscale compression:none, monochrome downsampling:0, monochrome resample:nodownsample, monochrome compression:none, compress art:false, trim marks:false, registration marks:false, color bars:false, page info:false, page marks style:Roman, trim mark weight:trimmarkweight025, offset:6.0, bleed link:true, bleed offset:{0, 0, 0, 0}, color conversion id:none, color destination id:none, color profile id:include all profiles, trapped:false, font subset threshold:50.0}
    set pdfName to docName & "TEST" & itemNumber & ".pdf"
    set destFile to (fileLoc & pdfName) as string
    save document 1 in file destFile as pdf with options pdfSaveOptions
    set itemNumber to (itemNumber + 1)
    end repeat
    close current document without saving
    end tell

    // Save the artboards to PDF.
    var myDoc = app.activeDocument;
    var original_filename = myDoc.name.toString();
    // alert (myDoc.name.toString() )
    // Get the folder location
    var destFolder = Folder.selectDialog('Select the folder to save the PDF files to:');
    // Get the number of artboards to export from a dialogue
    var total =  myDoc.artboards.length
    //     Number.selectDialogue('Total Number of Files to be made')
    if (destFolder) {
         for (i=0; i<total; i++)
              var destFile = new File(destFolder+original_filename+"_"+i);          //     Assign incrementing filenames
              var pdfSaveOptions = new PDFSaveOptions();
              pdfSaveOptions.viewAfterSaving = false;          //     Don't want to see these fles in Reader
              pdfSaveOptions.SaveMultipleArtboards = true;
              var range = new String();
              range = (i+1).toString();
              pdfSaveOptions.artboardRange= range;     //     not Assign incrementing page range
              myDoc.saveAs (destFile,  pdfSaveOptions);     
    I've run this script on the 3 art board document the Adobe sample scripts create. It's a just different coloured star on each artboard.
    This script appears to work in as far as I get 3 files with just one artboard showing when I open the files in Adobe Reader. Problem is when I open them in AI, I can see all the artwork is still there and even more stranger is the fact that the numbers are still 1,2,3 whereas in Reader it's just page i showing as page 1 each time.
    This could be a problem when the application I'm writing generates an image structure from the files if it sticks the excess data onto the GPU (not sure if it will or not). If it includes all the data, also it just makes the Application footprint bigger by a 8 MB or so of unnecessary baggage. An issue for a 'light weight' app.
    I noticed the export ExportArtboardsPhotoshop.jsx script has this line:
    psdExportOptions.saveMultipleArtboards = true;
    It works in that context but in PDF context it only works in terms of what Reader shows not what exists in the files. Good one Adobe… Makes me wonder what the Multiple art boards method did before AI had multiple art boards. How was AI dividing the objects?!
    Also I really need a SaveAsCopy (non-existent I think) method or I'll have to keep reopening the original file and then doing SaveAs.
    Back to manual duplicating files in finder, batch renaming, opening them all and deleting excess. Or export to PSD and get my dimensions right or just oversized (I can always down sample in the app)…
    This is truly a painful exercise!

  • How to export or print PDF from Illustrator with crop and reg marks?

    Hi all,
    I realise this is probably a very obvious question, but I've just upgraded from CS3 to CS5.5, and I'm tearing my hair out with the loss of Adobe PDF printer driver. I've looked on forums and can't find this question - prob. so obvious that no one else has asked it.
    Can't seem to export as PDF from Illustrator ,only 'save as'. This doesn't give me my crop marks. I've tried putting in crop marks - Effects/Crop Marks - but this places the marks outside my trim, at the edges of my background image, which comes out 2mm all round for bleed purposes.
    How can I set crop marks to denote the dimensions of the page size, regardless of how much crap I've got spilling out over the edges for bleed?
    Any help would be greatly appreciated.
    Cheers!
    PS: Bring back the PDF Printer Driver pleeeease!

    You can turn on crop & trim marsk when doing a save as to PDF. But turn on some bleed values greater than 0 (not  as in my screenshot) or you will not get any bleed of your artwork, just the marks then.

  • Exporting file to pdf from internet, the document its in blank or incomplete

    When i export a file to pdf from internet, the document is in blank or incomplete. Its the same if i donwload in a PC or opening online. The trouble is only in this PC, and i try with diferent browsers.
    I try deleting temporary files, upgrading a latest version of Reader and modifying the security configuration in the browser.
    Any idea?

    Hi da23841142,
    What are you using to export the file to PDF? Or, are you simply downloading a PDF file from the Internet, and then trying to view it in Reader? What version of Reader are you using, and are you on Mac OS or Windows?
    Best,
    Sara

  • Cannot save, export or print pdfs from browser

    I bought a new MacBook Air from Apple on 5/2/14. OS 10.9.4. Now I find that I can't save or export or print PDFs which I download into Safari or Firefox.
    For instance, I can fill in a fillable pdf in Safari, but I can't print it or save it or export it.  It show a blank document every time. When Saving, it lets me name the file but it's always a zero byte file.  It seems to only apply to downloaded PDFs.
    Can I get Safari to actually download the pdf to the Downloads folder?  Rather than opening it within Safari?
    I'm really desperate about this

    If you installed Adobe Acrobat Pro or Reader, your default in-browser PDF viewing/printing is switched from Apple’s to the Adobe plug-ins. The latter require that you use the plug-in itself — to save the PDF locally, and not the File > Export, or File > Save, or File > Print paradigms that leave you with a corrupt PDF.
    There are two different Adobe plug-in views that can appear with a PDF displayed in the Safari browser. These are images from Safari 7.0.5 on OS X 10.9.4. The Adobe Reader version is 11.0.07. The second is the most prevalent and appears as a rollover item near the bottom of the browser window. The first appears at the top of the PDF displayed in the browser window. To locally save the displayed PDF, choose the Disk icon from either of these choices. Also note the printer icons, which present a unique Adobe printing dialog.

  • R/3 Dialog program - read data from BW table (2 different servers)

    I have this R/3 dialog program that need to pull data from one of the BW table for data validation Apparently, R/3 and BW are setting on 2 different servers.
    Is this something possible? or is that any other approach that can give me the same result?
    Please give your exper advice. TQ.

    Hi
    No but it's very easy.
    The RFC fm is a normal function where the attribute Remote-enable module is setted.
    When a program call a RFC function module, this has to exist in the called system (so it's not necessary there's in calling system too).
    The data has to be transfered by inteface, so your fm has to have importing/exporting parameter in order to select the data you need to check.
    A rfc has to be called in this way:
    CALL FUNCTION <FUNCTION> DESTINATION <DEST>
      EXPORTING
      IMPORTING
      tables
    EXCEPTIONS
    <DEST> is BW destination, you can find it by trx SM59
    Try to see the standard fm RFC_READ_TABLE, it's a RFC function module to read a table.
    Max

  • How to export an interactive pdf from InDesign at a smaller file size.

    I have a single page InDesign doc with a side navigation panel to the right of each page. This panel has interactive buttons created in InDesign.
    When I export as an interactive pdf, the file size is over 27MB and I need it to be much lower.
    I should mention that this doc was made from an original PRINT InDesign doc of facing pages, which was about 55MB.
    When making it single pages for the interactive doc, the InDesign file size increased to 105MB.
    Can anyone explain this and have any useful tips for saving the pdf down WITH interactivity working?
    Many thanks.

    Okay - With the 15MB pdf, when I go into the PDF Optimizer dialog box, it's telling me that the Fonts are using 40% and the Acrobat Forms are using 29%.
    Anyone know of a way I can reduce either of these???
    Many thanks in advance!

  • Exporting to a PDF from Indesign

    I exported 1st edit of my book into a PDF was 120
    MB...then fixed a few typos..exported a
    2nd edit of almost the exact same book...same page #...but now is 522MB.
    why is ther such a difference?

    Are there images?
    Did you use the same export settings?
    Did you do a "save as" before exporting?

  • Error to export to a pdf from an indd document

    Here is the error I get :
    Process:    
    Adobe InDesign CS6 [3599]
    Path:       
    /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Adobe InDesign CS6
    Identifier: 
    com.adobe.InDesign
    Version:    
    8.0.0.370 (8000)
    Code Type:  
    X86 (Native)
    Parent Process:  launchd [156]
    Responsible:
    Adobe InDesign CS6 [3599]
    User ID:    
    501
    Date/Time:  
    2014-06-18 00:24:45.228 +0200
    OS Version: 
    Mac OS X 10.9.3 (13D65)
    Report Version:  11
    Anonymous UUID:  FF5B8E6A-FB9B-7F5E-BB83-4573B14CA7D9
    Sleep/Wake UUID: 7C0FF642-8F48-40C0-8DE9-9BD3BBE96AAE
    Crashed Thread:  22
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    [3599] stack overflow
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib  
    0x90ffbf7a mach_msg_trap + 10
    1   libsystem_kernel.dylib  
    0x90ffb16c mach_msg + 68
    2   com.apple.CoreFoundation
    0x99ae0c09 __CFRunLoopServiceMachPort + 169
    3   com.apple.CoreFoundation
    0x99ae01e1 __CFRunLoopRun + 1393
    4   com.apple.CoreFoundation
    0x99adf9fa CFRunLoopRunSpecific + 394
    5   com.apple.CoreFoundation
    0x99adf85b CFRunLoopRunInMode + 123
    6   com.apple.HIToolbox     
    0x9b95cb5d RunCurrentEventLoopInMode + 259
    7   com.apple.HIToolbox     
    0x9b95c8e2 ReceiveNextEventCommon + 526
    8   com.apple.HIToolbox     
    0x9baf7936 ReceiveNextEventInMode + 75
    9   com.apple.HIToolbox     
    0x9baf799a ReceiveNextEvent + 72
    10  com.adobe.InDesign.AppFramework    0x0ff0eaf8 0xff00000 + 60152
    11  com.adobe.InDesign.AppFramework    0x0ff2d327 GetPlugIn + 12007
    12  com.adobe.InDesign      
    0x00001ec5 main + 341
    13  com.adobe.InDesign      
    0x00001d55 start + 53
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib  
    0x91001992 kevent64 + 10
    1   libdispatch.dylib       
    0x985b5899 _dispatch_mgr_invoke + 238
    2   libdispatch.dylib       
    0x985b5532 _dispatch_mgr_thread + 52
    Thread 2:
    0   libsystem_kernel.dylib  
    0x910007ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib 
    0x96e17d8a _pthread_cond_wait + 837
    2   libsystem_pthread.dylib 
    0x96e18042 pthread_cond_timedwait_relative_np + 47
    3   com.apple.CoreServices.CarbonCore    0x9bff588d TSWaitOnConditionTimedRelative + 161
    4   com.apple.CoreServices.CarbonCore    0x9bfc1cf2 MPWaitOnQueue + 199
    5   PMRuntime.dylib         
    0x005b9581 SetVSizeBaseline(unsigned long) + 1473
    6   com.apple.CoreServices.CarbonCore    0x9bfc22ce PrivateMPEntryPoint + 68
    7   libsystem_pthread.dylib 
    0x96e155fb _pthread_body + 144
    8   libsystem_pthread.dylib 
    0x96e15485 _pthread_start + 130
    9   libsystem_pthread.dylib 
    0x96e1acf2 thread_start + 34
    Thread 3:
    0   libsystem_kernel.dylib  
    0x90ffbf7a mach_msg_trap + 10
    1   libsystem_kernel.dylib  
    0x90ffb16c mach_msg + 68
    2   com.apple.CoreServices.CarbonCore    0x9bff252d TS_exception_listener_thread + 138
    3   libsystem_pthread.dylib 
    0x96e155fb _pthread_body + 144
    4   libsystem_pthread.dylib 
    0x96e15485 _pthread_start + 130
    5   libsystem_pthread.dylib 
    0x96e1acf2 thread_start + 34
    Thread 4:
    0   libsystem_kernel.dylib  
    0x910007ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib 
    0x96e17d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib 
    0x96e19bd9 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore    0x9bff5682 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore    0x9bff58a6 TSWaitOnConditionTimedRelative + 186
    5   com.apple.CoreServices.CarbonCore    0x9bfc1cf2 MPWaitOnQueue + 199
    6   com.adobe.ACE           
    0x00607a69 0x5c8000 + 260713
    7   com.adobe.ACE           
    0x00606d99 0x5c8000 + 257433
    8   com.apple.CoreServices.CarbonCore    0x9bfc22ce PrivateMPEntryPoint + 68
    9   libsystem_pthread.dylib 
    0x96e155fb _pthread_body + 144
    10  libsystem_pthread.dylib 
    0x96e15485 _pthread_start + 130
    11  libsystem_pthread.dylib 
    0x96e1acf2 thread_start + 34
    Thread 5:
    0   libsystem_kernel.dylib  
    0x910007ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib 
    0x96e17d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib 
    0x96e19bd9 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore    0x9bff5682 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore    0x9bff58a6 TSWaitOnConditionTimedRelative + 186
    5   com.apple.CoreServices.CarbonCore    0x9bfc1cf2 MPWaitOnQueue + 199
    6   com.adobe.ACE           
    0x00607a69 0x5c8000 + 260713
    7   com.adobe.ACE           
    0x00606d99 0x5c8000 + 257433
    8   com.apple.CoreServices.CarbonCore    0x9bfc22ce PrivateMPEntryPoint + 68
    9   libsystem_pthread.dylib 
    0x96e155fb _pthread_body + 144
    10  libsystem_pthread.dylib 
    0x96e15485 _pthread_start + 130
    11  libsystem_pthread.dylib 
    0x96e1acf2 thread_start + 34
    Thread 6:
    0   libsystem_kernel.dylib  
    0x910007ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib 
    0x96e17d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib 
    0x96e19bd9 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore    0x9bff5682 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore    0x9bff58a6 TSWaitOnConditionTimedRelative + 186
    5   com.apple.CoreServices.CarbonCore    0x9bfc1cf2 MPWaitOnQueue + 199
    6   com.adobe.ACE           
    0x00607a69 0x5c8000 + 260713
    7   com.adobe.ACE           
    0x00606d99 0x5c8000 + 257433
    8   com.apple.CoreServices.CarbonCore    0x9bfc22ce PrivateMPEntryPoint + 68
    9   libsystem_pthread.dylib 
    0x96e155fb _pthread_body + 144
    10  libsystem_pthread.dylib 
    0x96e15485 _pthread_start + 130
    11  libsystem_pthread.dylib 
    0x96e1acf2 thread_start + 34
    Thread 7:
    0   libsystem_kernel.dylib  
    0x910007ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib 
    0x96e17d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib 
    0x96e19bd9 pthread_cond_wait$UNIX2003 + 71
    3   com.adobe.InDesign.AppFramework    0x10000556 GetPlugIn + 876822
    4   com.adobe.InDesign.AppFramework    0x0fffc8ff GetPlugIn + 861375
    5   com.adobe.InDesign.AppFramework    0x0fffd3c5 GetPlugIn + 864133
    6   com.adobe.InDesign.AppFramework    0x0fffe98e GetPlugIn + 869710
    7   com.adobe.InDesign.AppFramework    0x0fffe9fa GetPlugIn + 869818
    8   com.adobe.InDesign.AppFramework    0x0fffea66 GetPlugIn + 869926
    9   com.adobe.boost_threads.framework    0x01c6a40d thread_proxy + 141
    10  libsystem_pthread.dylib 
    0x96e155fb _pthread_body + 144
    11  libsystem_pthread.dylib 
    0x96e15485 _pthread_start + 130
    12  libsystem_pthread.dylib 
    0x96e1acf2 thread_start + 34
    Thread 8:
    0   libsystem_kernel.dylib  
    0x910007ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib 
    0x96e17d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib 
    0x96e19bd9 pthread_cond_wait$UNIX2003 + 71
    3   com.adobe.InDesign.AppFramework    0x10000556 GetPlugIn + 876822
    4   com.adobe.InDesign.AppFramework    0x0fffc8ff GetPlugIn + 861375
    5   com.adobe.InDesign.AppFramework    0x0fffd3c5 GetPlugIn + 864133
    6   com.adobe.InDesign.AppFramework    0x0fffe98e GetPlugIn + 869710
    7   com.adobe.InDesign.AppFramework    0x0fffe9fa GetPlugIn + 869818
    8   com.adobe.InDesign.AppFramework    0x0fffea66 GetPlugIn + 869926
    9   com.adobe.boost_threads.framework    0x01c6a40d thread_proxy + 141
    10  libsystem_pthread.dylib 
    0x96e155fb _pthread_body + 144
    11  libsystem_pthread.dylib 
    0x96e15485 _pthread_start + 130
    12  libsystem_pthread.dylib 
    0x96e1acf2 thread_start + 34
    Thread 9:
    0   libsystem_kernel.dylib  
    0x91000b76 __semwait_signal + 10
    1   libsystem_c.dylib       
    0x97dfdfb7 nanosleep$UNIX2003 + 219
    2   com.adobe.InDesign.Support for JavaScript    0x1645cacb GetPlugIn + 317883
    3   com.adobe.InDesign.Support for JavaScript    0x16441f79 GetPlugIn + 208489
    4   com.adobe.InDesign.Support for JavaScript    0x1645ce38 GetPlugIn + 318760
    5   libsystem_pthread.dylib 
    0x96e155fb _pthread_body + 144
    6   libsystem_pthread.dylib 
    0x96e15485 _pthread_start + 130
    7   libsystem_pthread.dylib 
    0x96e1acf2 thread_start + 34
    Thread 10:
    0   libsystem_kernel.dylib  
    0x91000a26 __recvfrom + 10
    1   libsystem_c.dylib       
    0x97dfe0c9 recv$UNIX2003 + 54
    2   ServiceManager-Launcher.dylib     0x1c2da733 Invoke + 47867
    3   ServiceManager-Launcher.dylib     0x1c2d9846 Invoke + 44046
    4   ServiceManager-Launcher.dylib     0x1c2d8988 Invoke + 40272
    5   ServiceManager-Launcher.dylib     0x1c2d8a0f Invoke + 40407
    6   ServiceManager-Launcher.dylib     0x1c2d3baf Invoke + 20343
    7   ServiceManager-Launcher.dylib     0x1c2d3ea7 Invoke + 21103
    8   ServiceManager-Launcher.dylib     0x1c2d4685 Invoke + 23117
    9   ServiceManager-Launcher.dylib     0x1c2d48f9 Invoke + 23745
    10  ServiceManager-Launcher.dylib     0x1c2d72a0 Invoke + 34408
    11  ServiceManager-Launcher.dylib     0x1c2d73fd Invoke + 34757
    12  ServiceManager-Launcher.dylib     0x1c2d7c91 Invoke + 36953
    13  ServiceManager-Launcher.dylib     0x1c2d7db2 Invoke + 37242
    14  ServiceManager-Launcher.dylib     0x1c2ca656 Login + 461
    15  ServiceManager-Launcher.dylib     0x1c2ce09a Login + 15377
    16  ServiceManager-Launcher.dylib     0x1c2d8165 Invoke + 38189
    17  ServiceManager-Launcher.dylib     0x1c2da2eb Invoke + 46771
    18  libsystem_pthread.dylib 
    0x96e155fb _pthread_body + 144
    19  libsystem_pthread.dylib 
    0x96e15485 _pthread_start + 130
    20  libsystem_pthread.dylib 
    0x96e1acf2 thread_start + 34
    Thread 11:
    0   libsystem_kernel.dylib  
    0x910007ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib 
    0x96e17d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib 
    0x96e19bd9 pthread_cond_wait$UNIX2003 + 71
    3   com.adobe.InDesign.AppFramework    0x10000556 GetPlugIn + 876822
    4   com.adobe.InDesign.AppFramework    0x0fffc8ff GetPlugIn + 861375
    5   com.adobe.InDesign.AppFramework    0x0fffd3c5 GetPlugIn + 864133
    6   com.adobe.InDesign.AppFramework    0x0fffe98e GetPlugIn + 869710
    7   com.adobe.InDesign.AppFramework    0x0fffe9fa GetPlugIn + 869818
    8   com.adobe.InDesign.AppFramework    0x0fffea66 GetPlugIn + 869926
    9   com.adobe.boost_threads.framework    0x01c6a40d thread_proxy + 141
    10  libsystem_pthread.dylib 
    0x96e155fb _pthread_body + 144
    11  libsystem_pthread.dylib 
    0x96e15485 _pthread_start + 130
    12  libsystem_pthread.dylib 
    0x96e1acf2 thread_start + 34
    Thread 12:
    0   libsystem_kernel.dylib  
    0x910007ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib 
    0x96e17d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib 
    0x96e19bd9 pthread_cond_wait$UNIX2003 + 71
    3   com.adobe.InDesign.AppFramework    0x10000556 GetPlugIn + 876822
    4   com.adobe.InDesign.AppFramework    0x0fffc8ff GetPlugIn + 861375
    5   com.adobe.InDesign.AppFramework    0x0fffd3c5 GetPlugIn + 864133
    6   com.adobe.InDesign.AppFramework    0x0fffe98e GetPlugIn + 869710
    7   com.adobe.InDesign.AppFramework    0x0fffe9fa GetPlugIn + 869818
    8   com.adobe.InDesign.AppFramework    0x0fffea66 GetPlugIn + 869926
    9   com.adobe.boost_threads.framework    0x01c6a40d thread_proxy + 141
    10  libsystem_pthread.dylib 
    0x96e155fb _pthread_body + 144
    11  libsystem_pthread.dylib 
    0x96e15485 _pthread_start + 130
    12  libsystem_pthread.dylib 
    0x96e1acf2 thread_start + 34
    Thread 13:
    0   libsystem_kernel.dylib  
    0x910007ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib 
    0x96e17d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib 
    0x96e19bd9 pthread_cond_wait$UNIX2003 + 71
    3   com.adobe.ape.engine    
    0x2aab804f APXGetHostAPI + 2633743
    4   com.adobe.ape.engine    
    0x2a84962f APXGetHostAPI + 83439
    5   com.adobe.ape.engine    
    0x2aab813e APXGetHostAPI + 2633982
    6   com.adobe.ape.engine    
    0x2aab81a7 APXGetHostAPI + 2634087
    7   com.adobe.ape.engine    
    0x2aab82c6 APXGetHostAPI + 2634374
    8   libsystem_pthread.dylib 
    0x96e155fb _pthread_body + 144
    9   libsystem_pthread.dylib 
    0x96e15485 _pthread_start + 130
    10  libsystem_pthread.dylib 
    0x96e1acf2 thread_start + 34
    Thread 14:
    0   libsystem_kernel.dylib  
    0x910007ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib 
    0x96e17d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib 
    0x96e19bd9 pthread_cond_wait$UNIX2003 + 71
    3   com.adobe.ape.engine    
    0x2aab804f APXGetHostAPI + 2633743
    4   com.adobe.ape.engine    
    0x2a84962f APXGetHostAPI + 83439
    5   com.adobe.ape.engine    
    0x2aab813e APXGetHostAPI + 2633982
    6   com.adobe.ape.engine    
    0x2aab81a7 APXGetHostAPI + 2634087
    7   com.adobe.ape.engine    
    0x2aab82c6 APXGetHostAPI + 2634374
    8   libsystem_pthread.dylib 
    0x96e155fb _pthread_body + 144
    9   libsystem_pthread.dylib 
    0x96e15485 _pthread_start + 130
    10  libsystem_pthread.dylib 
    0x96e1acf2 thread_start + 34
    Thread 15:
    0   libsystem_kernel.dylib  
    0x910007ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib 
    0x96e17d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib 
    0x96e19bd9 pthread_cond_wait$UNIX2003 + 71
    3   com.adobe.ape.engine    
    0x2aab804f APXGetHostAPI + 2633743
    4   com.adobe.ape.engine    
    0x2a84962f APXGetHostAPI + 83439
    5   com.adobe.ape.engine    
    0x2aab813e APXGetHostAPI + 2633982
    6   com.adobe.ape.engine    
    0x2aab81a7 APXGetHostAPI + 2634087
    7   com.adobe.ape.engine    
    0x2aab82c6 APXGetHostAPI + 2634374
    8   libsystem_pthread.dylib 
    0x96e155fb _pthread_body + 144
    9   libsystem_pthread.dylib 
    0x96e15485 _pthread_start + 130
    10  libsystem_pthread.dylib 
    0x96e1acf2 thread_start + 34
    Thread 16:
    0   libsystem_kernel.dylib  
    0x910007ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib 
    0x96e17d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib 
    0x96e19bd9 pthread_cond_wait$UNIX2003 + 71
    3   com.adobe.ape.engine    
    0x2aab804f APXGetHostAPI + 2633743
    4   com.adobe.ape.engine    
    0x2a84962f APXGetHostAPI + 83439
    5   com.adobe.ape.engine    
    0x2aab813e APXGetHostAPI + 2633982
    6   com.adobe.ape.engine    
    0x2aab81a7 APXGetHostAPI + 2634087
    7   com.adobe.ape.engine    
    0x2aab82c6 APXGetHostAPI + 2634374
    8   libsystem_pthread.dylib 
    0x96e155fb _pthread_body + 144
    9   libsystem_pthread.dylib 
    0x96e15485 _pthread_start + 130
    10  libsystem_pthread.dylib 
    0x96e1acf2 thread_start + 34
    Thread 17:
    0   libsystem_kernel.dylib  
    0x910007ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib 
    0x96e17d8a _pthread_cond_wait + 837
    2   libsystem_pthread.dylib 
    0x96e18042 pthread_cond_timedwait_relative_np + 47
    3   com.adobe.ape.engine    
    0x2aab8017 APXGetHostAPI + 2633687
    4   com.adobe.ape.engine    
    0x2aad120e APXGetHostAPI + 2736590
    5   com.adobe.ape.engine    
    0x2aab813e APXGetHostAPI + 2633982
    6   com.adobe.ape.engine    
    0x2aab81a7 APXGetHostAPI + 2634087
    7   com.adobe.ape.engine    
    0x2aab82c6 APXGetHostAPI + 2634374
    8   libsystem_pthread.dylib 
    0x96e155fb _pthread_body + 144
    9   libsystem_pthread.dylib 
    0x96e15485 _pthread_start + 130
    10  libsystem_pthread.dylib 
    0x96e1acf2 thread_start + 34
    Thread 18:
    0   libsystem_kernel.dylib  
    0x910007ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib 
    0x96e17d8a _pthread_cond_wait + 837
    2   libsystem_pthread.dylib 
    0x96e18042 pthread_cond_timedwait_relative_np + 47
    3   com.adobe.ape.engine    
    0x2aab8017 APXGetHostAPI + 2633687
    4   com.adobe.ape.engine    
    0x2ac460c8 APXGetHostAPI + 4264072
    5   com.adobe.ape.engine    
    0x2aab813e APXGetHostAPI + 2633982
    6   com.adobe.ape.engine    
    0x2aab81a7 APXGetHostAPI + 2634087
    7   com.adobe.ape.engine    
    0x2aab82c6 APXGetHostAPI + 2634374
    8   libsystem_pthread.dylib 
    0x96e155fb _pthread_body + 144
    9   libsystem_pthread.dylib 
    0x96e15485 _pthread_start + 130
    10  libsystem_pthread.dylib 
    0x96e1acf2 thread_start + 34
    Thread 19:
    0   libsystem_kernel.dylib  
    0x910007ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib 
    0x96e17d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib 
    0x96e19bd9 pthread_cond_wait$UNIX2003 + 71
    3   MultiProcessor Support  
    0x0d094eac boost::condition_variable::wait(boost::unique_lock<boost::mutex>&) + 140
    4   MultiProcessor Support  
    0x0d078513 ThreadFunctor::operator()() + 99
    5   MultiProcessor Support  
    0x0d07825a boost::detail::thread_data<ThreadFunctor>::run() + 22
    6   MultiProcessor Support  
    0x0d094547 thread_proxy + 167
    7   libsystem_pthread.dylib 
    0x96e155fb _pthread_body + 144
    8   libsystem_pthread.dylib 
    0x96e15485 _pthread_start + 130
    9   libsystem_pthread.dylib 
    0x96e1acf2 thread_start + 34
    Thread 20:
    0   libsystem_kernel.dylib  
    0x910007ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib 
    0x96e17d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib 
    0x96e19bd9 pthread_cond_wait$UNIX2003 + 71
    3   MultiProcessor Support  
    0x0d094eac boost::condition_variable::wait(boost::unique_lock<boost::mutex>&) + 140
    4   MultiProcessor Support  
    0x0d078513 ThreadFunctor::operator()() + 99
    5   MultiProcessor Support  
    0x0d07825a boost::detail::thread_data<ThreadFunctor>::run() + 22
    6   MultiProcessor Support  
    0x0d094547 thread_proxy + 167
    7   libsystem_pthread.dylib 
    0x96e155fb _pthread_body + 144
    8   libsystem_pthread.dylib 
    0x96e15485 _pthread_start + 130
    9   libsystem_pthread.dylib 
    0x96e1acf2 thread_start + 34
    Thread 21:
    0   libsystem_kernel.dylib  
    0x910007ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib 
    0x96e17d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib 
    0x96e19bd9 pthread_cond_wait$UNIX2003 + 71
    3   MultiProcessor Support  
    0x0d094eac boost::condition_variable::wait(boost::unique_lock<boost::mutex>&) + 140
    4   MultiProcessor Support  
    0x0d078513 ThreadFunctor::operator()() + 99
    5   MultiProcessor Support  
    0x0d07825a boost::detail::thread_data<ThreadFunctor>::run() + 22
    6   MultiProcessor Support  
    0x0d094547 thread_proxy + 167
    7   libsystem_pthread.dylib 
    0x96e155fb _pthread_body + 144
    8   libsystem_pthread.dylib 
    0x96e15485 _pthread_start + 130
    9   libsystem_pthread.dylib 
    0x96e1acf2 thread_start + 34
    Thread 22 Crashed:
    0   libsystem_kernel.dylib  
    0x91000952 __pthread_kill + 10
    1   libsystem_pthread.dylib 
    0x96e16167 pthread_kill + 101
    2   libsystem_c.dylib       
    0x97ddf368 __abort + 187
    3   libsystem_c.dylib       
    0x97ddfbea __stack_chk_fail + 233
    4   com.adobe.CoolType      
    0x010137c9 CTInit + 1626733
    5   com.adobe.CoolType      
    0x01014053 CTInit + 1628919
    6   com.adobe.CoolType      
    0x010111ba CTInit + 1616990
    7   com.adobe.CoolType      
    0x0100f77e CTInit + 1610274
    8   com.adobe.CoolType      
    0x00f6478e CTInit + 909874
    9   com.adobe.CoolType      
    0x00ef40a2 CTInit + 449350
    10  com.adobe.CoolType      
    0x00e726ba 0xe1e000 + 345786
    11  com.adobe.PDFL          
    0x2903d2e2 PDFontPSFlushIncrGlyphList + 85285
    12  com.adobe.PDFL          
    0x29452898 PDEFontGetWidthsNow + 8752
    13  com.adobe.PDFL          
    0x29452bb9 PDEFontGetWidthsNow + 9553
    14  com.adobe.PDFL          
    0x29453b13 PDEFontGetWidthsNow + 13483
    15  com.adobe.PDFL          
    0x294549a1 PDEFontGetWidthsNow + 17209
    16  com.adobe.PDFPort       
    0x1731affe PDFPortInitialize + 560298
    17  com.adobe.PDFPort       
    0x1731b375 PDFPortInitialize + 561185
    18  com.adobe.PDFPort       
    0x173038f0 PDFPortInitialize + 464284
    19  com.adobe.InDesign.PDF  
    0x17037f09 0x17002000 + 220937
    20  com.adobe.InDesign.PDF  
    0x1705b64d GetPlugIn + 66509
    21  com.adobe.InDesign.PDF  
    0x1705e0b8 GetPlugIn + 77368
    22  com.adobe.InDesign.PDF  
    0x17045bb5 0x17002000 + 277429
    23  PublicLib.dylib         
    0x01701d7c Command::DoImmediate(short) + 62
    24  com.adobe.InDesign.Utilities
    0x114d7691 0x114d3000 + 18065
    25  com.adobe.InDesign.Utilities
    0x114d78a0 0x114d3000 + 18592
    26  com.adobe.InDesign.AppFramework    0x0ff1cbba 0xff00000 + 117690
    27  PublicLib.dylib         
    0x01702724 CmdUtils::ProcessCommand(ICommand*) + 48
    28  com.adobe.InDesign.PDF  
    0x17185bb6 GetPlugIn + 1288502
    29  com.adobe.InDesign.PDF  
    0x17189f47 GetPlugIn + 1305799
    30  com.adobe.InDesign.AppFramework    0x0fffa749 GetPlugIn + 852745
    31  com.adobe.InDesign.AppFramework    0x0fffbca6 GetPlugIn + 858214
    32  com.adobe.InDesign.AppFramework    0x0fffc804 GetPlugIn + 861124
    33  com.adobe.InDesign.AppFramework    0x0fffd3c5 GetPlugIn + 864133
    34  com.adobe.InDesign.AppFramework    0x0fffe98e GetPlugIn + 869710
    35  com.adobe.InDesign.AppFramework    0x0fffe9fa GetPlugIn + 869818
    36  com.adobe.InDesign.AppFramework    0x0fffea66 GetPlugIn + 869926
    37  com.adobe.boost_threads.framework    0x01c6a40d thread_proxy + 141
    38  libsystem_pthread.dylib 
    0x96e155fb _pthread_body + 144
    39  libsystem_pthread.dylib 
    0x96e15485 _pthread_start + 130
    40  libsystem_pthread.dylib 
    0x96e1acf2 thread_start + 34
    Thread 23:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib  
    0x90ffbf7a mach_msg_trap + 10
    1   libsystem_kernel.dylib  
    0x90ffb16c mach_msg + 68
    2   com.apple.CoreFoundation
    0x99ae0c09 __CFRunLoopServiceMachPort + 169
    3   com.apple.CoreFoundation
    0x99ae01e1 __CFRunLoopRun + 1393
    4   com.apple.CoreFoundation
    0x99adf9fa CFRunLoopRunSpecific + 394
    5   com.apple.CoreFoundation
    0x99adf85b CFRunLoopRunInMode + 123
    6   com.apple.Foundation    
    0x99228095 +[NSURLConnection(Loader) _resourceLoadLoop:] + 381
    7   com.apple.Foundation    
    0x99227f0e -[NSThread main] + 45
    8   com.apple.Foundation    
    0x99227e66 __NSThread__main__ + 1426
    9   libsystem_pthread.dylib 
    0x96e155fb _pthread_body + 144
    10  libsystem_pthread.dylib 
    0x96e15485 _pthread_start + 130
    11  libsystem_pthread.dylib 
    0x96e1acf2 thread_start + 34
    Thread 24:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib  
    0x91000ace __select + 10
    1   com.apple.CoreFoundation
    0x99b30af6 __CFSocketManager + 1158
    2   libsystem_pthread.dylib 
    0x96e155fb _pthread_body + 144
    3   libsystem_pthread.dylib 
    0x96e15485 _pthread_start + 130
    4   libsystem_pthread.dylib 
    0x96e1acf2 thread_start + 34
    Thread 25:
    0   libsystem_kernel.dylib  
    0x910007ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib 
    0x96e17d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib 
    0x96e19bd9 pthread_cond_wait$UNIX2003 + 71
    3   com.adobe.InDesign.AppFramework    0x10000556 GetPlugIn + 876822
    4   com.adobe.InDesign.AppFramework    0x0fffc8ff GetPlugIn + 861375
    5   com.adobe.InDesign.AppFramework    0x0fffd3c5 GetPlugIn + 864133
    6   com.adobe.InDesign.AppFramework    0x0fffe98e GetPlugIn + 869710
    7   com.adobe.InDesign.AppFramework    0x0fffe9fa GetPlugIn + 869818
    8   com.adobe.InDesign.AppFramework    0x0fffea66 GetPlugIn + 869926
    9   com.adobe.boost_threads.framework    0x01c6a40d thread_proxy + 141
    10  libsystem_pthread.dylib 
    0x96e155fb _pthread_body + 144
    11  libsystem_pthread.dylib 
    0x96e15485 _pthread_start + 130
    12  libsystem_pthread.dylib 
    0x96e1acf2 thread_start + 34
    Thread 26:
    0   libsystem_kernel.dylib  
    0x91001046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x96e16dcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib 
    0x96e1acce start_wqthread + 30
    Thread 27:
    Thread 22 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0x66666667  ecx: 0xb0a3764c  edx: 0x91000952
      edi: 0xb0a39000  esi: 0x00000006  ebp: 0xb0a37668  esp: 0xb0a3764c
       ss: 0x00000023  efl: 0x00000206  eip: 0x91000952   cs: 0x0000000b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000023   gs: 0x0000000f
      cr2: 0x0b242000
    Logical CPU:
    0
    Error Code: 
    0x00080148
    Trap Number:
    132
    Binary Images:
    0x1000 -
    0x4ff7 +com.adobe.InDesign (8.0.0.370 - 8000) <0D5CE30B-1589-2AA4-C7E5-2C0ED0C44D37> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Adobe InDesign CS6
    0xa000 -
    0xaff7 +InDesignModelAndUI (0) <2E042CB4-E42B-151B-E858-1352BF64CBA2> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/InDesignModelAndUI.framework/Versions/A/InDesignModelAndUI
    0xe000 -
    0xeff7 +InDesignModel (0) <C9ABC1CF-850A-FCC7-2CEA-68B14F048036> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/InDesignModel.framework/Versions/A/InDesignModel
       0x12000 -   0x1f2fef +WidgetBinLib.dylib (1) <D2AAB5B9-0694-32FA-38D5-F97FEE688C9D> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/WidgetBinLib.dylib
      0x2a0000 -   0x47fffb +com.adobe.owl (AdobeOwl version 4.0.93 - 4.0.93) <D102FCD2-496D-5322-AEC0-7A5091CAA2CA> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
      0x4ac000 -   0x546ff3 +com.adobe.owl-canvas (AdobeOwlCanvas version 3.6.05 - 3.6.05) <8E0CC5EB-E18A-20BD-BDC4-667D1CC43C12> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/AdobeOwlCanvas.framework/Versions/A/AdobeOwlCanvas
      0x553000 -   0x55cfff +ASLSupportLib.dylib (1) <000064CE-84C2-F397-BAB1-17055FA344EC> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/ASLSupportLib.dylib
      0x563000 -   0x59fffb +TextPanelLib.dylib (1) <019DE080-1920-928F-57FB-F8FD8FCCA227> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/TextPanelLib.dylib
      0x5b6000 -   0x5bfff3 +PMRuntime.dylib (1) <DEE2F17E-391E-5C3E-11DC-EF6E0860545E> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/PMRuntime.dylib
      0x5c8000 -   0x744ff3 +com.adobe.ACE (AdobeACE 2.19.18.19553 - 2.19.18.19553) <2C680020-62C1-F45D-B48C-9D5AB8E99DCC> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
      0x753000 -   0xd1afef +com.adobe.AGM (AdobeAGM 4.26.18.19553 - 4.26.18.19553) <AB15D5F5-2D3D-F597-DD23-47A7A4719FC1> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
      0xd8d000 -   0xdc8ff7 +com.adobe.ARE (AdobeARE 1.5.02.19553 - 1.5.02.19553) <264C1354-0764-AFAB-5BB7-DA4B4EBEEFC1> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/AdobeARE.framework/Versions/A/AdobeARE
      0xdce000 -   0xdebff3 +com.adobe.BIB (AdobeBIB 1.2.02.19553 - 1.2.02.19553) <D3D9FDCE-75B2-7FB3-71C8-D5DF313F6B0F> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
      0xdf1000 -   0xe18ff7 +com.adobe.BIBUtils (AdobeBIBUtils 1.1.01 - 1.1.01) <34F46810-2864-0365-91CF-BF9C8503400A> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
      0xe1e000 -  0x1148fe3 +com.adobe.CoolType (AdobeCoolType 5.10.64.19354 - 5.10.64.19354) <8985B298-125A-B521-9246-AAD43073A3F6> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
    0x1180000 -  0x157bfe7 +com.adobe.MPS (AdobeMPS 5.8.0.19673 - 5.8.0.19673) <D65ABA15-80D2-3F1C-2500-EEF873019149> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
    0x15d8000 -  0x163dff3 +ObjectModelLib.dylib (1) <073EF2BA-B5C6-A466-9AEC-963A2EF69144> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/ObjectModelLib.dylib
    0x1654000 -  0x16b1feb +DataBaseLib.dylib (1) <F5ED35C9-1779-CF0D-BD50-0BC162D96A31> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/DataBaseLib.dylib
    0x16c1000 -  0x1b13fe7 +PublicLib.dylib (1) <BD26BAA7-5BF0-9F0A-BB93-B4FE388E6852> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/PublicLib.dylib
    0x1c3f000 -  0x1c56ffb +com.adobe.AFL (AdobeAFL 1.0.0 - 1.0) <3B7A1817-3CA4-BEAA-A44A-5A9B5D664E93> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/AdobeAFL.framework/Versions/A/AdobeAFL
    0x1c67000 -  0x1c73ff7 +com.adobe.boost_threads.framework (5.0.0 - 5.0.0.0) <56B14206-3221-D261-2B01-F91074D192FC> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/boost_threads.framework/Versions/A/boost_threads
    0x1c90000 -  0x1c98fef +libtbbmalloc.dylib (0) <7A79ED70-A4AC-737A-2FAA-63B6FB29D4ED> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/libtbbmalloc.dylib
    0x1ca5000 -  0x1cc4fff +libtbb.dylib (0) <6EA19434-60D6-505D-CB6F-5CA562A0F2A7> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/libtbb.dylib
    0x1cd9000 -  0x1ce1fef +com.adobe.boost_date_time.framework (5.0.0 - 5.0.0.0) <088B6233-3B58-D51A-4609-1FF7F462B1D3> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/boost_date_time.framework/Versions/A/boost_date_time
    0x1cf8000 -  0x1e38feb +com.winsoft.wrservices (WRServices 5.0.0 - 5.0.0) <6D085279-1185-E7F0-B0D8-FBADBA062516> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices
    0x1eaa000 -  0x1eadffb +com.adobe.AdobeCrashReporter (6.0 - 6.0.20120201) <6CE1936E-6AC7-6900-769B-876CBB68B5BC> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCrashReporter
    0x1eb5000 -  0x2bfaff7 +libicudata.40.0.dylib (40) <015E6351-4F42-00C1-2096-BEE385B275B1> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/ICUData.framework/Versions/4.0/libicudata.40.0.dylib
    0x2c0d000 -  0x2d42fe7 +libicui18n.40.0.dylib (40) <8BE3FE71-0CE6-2B93-B5F2-B4F0DD274B91> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/ICUInternationalization.framework/Versions/4.0/libicui18n.40. 0.dylib
    0x2db6000 -  0x2ea7fef +libicuuc.40.0.dylib (40) <4CF7066A-6E82-FF80-93E6-6849149FBB98> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/ICUUnicode.framework/Versions/4.0/libicuuc.40.0.dylib
    0x2ee4000 -  0x2f56fef +com.adobe.adobe_caps (adobe_caps 6.0.29.0 - 6.0.29.0) <E4ADECD5-05B4-E78B-09D8-E45FD640E84D> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/adobe_caps.framework/Versions/A/adobe_caps
    0x2f63000 -  0x3045ff3 +com.adobe.amtlib (amtlib 6.0.0.75 - 6.0.0.75) <808CABA8-E8E6-AC45-4905-A6AA59E8C41C> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib
    0x3054000 -  0x311cfe7 +com.adobe.boost_regex.framework (5.0.0 - 5.0.0.0) <E124FC44-4A5C-A3C5-C7E2-0631F1D6E628> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/boost_regex.framework/Versions/A/boost_regex
    0x31c2000 -  0x31feff7  com.apple.vmutils (4.2.1 - 108) <37A7D6A9-0BA7-39D9-A203-7123124A18B0> /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x3218000 -  0x3219ff7 +com.adobe.boost_system.framework (5.0.0 - 5.0.0.0) <957930FC-D7B3-FAEA-0075-63C7B0E59070> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/boost_system.framework/Versions/A/boost_system
    0x3220000 -  0x32befe3 +libicucnv.40.0.dylib (40) <D11DC46F-D58E-B17C-9356-46F593D5A7CF> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/ICUConverter.framework/Versions/4.0/libicucnv.40.0.dylib
    0x32e0000 -  0x32e7ffb +com.adobe.ape.shim (3.3.8.19346 - 3.3.8.19346) <B711CAA7-29D6-D5CF-CE1B-A611896C8D87> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/adbeape.framework/Versions/A/adbeape
    0x556f000 -  0x5572fff +FastCore (???) <E1186AC0-CC0B-AEDA-7096-5EF975A3075E> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/AdobePSL.framework/PlugIns/FastCore.plugin/Contents/MacOS/Fas tCore
    0x57c9000 -  0x57c9ffd  com.apple.applescript.component (2.3.2 - 348.3) <2FE5746C-6D63-30E9-B352-338D7C502CF6> /System/Library/Components/AppleScript.component/Contents/MacOS/AppleScript
    0x57d0000 -  0x57d1ff8  ATSHI.dylib (363.3) <62AF40CE-1110-31D5-931C-2B2AFB5C1A18> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/ATSHI.dylib
    0x57d6000 -  0x57e4fff  libSimplifiedChineseConverter.dylib (61) <6E42E198-9C8D-3F0F-9660-6D9975C2461E> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x57e8000 -  0x57faffd  libTraditionalChineseConverter.dylib (61) <EFC81138-0455-321B-A93A-F4E9C4A3EB31> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0x8921000 -  0x8922ffb +com.adobe.InDesign.Metadata Database Filter (8.0.0.370 - 0) <AAA7D767-80AA-D2C9-AE83-C15DD4C39CF6> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Required/Metadata Database Filter.InDesignPlugin/Metadata Database Filter
    0x8928000 -  0x8929ffb +com.adobe.InDesign.Global Preferences Panel (8.0.0.370 - 0) <1E82EF72-4A43-5D8F-F38E-3213B34884CC> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Required/Global Preferences Panel.InDesignPlugin/Global Preferences Panel
    0x892e000 -  0x8937fff +com.adobe.InDesign.Workgroup Client UI (8.0.0.370 - 0) <49902077-E8F4-7FEA-A0B4-545ADF7233E6> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Required/Workgroup Client UI.InDesignPlugin/Workgroup Client UI
    0x893c000 -  0x893dffd  com.apple.textencoding.unicode (2.6 - 2.6) <27946D57-CEFB-3EF1-B124-4A39D2621738> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x8a50000 -  0x8a5bff7 +com.adobe.InDesign.Group (8.0.0.370 - 0) <64697676-1836-6A88-EAD5-D2A08DE79F6E> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Required/Group.InDesignPlugin/Group
    0xba63000 -  0xba63ff7 +DTraceSupport.dylib (1) <3B2D713B-751B-BD11-5DEA-7B7F6017CB58> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/DTraceSupport.dylib
    0xbabe000 -  0xbabeffd +cl_kernels (???) <B0B37396-B3C7-4F96-A6BD-5AAB449CAAB5> cl_kernels
    0xc741000 -  0xc745ffd  com.apple.audio.AppleHDAHALPlugIn (2.6.1 - 2.6.1f2) <566536E7-3014-3A2C-B25C-DC169D5FDCAE> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Conten ts/MacOS/AppleHDAHALPlugIn
    0xc8b7000 -  0xc8c2ffa  com.apple.CommerceCore (1.0 - 42) <E59717F2-6770-3DBC-8510-F7AA61E60F57> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCor e.framework/Versions/A/CommerceCore
    0xcec0000 -  0xcee5ff9  com.apple.framework.familycontrols (4.1 - 410) <A33A97EE-C735-38BA-9B49-5D78DAA3DEDA> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
    0xd02d000 -  0xd0b1ff7 +MultiProcessor Support (???) <11E5AD94-2FCB-7173-99B1-44B75C0B0058> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/AdobePSL.framework/PlugIns/MultiProcessor Support.plugin/Contents/MacOS/MultiProcessor Support
    0xd700000 -  0xd769fff +MMXCore (???) <017D2F86-6D53-9D06-95B9-FF37A897DA36> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/AdobePSL.framework/PlugIns/MMXCore.plugin/Contents/MacOS/MMXC ore
    0xfdbc000 -  0xfddcff3 +com.adobe.InDesign.IME (8.0.0.370 - 0) <68273229-D088-6FE7-0EBB-049D7765EB27> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Required/IME.InDesignPlugin/IME
    0xfdea000 -  0xfdf7ff7 +com.adobe.InDesign.Sound (8.0.0.370 - 0) <38D24640-7AEE-3ADA-E2E2-4D93D76EDEC3> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Required/Sound.InDesignPlugin/Sound
    0xff00000 - 0x100acfff +com.adobe.InDesign.AppFramework (8.0.0.370 - 0) <37A21F7E-89E0-6F90-1F36-8DBD540D75AF> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Required/AppFramework.InDesignPlugin/AppFramework
    0x108ef000 - 0x10acafe7 +com.adobe.InDesign.Text Walker (8.0.0.370 - 0) <49EF6D2A-B8AE-AAD1-D589-DADEA0A5C494> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Required/Text Walker.InDesignPlugin/Text Walker
    0x10b12000 - 0x10b61ffb +com.adobe.InDesign.Linguistics (8.0.0.370 - 0) <7D889554-84E1-8BFD-4215-334161422D69> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Required/Linguistics.InDesignPlugin/Linguistics
    0x10b75000 - 0x10bd4ff7 +com.adobe.InDesign.Text Panel (8.0.0.370 - 0) <4D8C3996-CA93-FEF5-AAF4-074DF431DCC1> /Applications/Adobe InDesign CS6/*/Text Panel
    0x10be9000 - 0x10c35ff7 +com.adobe.InDesign.Spelling Panel (8.0.0.370 - 0) <201EFD3B-7BF3-38E2-0992-2A7CE8799FD9> /Applications/Adobe InDesign CS6/*/Spelling Panel
    0x10c4d000 - 0x10e62ff3 +com.adobe.InDesign.Package and Preflight (8.0.0.370 - 0) <6769A211-92EE-F6F2-2E52-3C06226A352A> /Applications/Adobe InDesign CS6/*/Package and Preflight
    0x10e94000 - 0x10ef0fef +com.adobe.AdobeXMPCore (Adobe XMP Core 5.3 -c 11 - 66.145661) <123A0829-A85B-6E67-0E48-4F37B08E4C03> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
    0x10ef9000 - 0x10f21feb +com.adobe.AXE8SharedExpat (AdobeAXE8SharedExpat 3.7.101.18636 - 3.7.101.18636) <C38ACBCE-04AA-DF40-FF79-29377F25CDAF> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8SharedExpa t
    0x10f40000 - 0x1100aff7 +com.adobe.InDesign.Text Editor (8.0.0.370 - 0) <81901B1A-3FFA-6536-E86E-F5FB8745230C> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Required/Text Editor.InDesignPlugin/Text Editor
    0x11031000 - 0x11229fff +com.adobe.InDesign.Layout UI (8.0.0.370 - 0) <C2FFDBBB-7D4A-AEE1-1B0B-FDB5B12BE43D> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Required/Layout UI.InDesignPlugin/Layout UI
    0x1126f000 - 0x112dfff7 +com.adobe.InDesign.Import Export UI (8.0.0.370 - 0) <48FAF53E-A0DA-7DA4-3A8F-D647CE86A237> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Required/Import Export UI.InDesignPlugin/Import Export UI
    0x112fe000 - 0x113fbff3 +com.adobe.InDesign.Hyperlinks (8.0.0.370 - 0) <7DBD8FB4-45E4-C1E3-FF9F-CE111584196C> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Required/Hyperlinks.InDesignPlugin/Hyperlinks
    0x1141c000 - 0x114beff7 +com.adobe.InDesign.Master Page (8.0.0.370 - 0) <E44ED0B1-D4B9-1DD6-3DFA-FBD2B1F02BBE> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Required/Master Page.InDesignPlugin/Master Page
    0x114d3000 - 0x114fbff3 +com.adobe.InDesign.Utilities (8.0.0.370 - 0) <28C5CB88-35B0-8180-4138-80D5E3503BBA> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Required/Utilities.InDesignPlugin/Utilities
    0x11511000 - 0x115f9fff +com.adobe.InDesign.Color Management (8.0.0.370 - 0) <AEB38774-2898-14E0-EF60-2FAD9277E576> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Required/Color Management.InDesignPlugin/Color Management
    0x11942000 - 0x119afffb +com.adobe.headlights.LogSessionFramework (2.1.2.1652) <82DA9279-45D2-AD40-C86C-F5A94B9DAAFF> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/LogSession.framework/Versions/A/LogSession
    0x11d00000 - 0x11fdeff7 +com.adobe.InDesign.Application UI (8.0.0.370 - 0) <DC17ED34-F202-1273-AD65-50BCE7BFFFE5> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Required/Application UI.InDesignPlugin/Application UI
    0x12068000 - 0x1211cffb +com.adobe.AdobeExtendScript (ExtendScript 4.2.12 - 4.2.12.18602) <2C860A49-8645-DC74-DC56-53BC99138C6F> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/AdobeExtendScript.framework/Versions/A/AdobeExtendScript
    0x1215f000 - 0x121fdff3 +com.adobe.AdobeScCore (ScCore 4.2.12 - 4.2.12.18602) <D8CDF140-E42A-DCFB-AFFC-69B4694FB639> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/AdobeScCore.framework/Versions/A/AdobeScCore
    0x12233000 - 0x12402fef +com.adobe.InDesign.Document Framework (8.0.0.370 - 0) <719D4428-D6DD-B14F-E32B-2227C3E7F10E> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/MacOS/Required/Document Framework.InDesignPlugin/Document Framework
    0x134ad000 - 0x135e3feb +com.adobe.InDesign.SangamServicer-Mapper (8.0.0.370 - 0) <6C68B5C2-84AE-5F93-03B2-EF620A1ADB1F> /Applications/Adobe InDesign CS6/*/SangamServicer-Mapper
    0x135ff000 - 0x13669feb +com.adobe.AdobeSangam (AdobeSangam 5.6.0.19506 - 5.6.0.19506) <1D569A75-8FA7-A3F9-ADB7-0CD4E72985E1> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/AdobeSangam.framework/Versions/A/AdobeSangam
    0x136ae000 - 0x136e0fe3 +com.adobe.Reader for DOCX (Reader for DOCX 5.6.0.19506 - 5.6.0.19506) <BE1E7785-EB91-BA70-DFE5-6077B90E58AC> /Applications/Adobe InDesign CS6/*/Reader for DOCX
    0x136e9000 - 0x137d1fe3 +com.adobe.AXEDOMCore (AdobeAXEDOMCore 3.7.101.18636 - 3.7.101.18636) <2540764B-C2F2-61D7-EFBA-6663171FD19A> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/AdobeAXEDOMCore.framework/Versions/A/AdobeAXEDOMCore
    0x13862000 - 0x13932ffb +com.adobe.AXEXSLT (AdobeAXSLE 3.7.101.18636 - 3.7.101.18636) <1DA41E37-FF7F-360F-FEB4-23240E22EFDE> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/AdobeAXSLE.framework/Versions/A/AdobeAXSLE
    0x139b2000 - 0x13a40ffb +com.adobe.AdobeSangamML (AdobeSangamML 5.6.0.19506 - 5.6.0.19506) <50915543-BBBF-63F6-05D1-28D484194BBD> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/AdobeSangamML.framework/Versions/A/AdobeSangamML
    0x13a61000 - 0x13ac7fff +com.adobe.Reader for Excel (Reader for Excel 5.6.0.19506 - 5.6.0.19506) <0245D9C5-8ABE-419A-B36D-99210341F5C8> /Applications/Adobe InDesign CS6/*/Reader for Excel
    0x13ada000 - 0x13aedff7 +com.adobe.AdobeSFL (AdobeSFL 1.1.0.18561 - 1.1.0.18561) <5A153C87-DD7A-CE28-2E93-7DC120D4244F> /Applications/Adobe InDesign CS6/Adobe InDesign CS6.app/Contents/Frameworks/AdobeSFL.framework/Versions/A/AdobeSFL
    0x13af4000 - 0x13b83ff7 +com.adobe.Reader For

    First thing is to update to version 8.0.2 and verify all your fonts with FontBook

  • Export Footer in PDF from WT

    Hi experts,
    I would like to know if one of you could find any solution to my problem.
    I am trying to export my WT into PDF using the standard function of the Web Application Designer.
    My Client would like to have a legal footer on every page of the exported PDF.
    I have managed to set a footer in my function but the problem is that the desired sentence has about 200 characters.
    Is there any way to reduce the size of the font to be able to display the full sentence ?
    I have also try to find if it was possible to set a text web item in a footer to be able to set the size and the font of my text but I didn't find any help ...
    Thank you for your help !
    Romain

    Hi Priya,
    Thanks for your answer but it doesn't solve my problem :o)
    Indeed, the solution of using a text web item is not very useful because my pdf exports have more than one page. When you put a web item in the pdf export it displays it only one time.
    My objective is to have the sentence as footer on every page....
    Other ideas :
    - Isn't there any way to modify the html code to set the size of the font more little ?
    - Or find a setting to "export web item on every page" ?
    Thanks for your help !
    Romain

  • How can I keep the quality of an MP4 video high when I export an interactive PDF from InDesign?

    I am making an Interactive PDF with embedded MP4 video using InDesign.  When I view the video in the PDF it has degraded the quality and the colour contrast is poorly affected.  I can have the video as a floating window but this gives a harsh black line around the video when it plays which is not acceptable.
    Can anyone advise how to maintain the quality of the original video when it is embedded?

    You can control the quality of the video (aspect ratio, pixel dimensions, frames/minute, etc.) by using the Adobe Media Encoder which comes with InDesign CS5 or later installations, including InDesign CC. InDesign only includes what you have placed and passes it on to the PDF file. There are no video quality controls in InDesign.
    You cannot change the way Adobe Acrobat or Adobe Reader displays the MP4. If you don't like the way Acrobat/Reader handles display of a floating window, then you'll have to display it within the page. For more info, inquire in the Rich Media Acrobat forum.

  • Exporting DV/HD files from iMovie to FCE-different sizes in canvas?

    Hi!
    Desperately need your help. I have a problem with moving my files from iMovie to FCE to edit. Pre cut in iMovie from both DV and HD files (canon 5D) and moving the project to FCE through XML. When in FCE the files line up with different sizes, the old DV files small, 1/3 of the canvas, the HD files perfect.
    Are there any settings which can be changed to fix this?
    Another problem I have is when exporting to QT the quality simply is not the same as when I export from iMovie and play on 50" plasma. Why? I have tried all options available.
    Hope someone out there has some experience and advise.
    Kind regards
    Olafur

    When in FCE the files line up with different sizes, the old DV files small, 1/3 of the canvas, the HD files perfect.
    I assume your Sequence settings are for HD which would be why the SD files are so small in comparison.
    -DH

  • Fail to create PDF from 2 templates with different page sizes

    Hi,<br /><br />I am having problems to create a PDF with multiple page sizes and using 2 templates.<br /><br />I have to create a PDF using two dynamic templates. The second template has multiple pages, some A4 some A3, which I select through subforms (A3 specific subforms are on an A3 page).<br /><br />So:<br />^job <mdf1> -zOut.pdf<br /><fields><br />^form <mdf2>.mdf<br />^page 2<br />^group G_heading_A3<br /><fields><br /><br />The templates on their own are ok, but when I combine them the second is always A4, even if a) the subforms are on A3 (heading_A3) and if b) the page is A3 (page 2).<br /><br />I couldn't find anything on the web nor in the documentation. Does anyone have a clue?<br /><br />Thanks, Edward

    The build booklet feature is for very basic booklets, not something like this.
    Sorry, but you’ll need to make everything full size and then do the cutting.
    Bob

  • Export to PDF from Infoview does not show correct data - CRS 2008

    I have a problem where users attempt to export a report from the Infoview interface to a PDF.  The report shows correctly in Infoview while in Crystal Reports format, but when the use exports the data, the data changes and shows different values.  To troubleshoot, I have tried this on different clients - without a change in the result.  I have also pulled the latest instance of the report from this history on the Central Management Console.  Interestingly enough, the same thing happens when I export to a PDF from there as well.  Any insight or help would be greatly appreciated.  Thanks!

    Hello,
    I can't tell you offhand on what the issue is here, as various factors come into play.
    Here are a few troubleshooting steps you can try:
    - Try opening the report in Crystal Report designer and export to pdf from there. Does this work?
    - Instead of viewing the report and export; schedule a report to PDF and check the results.
    - there is currently a know issue in regards of certain formulas and using font type "arial Unicode MS" that gives incorrect export to pdf. Maybe alter the font used.. or see if you take out any questionable formulas and try again to export.
    Regards,
    Duncan

Maybe you are looking for

  • How to make plant default on the line item along with the item category

    Hi All, I want to default Plant on the line item along with the item category.In order to meet the following scnario. 1. I have two plants,first plant is maintained for the valuated item and the second plant is maintained for the non valuated item (F

  • Infinity and Openreach

    Since I can't get an answer direct from BT, would anyone like to venture an opinion on this? I had Infinity installed yesterday. The Home Hub 5 came with a leaflet stating: "BT Home Hub 5 is a neat single box modem/router so you don't need a separate

  • Create Positions in ECC via Portal

    Hi, Currently we are assigning roles to positions in ECC and positions to employees to assign access in Portal (through our automated user provisioning process). Currently we assign roles to positions manually and we dont have any way to check if the

  • Crystal Reports not displaying all data

    We have a simple report pulling from 3 tables on a sql server. For some reason, data from one table does not fully display. The table is called Referral, and we have some clients that have a Referral record tied to them. Out of a report of 20 records

  • Restricting employee to avail the casual leave in a quarter

    Hi Experts, I would like to know where is the setting in Time Management for restricting the no. of days to be availed in quarter for a casual leave i.e. employee should not avail more than 3 casual leaves in a quarter. Regards Santosh Rajam