FileNotFoundException when printing on lpt1

Hi Everyone
I have 2 different setups of IBM websphere 7.
One on my PC with Java 6 and Windows XP for testing
and one with Java 6 and windows server 2008 for production.
I have mapped my lpt1 on an IP printer port using net use
for ex.
net use lpt1 \\printserver\myprinterFrom both systems in DOS console when I type
echo some text > lpt1The text is printed pefectly.
I used the two code blocks in my testing machine to print some text
FileWriter fw = new FileWriter("lpt1");
fw.write("some text for printing");
fw.close();
FileOutputStream fos = new FileOutputStream( "lpt1" );
fos.write( "some text for printing ".getBytes() );
fos.close(); And they both work fine.
BUT when I tryied to do the same on my production machine I java.io.FileNotFoundException: lpt1 (The system cannot find the file specified.)
Can someone please help me?

Though a bit late reply, but I think giving the absolute path to "lpt1" on your production machine should help.
For example: FileWriter fw = new FileWriter("/home/joe_user/lpt1");From the directory where the JVM is running in your production environment, the file "lpt1" may not be visible in the correct relative path.
-Balwinder

Similar Messages

  • Adobe 8.12 - error printing to LPT1

    Wonder if anyone can assist with this issue,
    Recently repaired a version of Adobe 8.12 as it wasn't converting documents to PDF via the normal methods.
    Managed to fix the button issue so documents convert but am now presented with an error when printing to LPT1.
    The problem is got round by removing the print job but i wish to remove the error message.

    Hi Wilson,
    Was this working fine before?
    What OS are you using?
    Try run the program as administrator (under the compatibilty tab) and check.
    Please check the discussion on the thread : LPT1 Port
    Regards,
    Rave

  • Problem in printing to LPT1 through applet?

    Hello everyone,
    I am having problem in printing through Applet in LPT1 of remote client machine using "gridDoubleClicked" method of customized "GridPanel" which is third party component. The class structure is given below:
    public class GridPanel extends Panel implements GridPanelInterface, AdjustmentListener, KeyListener, FocusListener, Serializable
    }I am using above class to populate data in table and perform "double click" action. I am using JDK 1.5 and a self signed jar to access from remote machines through applet.The code, I am using is given below:
    public class testApplet extends Applet {
        printToLPT1 lpanel =new printToLPT1();
        public void init() {
          this.setLayout(new BorderLayout());
          this.add(lpanel, BorderLayout.CENTER);
          this.setSize(380, 250);
    public class printToLPT1 extends Frame{
    GridPanel grid;
    public printToLPT1() throws Exception {
    grid.addGridListener(new GridAdapter() {
                public void gridDoubleClicked(GridEvent ge) {               
                    testPrint();
    public static void testPrint() throws Exception {
            try {
                BufferedOutputStream pos = new BufferedOutputStream(new FileOutputStream("LPT1"));
                String str = "\n\n\n\n\n\n\n\n\n\n\n";
                pos.write(str.getBytes());
                pos.flush();
                pos.close();
            } catch (Exception fnfe) {
                throw new Exception("PRINTER SETUP IS NOT PROPER");
    }For applet, I have used following script in login.html:
    <APPLET
         height="200px"
         archive="testprinter.jar,jbcl.jar,grid.jar,plugin.jar" 
         width="390px"
         align="top"
         code="test.testApplet.class"
         name="Testing"
        ALT="<P>This applet requires Java to be enabled!  Check the browser options or see your SysAdmin." MAYSCRIPT>
        <P>This page requires Java!  Get it free from <A HREF='http://www.java.com/'>www.java.com</A>.</P>
    </APPLET>
    ------------------- If signed jar file of application is run using command line in client machine then "double clicked" of GridPanel method works fine and send signal to printer at LPT1 port but when same application is called using applet and accessed from remote machine with printer in LPT1 port, in that time also "double clicked" of GridPanel method works fine but printer could not be found and Exception is thrown java.lang.Exception:"PRINTER SETUP IS NOT PROPER" . Why is this happening? Can anyone suggest me the solution for this problem?
    Thanks in advance.
    -Ritesh
    Edited by: ritesh163 on Apr 15, 2010 2:56 PM

    The SSCCE for this problem is given below:
    //Applet class
    package test;
    import java.awt.BorderLayout;
    import javax.swing.JApplet;
    public class testApplet extends JApplet {
        testPrint lpanel =new testPrint();
        public void init() {
          this.setLayout(new BorderLayout());
          this.add(lpanel, BorderLayout.CENTER);    
          this.setSize(380, 250);    
    // Printing class...
    package test;
    import com.borland.jbcl.layout.XYConstraints;
    import java.awt.Color;
    import java.awt.event.KeyAdapter;
    import java.awt.event.KeyEvent;
    import java.io.BufferedOutputStream;
    import java.io.FileOutputStream;
    import wdn.grid.GridAdapter;
    import wdn.grid.GridData;
    import wdn.grid.GridEvent;
    import wdn.grid.GridPanel;
    public class testPrint extends javax.swing.JFrame {
        // Variables declaration - do not modify                    
        private javax.swing.JButton btnPrint;
        private javax.swing.JPanel jPanel1;
        // End of variables declaration     
        GridPanel grid;
        GridData gdata;
        String[] gridCols = {
            "Receipt No", "Name"};
        public testPrint() {
            grid = new GridPanel(0, 8);
            gdata = new GridData(0, 8);
            grid.setRowHeaderWidth(0);
            grid.setGridData(gdata);
            grid.setMultipleSelection(false);
            grid.setColWidths("100,60");
            grid.setColHeaders(gridCols);
            setGridProperties(grid);
            grid.setColSelection(false);
            this.setVisible(true);
            grid.addGridListener(new GridAdapter() {
                public void gridDoubleClicked(GridEvent ge) {
                   //This event works fine...
                    System.out.println("Press Re-Print button...");
                    try{
            stringToPrinter("testing by grid \n\n\n\n\n\n\n\n\n\n\n\n\n");
            }catch(Exception ex){
                ex.printStackTrace();
                public void gridCellsClicked(GridEvent ge) {
                    btnPrint.setEnabled(true);
            initComponents();
            jPanel1.add(grid, new XYConstraints(52, 60, 100, 150));
            grid.deleteRows(1, grid.getNumRows());
            grid.insertRow(1);
                        grid.setCellText(1, 1, "12134", false);
                        grid.setCellText(2, 1, "test" + "", false);
                        grid.repaintGrid();
        private void initComponents() {
            jPanel1 = new javax.swing.JPanel();
            btnPrint = new javax.swing.JButton();
            setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
            btnPrint.setText("Print");
            btnPrint.setToolTipText("to Print");
            btnPrint.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    btnPrintActionPerformed(evt);
            org.jdesktop.layout.GroupLayout jPanel1Layout = new org.jdesktop.layout.GroupLayout(jPanel1);
            jPanel1.setLayout(jPanel1Layout);
            jPanel1Layout.setHorizontalGroup(
                jPanel1Layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
                .add(jPanel1Layout.createSequentialGroup()
                    .add(36, 36, 36)
                    .add(btnPrint)
                    .addContainerGap(287, Short.MAX_VALUE))
            jPanel1Layout.setVerticalGroup(
                jPanel1Layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
                .add(org.jdesktop.layout.GroupLayout.TRAILING, jPanel1Layout.createSequentialGroup()
                    .addContainerGap(198, Short.MAX_VALUE)
                    .add(btnPrint)
                    .add(57, 57, 57))
            org.jdesktop.layout.GroupLayout layout = new org.jdesktop.layout.GroupLayout(getContentPane());
            getContentPane().setLayout(layout);
            layout.setHorizontalGroup(
                layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
                .add(layout.createSequentialGroup()
                    .addContainerGap()
                    .add(jPanel1, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
                    .addContainerGap())
            layout.setVerticalGroup(
                layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
                .add(layout.createSequentialGroup()
                    .addContainerGap()
                    .add(jPanel1, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
                    .addContainerGap())
            pack();
        }// </editor-fold>                       
        private void btnPrintActionPerformed(java.awt.event.ActionEvent evt) {                                        
            try{
            stringToPrinter("testing \n\n\n\n\n\n\n\n\n\n\n\n\n");
            }catch(Exception ex){
                ex.printStackTrace();
        public static void setGridProperties(GridPanel grid) {
            grid.setRowHeaderWidth(0);
            grid.setAutoResizeColumns(true);
            grid.setRowNumbers(true);
            grid.setCellSelection(false);
            grid.setRowSelection(true);
            grid.setHighlightColor(Color.blue);
            grid.setHighlightTextColor(Color.white);
            grid.setAutoResizeRows(true);
            grid.addKeyListener(new KeyAdapter() {
                public void keyTyped(KeyEvent e) {
                public void keyPressed(KeyEvent e) {
                    if (e.getKeyChar() == KeyEvent.VK_SPACE) {
                public void keyReleased(KeyEvent e) {
        public static void stringToPrinter(String str) throws Exception {
            try {
                System.out.println("inside stringToPrinter...");
                BufferedOutputStream pos = new BufferedOutputStream(new FileOutputStream("LPT1"));
                System.out.println("inside stringToPrinter...1-pos::"+pos);
                pos.write(str.getBytes());
                pos.flush();
                pos.close();
            } catch (Exception fnfe) {
                throw new Exception("PRINTER SETUP IS NOT PROPER");
        public static void main(String args[]) {
            java.awt.EventQueue.invokeLater(new Runnable() {
                public void run() {
                    new testPrint().setVisible(true);
    }

  • Print to lpt1 where remote desktop client has usb printer

    I have a client with an usb printer and need to print an UPS label report from Microsoft Dynamic NAV on an remote server that prints only to LPT1. I've set the client printer as shared printer and selected LPT1 and USB ports.  When the client is connected
    to the server through remote desktop, the redirected printer can print a test print but running the report from the application on the server will not print  to the client's printer.  The report shows that it was sent to LPT1 but there are no errors
    or print jobs in the printer queue.  I've also tried to use "net use" to set up the shared printer to LPT1 but that didn't work either.  And I've installed the printer on the server to LPT1 as well and that did not work either. 
    Any help is greatly appreciated.  The server is Windows Server 2008 R2 and the client is Windows 7.
    Thanks,

    Hi,
    As this thread has been quiet for a while, we assume that the issue has been resolved. At this time, we will mark it as ‘Answered’ as the previous steps should be helpful for many similar scenarios. If the issue still persists, please feel free to  reply
    this post directly so we will be notified to follow it up.
    BTW,  we’d love to hear your feedback about the solution. By sharing your experience you can help other community members facing similar problems.
    Thanks for your understanding and Support!
    Regards.
    Dharmesh Solanki
    TechNet Community Support

  • PhotoShop CS2 "Program Error" when printing

    I am posting this to the Adobe Forums as well, but thought someone here might have some ideas. am having an intermittent problem printing from PhotoShop CS2 to an Epson 9800. When printing large files (200 MB average) to the Epson, PhotoShop will spool the job, taking about 50% longer than normal, and when complete, displays the following message..."The file XXXX.tif could not be printed because of a program error" No job ever gets to the print que. This happens about 80% of the time when printing. Quitting and restarting PhotoShop generally fixes the problem, and the file can be printed from another computer without issue, so this is not file specific. I have 8GB of RAM installed and PhotoShop running under 100% available memory, cache level at 8, with a dedicated 180GB scratch disk. Memory should NOT be the problem, though I do often have the full layered version of the file open in the background (I am printing from a flattened copy. I have observed that the problem is less likely to occur if no other files are open. I have a second G5 with the exact same software setup (OS, Print Driver and PhotoShop down to the decimal version #) that works perfectly every time. I have run all of the System utilities (Repair Permissions, FSCK, etc), reset the OSX printing system, reset PS preferences, trashed and re installed CS, as well as the Epson printer driver, all with no success. Any other trouble shooting ideas would be greatly appreciated. I would love to avoid a System reinstall.

    See the Adobe Knowledge Base document"Error 'Could not complete your request...' or 'Could not create a new document...' (Photoshop CS2 on Mac OS X v10.4)"
    I suggest whenever you have problems with third-party applications, the first place to start troubleshooting is with the application's documentation, then vendor's web site. Usually their sites have FAQs, lists of known bugs, or application-specific forums similar to these Discussions. Sometimes, unlike the Apple Discussions, the questions are even answered by employees of the vendor.
    The document cited above was found in 10 seconds by searching the Adobe support site.
    Good luck!
    Dr. Smoke
    Author: Troubleshooting Mac® OS X

  • How can I save to the same map every time when printing pdfs?

    How can I save to the same map every time when printing pdfs?
    Finder points to the document map even when I chose a different map recently.
    I often print series of pdfs from the print dialog box, I'd like to choose the map to save to and then have all subsequent pdf prints automatically directed to the same map until I decide otherwise.

    that link seems to be broken right now:
    403 Error - Forbidden  - No cred, dude.

  • HP LASERJET CP1525nw print error when printing online Gmail emails with Google Chrome

    HP LASERJET CP1525nw print error when printing online Gmail emails with Google Chrome. Extra large font sizes and weird formatting issues only when printing emails from Gmail within Chrome. No problems when printing the same email from Gmail+Internet Exolorer or Thunderbird. Using the IE Tab extension in Chrome prints the email correctly but the style of Gmail's message window is completely weird ie: formatting bar is spread out vertically instead of horizontally. I believe it is clear that this is an application specific issue between the HP LASERJET CP1525nw printer and Google Chrome + Gmail. This printing scenario does not occur when printing anything else or when printing via another printer. I would appreciate receiving any suggestions to solve this issue.
    OS: Windows 7 Ultimate x64
    Browser: Google Chrome 15
    HP Print driver: HP Universal Print Driver for Windows PCL6 v5.4.0
    Printer is connected by WiFi to 4 computers

    Hi AbZu, 
    You need to contact Google Chromes technical support as this is only an issue with Chrome. You have indicated that the printer functions correctly everywhere else. Check out the link below for Google Chrome technical support. Let me know if you need additional assistance?
    http://support.google.com/chrome/?hl=en
    I am an HP employee.
    Say Thanks by clicking the Kudos Star in the post that helped you.
    Please mark the post that solves your problem as "Accepted Solution"

  • Error message or program crashing when printing on Epson printer

    In July 2008, I upgraded my computer from a MacBook to a MacBook Pro (and bought a Time Machine so that all my files are backed up regularly!) I then bought my wife a MacBook Pro in November 2008. We both used to have iBook G4s.
    We have an Epson EPL-6200 Laser Printer that we print from using our Airport Express. It used to work fine printing documents from any program and printing wirelessly from the iBook G4 computers we had when we bought the printer around three years ago.
    But since I have switched to a MacBook and now a MacBook Pro, I have all kinds of problems printing on the Epson EPL-6200 printer. At first, my MacBook did not print remotely at all. I had long conversations with both Apple and Epson, knowing there was a problem with the Epson driver. To top it off, the problems seemed worst with Microsoft Office, so both of them also said it was Microsoft's fault!
    Now that Epson has upgraded its drivers and I have dowloaded the latest one, and switched to a MacBook Pro, I can print some files easily -- Word documents now print immediately, although I get an error message saying that the printer is not connected. But trying to print from other programs such as Firefox either takes a very long time (around 5-8 minutes for one page) or causes the program to crash.
    Any ideas? The strange thing is that my wife's computer and mine are exactly the same (running Mac OS X version 10.5.6) but behave slightly differently when printing. I can print from Firefox, albeit after a long time per page, whereas if she tries to print from her computer in that program it instantly crashes.
    I guess we still have driver issues with the Epson EPL-6200.
    But I have looked on the Apple support forums and there seem to be a lot of printer-related issues like this. Do you guys have any suggestions? Or is there a printer that will work well with our MacBook Pros, an Airport Express and/or Time Machine (we have both) and when printing remotely?
    All the best,
    Alex

    hey,
    well, i use the below machines with the current mac os (10.5.6).
    i (kind of often) had issues with the network printer epson epl-6200.
    of which every issue could be resolved by myself, more or less quickly.
    i.e. until the last update (10.5.6).
    none of my machines is able to get anything through the network to the printer.
    at least they don't get the printer to print a page.
    today i spent (almost) the whole day, trying out things to get it fixed this time.
    none of it worked.
    just to let you know:
    i can access the printer through its http-interface.
    i can ping it.
    it gets recognized by the printer/fax-dialog in the system-preferences.
    here's what i tried so far:
    i tried to install the osx driver for the epl-6200 with every single protocol that's available in osx (i.e.: Appletalk, IPP, Bonjour, EPSON (IP), etc.)
    i of course tried to update the driver with the latest software available on the epson-website. and did the thing with the different protocols again.
    i tried the "generic" postscript driver of osx, too.
    then it was getting interesting:
    i tried to get "cups" for the epl-6200. i don't want to get into details here, but to drop some names:
    foomatic-rip (combined with ghostscript)
    http://linuxfoundation.org/en/OpenPrinting/MacOSX/foomatic
    gutenprint (doesn't have an epl-6200 driver included)
    pxlmono (doesn't have an epl-6200 driver included)
    to sum that up:
    there are two drivers on the "openprinting"-site (foomatic). but one is (of course) the official epson driver.
    but:
    there is a "third-party" driver downloadable on that website.
    http://openprinting.org/show_printer.cgi?recnum=Epson-EPL-6200
    well, i downloaded it, installed the required additional software (foomatic + ghostscript), all very fine. i could choose it in the osx printer setup menu.
    but:
    my printer still won't print a single page.
    the error messages i got:
    other than the above post none of my programs ever crashed, or was "dead slow".
    but:
    the printing job got constantly stopped, i could restart it, but it was then stopped again. without any error message.
    there was the same thing with the halt of the printer (also monitored in the printing cue window). i could restart it, but it would stop again. without any error message.
    but i also got two decent error messages: :))
    the first involved the pdftoescpage.app, either it was failing (shown in the printer cue window), or it was crashing (i got the error message in a separate window popping up). according to folks on the net this malfunction involved user permissions, so i to set up the "right" permissions (giving everybody the right to do anything (rwx) - i know i shouldn't have :)) ). but it didn't help. still crashing or failing.
    the second decent error message, finally:
    "double free" - what that meant, i cannot tell.
    conclusion:
    i don't know. :))
    required action:
    i will await the next osx update, and hope it'll be fixed then. :))
    good night, y'all
    p.s.: ahh, if anybody knows anything i didn't and should try. please drop a line. thx

  • Error when printing reports from forms in Linux

    Im having an error when printing a report from a form. The problem is, only with certain forms. when printing a report (to PDF) from other forms, it prints with no problems. The oracle is 10g AS and operating system is Redhat AS 3.
    The error, in the log from the reports server is:
    [2004/9/7 7:14:59:599] Exception 62204 (): Internal error writing the image BandCombine: a row of the matrix does not have the correct number o
    f entries, should be OpImage.getExpandedNumBands(source0.getSampleModel(), source0.getColorModel()) + 1..
    exception oracle.reports.RWException {
    oracle.reports.RWError[] errorChain={struct oracle.reports.RWError {
    int errorCode=62204,
    java.lang.String errorString="Internal error writing the image BandCombine: a row of the matrix does not have the correct number of entries, sh
    ould be OpImage.getExpandedNumBands(source0.getSampleModel(), source0.getColorModel()) + 1..",
    java.lang.String moduleName="REP"
    at oracle.reports.utility.Utility.newRWException(Utility.java:604)
    at oracle.reports.toolkit.image.writer.JPEGImageWriter.writeImage(JPEGImageWriter.java:130)
    at oracle.reports.toolkit.image.ImageManager.writeJPEGImage(ImageManager.java:524)
    at oracle.reports.engine.EngineImpl.CRunReport(Native Method)
    at oracle.reports.engine.EngineImpl.run(EngineImpl.java:353)
    at oracle.reports.engine.EngineClassPOATie.run(EngineClassPOATie.java:84)
    at oracle.reports.engine.EngineClassPOA._invoke(EngineClassPOA.java:117)
    at oracle.reports.engine.EngineClassPOA._invoke(EngineClassPOA.java:62)
    at com.inprise.vbroker.poa.POAImpl.invoke(POAImpl.java:2355)
    at com.inprise.vbroker.poa.ActivationRecord.invoke(ActivationRecord.java:104)
    at com.inprise.vbroker.GIOP.GiopProtocolAdapter.doRequest(GiopProtocolAdapter.java:492)
    at com.inprise.vbroker.IIOP.ServerProtocolAdapter.doRequest(ServerProtocolAdapter.java:64)
    at com.inprise.vbroker.GIOP.GiopProtocolAdapter.dispatchMessage(GiopProtocolAdapter.java:653)
    at com.inprise.vbroker.orb.TPDispatcherImpl$TPDispatcher.run(TPDispatcherImpl.java:99)
    at com.inprise.vbroker.orb.ThreadPool$PoolWorker.run(ThreadPool.java:76)
    [2004/9/7 7:14:59:599] Error 50103 (C Engine): 19:14:59 ERR REP-0069: Internal error
    REP-62204: Internal error writing the image BandCombine: a row of the matrix does not have the correct number of entries, should be OpImage.get
    ExpandedNumBands(source0.getSampleModel(), source0.getColorModel()) + 1..
    [2004/9/7 7:14:59:600] Error 50103 (C Engine): Error Writing Image, ID 2
    [2004/9/7 7:14:59:601] Error 50103 (rwtic:rwticga): Look up for image attributes for image 2
    [2004/9/7 7:14:59:602] Error 50103 (rwtic:rwticgi): Looking up for Image, ID 2 in the cache
    [2004/9/7 7:14:59:603] Error 50103 (rwtic:rwticgi): Loading the Image into the cache
    [2004/9/7 7:14:59:603] Debug 50103 (ImageManager:getImageSource): Retrieving the Image object for ID : 2
    [2004/9/7 7:14:59:603] Error 50103 (rwtic:rwticgi): Image successfully loaded into the cache
    [2004/9/7 7:14:59:604] Debug 50103 (ImageSource:getImageHeight ): Start Height : 155
    [2004/9/7 7:14:59:604] Debug 50103 (ImageSource:getImageWidth ): Start : width : 138
    [2004/9/7 7:14:59:604] Debug 50103 (ImageSource:getImageColorSpace ): Start
    [2004/9/7 7:14:59:608] Exception 50125 (): Caught exception: java.lang.NullPointerException
    exception oracle.reports.RWException {
    oracle.reports.RWError[] errorChain={struct oracle.reports.RWError {
    int errorCode=50125,
    If anyone could help me, is important !
    Thx in advance
    Bruno Santos                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    Raise a TAR I reckon

  • Print to PDF - using Snow Leopard (Saving a PDF file when printing is not supported. Instead, choose

    i have a PDF form that i created that is used as a custom proposal that my company sends out to potential clients. the form in its editable state is only used internally. we recently upgraded to snow leopard, but prior to the upgrade, we were able to fill the custom proposal form out using adobe reader, and, as you well know, we weren't able to save that edited document as a PDF with the custom form fields filled out. our work around using adobe reader was to print to a pdf using the adobe pdf printer in the printer dialog. with the addition of snow leopard, however, instead of choosing the adobe pdf printer, we were to choose PDF from the bottom left corner, then Save As PDF, and it would spit out an uneditable pdf that then allowed us to email it to the potential client without them being able to edit it as well as have an internal, digital copy for our records instead of having lots of paper floating around (i know this is also doable using security that disallows the client certain editing privileges, but printing to a pdf is much quicker and more efficient, and the pdf security isn't really that secure at its best).
    in any case, i came across this gem of a post here on the support forums that installs another option from the PDF drop down on the bottom left of the print dialog menu that reads Save As Adobe PDF and is supposed to do exactly what i am trying to get it to do...print to a pdf file from adobe reader.
    http://kb2.adobe.com/cps/509/cpsid_50981.html    
    once i updated to acrobat 9.2 (as the link above suggests 9.1), however, the Save As Adobe PDF does appear in the print dialog menu, but it still gives me the same error that acrobat 8 - 9 gave me while using Snow Leopard — Saving a PDF file when printing is not supported. Instead, choose File > Save — and as i've already explained, you can't save an edited pdf form in reader (as i am the only one in the office with acrobat) and still keep the fields as you've entered them in. the only work around is to print to a pdf but is apparently having some recent problems.
    using acrobat, however, i know that i can save the editable pdf as a new file with the fields customized as i have left them, but it still saves it as an editable pdf and the print to a pdf option still remains the best option...that way we have digital copies internally that are uneditable that can be printed at any time or emailed to the client.
    how can i do print to a pdf, based on what i've written above, using snow leopard and acrobat and reader?

    A simple way is to flatten the form fields, which converts the field appearances to regular page contents. You can do this with JavaScript or PDF Optimizer (Advanced > PDF Optimizer > Discard Objects > Flatten form fields). A very nice script that adds a custom menu item can be found here: http://www.uvsar.com/projects/acrobat/flattener/

  • Text Size When Printing Comments Different Than On-Screen

    Hello.  We are supporting an end-user with an unusual problem.  They are able to make sticky comments fine and adjust the font size on screen.  However, when this user goes to print either to a physical printer or a PDF, the font size of the comment is different (smaller) than what is shown on screen.
    On-Screen Example:
    Print To PDF Example:
    Is there an option to match the text size of the printed version to that of the on-screen?  Even if the printed text size can be bumped up just a bit, it'd be greatly appreciated.  The font size when commenting on-screen is 18 Arial but it seems like the printed version is more like 10 Ariel.
    Thank you.

    Just tried the latest version of Adobe Reader and the same issue occurs.  Making the on-screen font size 70 in the Commenting Preferences field makes NO CHANGE when printed (comes out at about 10 / 12 point font).  Even the Print Preview doesn't show the larger font so there's some setting getting lost when you go to print.
    Talking to our client, this problem likely coincides with Adobe updates that were pushed out.  This is easily reproducible (anyone with an up-to-date version of Adobe Reader can do this) but doesn't seem to be a fix.
    Any help out there?

  • Search report - error-no data found when printing to csv format

    Hi all,
    I have a search report,
    I have 4 select list and two text field and two date field to search for the result.
    I have even put the computation for the select list items in
    on load - before header ie setting the items to default value.
    Still when i try to print it in the csv format , and try to open the excel, it is saying "no data found" error
    Please, Could any one give me a solution to solve this bug?
    Note: Ordinary report is getting printted in the csv format.
    Thanks in advance
    bye
    Srikavi

    Hi Denes and Scott,
    sorry, only when i select the values for all the 4 select list
    csv is working. default values are not restored in the session.
    How to restore the values in the session state after pressing the search button.
    i have set the default values for the select list and the query is working fine
    but when i see the session from the toolbar the default values are not present.
    but when i see the debug from the toolbar the values are set properly.
    @Denes
    In your example the session is showing the values of the select list and check box
    The same way i did, but in "session" values are not seen so again no data found is seen when printing csv .
    Bye
    Srikavi

  • Print quality problems on Fuji Xerox printers when printing from ArchiCAD and/or Preview.

    Hello,
    We experience major print quality problems when printing directly from Graphisoft's ArchiCAD, Nemetscheks Vectorworks and from Apple's Preview.
    Basically we see various artefacts on our printed drawings, e.g. line thicknesses change and hatched patterns / fills are reproduced with patches where the lineweights and clours change completely... which is not acceptable.
    This affects the following Fuji Xerox printer models on both 10.6.x and 10.7.x with the latest FJX PPDs:
    ApeosPort C5540I
    Xerox LF6605 MF
    The workarounds for us are to either print PDFs from Adobe Acrobat Reader or via the rather dated Accxess Tools, besides that we prefer at times to print directly from a given Software it is also not always possible to generate a PDF and print it from Acrobat Reader... especially since the latest Adobe Reader update to its print dialogue makes printing from it extremely tedious - in fact we are considering going back to 9.5.2
    Obviously, we have approached FJX Tech Support and are awaiting a reply - however we are disappointed that this is happening on relatively new equipment and wonder if anybody else has already found a solution.

    The symptoms you mention could be related to the FJX engine and Acrobat is masking this fault. To test, you can create a Postscript file from the print dialog of ArchiCAD or VectorWorks and then download this to the Apeos RIP. If this produces the same result as when using the printer driver from the applications, then it would indicate that the engine is not capable of handling the data being sent to it from these applications.

  • When a document is a scanned PDF and converted to word some of the words and paragraphs are randomly a shade lighter when printed.  You can (barely) see it on the screen but it is different.  All font and design are the same.  Any suggestions?

    The lighter shading has been a problem when printing the documents.  You can barely see it but it is there????

    Hi Notary,
    I saw something similar with my 4 TB Promise SmartStor NAS after I upgraded to Lion. Only, I had ALL of my iTunes library on the NAS and one day, about a week after the upgrade I finally tried to play music with iTunes, but it kept throwing up an error just like the one you're seeing. I searched around for a while and finally found some steps that fixed the problem.
    I found this solution at another site (can't remember which) that gave credit to this site:
    http://www.alexanderwilde.com/2011/04/os-x-lion-connection-error-with-afp-and-wo rkaround/
    Here are the directions I cut-n-pasted into my little notes file:
    1) Launch the Terminal app
    2) Run this command:
    sudo chmod o+w /Library/Preferences
    3) Run this command:
    defaults write /Library/Preferences/com.apple.AppleShareClient afp_host_prefs_version -int 1
    4) Restart your computer
    5) From Finder, select an AFP server, or use “Connect To…”
         This will cause the AFP Client to create the full preferences file
    6) Launch the Terminal app again
    7) Run this command (all on one line, make sure double-quotes are simply double-quotes from your keyboard, not pasted from the web as up and down quote marks) (yes, some of the spelling looks weird):
    sudo defaults write /Library/Preferences/com.apple.AppleShareClient afp_disabled_uams -array "Cleartxt Passwrd" "MS2.0" "2-Way Randnum exchange"
    8) Run this command:
    sudo chmod o-w /Library/Preferences
    9) Restart your computer
    To disable this hack, run this command (all on one line, make sure double-quotes are simply double-quotes from your keyboard, not pasted from the web as up and down quote marks):
    sudo defaults write /Library/Preferences/com.apple.AppleShareClient afp_disabled_uams -array-add "DHCAST128"
    I hope that helps. If not, sorry for the ludicrous-long reply.
    Andy

  • Mail app and Notes crashes when printing

    Hi!
    We are experiencing trouble when printing to our Xerox WorkCenter 7120 (over wireless network). Printing from Mail App and Notes makes the app crash without printing the mail or the note. Is there any solution for this? Attaching the crash report below. Thank for helping.
    Henrik
    Process:         Notes [20455]
    Path:            /Applications/Notes.app/Contents/MacOS/Notes
    Identifier:      com.apple.Notes
    Version:         1.2 (103)
    Build Info:      Notes-103000000000000~1
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [164]
    User ID:         501
    PlugIn Path:       /Library/Printers/Xerox/PDEs/XeroxFeatures.plugin/Contents/MacOS/XeroxFeatures
    PlugIn Identifier: com.xerox.xeroxfeatures.pde
    PlugIn Version:    1.29.0 (484)
    Date/Time:       2013-04-23 11:01:20.453 +0200
    OS Version:      Mac OS X 10.8.3 (12D78)
    Report Version:  10
    Interval Since Last Report:          44494 sec
    Crashes Since Last Report:           2
    Per-App Interval Since Last Report:  166985 sec
    Per-App Crashes Since Last Report:   2
    Anonymous UUID:                      51851286-9A19-43D6-9833-4634D88D69D8
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: EXC_I386_GPFLT
    Application Specific Information:
    objc_msgSend() selector name: respondsToSelector:
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libobjc.A.dylib                         0x00007fff8953c510 objc_msgSend_vtable5 + 16
    1   com.xerox.xeroxfeatures.pde             0x000000010b05212a -[XRScalarFeature setCurrentValue:] + 106
    2   com.xerox.xeroxfeatures.pde             0x000000010b0ae4cb -[XRMediaLibraryDataSource setMediaLibraryState:] + 91
    3   com.apple.Foundation                    0x00007fff82192d3a __NSThreadPerformPerform + 225
    4   com.apple.CoreFoundation                0x00007fff8b78fb31 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17
    5   com.apple.CoreFoundation                0x00007fff8b78f51d __CFRunLoopDoSources0 + 445
    6   com.apple.CoreFoundation                0x00007fff8b7b27f5 __CFRunLoopRun + 789
    7   com.apple.CoreFoundation                0x00007fff8b7b20e2 CFRunLoopRunSpecific + 290
    8   com.apple.HIToolbox                     0x00007fff842aaeb4 RunCurrentEventLoopInMode + 209
    9   com.apple.HIToolbox                     0x00007fff842aab94 ReceiveNextEventCommon + 166
    10  com.apple.HIToolbox                     0x00007fff842aaae3 BlockUntilNextEventMatchingListInMode + 62
    11  com.apple.AppKit                        0x00007fff89954563 _DPSNextEvent + 685
    12  com.apple.AppKit                        0x00007fff89953e22 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    13  com.apple.AppKit                        0x00007fff89b9e639 -[NSApplication _realDoModalLoop:peek:] + 485
    14  com.apple.AppKit                        0x00007fff89b9ed6e -[NSApplication runModalSession:] + 49
    15  com.apple.AppKit                        0x00007fff89dc4460 -[NSConcretePrintOperation(NSInternal) _isCancelledAfterHandlingUserEvents] + 137
    16  com.apple.AppKit                        0x00007fff89fd8207 -[NSView(NSPrintingInternal) _printForCurrentOperation] + 446
    17  com.apple.AppKit                        0x00007fff89dc2a88 -[NSConcretePrintOperation _renderView] + 277
    18  com.apple.AppKit                        0x00007fff89dc30dc -[NSConcretePrintOperation runOperation] + 357
    19  com.apple.AppKit                        0x00007fff89a44989 -[NSApplication sendAction:to:from:] + 342
    20  com.apple.AppKit                        0x00007fff89b7a37c -[NSMenuItem _corePerformAction] + 406
    21  com.apple.AppKit                        0x00007fff89b7a06a -[NSCarbonMenuImpl performActionWithHighlightingForItemAtIndex:] + 133
    22  com.apple.AppKit                        0x00007fff89b78cf0 -[NSMenu performKeyEquivalent:] + 271
    23  com.apple.AppKit                        0x00007fff89b781b3 -[NSApplication _handleKeyEquivalent:] + 829
    24  com.apple.AppKit                        0x00007fff89a35173 -[NSApplication sendEvent:] + 4480
    25  com.apple.AppKit                        0x00007fff8994b24a -[NSApplication run] + 636
    26  com.apple.AppKit                        0x00007fff898efc06 NSApplicationMain + 869
    27  libdyld.dylib                           0x00007fff82dab7e1 start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff8e7a8d16 kevent + 10
    1   libdispatch.dylib                       0x00007fff8ec2bdea _dispatch_mgr_invoke + 883
    2   libdispatch.dylib                       0x00007fff8ec2b9ee _dispatch_mgr_thread + 54
    Thread 2:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x00007fff8e7a6686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8e7a5c42 mach_msg + 70
    2   com.apple.CoreFoundation                0x00007fff8b7ad233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x00007fff8b7b2916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x00007fff8b7b20e2 CFRunLoopRunSpecific + 290
    5   com.apple.Foundation                    0x00007fff82137b66 +[NSURLConnection(Loader) _resourceLoadLoop:] + 356
    6   com.apple.Foundation                    0x00007fff82195cd2 __NSThread__main__ + 1345
    7   libsystem_c.dylib                       0x00007fff86fb67a2 _pthread_start + 327
    8   libsystem_c.dylib                       0x00007fff86fa31e1 thread_start + 13
    Thread 3:
    0   libsystem_kernel.dylib                  0x00007fff8e7a6686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8e7a5c42 mach_msg + 70
    2   com.apple.CoreFoundation                0x00007fff8b7ad233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x00007fff8b7b2916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x00007fff8b7b20e2 CFRunLoopRunSpecific + 290
    5   com.apple.Foundation                    0x00007fff8219af5e -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 268
    6   com.apple.Foundation                    0x00007fff8213375a -[NSRunLoop(NSRunLoop) run] + 74
    7   com.apple.CoreMessage                   0x00007fff830a7e17 +[_NSSocket _runIOThread] + 77
    8   com.apple.Foundation                    0x00007fff82195cd2 __NSThread__main__ + 1345
    9   libsystem_c.dylib                       0x00007fff86fb67a2 _pthread_start + 327
    10  libsystem_c.dylib                       0x00007fff86fa31e1 thread_start + 13
    Thread 4:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x00007fff8e7a8322 __select + 10
    1   com.apple.CoreFoundation                0x00007fff8b7f1f46 __CFSocketManager + 1302
    2   libsystem_c.dylib                       0x00007fff86fb67a2 _pthread_start + 327
    3   libsystem_c.dylib                       0x00007fff86fa31e1 thread_start + 13
    Thread 5:: JavaScriptCore::BlockFree
    0   libsystem_kernel.dylib                  0x00007fff8e7a80fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff86fbafe9 _pthread_cond_wait + 869
    2   com.apple.JavaScriptCore                0x00007fff8e4afee6 ***::ThreadCondition::timedWait(***::Mutex&, double) + 118
    3   com.apple.JavaScriptCore                0x00007fff8e6d2c5a JSC::BlockAllocator::blockFreeingThreadMain() + 90
    4   com.apple.JavaScriptCore                0x00007fff8e6e82bf ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_c.dylib                       0x00007fff86fb67a2 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff86fa31e1 thread_start + 13
    Thread 6:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x00007fff8e7a80fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff86fbafe9 _pthread_cond_wait + 869
    2   com.apple.JavaScriptCore                0x00007fff8e635ad4 JSC::SlotVisitor::drainFromShared(JSC::SlotVisitor::SharedDrainMode) + 212
    3   com.apple.JavaScriptCore                0x00007fff8e6359b6 JSC::MarkStackThreadSharedData::markingThreadMain() + 214
    4   com.apple.JavaScriptCore                0x00007fff8e6e82bf ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_c.dylib                       0x00007fff86fb67a2 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff86fa31e1 thread_start + 13
    Thread 7:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x00007fff8e7a80fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff86fbafe9 _pthread_cond_wait + 869
    2   com.apple.JavaScriptCore                0x00007fff8e635ad4 JSC::SlotVisitor::drainFromShared(JSC::SlotVisitor::SharedDrainMode) + 212
    3   com.apple.JavaScriptCore                0x00007fff8e6359b6 JSC::MarkStackThreadSharedData::markingThreadMain() + 214
    4   com.apple.JavaScriptCore                0x00007fff8e6e82bf ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_c.dylib                       0x00007fff86fb67a2 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff86fa31e1 thread_start + 13
    Thread 8:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x00007fff8e7a80fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff86fbafe9 _pthread_cond_wait + 869
    2   com.apple.JavaScriptCore                0x00007fff8e635ad4 JSC::SlotVisitor::drainFromShared(JSC::SlotVisitor::SharedDrainMode) + 212
    3   com.apple.JavaScriptCore                0x00007fff8e6359b6 JSC::MarkStackThreadSharedData::markingThreadMain() + 214
    4   com.apple.JavaScriptCore                0x00007fff8e6e82bf ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_c.dylib                       0x00007fff86fb67a2 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff86fa31e1 thread_start + 13
    Thread 9:
    0   libsystem_kernel.dylib                  0x00007fff8e7a86d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff86fb8f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff86fb8d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff86fa31d1 start_wqthread + 13
    Thread 10:
    0   libsystem_kernel.dylib                  0x00007fff8e7a86d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff86fb8f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff86fb8d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff86fa31d1 start_wqthread + 13
    Thread 11:: Dispatch queue: com.apple.root.default-priority
    0   libsystem_kernel.dylib                  0x00007fff8e7a8122 __psynch_mutexwait + 10
    1   libsystem_c.dylib                       0x00007fff86fbbdfd pthread_mutex_lock + 536
    2   com.apple.Foundation                    0x00007fff82152c8e -[NSLock lock] + 148
    3   com.apple.AppKit                        0x00007fff89b3ab97 __37-[NSUIHeartBeat updateHeartBeatState]_block_invoke_0122 + 52
    4   com.apple.Foundation                    0x00007fff821b912f -[NSBlockOperation main] + 124
    5   com.apple.Foundation                    0x00007fff8218f036 -[__NSOperationInternal start] + 684
    6   com.apple.Foundation                    0x00007fff82196861 __block_global_6 + 129
    7   libdispatch.dylib                       0x00007fff8ec2cf01 _dispatch_call_block_and_release + 15
    8   libdispatch.dylib                       0x00007fff8ec290b6 _dispatch_client_callout + 8
    9   libdispatch.dylib                       0x00007fff8ec2a1fa _dispatch_worker_thread2 + 304
    10  libsystem_c.dylib                       0x00007fff86fb8d0b _pthread_wqthread + 404
    11  libsystem_c.dylib                       0x00007fff86fa31d1 start_wqthread + 13
    Thread 12:
    0   libsystem_kernel.dylib                  0x00007fff8e7a86d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff86fb8f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff86fb8d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff86fa31d1 start_wqthread + 13
    Thread 13:
    0   libsystem_kernel.dylib                  0x00007fff8e7a86d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff86fb8f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff86fb8d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff86fa31d1 start_wqthread + 13
    Thread 14:
    0   libsystem_kernel.dylib                  0x00007fff8e7a86d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff86fb8f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff86fb8d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff86fa31d1 start_wqthread + 13
    Thread 15:
    0   libsystem_kernel.dylib                  0x00007fff8e7a86d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff86fb8f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff86fb8d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff86fa31d1 start_wqthread + 13
    Thread 16:
    0   libsystem_kernel.dylib                  0x00007fff8e7a86d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff86fb8f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff86fb8d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff86fa31d1 start_wqthread + 13
    Thread 17:: Dispatch queue: com.apple.root.default-priority
    0   libsystem_kernel.dylib                  0x00007fff8e7a6686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8e7a5c42 mach_msg + 70
    2   com.apple.CoreFoundation                0x00007fff8b7ad233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x00007fff8b7b2916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x00007fff8b7b20e2 CFRunLoopRunSpecific + 290
    5   com.apple.Foundation                    0x00007fff8219af5e -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 268
    6   com.apple.AppKit                        0x00007fff89876386 -[NSAnimation(NSInternal) _runBlocking] + 377
    7   com.apple.AppKit                        0x00007fff898761e8 -[NSAnimation(NSInternal) _animationThread] + 65
    8   libdispatch.dylib                       0x00007fff8ec2cf01 _dispatch_call_block_and_release + 15
    9   libdispatch.dylib                       0x00007fff8ec290b6 _dispatch_client_callout + 8
    10  libdispatch.dylib                       0x00007fff8ec2a1fa _dispatch_worker_thread2 + 304
    11  libsystem_c.dylib                       0x00007fff86fb8d0b _pthread_wqthread + 404
    12  libsystem_c.dylib                       0x00007fff86fa31d1 start_wqthread + 13
    Thread 18:
    0   libsystem_kernel.dylib                  0x00007fff8e7a86d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff86fb8f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff86fb8d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff86fa31d1 start_wqthread + 13
    Thread 19:
    0   libsystem_kernel.dylib                  0x00007fff8e7a86d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff86fb8f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff86fb8d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff86fa31d1 start_wqthread + 13
    Thread 20:
    0   libsystem_kernel.dylib                  0x00007fff8e7a80fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff86fbafe9 _pthread_cond_wait + 869
    2   com.apple.Foundation                    0x00007fff82194386 -[NSCondition wait] + 240
    3   com.apple.Foundation                    0x00007fff8218ca48 -[NSObject(NSThreadPerformAdditions) performSelector:onThread:withObject:waitUntilDone:modes:] + 796
    4   com.apple.Foundation                    0x00007fff8218c6a8 -[NSObject(NSThreadPerformAdditions) performSelectorOnMainThread:withObject:waitUntilDone:] + 131
    5   com.xerox.xeroxfeatures.pde             0x000000010b0ae8e6 -[XRMediaLibraryDataSource retrieveRemoteMedia] + 886
    6   com.apple.Foundation                    0x00007fff82195cd2 __NSThread__main__ + 1345
    7   libsystem_c.dylib                       0x00007fff86fb67a2 _pthread_start + 327
    8   libsystem_c.dylib                       0x00007fff86fa31e1 thread_start + 13
    Thread 21:: com.apple.appkit-heartbeat
    0   libsystem_kernel.dylib                  0x00007fff8e7a8386 __semwait_signal + 10
    1   libsystem_c.dylib                       0x00007fff87040800 nanosleep + 163
    2   libsystem_c.dylib                       0x00007fff87040717 usleep + 54
    3   com.apple.AppKit                        0x00007fff89b39868 -[NSUIHeartBeat _heartBeatThread:] + 543
    4   com.apple.Foundation                    0x00007fff82195cd2 __NSThread__main__ + 1345
    5   libsystem_c.dylib                       0x00007fff86fb67a2 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff86fa31e1 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x7fffffffffffffff  rbx: 0x00007faa053c7770  rcx: 0x0000000000000008  rdx: 0x00007faa032b04c0
      rdi: 0x00007faa050ab850  rsi: 0x000000010b12de30  rbp: 0x00007fff5af82ef0  rsp: 0x00007fff5af82eb8
       r8: 0x00007fff72e51fd0   r9: 0xffffffffffffffff  r10: 0x00007faa0565ab40  r11: 0x00007faa033870d8
      r12: 0x00007faa05711de0  r13: 0x0000000000000000  r14: 0x00007faa053c7d20  r15: 0x00007faa03364530
      rip: 0x00007fff8953c510  rfl: 0x0000000000010246  cr2: 0x00007faa03364c18
    Logical CPU: 0
    Binary Images:
           0x104c7b000 -        0x104cbefff  com.apple.Notes (1.2 - 103) <D5115E71-77B3-3CE5-B009-191503AECB42> /Applications/Notes.app/Contents/MacOS/Notes
           0x104cdf000 -        0x104d21ff7  com.apple.Notes.framework (1.2 - 103) <5F2CD221-805B-3050-AC07-FFBB4541780A> /System/Library/PrivateFrameworks/Notes.framework/Versions/A/Notes
           0x104ef1000 -        0x104f23fff  com.apple.printingprivate.framework.PrintingPrivate (8.1 - 91.1) <157A388A-3E46-30E6-B3E5-87EE554663D3> /System/Library/PrivateFrameworks/PrintingPrivate.framework/Versions/A/Printing Private
           0x104f4f000 -        0x104f58fe7  libcldcpuengine.dylib (2.2.16) <DB9678F6-7D50-384A-A961-6109B61D1607> /System/Library/Frameworks/OpenCL.framework/Libraries/libcldcpuengine.dylib
           0x104f61000 -        0x104f61ffb +cl_kernels (???) <F74FEB58-803E-4F60-B93F-85DE68244C85> cl_kernels
           0x106dde000 -        0x106ddffff  com.apple.AddressBook.LocalSourceBundle (2.1 - 1169) <641DB5BF-1E7A-3090-8AA3-CB11262B43FC> /System/Library/Address Book Plug-Ins/LocalSource.sourcebundle/Contents/MacOS/LocalSource
           0x106de5000 -        0x106de7fff  apop.so (169) <2A1CAD32-5734-3D4E-868B-E773DCD192B5> /usr/lib/sasl2/apop.so
           0x106deb000 -        0x106dfffff  dhx.so (169) <3C4D7E51-F30B-3A5B-9BB6-4426EC607E10> /usr/lib/sasl2/dhx.so
           0x106e0b000 -        0x106e14ff7  digestmd5WebDAV.so (169) <D1EF0A0E-92FA-321F-9445-DD08A64C2493> /usr/lib/sasl2/digestmd5WebDAV.so
           0x106e19000 -        0x106e1bfff  libanonymous.2.so (166) <6417EA9E-4202-31DA-A086-B58F1E92C931> /usr/lib/sasl2/libanonymous.2.so
           0x106e20000 -        0x106e23fff  libcrammd5.2.so (166) <866C8DD4-5086-376A-BFC7-897A40327DB4> /usr/lib/sasl2/libcrammd5.2.so
           0x106e2a000 -        0x106e33ff7  libdigestmd5.2.so (166) <F2344A08-F032-35D3-9EBB-F147D4100517> /usr/lib/sasl2/libdigestmd5.2.so
           0x106e39000 -        0x106e3efff  libgssapiv2.2.so (166) <83A21AF3-FB42-3ACC-B6ED-26B23388C4F4> /usr/lib/sasl2/libgssapiv2.2.so
           0x106e43000 -        0x106e45fff  login.so (166) <1F868238-FB26-3477-B31C-67DB400D6F68> /usr/lib/sasl2/login.so
           0x106e49000 -        0x106e4efff  libntlm.so (166) <82608FB8-E225-39FF-BC83-B9D3F89D7CEC> /usr/lib/sasl2/libntlm.so
           0x106e53000 -        0x106e5afff  libotp.2.so (166) <2AE53E63-A826-3E20-9B4D-476CC712410D> /usr/lib/sasl2/libotp.2.so
           0x106e63000 -        0x106e65fff  pwauxprop.so (387.1) <94457D86-AB48-33B6-8C01-F08C3BC6CE53> /usr/lib/sasl2/pwauxprop.so
           0x106e6a000 -        0x106e6cfff  libplain.2.so (166) <074D7604-3435-3E01-A86B-FF102001FC5B> /usr/lib/sasl2/libplain.2.so
           0x106e70000 -        0x106e74fff  libpps.so (169) <3C150ECF-0D94-3DBE-8AB6-7B0070700699> /usr/lib/sasl2/libpps.so
           0x106e79000 -        0x106e7cfff  mschapv2.so (169) <9DAC741E-6BB8-3DFA-85AD-532EB20E780B> /usr/lib/sasl2/mschapv2.so
           0x106e81000 -        0x106eaefff  com.apple.DirectoryService.PasswordServerFramework (10.8 - 27.1) <81194DEC-984F-3099-B537-F70394F8492C> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
           0x106ec4000 -        0x106ec7fff  shadow_auxprop.so (169) <FE9BCBA3-7F30-303B-A815-8FADE514246E> /usr/lib/sasl2/shadow_auxprop.so
           0x106ecc000 -        0x106ecefff  smb_nt.so (169) <F6798ECD-BBC9-3055-96E9-3A9836E36E7A> /usr/lib/sasl2/smb_nt.so
           0x106ed3000 -        0x106ed6fff  smb_ntlmv2.so (169) <FB9D0145-0F31-3FA1-A6B4-5F8530CC60CA> /usr/lib/sasl2/smb_ntlmv2.so
           0x106edf000 -        0x106ee2ff7  com.apple.126.iaplugin (1.1 - 110) <0ABF0BCA-C639-3700-BB76-EF451851D431> /System/Library/InternetAccounts/126.iaplugin/Contents/MacOS/126
           0x106ee8000 -        0x106eebff7  com.apple.163.iaplugin (1.1 - 110) <A5A4159B-EA0B-3A06-8F4E-1F39BFF95D44> /System/Library/InternetAccounts/163.iaplugin/Contents/MacOS/163
           0x106ef1000 -        0x106ef6ff7  com.apple.contacts.iaplugin (2.1 - 1169) <ABDD0396-6065-3D03-8CC5-F15FBE626280> /System/Library/InternetAccounts/AddressBook.iaplugin/Contents/MacOS/AddressBoo k
           0x106efd000 -        0x106f00fff  com.apple.aol.iaplugin (2.1 - 210) <2267AF29-144F-3516-95B3-4288E2A1652F> /System/Library/InternetAccounts/AOL.iaplugin/Contents/MacOS/AOL
           0x106f06000 -        0x106f0eff7  com.apple.calendar.iaplugin (6.0 - 1249) <8A7C7FF8-98D1-36BC-B9FD-EDCB91915B95> /System/Library/InternetAccounts/Calendar.iaplugin/Contents/MacOS/Calendar
           0x106f17000 -        0x106f20fff  com.apple.exchange.iaplugin (2.1 - 210) <48D09EA9-7227-348D-849B-19A7888867B4> /System/Library/InternetAccounts/Exchange.iaplugin/Contents/MacOS/Exchange
           0x106f2a000 -        0x106f32fff  com.apple.facebook.iaplugin (1.2 - 120) <BD9142C2-5548-33A3-9D8B-6BD3E918EA22> /System/Library/InternetAccounts/Facebook.iaplugin/Contents/MacOS/Facebook
           0x106f3b000 -        0x106f46ff7  com.apple.flickr.iaplugin (1.1 - 110) <FF2EC6E1-3831-376C-873A-581F3E215E88> /System/Library/InternetAccounts/Flickr.iaplugin/Contents/MacOS/Flickr
           0x106f51000 -        0x106f55ff7  com.apple.google.iaplugin (2.1 - 210) <5CE22781-4FE8-37D6-8BDF-0048331595CA> /System/Library/InternetAccounts/Google.iaplugin/Contents/MacOS/Google
           0x106f5c000 -        0x106f61fff  com.apple.chat.iaplugin (7.0.1 - 3318) <E95918CC-7520-348A-8158-C3845123430F> /System/Library/InternetAccounts/iChat.iaplugin/Contents/MacOS/iChat
           0x106f67000 -        0x106f83fff  com.apple.icloud.iaplugin (1.0.1 - 238.5) <182DE70D-0255-3D0F-BE81-C7D56E069089> /System/Library/InternetAccounts/iCloud.iaplugin/Contents/MacOS/iCloud
           0x106f97000 -        0x106ff1fff  com.apple.AOSUI (1.1 - 150) <B0095CFE-8A28-3C89-A55B-73C628DDE66D> /System/Library/PrivateFrameworks/AOSUI.framework/Versions/A/AOSUI
           0x10702b000 -        0x107035ff7  com.apple.AppleSRP (5.0 - 1) <16B1431A-295A-386B-9159-A396877D6FE3> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
           0x10703c000 -        0x10704eff7  com.apple.syncservices.syncservicesui (7.1 - 713.1) <0BDA0163-EBA8-3923-AF99-9BDD92CD4E2D> /System/Library/PrivateFrameworks/SyncServicesUI.framework/Versions/A/SyncServi cesUI
           0x10705c000 -        0x107064fff  com.apple.mail.iaplugin (6.3 - 1503) <656944F5-B9E6-3AE9-B816-4F7D24838C08> /System/Library/InternetAccounts/Mail.iaplugin/Contents/MacOS/Mail
           0x10706b000 -        0x107071ff7  com.apple.Notes.iaplugin (1.2 - 103) <CD2FB5A9-38B9-3F48-A6B8-50D56E70353D> /System/Library/InternetAccounts/Notes.iaplugin/Contents/MacOS/Notes
           0x107078000 -        0x10707dfff  com.apple.osxserver.iaplugin (2.1 - 210) <CBBB8893-7815-308C-8428-17A775A1900A> /System/Library/InternetAccounts/OSXServer.iaplugin/Contents/MacOS/OSXServer
           0x107085000 -        0x107086fff  libACSClient.dylib (48) <DCF5B9D9-B76E-38C3-A8A8-F5CBE52F8CEB> /usr/lib/libACSClient.dylib
           0x10708b000 -        0x10708efff  com.apple.qq.iaplugin (1.1 - 110) <1E856D87-6874-3DF5-9937-8C8BEEBA2706> /System/Library/InternetAccounts/QQ.iaplugin/Contents/MacOS/QQ
           0x107094000 -        0x10709bff7  com.apple.tudou.iaplugin (1.1 - 110) <2CF1C31C-3888-38EF-ACCE-755E7DB5CD6C> /System/Library/InternetAccounts/Tudou.iaplugin/Contents/MacOS/Tudou
           0x1070c4000 -        0x1070cbff7  com.apple.twitter.iaplugin (1.1 - 110) <1F9C39D4-A580-3E55-AF55-AAFA6454377B> /System/Library/InternetAccounts/TwitterPlugin.iaplugin/Contents/MacOS/TwitterP lugin
           0x1070d4000 -        0x1070dbfff  com.apple.vimeo.iaplugin (1.1 - 110) <29CE4DD3-0054-3BBF-B4BF-86E46FB38B43> /System/Library/InternetAccounts/Vimeo.iaplugin/Contents/MacOS/Vimeo
           0x1070e4000 -        0x1070ebfff  com.apple.weibo.iaplugin (1.1 - 110) <2630F951-DE60-32CC-9C62-1E449C42D04E> /System/Library/InternetAccounts/Weibo.iaplugin/Contents/MacOS/Weibo
           0x1074e0000 -        0x1074e3ff7  com.apple.yahoo.iaplugin (2.1 - 210) <A76EFC19-AD8D-3F24-8801-1A5FCA471232> /System/Library/InternetAccounts/Yahoo.iaplugin/Contents/MacOS/Yahoo
           0x1074e9000 -        0x1074f0ff7  com.apple.youku.iaplugin (1.1 - 110) <8F124788-1885-34E9-B603-435541A16B35> /System/Library/InternetAccounts/Youku.iaplugin/Contents/MacOS/Youku
           0x108e02000 -        0x108e05fff  com.apple.DirectoryServicesSource (2.1 - 1169) <C1DDD61F-2F1E-3D21-80C2-38FC23DD9871> /System/Library/Address Book Plug-Ins/DirectoryServices.sourcebundle/Contents/MacOS/DirectoryServices
           0x109237000 -        0x109248ff7  com.apple.NSServerNotificationCenter (5.0 - 5.0) <151748DA-BEAC-3E8C-B139-09256914F45E> /System/Library/Frameworks/ServerNotification.framework/Versions/A/ServerNotifi cation
           0x109775000 -        0x1097acfff  com.apple.print.framework.Print.Private (8.3 - 409.2) <9BE5EC9C-50DB-3C92-BC9B-839BF4B2D65F> /System/Library/PrivateFrameworks/PrintingPrivate.framework/Versions/Current/Pl ugins/PrintCocoaUI.bundle/Contents/MacOS/PrintCocoaUI
           0x109dcb000 -        0x109e1efff  com.apple.AddressBook.CardDAVPlugin (10.8 - 333) <14C01B09-7E73-30C2-9882-AF4223A1A4F0> /System/Library/Address Book Plug-Ins/CardDAVPlugin.sourcebundle/Contents/MacOS/CardDAVPlugin
           0x10b004000 -        0x10b114fff +com.xerox.xeroxfeatures.pde (1.29.0 - 484) <F84B6218-D07D-32B8-7AB8-45B9417DA05D> /Library/Printers/Xerox/PDEs/XeroxFeatures.plugin/Contents/MacOS/XeroxFeatures
           0x10b223000 -        0x10b263fff  com.apple.print.PrintingCocoaPDEs (8.3 - 409.2) <AC3B0840-C346-320F-9AE2-470D1A8B813B> /System/Library/PrivateFrameworks/PrintingPrivate.framework/Versions/A/Plugins/ PrintingCocoaPDEs.bundle/Contents/MacOS/PrintingCocoaPDEs
           0x10b286000 -        0x10b320ff7  unorm8_bgra.dylib (2.2.16) <5D62BED8-DF5D-3C51-94B4-57368FF10DDB> /System/Library/Frameworks/OpenCL.framework/Libraries/ImageFormats/unorm8_bgra. dylib
           0x10b404000 -        0x10b42afff  libPDFRIP.A.dylib (331.0.4) <27A183A6-EB7D-3CAD-928A-CAF6E3492CA4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libPDFRIP.A.dylib
        0x7fff6487b000 -     0x7fff648af93f  dyld (210.2.3) <A40597AA-5529-3337-8C09-D8A014EB1578> /usr/lib/dyld
        0x7fff81d81000 -     0x7fff81ddbff7  com.apple.imfoundation (8.0 - 900) <0F924050-6D71-3905-B033-EB1A6C8F1495> /System/Library/PrivateFrameworks/IMFoundation.framework/Versions/A/IMFoundatio n
        0x7fff81fd7000 -     0x7fff81ff9ff7  libxpc.dylib (140.42) <BBE558BD-5E55-35E4-89ED-1AA6B056D05A> /usr/lib/system/libxpc.dylib
        0x7fff81ffa000 -     0x7fff82003ff7  com.apple.CommerceCore (1.0 - 26.1) <40A129A8-4E5D-3C7A-B299-8CB203C4C65D> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff82004000 -     0x7fff82008fff  com.apple.FindMyMac (2.1 - 2.1) <D7CA205F-E8CF-3737-B7DE-79FF49FD60D9> /System/Library/PrivateFrameworks/FindMyMac.framework/Versions/A/FindMyMac
        0x7fff820fb000 -     0x7fff820fffff  libGIF.dylib (849) <6A664B4D-0A88-33F7-9064-0CD159AB9CE9> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff82100000 -     0x7fff8245dff7  com.apple.Foundation (6.8 - 945.16) <89BD68FD-72C8-35C1-94C6-3A07F097C50D> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff8245e000 -     0x7fff82569fff  libFontParser.dylib (84.6) <96C42E49-79A6-3475-B5E4-6A782599A6DA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff82574000 -     0x7fff8257fff7  com.apple.CalendarAgentLink (1.0 - 37) <B794F739-3AA0-395E-B8EA-3E9DECA10890> /System/Library/PrivateFrameworks/CalendarAgentLink.framework/Versions/A/Calend arAgentLink
        0x7fff82580000 -     0x7fff82587fff  libGFXShared.dylib (8.7.25) <869580B2-39CB-30C3-B76E-73BB4894B6B7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff82588000 -     0x7fff82808ff7  com.apple.AOSKit (1.05 - 152.2) <43361229-45F3-3946-A11A-CC0FF2129F06> /System/Library/PrivateFrameworks/AOSKit.framework/Versions/A/AOSKit
        0x7fff82835000 -     0x7fff8286cff7  libssl.0.9.8.dylib (47) <923945E6-C489-3406-903B-A362410753F8> /usr/lib/libssl.0.9.8.dylib
        0x7fff828be000 -     0x7fff828d5fff  com.apple.iChat.InstantMessage (7.0.1 - 3305) <456A95AC-10B5-3895-8D42-84B82DF46C0F> /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
        0x7fff828ff000 -     0x7fff82cf6fff  libLAPACK.dylib (1073.4) <D632EC8B-2BA0-3853-800A-20DA00A1091C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff82cf7000 -     0x7fff82da8fff  com.apple.LaunchServices (539.7 - 539.7) <DA7C602E-5E01-31B8-925D-B45360CA089F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff82da9000 -     0x7fff82dacff7  libdyld.dylib (210.2.3) <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
        0x7fff82dad000 -     0x7fff82dbafff  com.apple.AppleFSCompression (49 - 1.0) <5508344A-2A7E-3122-9562-6F363910A80E> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
        0x7fff82e02000 -     0x7fff82e04fff  libCVMSPluginSupport.dylib (8.7.25) <A45E21E3-4B40-39B0-A8B6-411526A84F47> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff82e05000 -     0x7fff82e2aff7  libc++abi.dylib (26) <D86169F3-9F31-377A-9AF3-DB17142052E4> /usr/lib/libc++abi.dylib
        0x7fff82e2b000 -     0x7fff82ea9ff7  com.apple.securityfoundation (6.0 - 55115.4) <137E156C-B29C-3B84-95B3-669BC7C1BA7A> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff82eaa000 -     0x7fff82eb7ff7  com.apple.NetAuth (4.0 - 4.0) <F5BC7D7D-AF28-3C83-A674-DADA48FF7810> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff82eb8000 -     0x7fff82ebafff  com.apple.securityhi (4.0 - 55002) <8B2008A2-B6A2-3E69-9FA2-77B38C869DD6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff82ebb000 -     0x7fff82fb9fff  com.apple.QuickLookUIFramework (4.0 - 555.5) <EE02B332-20F3-3226-A022-D71B808E1CC4> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
        0x7fff82fba000 -     0x7fff82fd7ff7  com.apple.openscripting (1.3.6 - 148.3) <C008F56A-1E01-3D4C-A9AF-97799D0FAE69> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff82fd8000 -     0x7fff82fecfff  com.apple.AppContainer (2.0 - 1) <9BE47824-8C49-3629-A6C5-095A5BEDCF28> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContaine r
        0x7fff82fed000 -     0x7fff8300fff7  com.apple.Kerberos (2.0 - 1) <C49B8820-34ED-39D7-A407-A3E854153556> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff83014000 -     0x7fff83016fff  com.apple.TrustEvaluationAgent (2.0 - 23) <A97D348B-32BF-3E52-8DF2-59BFAD21E1A3> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff83017000 -     0x7fff8301afff  libutil.dylib (30) <EF3340B2-9A53-3D5E-B9B4-BDB5EEECC178> /usr/lib/libutil.dylib
        0x7fff8301b000 -     0x7fff83045ff7  com.apple.CoreVideo (1.8 - 99.4) <E5082966-6D81-3973-A05A-38AA5B85F886> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff83046000 -     0x7fff8304aff7  com.apple.SecCodeWrapper (2.0 - 1) <E8C5B9D5-A62A-3467-A9DF-441021EF2C0E> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWr apper
        0x7fff8304b000 -     0x7fff830a2ff7  com.apple.ScalableUserInterface (1.0 - 1) <F1D43DFB-1796-361B-AD4B-39F1EED3BE19> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
        0x7fff830a3000 -     0x7fff830a3fff  com.apple.Cocoa (6.7 - 19) <1F77945C-F37A-3171-B22E-F7AB0FCBB4D4> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff830a4000 -     0x7fff830a4ffd  com.apple.audio.units.AudioUnit (1.8 - 1.8) <173346B7-614C-380B-8E80-9BD1BE501674> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff830a5000 -     0x7fff8315dff7  com.apple.CoreMessage (1.0 - 1503) <8C8B4C77-6985-3750-A54C-9806550C1C62> /System/Library/PrivateFrameworks/CoreMessage.framework/Versions/A/CoreMessage
        0x7fff8315e000 -     0x7fff83168fff  com.apple.speech.recognition.framework (4.1.5 - 4.1.5) <D803919C-3102-3515-A178-61E9C86C46A1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff83169000 -     0x7fff831a6fef  libGLImage.dylib (8.7.25) <139A9892-A6F2-3F49-87FB-E7AC3F56E003> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff831a7000 -     0x7fff83200fff  com.apple.ImageCaptureCore (5.0.2 - 5.0.2) <D6A71984-8FA2-3964-87C6-1936460FDF8C> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
        0x7fff83201000 -     0x7fff8325dff7  com.apple.Symbolication (1.3 - 93) <66BAF8B0-26D5-38B6-A742-01031F1B4EC0> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff8325e000 -     0x7fff8325efff  libkeymgr.dylib (25) <CC9E3394-BE16-397F-926B-E579B60EE429> /usr/lib/system/libkeymgr.dylib
        0x7fff8325f000 -     0x7fff83262fff  com.apple.AppleSystemInfo (2.0 - 2) <BC221376-361F-3F85-B284-DC251D3BB442> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
        0x7fff83263000 -     0x7fff83263fff  com.apple.AOSMigrate (1.0 - 1) <585B1483-490E-32DD-97DC-B9279E9D3490> /System/Library/PrivateFrameworks/AOSMigrate.framework/Versions/A/AOSMigrate
        0x7fff83264000 -     0x7fff83272ff7  libkxld.dylib (2050.22.13) <4AAF0573-8632-3D06-BE32-C5675F77638D> /usr/lib/system/libkxld.dylib
        0x7fff832a2000 -     0x7fff832d0ff7  libsystem_m.dylib (3022.6) <B434BE5C-25AB-3EBD-BAA7-5304B34E3441> /usr/lib/system/libsystem_m.dylib
        0x7fff832d1000 -     0x7fff83457fff  libBLAS.dylib (1073.4) <C102C0F6-8CB6-3B49-BA6B-2EB61F0B2784> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff83458000 -     0x7fff83463fff  com.apple.CommonAuth (3.0 - 2.0) <7A953C1F-8B18-3E46-9BEA-26D9B5B7745D> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff83464000 -     0x7fff834a4ff7  com.apple.MediaKit (14 - 687) <8AAA8CC3-3ACD-34A5-9E57-9B24AD8AFD4D> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
        0x7fff834a5000 -     0x7fff83768ff7  com.apple.AddressBook.framework (7.1 - 1169) <5FFF3765-414A-3633-ADE5-337CD4B9A102> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
        0x7fff83769000 -     0x7fff8376cfff  libRadiance.dylib (849) <F7D9A0FD-1195-34CB-BFE5-79DAF3F40AC3> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
        0x7fff837fb000 -     0x7fff83858ff7  com.apple.audio.CoreAudio (4.1.1 - 4.1.1) <D15F3FB3-BE53-3545-AD37-9A25A597FE3C> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff83859000 -     0x7fff8385bfff  com.apple.OAuth (18.1 - 18.1) <0DC79455-CF81-3873-87BD-6BD14D89A6F5> /System/Library/PrivateFrameworks/OAuth.framework/Versions/A/OAuth
        0x7fff8385c000 -     0x7fff8386bfff  com.apple.opengl (1.8.7 - 1.8.7) <26F7FF79-6BB2-3968-B70D-71D4E07C9551> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff8386c000 -     0x7fff83870fff  libCoreVMClient.dylib (32.3) <AD8391D9-56DD-3A78-A294-6A30E6ECE1A2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff83871000 -     0x7fff838c8ff7  com.apple.AppleVAFramework (5.0.19 - 5.0.19) <541A7DBE-F8E4-3023-A3C0-8D5A2A550CFB> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff838c9000 -     0x7fff838d5ff7  com.apple.DirectoryService.Framework (10.8 - 151.10) <DA05EF06-8EBD-3759-B5D3-E6FC86C5D850> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
        0x7fff838d6000 -     0x7fff8393efff  libvDSP.dylib (380.6) <CD4C5EEB-9E63-30C4-8103-7A5EAEA0BE60> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff8397a000 -     0x7fff8397bfff  libsystem_blocks.dylib (59) <D92DCBC3-541C-37BD-AADE-ACC75A0C59C8> /usr/lib/system/libsystem_blocks.dylib
        0x7fff8397c000 -     0x7fff839a4fff  libJPEG.dylib (849) <5C9052F6-D0B3-39CC-8302-468B43D694D5> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff839a5000 -     0x7fff839adfff  com.apple.AOSNotification (1.7.0 - 636.3) <C96C3AB4-BF49-3DB7-9E9B-934CD579F63B> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
        0x7fff839ae000 -     0x7fff839c5fff  libGL.dylib (8.7.25) <15F5CB64-847B-3D3D-9663-E0523F15F513> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff839c6000 -     0x7fff83c4bff7  com.apple.RawCamera.bundle (4.04 - 680) <F9A2656C-CE71-326E-BD6D-077487F49D74> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff83c4c000 -     0x7fff83c4dff7  libremovefile.dylib (23.2) <6763BC8E-18B8-3AD9-8FFA-B43713A7264F> /usr/lib/system/libremovefile.dylib
        0x7fff83c4e000 -     0x7fff83cb7fff  libstdc++.6.dylib (56) <EAA2B53E-EADE-39CF-A0EF-FB9D4940672A> /usr/lib/libstdc++.6.dylib
        0x7fff83cb8000 -     0x7fff83cdfff7  com.apple.PerformanceAnalysis (1.16 - 16) <E4888388-F41B-313E-9CBB-5807D077BDA9> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff83ce0000 -     0x7fff83d09fff  libsandbox.1.dylib (220.2) <3FC9A111-B76D-3F98-90A4-44CFB0D433B4> /usr/lib/libsandbox.1.dylib
        0x7fff83d0a000 -     0x7fff83e23fff  com.apple.ImageIO.framework (3.2.0 - 849) <C52AED41-A7C2-300B-91FA-5AF73718D243> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
        0x7fff83e24000 -     0x7fff83ea5fff  com.apple.Metadata (10.7.0 - 707.5) <4140B1F6-7D73-33C7-B3F2-4DB349C31AE9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff83ea6000 -     0x7fff83f26ff7  com.apple.ApplicationServices.ATS (332 - 341.1) <BD83B039-AB25-3E3E-9975-A67DAE66988B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff83f69000 -     0x7fff83f80fff  com.apple.CFOpenDirectory (10.8 - 151.10) <FFBBA538-00B5-334E-BA5B-C8AD6CDCDA14> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff83f87000 -     0x7fff84021fff  libvMisc.dylib (380.6) <714336EA-1C0E-3735-B31C-19DFDAAF6221> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff84076000 -     0x7fff840c2ff7  libauto.dylib (185.1) <73CDC482-16E3-3FC7-9BB4-FBA2DA44DBC2> /usr/lib/libauto.dylib
        0x7fff840c3000 -     0x7fff84154fff  com.apple.CorePDF (2.0 - 2) <EB5660B1-0D79-34F3-B242-B559AE0A5B4A> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff84155000 -     0x7fff8415dff7  libsystem_dnssd.dylib (379.37) <616FC901-151E-38BF-B2C4-24A351C5FAAD> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff8415e000 -     0x7fff84196fff  libtidy.A.dylib (15.10) <9009156B-84F5-3781-BFCB-B409B538CD18> /usr/lib/libtidy.A.dylib
        0x7fff84197000 -     0x7fff84219ff7  com.apple.Heimdal (3.0 - 2.0) <C94B0C6C-1320-35A1-8143-FE252E7B2A08> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff84243000 -     0x7fff8424afff  com.apple.NetFS (5.0 - 4.0) <82E24B9A-7742-3DA3-9E99-ED267D98C05E> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff8424b000 -     0x7fff8457bfff  com.apple.HIToolbox (2.0 - 626.1) <656D08C2-9068-3532-ABDD-32EC5057CCB2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff8457c000 -     0x7fff84585ff7  com.apple.marco (8.0 - 900) <89016888-E37F-3244-906B-D88102483CA3> /System/Library/PrivateFrameworks/Marco.framework/Versions/A/Marco
        0x7fff84586000 -     0x7fff845cafff  libcups.2.dylib (327.3) <71E771A1-0489-3417-8A4A-56A2C930F80C> /usr/lib/libcups.2.dylib
        0x7fff845cb000 -     0x7fff8465afff  libCoreStorage.dylib (296.16) <E5BF76A1-2B3E-3FD8-ABF4-F8D18829BF0A> /usr/lib/libCoreStorage.dylib
        0x7fff8465b000 -     0x7fff84660fff  com.apple.OpenDirectory (10.8 - 151.10) <CF44120B-9B01-32DD-852E-C9C0E1243FC0> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff84661000 -     0x7fff8466fff7  libsystem_network.dylib (77.10) <0D99F24E-56FE-380F-B81B-4A4C630EE587> /usr/lib/system/libsystem_network.dylib
        0x7fff846e0000 -     0x7fff847ddfff  libsqlite3.dylib (138.1) <ADE9CB98-D77D-300C-A32A-556B7440769F> /usr/lib/libsqlite3.dylib
        0x7fff847de000 -     0x7fff847defff  com.apple.Accelerate.vecLib (3.8 - vecLib 3.8) <B5A18EE8-DF81-38DD-ACAF-7076B2A26225> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff847df000 -     0x7fff8482afff  com.apple.framework.CoreWLAN (3.0.2 - 302.12) <896D75EB-069B-3674-936E-27A81568BECB> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
        0x7fff8482b000 -     0x7fff8482cfff  libodfde.dylib (18) <015DD2A0-D59A-3547-909D-7C028A65C312> /usr/lib/libodfde.dylib
        0x7fff85295000 -     0x7fff852a9fff  com.apple.speech.synthesis.framework (4.1.12 - 4.1.12) <94EDF2AB-809C-3D15-BED5-7AD45B2A7C16> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff852aa000 -     0x7fff852acff7  com.apple.EFILogin (2.0 - 2) <51A470D7-1F72-3369-AF0F-AD2340B42C12> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
        0x7fff852ad000 -     0x7fff852feff7  com.apple.iCalendar (6.0 - 126.5) <3C743E01-70DB-341C-89EC-13B5EA70EEE2> /System/Library/PrivateFrameworks/iCalendar.framework/Versions/A/iCalendar
        0x7fff852ff000 -     0x7fff852ffff7  com.apple.SafariServices.framework (8536 - 8536.28.10) <0A50A10A-E261-3F73-8343-D9EC34AA98F1> /System/Library/PrivateFrameworks/SafariServices.framework/Versions/A/SafariSer vices
        0x7fff85300000 -     0x7fff85308ff7  com.apple.AppSandbox (2.0 - 1) <2E28B3EA-EAD8-3632-862D-60286FE70D79> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
        0x7fff85309000 -     0x7fff8530aff7  libSystem.B.dylib (169.3) <132FE02E-3865-3F1F-B78D-C93D65930A67> /usr/lib/libSystem.B.dylib
        0x7fff8530b000 -     0x7fff853ddff7  com.apple.CoreText (260.0 - 275.16) <5BFC1D67-6A6F-38BC-9D90-9C712684EDAC> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
        0x7fff853de000 -     0x7fff853dffff  libffi.dylib (18) <D20FE81C-271C-3446-ABC8-50B6A6F5BEA4> /usr/lib/libffi.dylib
        0x7fff853e0000 -     0x7fff856f7ff7  com.apple.CoreServices.CarbonCore (1037.5 - 1037.5) <731D8F92-1C52-3613-BA01-EFEA54DADF41> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff856f8000 -     0x7fff856f8fff  com.apple.SafariDAVNotifier (1.1.1 - 1) <F2E6ABF4-C7D7-341F-BC27-C9B0E7C4F4EB> /System/Library/PrivateFrameworks/BookmarkDAV.framework/Versions/A/Frameworks/S afariDAVNotifier.framework/Versions/A/SafariDAVNotifier
        0x7fff856f9000 -     0x7fff856fefff  libcompiler_rt.dylib (30) <08F8731D-5961-39F1-AD00-4590321D24A9> /usr/lib/system/libcompiler_rt.dylib
        0x7fff8578f000 -     0x7fff8579aff7  com.apple.ProtocolBuffer (2 - 104) <3270C172-1437-3080-9E53-3E2DCA9AE2EC> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
        0x7fff8579b000 -     0x7fff857a6ff7  com.apple.DisplayServicesFW (2.7.2 - 357) <EC87A00D-FE9C-3CFE-A98C-063C3D23085A> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
        0x7fff857a7000 -     0x7fff857c6ff7  com.apple.ChunkingLibrary (2.0 - 133.3) <8BEC9AFB-DCAA-37E8-A5AB-24422B234ECF> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
        0x7fff857c7000 -     0x7fff857d4fff  com.apple.KerberosHelper (4.0 - 1.0) <6815439D-1A03-3251-99FE-CC24CF4C93C5> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
        0x7fff857d5000 -     0x7fff857e0ff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <C12962D5-85FB-349E-AA56-64F4F487F219> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
        0x7fff857f2000 -     0x7fff85841ff7  libcorecrypto.dylib (106.2) <CE0C29A3-C420-339B-ADAA-52F4683233CC> /usr/lib/system/libcorecrypto.dylib
        0x7fff85842000 -     0x7fff85874fff  com.apple.framework.Admin (12.0 - 12.0) <21E02DE3-B255-3A55-8F55-7FC9EE864C06> /System/Library/PrivateFrameworks/Admin.framework/Versions/A/Admin
        0x7fff85875000 -     0x7fff85c92fff  FaceCoreLight (2.4.1) <A34C9575-C4C1-31B1-809B-7751070B4E8B> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
        0x7fff85c93000 -     0x7fff85de4fff  com.apple.audio.toolbox.AudioToolbox (1.8 - 1.8) <C680EE1A-B4ED-3E77-A08C-DC47922ACA33> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff85de5000 -     0x7fff85de9ff7  com.apple.CommonPanels (1.2.5 - 94) <AAC003DE-2D6E-38B7-B66B-1F3DA91E7245> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff85dea000 -     0x7fff85dfffff  com.apple.ImageCapture (8.0 - 8.0) <17A45CE6-7DA3-36A5-B7EF-72BC136981AE> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff85e00000 -     0x7fff85e07fff  com.apple.phonenumbers (1.1 - 47) <E6A01FEF-9C6D-3C18-B378-63F4134756E6> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s
        0x7fff86306000 -     0x7fff8636dfff  com.apple.coredav (1.0.1 - 179.7) <EEFBD7EA-82F4-32AB-8D2B-541D74FB764A> /System/Library/PrivateFrameworks/CoreDAV.framework/Versions/A/CoreDAV
        0x7fff8636e000 -     0x7fff864dfff7  com.apple.QTKit (7.7.1 - 2599.24) <A2153722-268B-3293-B9E3-CB59273CDE41> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff864e0000 -     0x7fff8654efff  com.apple.framework.IOKit (2.0.1 - 755.22.5) <1547DA6F-9793-30A2-8E92-7368DE84D46C> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff8654f000 -     0x7fff8659cfff  com.apple.CoreMediaIO (307.0 - 4155) <CD826A65-DFE7-3A58-A29E-15B3A9BE0A6D> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
        0x7fff8659d000 -     0x7fff865a1fff  libpam.2.dylib (20) <C8F45864-5B58-3237-87E1-2C258A1D73B8> /usr/lib/libpam.2.dylib
        0x7fff865f9000 -     0x7fff86625fff  com.apple.quartzfilters (1.8.0 - 1.7.0) <B8DE45D7-1827-3379-A478-1A574A1D11D9> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff86626000 -     0x7fff86626fff  com.apple.ApplicationServices (45 - 45) <A3ABF20B-ED3A-32B5-830E-B37831A45A80> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff86627000 -     0x7fff86683fff  com.apple.QuickLookFramework (4.0 - 555.5) <8B9EAC35-98F3-3BF0-8B15-3A5FE39F150A> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff8679e000 -     0x7fff8679efff  com.apple.quartzframework (1.5 - 1.5) <6403C982-0D45-37EE-A0F0-0EF8BCFEF440> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff8679f000 -     0x7fff867a2fff  com.apple.help (1.3.2 - 42) <343904FE-3022-3573-97D6-5FE17F8643BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff867f6000 -     0x7fff867fafff  com.apple.IOSurface (86.0.4 - 86.0.4) <26F01CD4-B76B-37A3-989D-66E8140542B3> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff867fb000 -     0x7fff8685afff  com.apple.AE (645.6 - 645.6) <44F403C1-660A-3543-AB9C-3902E02F936F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff8685b000 -     0x7fff86a5bfff  libicucore.A.dylib (491.11.2) <FD6282D8-DF3F-3842-8C2E-CF478D2B9669> /usr/lib/libicucore.A.dylib
        0x7fff86a5c000 -     0x7fff86a7efff  com.apple.AOSAccounts (1.1.2 - 1.1.95) <9A1A8780-1F48-3CCA-96EB-D3137F93B676> /System/Library/PrivateFrameworks/AOSAccounts.framework/Versions/A/AOSAccounts
        0x7fff86a7f000 -     0x7fff86a81fff  libquarantine.dylib (52) <4BE2E642-A14F-340A-B482-5BD2AEFD9C24> /usr/lib/system/libquarantine.dylib
        0x7fff86a85000 -     0x7fff86a86ff7  libdnsinfo.dylib (453.19) <14202FFB-C3CA-3FCC-94B0-14611BF8692D> /usr/lib/system/libdnsinfo.dylib
        0x7fff86a87000 -     0x7fff86ad1ff7  libGLU.dylib (8.7.25) <C243C6D3-3384-3DB1-BB15-E27B65C87294> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff86ad2000 -     0x7fff86adffff  libbz2.1.0.dylib (29) <CE9785E8-B535-3504-B392-82F0064D9AF2> /usr/lib/libbz2.1.0.dylib
        0x7fff86ae0000 -     0x7fff86aefff7  libxar.1.dylib (105) <370ED355-E516-311E-BAFD-D80633A84BE1> /usr/lib/libxar.1.dylib
        0x7fff86af0000 -     0x7fff86d65fff  com.apple.CalendarStore (6.0 - 1249) <EDF94D24-0BFF-366E-851F-0F5C82455648> /System/Library/Frameworks/CalendarStore.framework/Versions/A/CalendarStore
        0x7fff86d66000 -     0x7fff86e5bfff  libiconv.2.dylib (34) <FEE8B996-EB44-37FA-B96E-D379664DEFE1> /usr/lib/libiconv.2.dylib
        0x7fff86e5c000 -     0x7fff86e5cfff  SleepServices (1.46) <A49C34BF-A696-3266-BCC1-D0788853D626> /System/Library/PrivateFrameworks/SleepServices.framework/Versions/A/SleepServi ces
        0x7fff86e87000 -     0x7fff86ef4ff7  com.apple.datadetectorscore (4.1 - 269.2) <4FD4A7CE-BB00-3AAB-B7AA-AE395D5400EC> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff86ef5000 -     0x7fff86f94ff7  com.apple.imcore (8.0 - 900) <F71E8D85-BE37-37C7-8536-7DCF396984A

    Open the Print & Scan preference pane in System Preferences and delete the print queue, then add it back. If there's no change, reset the printing system.

Maybe you are looking for

  • Can I share my itunes purchases with my wife's iphone?

    I have an extensive collection of music both ripped and purchased from itunes. Since the music is purchased under my account the songs play on my iPhone. I would like my wife to have the same music collection on her phone. Is it possible to have her

  • Ipod causes windows XP to crash upon connecting to craddle

    I have an ipod that crashes xp every time I connect it to the PC. I have reset the ipod, and have re-installed win xp. I never had this before I updated to new apple itunes. What is going on?

  • ONLINELOG

    Hi, I have problem with the second online redo log file. SQL> ALTER DATABASE OPEN; ALTER DATABASE OPEN; ERROR at line 1: ORA-00322: log 2 of thread 1 is not current copy ORA-00312: online log 2 thread 1: 'D:\ORACLEXE\ORADATA\XE\O1_MF_2_266RQQDC_.LOG'

  • On May 24 installed latest Maverick update and now my Office 2008 (Entourage) crashes on open,

    LOG: please help ! Process:         Microsoft Entourage [1898] Path:            /Applications/Microsoft Office 2008/Microsoft Entourage.app/Contents/MacOS/Microsoft Entourage Identifier:      com.microsoft.Entourage Version:         ??? Build Info:  

  • Hover Effect Follows My Mouse Everywhere After it's Loaded

    Hi, I've created the hover effect in a movie clip (called characters_mc) and placed it on another movie clip (main_mc) and this main_mc is placed on my main timeline. I would like the hover effect to display only on the characters_mc but the hover ef