Two JDialogs are getting open on single mouse click in MAC

Hi ;
I have a button,which opens a Jdialog on single mouse click,but if i do clicking multiple times,then multiple Jdialog are getting opened this issue is occuring in MAC only and not in windows.I have used all the methods of mouse event listener but there is no impact seen all,please give me some idea on this...

To get better help sooner, post a SSCCE that clearly demonstrates your problem.
Use code tags to post codes -- [code]CODE[/code] will display asCODEOr click the CODE button and paste your code between the {code} tags that appear.
db

Similar Messages

  • I have enabled pop-blocker but still pop-ups are getting opened.

    Hi Team,
    I have enabled pop-blocker but still pop-ups are getting opened.
    New browser gets opened automatically in various windows.
    Can you please help me?
    Regards,
    Hitesh

    Do a malware check with several malware scanning programs on the Windows computer.
    Please scan with all programs because each program detects different malware.
    All these programs have free versions.
    Make sure that you update each program to get the latest version of their databases before doing a scan.
    *Malwarebytes' Anti-Malware:<br>http://www.malwarebytes.org/mbam.php
    *AdwCleaner:<br>http://www.bleepingcomputer.com/download/adwcleaner/<br>http://www.softpedia.com/get/Antivirus/Removal-Tools/AdwCleaner.shtml
    *SuperAntispyware:<br>http://www.superantispyware.com/
    *Microsoft Safety Scanner:<br>http://www.microsoft.com/security/scanner/en-us/default.aspx
    *Windows Defender:<br>http://windows.microsoft.com/en-us/windows/using-defender
    *Spybot Search & Destroy:<br>http://www.safer-networking.org/en/index.html
    *Kasperky Free Security Scan:<br>http://www.kaspersky.com/security-scan
    You can also do a check for a rootkit infection with TDSSKiller.
    *Anti-rootkit utility TDSSKiller:<br>http://support.kaspersky.com/5350?el=88446
    See also:
    *"Spyware on Windows": http://kb.mozillazine.org/Popups_not_blocked
    *https://support.mozilla.org/kb/troubleshoot-firefox-issues-caused-malware

  • Files get open with single click sometimes

    I recently started having this problem. When I browse through different image/video files, some of the files get open with one click only. This is really very annoying. I am event thinking to migrate back to Windows because of this problem.
    How to reproduce the issue:
    -> Open a folder that contains many images/video files
    -> Click on anyone of them to select it
    -> Now click outside the window. So, the finder goes out of the focus (but should stay visible)
    -> Now, inside finder click any other image/video just once, it will open up automatically with just single click

    If you have access to a mouse, try using it. If everything is okay using the mouse, then it is likely trackpad related. Other troubleshooting.
    Try setting up another admin user account to see if the same problem continues. If Back-to-My Mac is selected in System Preferences, the Guest account will not work. The intent is to see if it is specific to one account or a system wide problem. This account can be deleted later.
    Isolating an issue by using another user account
    If the problem is still there, try booting into the Safe Mode.  Shut down the computer and then power it back up. Immediately after hearing the startup chime, hold down the shift key and continue to hold it until the gray Apple icon and a progress bar appear. The boot up is significantly slower than normal. This will reset some caches, forces a directory check, and disables all startup and login items, among other things. If the system operates normally, there may be 3rd party applications which are causing a problem. Try deleting/disabling the third party applications after a restart by using the application unistaller. For each disable/delete, you will need to restart if you don't do them all at once.
    Safe Mode
    Safe Mode - About
    General information.
    Isolating issues in Mac OS X
    Troubleshooting Permission Issues
    Step by Step to Fix Your Mac

  • I am using Iphone 4s. In App Store Update, this page is not getting loaded in my iphone. Blank screen is showing up, rest all pages are getting open. Please tell me the problem and solutions.

    Hi,
    My Name is Pranav.
    I am using i phone 4-s.
    In my iphone when i go to app store > Updates, system showing me 10 updates but when i try to open this page, page is not getting open. Loader came up and then white blank screen is visible. Rest all Featured, Top Charts Genius and Search are working fine but updates page is not getting open.
    Guys please help me out to sort this problem.
    Thanks,
    Pranav
    [email protected]    
    +91-8460366331

    Looks O.K. to me Opens correctly in Firefox and Opera as a log-in page for Killer Content - Win7x64 Fx5.
    I can't see any oddities in your plug-ins. It never hurts to clear any relevant cookies and your cache.
    You could see how it goes in Safe Mode - Hold Shift key down as you double click on the Firefox icon>ignore the page that opens and continue. If the page opens you probably have a problem with extensions or themes and you should work through this -
    https://support.mozilla.com/en-US/kb/Troubleshooting%20extensions%20and%20themes
    A lot of things have been updated as well as Firefox and you could have a culprit or conflict. Next, if there is no improvement you could try disabling third party toolbars, and you should report back at this stage or if there has been early success.
    Someone may come by with a more specific remedy.

  • Distinguishing b/t two single mouse-click and mouse-double-click

    Hi,
    I am curious to find out how Forms will distinguish between two single when-mouse-click events and a single when-mouse-doubleclick event. Is it simply a timing issue or is there more involved i.e. the 'co-ordinates' of the mouse. Thanks in advance for any opinions given,
    regards,
    Kevin.

    The difference is same as the difference of Apple and Orange.
    Its depends on O/S and event management within OS kernel.
    You can change the timing in Control panel of mouse double click.

  • Where can I get a keyboard and mouse for a Mac SE?

    I have a 1988 Mac SE but am missing the keyboard and mouse.   Where can I get a keyboard and mouse?

    Welcome!
    "Where to get" inquiries are more easily answered if we know your approximate geographic location. No sense on our sending you to a vendor who does not ship to your location.
    That said, one resource that often works for getting older hardware---regardless of where you live---are Mac User Groups ("MUGs"). This locating page can help you find if there is one near you:
    http://appleusergroupresources.com/find-a-group/

  • Issue opening pdf on mouse click

    I have build a swing app which makes search over lucene index and fetches the pdf file from derbydb saves in HDD and let me opens the pdf from the selected row.
    public void mouseClicked(MouseEvent e){
                JTable table = (JTable)e.getSource();
                Point p = e.getPoint();               
                int row = table.rowAtPoint(p);
                int col = table.columnAtPoint(p);
                int pkey=dobj.getprimaryKey();    
                openPdf(pkey,(String)lst1.get(row));
    public void openPdf(int pkey,String filename)
        DBReadOperations dbr1=new DBReadOperations();
        Connection conn1=dbr1.initalize();
        InputStream ip=null;
        ResultSet rs=dbr1.getPDFStuff(conn1, pkey, filename);
        try {
            while (rs.next()) {
                Blob bl = rs.getBlob(3);
                ip = bl.getBinaryStream();
        } catch (SQLException e1) {
            // TODO Auto-generated catch block
            e1.printStackTrace();
        File fr=new File("c:\\savepdffiles");
        fr.mkdir();
        String str1="c:\\savepdffiles\\"+filename;
        System.out.println("entered the openpdf method"+str1);
        try{
        File f=new File(str1);
        InputStream input_Stream= ip;
        OutputStream out=new FileOutputStream(f);
        byte buf[]=new byte[1024];
        int len;
        while((len=input_Stream.read(buf))>0)
        out.write(buf,0,len);
        out.close();
        input_Stream.close();
        Runtime.getRuntime().exec("rundll32 url.dll,FileProtocolHandler "+ str1);
       dbr1.closeOperation(conn1);
        }catch (IOException e){
            System.out.println(e.getMessage());
    } now when I make my next search and select the another row to open another pdf, all the older pdfs also get open in the order I clicked on the rows.
    I want to avoid this, anyone can tell me why the mouse event is going for older pdfs.
    Edited by: angelace on Dec 14, 2009 12:22 AM
    Edited by: angelace on Dec 14, 2009 12:23 AM

    Your code while (rs.next()) {
                Blob bl = rs.getBlob(3);
                ip = bl.getBinaryStream();
            }will set 'ip' to the last entry in the result set and you will open that document. If your DB contains different versions of your file, is the last one the one you want?

  • Some folders are not opening when I double-click.

    Hi.  I am currrently on an iMac, running OS 10.6.8.  Last week random folders stopped opening when I double clicked them.  I found it happening more when I started a new folder ( command n) and renamed it.  Whenever I double click, the folder "whooshes" to the left never to be found.  The folder stays on the desktop and does not open.  The only way to get my items out is to throw the folder away, get an old folder, rename it and take the items out of the trash.
    Any ideas as to what the issue may be?  I've restarted the computer, shut down the computer, force quit the finder, relaunched the finder etc.  I have done an "get info" and made sure everything is "read and write" as well.  This is becoming a headache for about a week now.
    Thanks for any help.

    Try clearing your browser cache.
    Tools > Clear Recent History... - hit Details and make sure only Cache is selected, then select Everything and hit the Clear Now button.

  • Draw with single mouse click, help me!!!!

    I am using this code - as you understood from it- to paint with the mouse click.
    please help me either by completing it or by telling me what to do.
    import java.awt.*;
    import javax.swing.*;
    import java.awt.event.*;
    public class Hello extends JFrame{
         Graphics g;
         ImageIcon icon = new ImageIcon("hello.gif");
         public Hello(){
              super("Hello");
              setSize(200, 200);
              addMouseListener(
                   new MouseAdapter(){
                        public void mouseClicked(MouseEvent e){
                             icon.paintIcon(Hello.this, g, e.getX(), e.getY());
                             g.fillRect(10, 40, 10, 80);
                             JOptionPane.showMessageDialog(Hello.this, e.getX() + ", " + e.getY());
                             //repaint();
         // i have tried to place this listener in the paint method, but no way out.
              setVisible(true);
         public void paint(final Graphics g){
              this.g = g;
              icon.paintIcon(this, g, 100, 50);
         public static void main(String[] args){
              new Hello();
    **

    You can't save a graphics object like that and then paint on it.
    What you need is to use a BufferedImage, paint on that, and then paint that to the screen.
    See my paintarea class. You are welcome to use + modify this class as well as take any code snippets to fit into whatever you have but please add a comment where ever you've incorporated stuff from my class
    PaintArea.java
    ===========
    * Created on Jun 15, 2005 by @author Tom Jacobs
    package tjacobs.ui;
    import java.awt.image.BufferedImage;
    import java.awt.*;
    import java.awt.event.*;
    import java.beans.PropertyChangeEvent;
    import java.beans.PropertyChangeListener;
    import javax.swing.ImageIcon;
    import javax.swing.JComboBox;
    import javax.swing.JComponent;
    import javax.swing.JLabel;
    import javax.swing.JPanel;
    import javax.swing.JToolBar;
    import javax.swing.SwingUtilities;
    import tjacobs.MathUtils;
    * PaintArea is a component that you can draw in similar to but
    * much simpler than the windows paint program.
    public class PaintArea extends JComponent {
         BufferedImage mImg; //= new BufferedImage();
         int mBrushSize = 1;
         private boolean mSizeChanged = false;
         private Color mColor1, mColor2;
         static class PaintIcon extends ImageIcon {
              int mSize;
              public PaintIcon(Image im, int size) {
                   super(im);
                   mSize = size;
         public PaintArea() {
              super();
              setCursor(Cursor.getPredefinedCursor(Cursor.CROSSHAIR_CURSOR));
              addComponentListener(new CListener());
              MListener ml = new MListener();
              addMouseListener(ml);
              addMouseMotionListener(ml);
              setBackground(Color.WHITE);
              setForeground(Color.BLACK);
         public void paintComponent(Graphics g) {
              if (mSizeChanged) {
                   handleResize();
              //g.drawImage(mImg, mImg.getWidth(), mImg.getHeight(), null);
              g.drawImage(mImg, 0, 0, null);
              //super.paintComponent(g);
              //System.out.println("Image = " + mImg);
              //System.out.println("Size: " + mImg.getWidth() + "," + mImg.getHeight());
         public void setBackground(Color c) {
              super.setBackground(c);
              if (mImg != null) {
                   Graphics g = mImg.getGraphics();
                   g.setColor(c);
                   g.fillRect(0, 0, mImg.getWidth(), mImg.getHeight());
                   g.dispose();
         public void setColor1(Color c) {
              mColor1 = c;
         public void setColor2(Color c) {
              mColor2 = c;
         public Color getColor1() {
              return mColor1;
         public Color getColor2() {
              return mColor2;
         class ToolBar extends JToolBar {
              ToolBar() {
                   final ColorButton fore = new ColorButton();
                   fore.setToolTipText("Foreground Color");
                   final ColorButton back = new ColorButton();
                   back.setToolTipText("Background Color");
                   JComboBox brushSize = new JComboBox();
                   //super.createImage(1, 1).;
                   FontMetrics fm = new FontMetrics(getFont()) {};
                   int ht = fm.getHeight();
                   int useheight = fm.getHeight() % 2 == 0 ? fm.getHeight() + 1 : fm.getHeight();
                   final BufferedImage im1 = new BufferedImage(useheight, useheight, BufferedImage.TYPE_INT_RGB);
                   Graphics g = im1.getGraphics();
                   g.setColor(Color.WHITE);
                   g.fillRect(0, 0, useheight, useheight);
                   g.setColor(Color.BLACK);
                   g.fillOval(useheight / 2, useheight / 2, 1, 1);
                   g.dispose();
                   //im1.setRGB(useheight / 2 + 1, useheight / 2 + 1, 0xFFFFFF);
                   final BufferedImage im2 = new BufferedImage(useheight, useheight, BufferedImage.TYPE_INT_RGB);
                   g = im2.getGraphics();
                   g.setColor(Color.WHITE);
                   g.fillRect(0, 0, useheight, useheight);
                   g.setColor(Color.BLACK);
                   g.fillOval(useheight / 2 - 1, useheight / 2 - 1, 3, 3);
                   g.dispose();
    //               im2.setRGB(useheight / 2 - 1, useheight / 2 - 1, 3, 3, new int[] {     0, 0xFFFFFF, 0,
    //                                                            0xFFFFFF, 0xFFFFFFF, 0xFFFFFF,
    //                                                            0, 0xFFFFFF, 0}, 0, 1);
                   final BufferedImage im3 = new BufferedImage(useheight, useheight, BufferedImage.TYPE_INT_RGB);
                   g = im3.getGraphics();
                   g.setColor(Color.WHITE);
                   g.fillRect(0, 0, useheight, useheight);
                   g.setColor(Color.BLACK);
                   g.fillOval(useheight / 2 - 2, useheight / 2 - 2, 5, 5);
                   g.dispose();
    //               im3.setRGB(useheight / 2 - 2, useheight / 2 - 2, 5, 5, new int[] {     0, 0, 0xFFFFFF, 0, 0, 
    //                                                            0, 0xFFFFFF, 0xFFFFFFF, 0xFFFFFF, 0,
    //                                                            0xFFFFFF, 0xFFFFFF, 0xFFFFFF, 0xFFFFFF, 0xFFFFFF,
    //                                                            0, 0xFFFFFF, 0xFFFFFFF, 0xFFFFFF, 0,
    //                                                            0, 0, 0xFFFFFF, 0, 0}, 0, 1);
                   //JLabel l1 = new JLabel("1 pt", new ImageIcon(im1), JLabel.LEFT);
                   //JLabel l2 = new JLabel("3 pt", new ImageIcon(im2), JLabel.LEFT);
                   //JLabel l3 = new JLabel("5 pt", new ImageIcon(im3), JLabel.LEFT);
                   brushSize.addItem(new PaintIcon(im1, 1));
                   brushSize.addItem(new PaintIcon(im2, 3));
                   brushSize.addItem(new PaintIcon(im3, 5));
                   //brushSize.addItem("Other");
                   add(fore);
                   add(back);
                   add(brushSize);
                   PropertyChangeListener pl = new PropertyChangeListener() {
                        public void propertyChange(PropertyChangeEvent ev) {
                             Object src = ev.getSource();
                             if (src != fore && src != back) {
                                  return;
                             Color c = (Color) ev.getNewValue();
                             if (ev.getSource() == fore) {
                                  mColor1 = c;
                             else {
                                  mColor2 = c;
                   fore.addPropertyChangeListener("Color", pl);
                   back.addPropertyChangeListener("Color", pl);
                   fore.changeColor(Color.BLACK);
                   back.changeColor(Color.WHITE);
                   brushSize.addItemListener(new ItemListener() {
                        public void itemStateChanged(ItemEvent ev) {
                             System.out.println("ItemEvent");
                             if (ev.getID() == ItemEvent.DESELECTED) {
                                  return;
                             System.out.println("Selected");
                             Object o = ev.getItem();
                             mBrushSize = ((PaintIcon) o).mSize;
                   //Graphics g = im1.getGraphics();
                   //g.fillOval(0, 0, 1, 1);
                   //BufferedImage im1 = new BufferedImage();
                   //BufferedImage im1 = new BufferedImage();
         protected class MListener extends MouseAdapter implements MouseMotionListener {
              Point mLastPoint;
              public void mouseDragged(MouseEvent me) {
                   Graphics g = mImg.getGraphics();
                   if ((me.getModifiers() & InputEvent.BUTTON1_MASK) != 0) {
                        g.setColor(mColor1);
                   } else {
                        g.setColor(mColor2);
                   Point p = me.getPoint();
                   if (mLastPoint == null) {
                        g.fillOval(p.x - mBrushSize / 2, p.y - mBrushSize / 2, mBrushSize, mBrushSize);
                        //g.drawLine(p.x, p.y, p.x, p.y);
                   else {
                        g.drawLine(mLastPoint.x, mLastPoint.y, p.x, p.y);
                        //g.fillOval(p.x - mBrushSize / 2, p.y - mBrushSize / 2, mBrushSize, mBrushSize);
                        double angle = MathUtils.angle(mLastPoint, p);
                        if (angle < 0) {
                             angle += 2 * Math.PI;
                        double distance = MathUtils.distance(mLastPoint, p) * 1.5;
                        if (angle < Math.PI / 4 || angle > 7 * Math.PI / 4 || Math.abs(Math.PI - angle) < Math.PI / 4) {
                             for (int i = 0; i < mBrushSize / 2; i ++) {
                                  g.drawLine(mLastPoint.x, mLastPoint.y + i, p.x, p.y + i);
                                  g.drawLine(mLastPoint.x, mLastPoint.y - i, p.x, p.y - i);
    //                              System.out.println("y");
    //                              System.out.println("angle = " + angle / Math.PI * 180);
                        else {
                             for (int i = 0; i < mBrushSize / 2; i ++) {
                                  g.drawLine(mLastPoint.x + i, mLastPoint.y, p.x + i, p.y);
                                  g.drawLine(mLastPoint.x  - i, mLastPoint.y, p.x - i, p.y);
    //                              System.out.println("x");
    //                    System.out.println("new = " + PaintUtils.printPoint(p));
    //                    System.out.println("last = " + PaintUtils.printPoint(mLastPoint));
                        //System.out.println("distance = " + distance);
                        //Graphics2D g2 = (Graphics2D) g;
                        //g2.translate(mLastPoint.x + mBrushSize / 2, mLastPoint.y);
                        //g2.rotate(angle);
                        //g2.fillRect(0, 0, (int) Math.ceil(distance), mBrushSize);
                        //g2.rotate(-angle);
                        //g2.translate(-mLastPoint.x + mBrushSize / 2, -mLastPoint.y);
    //                    g.setColor(Color.RED);
    //                    g.drawRect(p.x, p.y, 1, 1);
                   mLastPoint = p;
                   g.dispose();
                   repaint();
              public void mouseMoved(MouseEvent me) {}
              public void mouseReleased(MouseEvent me) {
                   mLastPoint = null;
         private void handleResize() {
              Dimension size = getSize();
              mSizeChanged = false;
              if (mImg == null) {
                   mImg = new BufferedImage(size.width, size.height, BufferedImage.TYPE_INT_RGB);
                   Graphics g = mImg.getGraphics();
                   g.setColor(getBackground());
                   g.fillRect(0, 0, mImg.getWidth(), mImg.getHeight());
                   g.dispose();
              else {
                   int newWidth = Math.max(mImg.getWidth(),getWidth());
                   int newHeight = Math.max(mImg.getHeight(),getHeight());
                   if (newHeight == mImg.getHeight() && newWidth == mImg.getWidth()) {
                        return;
                   BufferedImage bi2 = new BufferedImage(newWidth, newHeight, BufferedImage.TYPE_INT_RGB);
                   Graphics g = bi2.getGraphics();
                   g.setColor(getBackground());
                   g.fillRect(0, 0, bi2.getWidth(), bi2.getHeight());
                   g.drawImage(mImg, mImg.getWidth(), mImg.getHeight(), null);
                   g.dispose();
                   mImg = bi2;
         public JToolBar getToolBar() {
              if (mToolBar == null) {
                   mToolBar = new ToolBar();
              return mToolBar;
         private ToolBar mToolBar;
         public static void main (String args[]) {
              PaintArea pa = new PaintArea();
              JPanel parent = new JPanel();
              parent.setLayout(new BorderLayout());
              parent.add(pa, BorderLayout.CENTER);
              pa.setPreferredSize(new Dimension(150, 150));
              parent.add(pa.getToolBar(), BorderLayout.NORTH);
              WindowUtilities.visualize(parent);
         protected class CListener extends ComponentAdapter {
              public void componentResized(ComponentEvent ce) {
                   mSizeChanged = true;
    }

  • IMac mid 2010 not responding to mouse clicks for mac software

    I have a mid 2010 iMac 16 gb ram running 10.10.2.  My problem started a wk ago when the iMac wouldn't respond to the track pad's click.  I did change the trackpad which did not help. I also noted that this behavior was mostly w/ Mac software (with the obvious exception of safari.)  I can not retrieve email w/ the mail.app. Can not use pages to finish work that needs done.  I can open programs but once opened can't navigate.  I can scroll but mouse clicks either B/T or USB fail. I have restarted in SAFE mode - no joy - I ran disk warrior - told me all was just fine. I rest the SMC nothing.
    My hobby is photography and I use (and have been using) Photoshop 2014 (PS), Lightroom-5 (LR_5) w/o problemsI've pasted a report from Etrecheck (nice - helpful app).
    EtreCheck version: 2.1.8 (121)
    Report generated March 30, 2015 at 7:38:32 AM EDT
    Download EtreCheck from http://etresoft.com/etrecheck
    Click the [Click for support] links for help with non-Apple products.
    Click the [Click for details] links for more information about that line.
    Click the [Adware! - Remove] links for help removing adware.
    Hardware Information: ℹ️
        iMac (21.5-inch, Mid 2010) (Technical Specifications)
        iMac - model: iMac11,2
        1 3.06 GHz Intel Core i3 CPU: 2-core
        16 GB RAM Upgradeable
            BANK 0/DIMM0
                4 GB DDR3 1333 MHz ok
            BANK 1/DIMM0
                4 GB DDR3 1333 MHz ok
            BANK 0/DIMM1
                4 GB DDR3 1333 MHz ok
            BANK 1/DIMM1
                4 GB DDR3 1333 MHz ok
        Bluetooth: Old - Handoff/Airdrop2 not supported
        Wireless:  en1: 802.11 a/b/g/n
    Video Information: ℹ️
        ATI Radeon HD 4670 - VRAM: 256 MB
            iMac 1920 x 1080
    System Software: ℹ️
        OS X 10.10.2 (14C1514) - Time since boot: 7:50:1
    Disk Information: ℹ️
        ST3500418AS disk0 : (500.11 GB)
            EFI (disk0s1) <not mounted> : 210 MB
              (disk0s2) / : 499.25 GB (132.19 GB free)
            Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
        HL-DT-STDVDRW  GA32N
    USB Information: ℹ️
        X-Rite, Inc. ColorMunki Display
        Wacom Co.,Ltd. Intuos5 touch S
        Generic Mass Storage Device
        Apple Inc. BRCM2046 Hub
            Apple Inc. Bluetooth USB Host Controller
        Apple Internal Memory Card Reader 7.95 GB
            EFI (disk1s1) <not mounted> : 210 MB
            ssd (disk1s2) /Volumes/ssd : 7.60 GB (7.17 GB free)
        Western Digital My Book 500.11 GB
            SUPER_DUP (disk4s1) /Volumes/SUPER_DUP 1 : 500.11 GB (128.55 GB free)
        Western Digital My Book 1110 1.5 TB
            EFI (disk2s1) <not mounted> : 210 MB
            time_machine (disk2s2) /Volumes/time_machine : 1.50 TB (613.29 GB free)
        Apple Computer, Inc. IR Receiver
        Apple Inc. Built-in iSight
    Firewire Information: ℹ️
        Drobo Rev2 800mbit - 800mbit max
            EFI (disk5s1) <not mounted> : 210 MB
            Drobo (disk5s2) /Volumes/Drobo : 17.59 TB (16.17 TB free)
    Configuration files: ℹ️
        /etc/hosts - Count: 1
    Gatekeeper: ℹ️
        Mac App Store and identified developers
    Adware: ℹ️
        Geneio [Adware! - Remove]
    Kernel Extensions: ℹ️
            /Applications/Toast 10 Titanium/Toast Titanium.app
        [not loaded]    com.roxio.BluRaySupport (1.1.6) [Click for support]
            /DiskWarrior.app
        [not loaded]    com.alsoft.Preview (4.3) [Click for support]
            /Library/Extensions
        [loaded]    com.TrustedData.driver.VendorSpecificType00 (1.7.0 - SDK 10.7) [Click for support]
        [not loaded]    com.drobo.SCSI.ThunderBolt (1.1 [72278] - SDK 10.8) [Click for support]
        [loaded]    com.squirrels.airparrot.framebuffer (3 - SDK 10.8) [Click for support]
        [loaded]    com.squirrels.driver.AirParrotSpeakers (1.8 - SDK 10.8) [Click for support]
        [not loaded]    com.wacom.kext.ftdi (1 - SDK 10.10) [Click for support]
        [loaded]    org.virtualbox.kext.VBoxDrv (4.0.8) [Click for support]
        [not loaded]    org.virtualbox.kext.VBoxNetAdp (4.0.8) [Click for support]
        [not loaded]    org.virtualbox.kext.VBoxNetFlt (4.0.8) [Click for support]
        [loaded]    org.virtualbox.kext.VBoxUSB (4.0.8) [Click for support]
            /SafariDownloads/LCC Installer.app
        [not loaded]    com.Logitech.Control Center.HID Driver (2.4.0) [Click for support]
            /System/Library/Extensions
        [not loaded]    com.AmbrosiaSW.AudioSupport (4.1.2 - SDK 10.6) [Click for support]
        [loaded]    com.attotech.driver.ATTOiSCSI (3.4.1b1 - SDK 10.6) [Click for support]
        [not loaded]    com.paceap.kext.pacesupport.master (5.6.1) [Click for support]
        [not loaded]    com.palm.ClassicNotSeizeDriver (3.2.1) [Click for support]
        [not loaded]    com.wacom.kext.pentablet (5.3.6 - SDK 10.9) [Click for support]
        [not loaded]    com.wacom.kext.wacomtablet (6.3.11 - SDK 10.9) [Click for support]
        [not loaded]    tw.com.sitronix.driver.USBMassStorageClass (1.0.0) [Click for support]
            /System/Library/Extensions/PACESupportFamily.kext/Contents/PlugIns
        [not loaded]    com.paceap.kext.pacesupport.leopard (5.6.1) [Click for support]
        [not loaded]    com.paceap.kext.pacesupport.panther (5.6.1) [Click for support]
        [not loaded]    com.paceap.kext.pacesupport.tiger (5.6.1) [Click for support]
            /Users/[redacted]/Library/Services/ToastIt.service/Contents/MacOS
        [not loaded]    com.roxio.TDIXController (2.0) [Click for support]
    Startup Items: ℹ️
        PACESupport: Path: /Library/StartupItems/PACESupport
        ProTec6: Path: /Library/StartupItems/ProTec6
        ProTec6b: Path: /Library/StartupItems/ProTec6b
        RetroRun: Path: /Library/StartupItems/RetroRun
        VirtualBox: Path: /Library/StartupItems/VirtualBox
        Startup items are obsolete in OS X Yosemite
    Launch Agents: ℹ️
        [not loaded]    com.adobe.AAM.Updater-1.0.plist [Click for support]
        [running]    com.adobe.AdobeCreativeCloud.plist [Click for support]
        [loaded]    com.google.keystone.agent.plist [Click for support]
        [running]    com.micromat.TechToolProAgent.plist [Click for support]
        [loaded]    com.oracle.java.Java-Updater.plist [Click for support]
        [running]    com.wacom.pentablet.plist [Click for support]
        [running]    com.wacom.wacomtablet.plist [Click for support]
        [loaded]    com.xrite.device.softwareupdate.plist [Click for support]
    Launch Daemons: ℹ️
        [running]    com.adobe.adobeupdatedaemon.plist [Click for support]
        [loaded]    com.adobe.fpsaud.plist [Click for support]
        [loaded]    com.ambrosiasw.ambrosiaaudiosupporthelper.daemon.plist [Click for support]
        [not loaded]    com.attotech.iscsid.plist [Click for support]
        [loaded]    com.barebones.authd.plist [Click for support]
        [loaded]    com.barebones.bbedit.plist [Click for support]
        [loaded]    com.charlessoft.pacifist.helper.plist [Click for support]
        [running]    com.datarobotics.ddservice64d.plist [Click for support]
        [running]    com.freemacsoft.appcleanerdaemon.plist [Click for support]
        [failed]    com.google.GoogleML.plist [Click for support]
        [loaded]    com.google.keystone.daemon.plist [Click for support]
        [loaded]    com.micromat.TechToolProDaemon.plist [Click for support]
        [loaded]    com.oracle.java.Helper-Tool.plist [Click for support]
        [loaded]    com.oracle.java.JavaUpdateHelper.plist [Click for support]
        [loaded]    com.prosofteng.DriveGenius.locum.plist [Click for support]
        [not loaded]    com.squirrels.kextinstaller.plist [Click for support]
        [running]    com.starfield.backupservice.plist [Click for support]
        [running]    com.xrite.device.xrdd.plist [Click for support]
        [failed]    openbase.plist [Click for support]
        [failed]    PACESupport.plist [Click for support]
    User Launch Agents: ℹ️
        [loaded]    com.adobe.AAM.Updater-1.0.plist [Click for support]
        [loaded]    com.adobe.ARM.[...].plist [Click for support]
        [loaded]    com.adobe.ARM.[...].plist [Click for support]
        [failed]    com.adobe.ARM.[...].plist [Click for support]
        [running]    com.akamai.single-user-client.plist [Click for support]
        [running]    com.c-command.SpamSieve.LaunchAgent.plist [Click for support]
        [running]    com.prosofteng.DGMonitor.plist [Click for support]
        [loaded]    com.valvesoftware.steamclean.plist [Click for support]
        [running]    openlaunch.plist [Click for support]
        [not loaded]    org.virtualbox.vboxwebsrv.plist [Click for support]
        [running]    ws.agile.1PasswordAgent.plist [Click for support]
    User Login Items: ℹ️
        WBE Desktop Notifier.App    Application  (/Applications/WBE Desktop Notifier.App)
        WorkspaceUpdate    Application Hidden (/Applications/Workspace/WorkspaceUpdate.app)
        System Events    Application  (/System/Library/CoreServices/System Events.app)
        Dropbox    Application  (/Applications/Dropbox.app)
        ColorMunkiDisplayTray    Application  (/Library/Application Support/Colormunki/Display/Tools/ColorMunkiDisplayTray.app)
        AdobeResourceSynchronizer    Application Hidden (/Applications/Adobe Reader.app/Contents/Support/AdobeResourceSynchronizer.app)
        500px Uploader    Application  (/Applications/500px Uploader.app)
        Caffeine    Application  (/Applications/Caffeine.app)
        AdobeResourceSynchronizer    Application Hidden (/Applications/Adobe Reader.app/Contents/Support/AdobeResourceSynchronizer.app)
        NoteBookHelper    Application  (/Users/[redacted]/Library/Services/NoteBookHelper.service)
        EEventManager    Application Hidden (/Applications/Epson Software/Event Manager.app/Contents/Resources/Assistants/Event Manager/EEventManager.app)
        ConnectService    Application Hidden (/Library/Application Support/ArcSoft/Connect Service/ConnectService.app)
    Internet Plug-ins: ℹ️
        UploaderForCiG: Version: 1.1.3.10 [Click for support]
        Google Earth Web Plug-in: Version: 6.0 [Click for support]
        Default Browser: Version: 600 - SDK 10.10
        Flip4Mac WMV Plugin: Version: 2.3.1.2 [Click for support]
        RealPlayer Plugin: Version: Unknown
        AdobeAAMDetect: Version: AdobeAAMDetect 2.0.0.0 - SDK 10.7 [Click for support]
        FlashPlayer-10.6: Version: 17.0.0.134 - SDK 10.6 [Click for support]
        AdobePDFViewerNPAPI: Version: 11.0.10 - SDK 10.6 [Click for support]
        Silverlight: Version: 5.1.10411.0 - SDK 10.6 [Click for support]
        Flash Player: Version: 17.0.0.134 - SDK 10.6 [Click for support]
        iPhotoPhotocast: Version: 7.0 - SDK 10.8
        QuickTime Plugin: Version: 7.7.3
        WacomTabletPlugin: Version: WacomTabletPlugin 2.1.0.6 - SDK 10.9 [Click for support]
        AdobePDFViewer: Version: 11.0.10 - SDK 10.6 [Click for support]
        CANONiMAGEGATEWAYDL: Version: 3.1.0.2 [Click for support]
        EPPEX Plugin: Version: 10.0 [Click for support]
        JavaAppletPlugin: Version: Java 8 Update 40 Check version
    User internet Plug-ins: ℹ️
        WbeTools64_14: Version: 1.0.23.53 © 2013 - SDK 10.6 [Click for support]
        CitrixOnlineWebDeploymentPlugin: Version: 1.0.92 [Click for support]
        Google Earth Web Plug-in: Version: 7.1 [Click for support]
        fileEditTool64_15: Version: 1.0.35.65 © 2013 - SDK 10.6 [Click for support]
    Safari Extensions: ℹ️
        TinEye
        Firebug Lite for Safari
        Translate
        Validator
        WOT
        Twitter for Safari
        1Password
        Adblock Plus
        LittleSnapper
    3rd Party Preference Panes: ℹ️
        Akamai NetSession Preferences  [Click for support]
        RCDefaultApp
        Flash Player  [Click for support]
        Flip4Mac WMV  [Click for support]
        GeekTool  [Click for support]
        Growl  [Click for support]
        Java  [Click for support]
        MenuMeters  [Click for support]
        OpenBasePreferences  [Click for support]
        Shades Preferences  [Click for support]
        TechTool Protection  [Click for support]
        WacomTablet  [Click for support]
    Time Machine: ℹ️
        Skip System Files: NO
        Mobile backups: OFF
        Auto backup: YES
        Volumes being backed up:
             : Disk size: 499.25 GB Disk used: 367.05 GB
            ssd: Disk size: 7.60 GB Disk used: 432 MB
        Destinations:
            time_machine [Local]
            Total size: 1.50 TB
            Total number of backups: 82
            Oldest backup: 2014-02-17 10:31:54 +0000
            Last backup: 2015-03-30 11:33:00 +0000
            Size of backup disk: Adequate
                Backup size 1.50 TB > (Disk used 367.49 GB X 3)
    Top Processes by CPU: ℹ️
             3%    WindowServer
             1%    ConnectService
             0%    ColorMunkiDisplayTray
             0%    fontd
             0%    AppleSpell
    Top Processes by Memory: ℹ️
        447 MB    softwareupdated
        412 MB    mds_stores
        378 MB    Image Capture Extension
        206 MB    ColorMunkiDisplayTray
        103 MB    Spotlight
    Virtual Memory Information: ℹ️
        9.34 GB    Free RAM
        3.89 GB    Active RAM
        2.64 GB    Inactive RAM
        1.31 GB    Wired RAM
        6.21 GB    Page-ins
        0 B    Page-outs
    Diagnostics Information: ℹ️
        Mar 29, 2015, 11:48:47 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/Finder_2015-03-29-234847_[reda cted].crash
        Mar 29, 2015, 11:46:30 PM    Self test - passed
        Mar 29, 2015, 05:20:10 PM    /Library/Logs/DiagnosticReports/Finder_2015-03-29-172010_[redacted].cpu_resourc e.diag [Click for details]
        Mar 29, 2015, 12:05:16 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/Finder_2015-03-29-000516_[reda cted].crash
        Mar 28, 2015, 10:18:05 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/Adobe Photoshop CC 2014_2015-03-28-221805_[redacted].crash
    Any help appreciated
    Best regards
    Toni

    and the results!!
    Start time: 12:01:07 03/31/15
    Revision: 1309
    Model Identifier: iMac11,2
    System Version: OS X 10.10.2 (14C1514)
    Kernel Version: Darwin 14.1.0
    Time since boot: 1 day12:15
    UID: 501
    Memory
        BANK 0/DIMM0
          Size: 4 GB
          Speed: 1333 MHz
          Status: OK
          Manufacturer: 0x857F
        BANK 1/DIMM0
          Size: 4 GB
          Speed: 1333 MHz
          Status: OK
          Manufacturer: 0x857F
        BANK 0/DIMM1
          Size: 4 GB
          Speed: 1333 MHz
          Status: OK
          Manufacturer: 0x857F
        BANK 1/DIMM1
          Size: 4 GB
          Speed: 1333 MHz
          Status: OK
          Manufacturer: 0x857F
    SerialATA
        ST3500418AS                            
    FireWire
        Rev2 (Drobo)
    USB
        ColorMunki Display (X-Rite Incorporated)
        My Book (Western Digital Technologies, Inc.)
        My Book 1110 (Western Digital Technologies, Inc.)
    Bluetooth
        Apple Wireless Keyboard
        Apple Wireless Trackpad
    System errors (per sec)
        xrdd (UID 0, error 60): 240
    Memory (MB)
        kernel_task (UID 0): 1247
    Font issues: 54
    Firewall: On
    Listeners
        kdc: kerberos
        launchd: afpovertcp
        launchd: microsoft-ds
    System caches/logs
        1.9 GiB: /System/Library/Caches/com.apple.coresymbolicationd/data
    Diagnostic reports
        2015-03-02 2BUA8C4S2C.com.agilebits.onepassword4-helper crash
        2015-03-04 ColorMunkiDisplayTray crash
        2015-03-04 garcon crash
        2015-03-05 AdobeCrashDaemon crash
        2015-03-08 syspolicyd crash
        2015-03-10 Adobe Photoshop CC 2014 crash
        2015-03-11 2BUA8C4S2C.com.agilebits.onepassword4-helper crash
        2015-03-11 AdobeCrashDaemon crash
        2015-03-12 2BUA8C4S2C.com.agilebits.onepassword4-helper crash
        2015-03-12 ColorMunkiDisplayTray crash
        2015-03-15 2BUA8C4S2C.com.agilebits.onepassword4-helper crash
        2015-03-17 Preview crash
        2015-03-18 Adobe Photoshop CC 2014 crash
        2015-03-18 Mail crash
        2015-03-22 ColorMunkiDisplayTray crash
        2015-03-23 TextEdit crash
        2015-03-24 AdobeCrashDaemon crash
        2015-03-27 ColorMunkiDisplayTray crash
        2015-03-29 Adobe Photoshop CC 2014 crash
        2015-03-29 Finder crash
        2015-03-30 Finder crash
        2015-03-31 AdobeCrashDaemon crash x2
        2015-03-31 ColorMunkiDisplayTray crash
        2015-03-31 Core Sync crash
    HID errors: 6
    Kernel log
        Mar 25 13:29:35 PM notification timeout (pid 385, Creative Cloud)
        Mar 25 13:29:35 PM notification timeout (pid 488, Adobe CEF Helper)
        Mar 25 13:29:35 PM notification timeout (pid 489, Adobe CEF Helper)
        Mar 28 23:49:47 SAM Multimedia: READ or WRITE failed, SENSE_KEY = 0x05, ASC = 0x24, ASCQ = 0x00
        Mar 28 23:49:47 SAM Multimedia: READ or WRITE failed, SENSE_KEY = 0x05, ASC = 0x24, ASCQ = 0x00
        Mar 28 23:49:47 SAM Multimedia: READ or WRITE failed, SENSE_KEY = 0x05, ASC = 0x24, ASCQ = 0x00
        Mar 28 23:49:47 SAM Multimedia: READ or WRITE failed, SENSE_KEY = 0x05, ASC = 0x24, ASCQ = 0x00
        Mar 28 23:49:47 SAM Multimedia: READ or WRITE failed, SENSE_KEY = 0x05, ASC = 0x24, ASCQ = 0x00
        Mar 28 23:51:20 proc 452: load code signature error 4 for file "NoteBookHelper"
        Mar 28 23:59:40 SAM Multimedia: READ or WRITE failed, SENSE_KEY = 0x05, ASC = 0x24, ASCQ = 0x00
        Mar 28 23:59:40 SAM Multimedia: READ or WRITE failed, SENSE_KEY = 0x05, ASC = 0x24, ASCQ = 0x00
        Mar 28 23:59:40 SAM Multimedia: READ or WRITE failed, SENSE_KEY = 0x05, ASC = 0x24, ASCQ = 0x00
        Mar 28 23:59:40 SAM Multimedia: READ or WRITE failed, SENSE_KEY = 0x05, ASC = 0x24, ASCQ = 0x00
        Mar 28 23:59:40 SAM Multimedia: READ or WRITE failed, SENSE_KEY = 0x05, ASC = 0x24, ASCQ = 0x00
        Mar 29 00:00:43 utun_start: ifnet_disable_output returned error 12
        Mar 29 00:06:03 proc 502: load code signature error 4 for file "NoteBookHelper"
        Mar 30 21:15:22 proc 3070: load code signature error 4 for file "NoteBookHelper"
        Mar 30 21:40:19 proc 3781: load code signature error 4 for file "NoteBookHelper"
    System log
        Mar 31 11:26:16 revisiond: CKCreateStoredFile failed for "/Volumes/Drobo/.DocumentRevisions-V100/PerUID/501/9/com.apple.documentVersions /UUID.pages"
        Mar 31 11:26:16 revisiond: sqlite3_step failed: 11 database disk image is malformed
        Mar 31 11:26:16 revisiond: _CSInsertChunk failed, i:0, count:1
        Mar 31 11:26:16 revisiond: _CSStoreChunks failed, batchIndex:0, batchCount:1
        Mar 31 11:26:16 revisiond: CKCreateStoredFile failed for "/Volumes/Drobo/.DocumentRevisions-V100/PerUID/501/9/com.apple.documentVersions /UUID.pages"
        Mar 31 11:26:16 revisiond: sqlite3_step failed: 11 database disk image is malformed
        Mar 31 11:26:16 revisiond: _CSInsertChunk failed, i:0, count:1
        Mar 31 11:26:16 revisiond: _CSStoreChunks failed, batchIndex:0, batchCount:1
        Mar 31 11:26:16 revisiond: CKCreateStoredFile failed for "/Volumes/Drobo/.DocumentRevisions-V100/PerUID/501/9/com.apple.documentVersions /UUID.pages"
        Mar 31 11:26:16 revisiond: sqlite3_step failed: 11 database disk image is malformed
        Mar 31 11:26:16 revisiond: _CSInsertChunk failed, i:0, count:1
        Mar 31 11:26:16 revisiond: _CSStoreChunks failed, batchIndex:0, batchCount:1
        Mar 31 11:26:16 revisiond: CKCreateStoredFile failed for "/Volumes/Drobo/.DocumentRevisions-V100/PerUID/501/9/com.apple.documentVersions /UUID.pages"
        Mar 31 11:26:16 revisiond: sqlite3_step failed: 11 database disk image is malformed
        Mar 31 11:26:16 revisiond: _CSInsertChunk failed, i:0, count:1
        Mar 31 11:26:16 revisiond: _CSStoreChunks failed, batchIndex:0, batchCount:1
        Mar 31 11:26:16 revisiond: CKCreateStoredFile failed for "/Volumes/Drobo/.DocumentRevisions-V100/PerUID/501/9/com.apple.documentVersions /UUID.pages"
        Mar 31 11:27:20 WindowServer: WSGetSurfaceInWindow : Invalid surface 1029194250 for window 344
        Mar 31 11:27:20 WindowServer: WSGetSurfaceInWindow : Invalid surface 1029194250 for window 344
        Mar 31 11:27:20 WindowServer: WSGetSurfaceInWindow : Invalid surface 1029194250 for window 344
        Mar 31 11:29:19 WindowServer: WSGetSurfaceInWindow : Invalid surface 1006832658 for window 379
        Mar 31 11:29:19 WindowServer: WSGetSurfaceInWindow : Invalid surface 1006832658 for window 379
        Mar 31 11:29:50 fseventsd: Logging disabled completely for device:1: /Volumes/Recovery HD
        Mar 31 11:58:29 cloudd: Stream 0x7faea5920350 is sending an event before being opened
        Mar 31 11:59:26 WindowServer: WSBindSurface : Invalid surface 1037321041 for window 386
    launchd log
        Mar 29 17:23:12 com.apple.xpc.launchd.domain.user.loginwindow.77.4294967295: Could not import service from caller: caller = PenTabletDriver.228, service = com.wacom.TabletDriver.197412, error = 134: Service cannot load in requested session
        Mar 29 17:23:13 com.apple.xpc.launchd.domain.user.loginwindow.77.4294967295: Could not import service from caller: caller = WacomTabletDriv.229, service = com.wacom.TabletDriver.569168, error = 134: Service cannot load in requested session
        Mar 29 17:25:13 com.apple.xpc.launchd.user.501.100005.Aqua: Could not import service from caller: caller = otherbsd.283, service = com.rockysandstudio.FreeMemory.FreeMemoryLaunchHelper, error = 119: Service is disabled
        Mar 29 17:25:13 com.apple.xpc.launchd.user.501.100005.Aqua: Could not import service from caller: caller = otherbsd.283, service = com.freemacsoft.AppCleaner-Helper, error = 119: Service is disabled
        Mar 30 07:28:36 com.apple.xpc.launchd.domain.system: Could not import service from caller: caller = xrdd.65, service = com.xrite.device.X-Rite-Device-Services.136068.UUID, error = 134: Service cannot load in requested session
        Mar 30 09:26:10 com.adobe.ARM.UUID: Interval spawn of service failed: 139: Service cannot presently execute
        Mar 30 18:52:09 com.apple.xpc.launchd.domain.system: Could not import service from caller: caller = xrdd.65, service = com.xrite.device.X-Rite-Device-Services.136068.UUID, error = 134: Service cannot load in requested session
        Mar 30 21:12:51 com.apple.xpc.launchd.domain.user.loginwindow.2857.4294967295: Could not import service from caller: caller = PenTabletDriver.2871, service = com.wacom.ConsumerTouchDriver.197128, error = 134: Service cannot load in requested session
        Mar 30 21:12:57 com.apple.xpc.launchd.domain.user.loginwindow.2857.4294967295: Could not import service from caller: caller = PenTabletDriver.2871, service = com.wacom.TabletDriver.197412, error = 134: Service cannot load in requested session
        Mar 30 21:15:15 com.apple.xpc.launchd.user.501.100045.Aqua: Could not import service from caller: caller = otherbsd.2933, service = com.rockysandstudio.FreeMemory.FreeMemoryLaunchHelper, error = 119: Service is disabled
        Mar 30 21:15:15 com.apple.xpc.launchd.user.501.100045.Aqua: Could not import service from caller: caller = otherbsd.2933, service = com.freemacsoft.AppCleaner-Helper, error = 119: Service is disabled
        Mar 30 21:21:26 com.apple.xpc.launchd.domain.user.loginwindow.3240.4294967295: Could not import service from caller: caller = PenTabletDriver.3253, service = com.wacom.ConsumerTouchDriver.197128, error = 134: Service cannot load in requested session
        Mar 30 21:21:27 com.apple.xpc.launchd.domain.user.loginwindow.3240.4294967295: Could not import service from caller: caller = PenTabletDriver.3253, service = com.wacom.TabletDriver.197412, error = 134: Service cannot load in requested session
        Mar 30 21:22:07 com.apple.xpc.launchd.user.505.100055.Aqua: Could not read path: path = /Users/USER/Library/LaunchAgents, error = 2: No such file or directory
        Mar 30 21:22:07 com.apple.xpc.launchd.user.505.100055.Aqua: Could not import service from caller: caller = otherbsd.3307, service = com.rockysandstudio.FreeMemory.FreeMemoryLaunchHelper, error = 119: Service is disabled
        Mar 30 21:22:07 com.apple.xpc.launchd.user.505.100055.Aqua: Could not import service from caller: caller = otherbsd.3307, service = com.apple.photostream-agent, error = 119: Service is disabled
        Mar 30 21:22:07 com.apple.xpc.launchd.user.505.100055.Aqua: Could not import service from caller: caller = otherbsd.3307, service = com.rockysandstudio.Memory-Diag.Launch-Helper, error = 119: Service is disabled
        Mar 30 21:26:46 com.apple.internetaccounts: GUI session does not exist for service to join. It will be spawned without access to the GUI.
        Mar 30 21:39:35 com.apple.xpc.launchd.domain.user.loginwindow.3585.4294967295: Could not import service from caller: caller = PenTabletDriver.3603, service = com.wacom.ConsumerTouchDriver.197128, error = 134: Service cannot load in requested session
        Mar 30 21:39:37 com.apple.xpc.launchd.domain.user.loginwindow.3585.4294967295: Could not import service from caller: caller = PenTabletDriver.3603, service = com.wacom.TabletDriver.197412, error = 134: Service cannot load in requested session
        Mar 30 21:40:13 com.apple.xpc.launchd.user.501.100069.Aqua: Could not import service from caller: caller = otherbsd.3653, service = com.rockysandstudio.FreeMemory.FreeMemoryLaunchHelper, error = 119: Service is disabled
        Mar 30 21:40:13 com.apple.xpc.launchd.user.501.100069.Aqua: Could not import service from caller: caller = otherbsd.3653, service = com.freemacsoft.AppCleaner-Helper, error = 119: Service is disabled
        Mar 31 01:10:18 com.adobe.ARM.UUID: Interval spawn of service failed: 139: Service cannot presently execute
        Mar 31 11:26:11 com.apple.xpc.launchd.domain.system: Could not import service from caller: caller = xrdd.65, service = com.xrite.device.X-Rite-Device-Services.136068.UUID, error = 134: Service cannot load in requested session
        Mar 31 11:26:11 com.apple.xpc.launchd.domain.system: Attempt to spawn app in non-GUI domain: caller = xrdd.65, label = [0x0-0x1dd1dd].com.xrite.device.X-Rite-Device-Services
    Console log
        Mar 25 00:09:02 mdworker: Error loading /Applications/GarageBand.app/Contents/Library/Spotlight/GarageBandSpotlightImpo rter.mdimporter/Contents/MacOS/GarageBandSpotlightImporter:  dlopen(/Applications/GarageBand.app/Contents/Library/Spotlight/GarageBandSpotli ghtImporter.mdimporter/Contents/MacOS/GarageBandSpotlightImporter, 262): Library not loaded: @rpath/MAFiles.framework/Versions/A/MAFiles
         Referenced from: /Applications/GarageBand.app/Contents/Library/Spotlight/GarageBandSpotlightImpo rter.mdimporter/Contents/MacOS/GarageBandSpotlightImporter
         Reason: image not found
        Mar 29 13:30:43 fontd: Failed to open read-only database, regenerating DB
    Loaded kernel extensions
        com.TrustedData.driver.VendorSpecificType00 (1.7.0)
        com.attotech.driver.ATTOiSCSI (3.4.1b1)
        com.squirrels.airparrot.framebuffer (3)
        com.squirrels.driver.AirParrotSpeakers (1.8)
        org.virtualbox.kext.VBoxDrv (4.0.8)
        org.virtualbox.kext.VBoxUSB (4.0.8)
    System services loaded
        com.adobe.adobeupdatedaemon
        com.adobe.fpsaud
        com.ambrosiasw.ambrosiaaudiosupporthelper.daemon
        com.apple.Kerberos.kdc
        - status: 1
        com.apple.watchdogd
        com.barebones.authd
        com.barebones.bbedit
        com.charlessoft.pacifist.helper
        com.datarobotics.ddservice64d
        com.freemacsoft.appcleanerdaemon
        com.google.GoogleML
        - status: 1
        com.google.keystone.daemon
        com.micromat.TechToolProDaemon
        com.oracle.java.Helper-Tool
        com.oracle.java.JavaUpdateHelper
        com.paceap.pacesupport
        - status: 71
        com.prosofteng.DriveGenius.locum
        com.starfield.backupservice
        com.xrite.device.xrdd.plist
    System services disabled
        com.apple.xgridcontrollerd
        com.apple.distccd
        com.openssh.sshd
        org.samba.winbindd
        com.apple.mrt
        com.apple.xprotectupdater
        com.apple.dnbvolunteerd
        com.apple.dnbobserverd
        com.apple.xgridagentd
        com.apple.configureLocalKDC
        org.samba.nmbd
        com.symantec.deepsight-extractor
    Login services loaded
        2BUA8C4S2C.com.agilebits.onepassword4-helper
        com.adobe.AAM.Scheduler-1.0
        com.adobe.ARM.UUID
        com.adobe.ARM.UUID
        com.adobe.ARM.UUID
        - status: 78
        com.adobe.AdobeCreativeCloud
        com.akamai.single-user-client
        com.apple.mrt.uiagent
        com.c-command.SpamSieve.LaunchAgent
        com.google.keystone.system.agent
        com.micromat.TechToolProAgent
        com.openbase.com.openlaunch
        com.oracle.java.Java-Updater
        com.prosofteng.DGMonitor
        com.rockysandstudio.Memory-Diag.Launch-Helper
        com.valvesoftware.steamclean
        com.wacom.pentablet
        com.xrite.device.softwareupdate.plist
    Login services disabled
        com.rockysandstudio.FreeMemory.FreeMemoryLaunchHelper
    User services loaded
        com.apple.MailServiceAgent
        - status: -9
    User services disabled
        com.rockysandstudio.FreeMemory.FreeMemoryLaunchHelper
    Startup items
        /Library/StartupItems/PACESupport/PACESupport
        /Library/StartupItems/PACESupport/Resources/PACESupport.plist
        /Library/StartupItems/PACESupport/StartupParameters.plist
        /Library/StartupItems/ProTec6/DemoOver
        /Library/StartupItems/ProTec6/Nalpeirond6
        /Library/StartupItems/ProTec6/ProTec6
        /Library/StartupItems/ProTec6/StartupParameters.plist
        /Library/StartupItems/ProTec6b/DemoOver
        /Library/StartupItems/ProTec6b/Nalpeirond6b
        /Library/StartupItems/ProTec6b/ProTec6b
        /Library/StartupItems/ProTec6b/StartupParameters.plist
        /Library/StartupItems/RetroRun/RetroRun
        /Library/StartupItems/RetroRun/StartupParameters.plist
        /Library/StartupItems/VirtualBox/StartupParameters.plist
        /Library/StartupItems/VirtualBox/VirtualBox
    Global login items
        /Applications/Epson Software/Event Manager.app/Contents/Resources/Assistants/Event Manager/EEventManager.app
        /Library/Application Support/ArcSoft/Connect Service/ConnectService.app
    User login items
        WBE Desktop Notifier.App
        - /Applications/WBE Desktop Notifier.App
        WorkspaceUpdate
        - /Applications/Workspace/WorkspaceUpdate.app
        System Events
        - /System/Library/CoreServices/System Events.app
        Dropbox
        - /Applications/Dropbox.app
        ColorMunkiDisplayTray
        - /Library/Application Support/Colormunki/Display/Tools/ColorMunkiDisplayTray.app
        AdobeResourceSynchronizer
        - /Applications/Adobe Reader.app/Contents/Support/AdobeResourceSynchronizer.app
        500px Uploader
        - /Applications/500px Uploader.app
        Caffeine
        - /Applications/Caffeine.app
        AdobeResourceSynchronizer
        - /Applications/Adobe Reader.app/Contents/Support/AdobeResourceSynchronizer.app
        NoteBookHelper
        - /Users/USER/Library/Services/NoteBookHelper.service
        EEventManager
        - /Applications/Epson Software/Event Manager.app/Contents/Resources/Assistants/Event Manager/EEventManager.app
        ConnectService
        - /Library/Application Support/ArcSoft/Connect Service/ConnectService.app
    Safari extensions
        1Password
        - com.agilebits.onepassword4-safari
        Adblock Plus
        - org.adblockplus.adblockplussafari
        Amazon Shopping Assistant
        - com.spigot.safari.amazonshopassist
        Firebug Lite for Safari
        - com.slicefactory.firebug
        LittleSnapper
        - com.realmacsoftware.safari.littlesnapper
        TinEye
        - com.ideeinc.tineye
        Translate
        - com.sidetree.Translate
        Twitter for Safari
        - com.twitter.safari-extension
        Validator
        - be.grincheux.validator
        WOT
        - com.wotservicesoy.wot
    Firefox extensions
        Clipmarks
        StumbleUpon
        Pocket
        Live HTTP Headers
        United States English Spellchecker
        Adblock Plus
    Widgets
        NationalParksLodging
        PEMDAS
        iStock
    iCloud errors
        bird 318
        cloudd 36
        comapple.InputMethodKit.UserDictionary 1
        Activity Monitor 1
    Continuity errors
        sharingd 2
    Restricted files: 48762
    Lockfiles: 50
    Accessibility
        Cursor Magnification: On
        Keyboard Zoom: On
        Scroll Zoom: On
    Contents of /Library/LaunchAgents/com.micromat.TechToolProAgent.plist
        - mod date: Apr  5 07:41:53 2011
        - size (B): 476
        - checksum: 2018225105
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>RunAtLoad</key>
        <true/>
        <key>Label</key>
        <string>com.micromat.TechToolProAgent</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/PreferencePanes/TechTool Protection.prefPane/Contents/PlugIns/TechToolProAgent.app/Contents/MacOS/TechTo olProAgent</string>
        </array>
        </dict>
        </plist>
    Contents of /Library/LaunchAgents/com.oracle.java.Java-Updater.plist
        - mod date: Sep  5 13:00:55 2013
        - size (B): 104
        - checksum: 2646026733
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.oracle.java.Java-Updater</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/Internet Plug-Ins/JavaAppletPlugin.plugin/Contents/Resources/Java Updater.app/Contents/MacOS/Java Updater</string>
        <string>-bgcheck</string>
        </array>
        <key>StandardErrorPath</key>
        <string>/dev/null</string>
        <key>StandardOutPath</key>
        <string>/dev/null</string>
        <key>StartCalendarInterval</key>
        <dict>
        <key>Hour</key>
        <integer>9</integer>
        <key>Minute</key>
        <integer>33</integer>
        <key>Weekday</key>
        <integer>5</integer>
        </dict>
        </dict>
        ...and 1 more line(s)
    Contents of /Library/LaunchAgents/com.wacom.pentablet.plist
        - mod date: Dec 23 15:59:49 2014
        - size (B): 708
        - checksum: 3556858023
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>EnvironmentVariables</key>
        <dict>
        <key>RUN_WITH_LAUNCHD</key>
        <string>1</string>
        </dict>
        <key>KeepAlive</key>
        <dict>
        <key>SuccessfulExit</key>
        <true/>
        </dict>
        <key>Label</key>
        <string>com.wacom.pentablet</string>
        <key>LimitLoadToSessionType</key>
        <array>
        <string>Aqua</string>
        <string>LoginWindow</string>
        </array>
        <key>Program</key>
        <string>/Library/Application Support/Tablet/PenTabletSpringboard</string>
        <key>RunAtLoad</key>
        <true/>
        ...and 4 more line(s)
    Contents of /Library/LaunchAgents/com.xrite.device.softwareupdate.plist
        - mod date: Oct 22 16:18:19 2013
        - size (B): 645
        - checksum: 3055576921
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.xrite.device.softwareupdate.plist</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/Application Support/X-Rite/Frameworks/XRiteDevice.framework/Versions/B/Resources/XRD Software Update.app/Contents/MacOS/XRD Software Update</string>
        </array>
        <key>RunAtLoad</key>
        <false/>
        <key>StartCalendarInterval</key>
        <dict>
        <key>Hour</key>
        <integer>9</integer>
        <key>Minute</key>
        <integer>0</integer>
        </dict>
        </dict>
        </plist>
    Contents of /Library/LaunchDaemons/PACESupport.plist
        - mod date: Feb 15 03:00:00 2008
        - size (B): 450
        - checksum: 1658798800
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN"
                 "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.paceap.pacesupport</string>
        <key>ProgramArguments</key>
        <array>
        <string>/System/Library/Extensions/PACESupportFamily.kext/Contents/Resources/pa ceload</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        </dict>
        </plist>
    Contents of /Library/LaunchDaemons/com.ambrosiasw.ambrosiaaudiosupporthelper.daemon.plist
        - mod date: Dec 21 11:32:33 2012
        - size (B): 780
        - checksum: 1980407752
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.ambrosiasw.ambrosiaaudiosupporthelper.daemon</string>
        <key>ProgramArguments</key>
        <array>
        <string>/System/Library/Extensions/AmbrosiaAudioSupport.kext/Contents/MacOS/amb rosiaaudiosupporthelper</string>
        </array>
        <key>KeepAlive</key>
        <false/>
        <key>Disabled</key>
        <false/>
        <key>LaunchEvents</key>
        <dict>
        <key>com.apple.iokit.matching</key>
        <dict>
        <key>AmbrosiaAudioSupport</key>
        <dict>
        <key>IOMatchLaunchStream</key>
        <true/>
        <key>IOProviderClass</key>
        <string>com_AmbrosiaSW_AudioSupport</string>
        </dict>
        ...and 4 more line(s)
    Contents of /Library/LaunchDaemons/com.attotech.iscsid.plist
        - mod date: Mar 29 23:45:06 2015
        - size (B): 1108
        - checksum: 4278398742
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>GroupName</key>
        <string>wheel</string>
        <key>KeepAlive</key>
        <dict>
        <key>SuccessfulExit</key>
        <true/>
        </dict>
        <key>Label</key>
        <string>com.attotech.iscsid</string>
        <key>LaunchOnlyOnce</key>
        <true/>
        <key>OnDemand</key>
        <false/>
        <key>ProgramArguments</key>
        <array>
        <string>/usr/sbin/xtendsan/iscsid</string>
        <string>-d</string>
        <string>-J-Djava.security.policy=/usr/sbin/xtendsan/iscsid.sec</string>
        <string>-J-Dcom.attotech.iscsid.discovery.verbose=true</string>
        <string>--J-Dcom.attotech.iscsid.logLevel=VERBOSE</string>
        <string>--J-Dcom.attotech.iscsid.discovery.MaxRecvDataSegmentLength=512</string >
        ...and 12 more line(s)
    Contents of /Library/LaunchDaemons/com.barebones.authd.plist
        - mod date: Jan 23 12:23:21 2012
        - size (B): 634
        - checksum: 1995816654
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>EnableTransactions</key>
        <true/>
        <key>Label</key>
        <string>com.barebones.authd</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/PrivilegedHelperTools/com.barebones.authd</string>
        </array>
        <key>Sockets</key>
        <dict>
        <key>com.barebones.authd.socket</key>
        <dict>
        <key>SockPathMode</key>
        <integer>438</integer>
        <key>SockPathName</key>
        <string>/var/tmp/com.barebones.authd.socket</string>
        </dict>
        </dict>
        </dict>
        </plist>
    Contents of /Library/LaunchDaemons/com.barebones.bbedit.plist
        - mod date: Aug 31 20:37:00 2009
        - size (B): 784
        - checksum: 3691224471
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Disabled</key>
        <true/>
        <key>Label</key>
        <string>com.barebones.bbedit</string>
        <key>OnDemand</key>
        <true/>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/PrivilegedHelperTools/com.barebones.bbedit</string>
        </array>
        <key>ServiceIPC</key>
        <true/>
        <key>Sockets</key>
        <dict>
        <key>MasterSocket</key>
        <dict>
        <key>SockFamily</key>
        <string>Unix</string>
        <key>SockPathMode</key>
        <integer>438</integer>
        <key>SockPathName</key>
        ...and 7 more line(s)
    Contents of /Library/LaunchDaemons/com.charlessoft.pacifist.helper.plist
        - mod date: Nov 28 10:28:00 2014
        - size (B): 584
        - checksum: 3867330796
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.charlessoft.pacifist.helper</string>
        <key>MachServices</key>
        <dict>
        <key>com.charlessoft.pacifist.helper</key>
        <true/>
        </dict>
        <key>Program</key>
        <string>/Library/PrivilegedHelperTools/com.charlessoft.pacifist.helper</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/PrivilegedHelperTools/com.charlessoft.pacifist.helper</string>
        </array>
        </dict>
        </plist>
    Contents of /Library/LaunchDaemons/com.datarobotics.ddservice64d.plist
        - mod date: Feb 11 19:08:14 2014
        - size (B): 488
        - checksum: 1751270588
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.datarobotics.ddservice64d</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/Application Support/Data Robotics/Drobo Dashboard/DDService64d</string>
        </array>
        <key>ServiceIPC</key>
        <false/>
        <key>OnDemand</key>
        <false/>
        <key>RunAtLoad</key>
        <true/>
        </dict>
        </plist>
    Contents of /Library/LaunchDaemons/com.freemacsoft.appcleanerdaemon.plist
        - mod date: Aug 19 04:34:10 2008
        - size (B): 476
        - checksum: 3941055308
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Disabled</key>
        <false/>
        <key>Label</key>
        <string>com.freemacsoft.appcleanerdaemon</string>
        <key>OnDemand</key>
        <false/>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/Application Support/AppCleaner/AppCleaner Daemon</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        </dict>
        </plist>
    Contents of /Library/LaunchDaemons/com.google.GoogleML.plist
        - mod date: Mar 10 13:19:30 2008
        - size (B): 684
        - checksum: 315725308
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.google.GoogleML</string>
        <key>OnDemand</key>
        <true/>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/Google/GoogleML/GoogleML.bundle/Contents/MacOS/googleml-modwat ch</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>StandardOutPath</key>
        <string>/dev/null</string>
        <key>UserName</key>
        <string>root</string>
        <key>WatchPaths</key>
        <array>
        <string>/Library/Google/GoogleML/Modules</string>
        <string>/Library/Google/GoogleML</string>
        </array>
        </dict>
        </plist>
    Contents of /Library/LaunchDaemons/com.micromat.TechToolProDaemon.plist
        - mod date: Apr  5 07:41:53 2011
        - size (B): 514
        - checksum: 771652093
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.micromat.TechToolProDaemon</string>
        <key>RunAtLoad</key>
        <true/>
        <key>LowPriorityIO</key>
        <true/>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/PreferencePanes/TechTool Protection.prefPane/Contents/PlugIns/TechToolProDaemon.app/Contents/MacOS/TechT oolProDaemon</string>
        </array>
        </dict>
        </plist>
    Contents of /Library/LaunchDaemons/com.prosofteng.DriveGenius.locum.plist
        - mod date: Aug 16 12:35:12 2012
        - size (B): 682
        - checksum: 757526819
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>EnvironmentVariables</key>
        <dict/>
        <key>GroupName</key>
        <string>wheel</string>
        <key>KeepAlive</key>
        <false/>
        <key>Label</key>
        <string>com.prosofteng.DriveGenius.locum</string>
        <key>MachServices</key>
        <dict>
        <key>com.prosofteng.DriveGenius.locum</key>
        <true/>
        </dict>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/PrivilegedHelperTools/com.prosofteng.DriveGenius.locum</string >
        </array>
        <key>RunAtLoad</key>
        <false/>
        <key>UserName</key>
        <string>root</string>
        ...and 2 more line(s)
    Contents of /Library/LaunchDaemons/com.squirrels.kextinstaller.plist
        - mod date: Jul 23 12:11:23 2012
        - size (B): 675
        - checksum: 1563409895
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>EnableTransactions</key>
        <true/>
        <key>Label</key>
        <string>com.squirrels.kextinstaller</string>
        <key>LaunchOnlyOnce</key>
        <false/>
        <key>OnDemand</key>
        <true/>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/PrivilegedHelperTools/com.squirrels.kextinstaller</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>Sockets</key>
        <dict>
        <key>com.squirrels.kextinstaller.socket</key>
        <dict>
        <key>SockServiceName</key>
        <string>3209</string>
        </dict>
        ...and 3 more line(s)
    Contents of /Library/LaunchDaemons/com.starfield.backupservice.plist
        - mod date: Oct  1 19:08:04 2013
        - size (B): 465
        - checksum: 1966268484
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>KeepAlive</key>
        <true/>
        <key>Label</key>
        <string>com.starfield.backupservice</string>
        <key>OnDemand</key>
        <false/>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/Workspace/BackupService/offSyncService</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        </dict>
        </plist>
    Contents of /Library/LaunchDaemons/com.xrite.device.xrdd.plist
        - mod date: Oct 22 16:18:19 2013
        - size (B): 618
        - checksum: 1464013229
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.xrite.device.xrdd.plist</string>
        <key>RunAtLoad</key>
        <true/>
        <!--
        <key>UserName</key>
        <string>com.xrite.device.user.xrd</string>
        <key>GroupName</key>
        <string>com.xrite.device.group.xrd</string>
        -->
        <key>OnDemand</key>
        <false/>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/Application Support/X-Rite/Frameworks/XRiteDevice.framework/Versions/B/Resources/xrdd</stri ng>
        </array>
        </dict>
        </plist>
    Contents of /Library/LaunchDaemons/openbase.plist
        - mod date: Jan  1 16:54:29 2011
        - size (B): 521
        - checksum: 1112937859
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//OpenBase International//DTD PLIST 1.0//EN"
         "http://www.openbase.com">
        <plist version="1.0">
        <dict>
        <key>GroupName</key>
        <string>admin</string>
        <key>Label</key>
        <string>com.openbase.com.openexec</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/OpenBase/bin/openmonitor</string>
        <string>-noexit</string>
        <string>YES</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>UserName</key>
        <string>openbase</string>
        </dict>
        </plist>
    Contents of /private/etc/hosts
        - mod date: Oct  1 19:08:01 2013
        - size (B): 255
        - checksum: 3555392180
        127.0.0.1 localhost
        255.255.255.255 broadcasthost
        ::1             localhost
        fe80::1%lo0 localhost
        127.0.0.1 DriveMap
    Contents of Library/LaunchAgents/com.adobe.ARM.UUID.plist
        - mod date: Jan 25 08:06:08 2013
        - size (B): 603
        - checksum: 394026997
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.adobe.ARM.UUID</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/Adobe Reader.app/Contents/MacOS/Updater/Adobe Reader Updater Helper.app/Contents/MacOS/Adobe Reader Updater Helper</string>
        <string>semi-auto</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>StartInterval</key>
        <integer>12600</integer>
        </dict>
        </plist>
    Contents of Library/LaunchAgents/com.adobe.ARM.UUID.plist
        - mod date: Feb 25 12:52:27 2014
        - size (B): 623
        - checksum: 1768810574
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.adobe.ARM.UUID</string>
        <key>ProgramArguments</key>
        <array>
        <string&gt

  • Inconsistent mouse clicks on MAC

    I'm recording a demo on a MAC and sometimes it captures a picture on mouse click and sometimes it doesn't. It is inconsistent. I can do the same process and get different results each time. Recording type is Automatic Demo. Version is Captivate 5.5.
    Any ideas what is going on?
    Thanks,
    K.

    Captivate must be experiencing difficulty 'hearing' the on screen events that trigger captures.
    Automatic capture is not a guaranteed solution for every situation. In almost any software there will be some things you need to capture manually to get all the shots you want for the simulation.  So keep your finger near the manual capture key as you work through the task and hit it at any time you hear Captivate did not pick up the change.

  • Two calculations are required for a single condition type

    Hello Experts,
    I have a requirement to calculate the VAT conditon type in a pricing procedure...like in one case  ( If TAX Indicator  set to "0,1,2" at sales order header level) tax should be calculate on PR00 & 3 other condition types....in second case (  If TAX Indicator set to " 3 " at sales order header level) tax should be calculate on 3 other condition types except PR00.    But make sure that TAX Indicator  "3" always set by user manually during the creation of sales order.
    Another hurdle is if user set the indicator as 3 manually during the creation of Sales order then price will not be redetermine automatically, So I need this to be happend automatically.
    Let me know how should I proceed further to fix the requirement.
    Appriciate quick response.
    Regards,
    Chandu

    Hi Sudir,
    Somehow my edit did not get saved:
    This is suppoed to read
    Set up your pricing as follows:
    10 PR00
    20 Z001
    30 Z002
    40 Z003
    100 Subtotal #1 = Sum of 10 through 40
    110 ZSUB = Discount condition with condition record for 100% for Tax indicator = '3' (otherwise 0)  with base = line 10 (PR00)
    200 Tax base = 100 through 110
    In other words:
    For tax indicators = 0,1 or 2
    Tax base (Line 200) = PR00 + Z001 + Z002 + Z003
    For tax indcator = 3
    Tax base = PR00 + Z001 + Z002 + Z003 - (100% x PR00)  =  Z001 + Z002 + Z003
    Yiou will probably aneed to put some code in one of the sales order user exits to trigger repiricing if you change this manually.

  • JEditorPane in JDialog only updating in response to mouse clicks?

    Hi all,
    I'm having a bit of trouble with a program I'm writing. I've got a subclass of JDialog (done with Forte) with a JEditorPane and a JTextField. The JTextField works perfectly, but the only way I can get the JEditorPane to update is using a mouseClickHandler. I've tried other methods, all inside the event handling thread, but nothing works. Could someone explain this behaviour please?
    -ReKleSS

    Thank you for your response. I tried both to check the focus and to consume the event. But I had to learn that labels are not able to catch the focus. I also was not able to consume an appropriate event of the combobox. So I finally solved the problem by extending JButton and implementing ActionListener. Thus my labels are actually buttons but I changed their appearance and behaviour so one cannot distinguish them from labels.

  • Apps are not opening up when I click on them

    When I first bought my computer I was able to click on the apps and they opened up fine. Now for some reason when I click on them they dont open up. Only my desktop one opens. Help please

    when I click on them they dont open up. Only my desktop one opens.
    We can't see your computer, and you don't tell us much. I'll guess that you have Windows 8, and that you are talking about the "metro apps" on the Start screen.
    There have been reports that anti-malware programs sometimes interfere with apps running. Does that ring a bell?
    Otherwise, maybe something here helps.
       What to do if you have problems with an app
    Always tell which computer you have. There is a label on the bottom.
    -Jerry

  • New tabs will not open (ctrl-T, mouse click or menu)

    For some reason I cannot open a new tab unless I right click on a hyperlink on the existing tab and select "open in new tab". When I click "File/New Tab" nothing happens. When I click the plus sign on the tab list nothing happens. When I press Ctrl T nothing happens.
    By the way, IE has the same problem and started at the same time.

    Try uninstalling the Ask toolbar and it should work again. There is a compatibility issue with the Ask toolbar and the current version of Firefox.

Maybe you are looking for

  • HTMLLoader fires complete event too soon ?

    Hi to all, I have following problem i`m displaying pdf in a nativewindow (pdf is around 5 mb so i guess it takes some time to be rendered) I want to show user some custom progress bar until pdf is prepared to be shown in htmlLoader.The problem is tha

  • Bubbles to the Right of inbox, drafts and sent

    I am running 10.4.7 and have had problems ever since I installed the 10.4.7 update in June. Next to the inbox, drafts and sent workding are blue and white overlapping circles that should not appear there. I have verified and repaired the disk permiss

  • Bidding Engine in Classic Scenario

    We are implementing SRM7 with Bidding Engine.  According to this forum it is possible now to use Direct Procurement (Plan-Driven Procurement) in both Classic and Extended Classic scenario. However, according to SAP, Bidding Engine can only be used in

  • HOW TO TRANSPORT A TABLESPACE

    I would like to find out if its possible to transport tablespaces

  • Is it possible to delete iCloud drive from ios8 device

    I updated my iPad to IOS8,  not thinking I said yes to iCloud drive.  I use my iPad to type minutes at a meeting and then complete them on my iMac.  Since I do not have Yosemite yet, if I type on my iPad will I not be able to access the document on m