Send a mouse click?

Does anyone know how to generate a mouse click with lingo? I
need a 'genuine' mouse event - not sendsprite(x,#mouseup)
Cheers

If your project is Windows only, Gary Smith (the fellow who
brought us
BuddyAPI) has posted a beta version of baMouseClick which
will do just
what you need. Though it is Windows only...
http://www.mods.com.au/budapi/future.htm

Similar Messages

  • Possible to send a mouse click through a JFrame

    Hi there.
    is there a way to send a mouse click event through a frame to the whatever underneath (another application for example)?
    Scenario: I use a Frame for (bigger, colorful) MouseCursor representation (see http://forums.sun.com/thread.jspa?threadID=5394797). But of course... The Cursor has to be on top... And so it catches all mouseClickEvents....
    Please; all hints are welcome! How do I achieve to send mouse clicks through the JFrame...
    Thx in advance
    Andi
    Edited by: neobond on 30.06.2009 09:43

    You don't do it that way - you'd just tell the button to dispatch a CLICK MouseEvent and anything listening for the click would get it... something like:
    myButton.dispatchEvent(new Event(MouseEvent.CLICK));

  • Exec utl_mail.send when mouse click

    Hi,
    I have a question,
    I want to exceute the exec utl_mail.send inside when mouse click i a form. how can i do that?
    Thanks and regards

    The ULT_MAIL, package is a utility for managing email which includes commonly used email features, such as CC, BCC etc.
    To install UTL_MAIL
    Method 1:
    sqlplus sys/<pwd>@db_sid
    SQL> @ORACLE_HOME/rdbms/admin/utlmail.sql
    SQL> @ORACLE_HOME/rdbms/admin/prvtmail.plb
    you define SMTP_OUT_SERVER parameter in the init.ora rdbms initialization file. However , if SMTP_OUT_SERVER is not define, this invoke a default of DB_DOMAIN which is guaranteed to be defined to perform appropriately.
    Method 2:
    Connected to Oracle Database 10g Enterprise Edition Release 10.2.0.4.0
    Connected as SYS
    SQL> grant execute on utl_mail to public;
    Grant succeeded
    SQL> create or replace public synonym utl_mail for sys.utl_mail;
    Synonym created
    SQL> CREATE OR REPLACE FUNCTION SEND_MAIL
    (pIssuer IN VARCHAR2,
    pReceiver IN VARCHAR2,
    pSender IN VARCHAR2,
    pSubject IN VARCHAR2,
    pMessage IN VARCHAR2) RETURN VARCHAR2 IS
    c utl_smtp.connection;
    respuesta utl_smtp.reply;
    pServer VARCHAR2(50) := 'SERVER';
    BEGIN
    -- Open the connection to the Server-mail
    c: = utl_smtp.open_connection (pserver);
    answer: = utl_smtp.helo (c, pServer);
    - Starts the Issuer mail.
    answer: = utl_smtp.mail (c, pSender);
    - Start the receiver
    answer: = utl_smtp.rcpt (c, pReceiver);
    answer: = utl_smtp.open_data (c);
    - Write the header of the e-mail
    utl_smtp.write_data (c, 'From:' | | pIssuer | | utl_tcp.CRLF);
    utl_smtp.write_data (c, 'To:' | | pReceiver | | utl_tcp.CRLF);
    - Write the Subject
    utl_smtp.write_data (c, 'Subject:' | | pSubject | | utl_tcp.CRLF);
    - Write the text of the Message.
    utl_smtp.write_data (c, utl_tcp.CRLF | | pMessage);
    utl_smtp.write_data (c, utl_tcp.CRLF | |'.');
    answer: = utl_smtp.close_data (c);
    - Close connection
    answer: = utl_smtp.quit (c);
    RETURN '0 ';
    EXCEPTION
    Utl_smtp.permanent_error THEN WHEN OR utl_smtp.transient_error
    utl_smtp.quit (c);
    RETURN SQLERRM;
    - raise_application_error (-20000,
    - 'Sending email failed, returning the following error:' | | SQLERRM);
    WHEN OTHERS THEN
    RETURN SQLERRM;
    END;

  • Pass Mouse click events from JavaScript to Falsh Movie

    Hi,
    I have an interesting problem here.
    i am trying to create a web page which has my
    flash-presentation movie. i need to disable mouse click &
    keyboard click navigation of the flash movie. The only way by which
    i can navigate my slide in the flash movie should be using 2
    buttons say Next & Prev that are i my web page.
    when i click the Next button i should be able to go to the
    next slid or the animation in the same slide like how i do in the
    power Point.
    Is there any way by which i can send these mouse click
    events from my javascript to my flash movie or is there any other
    means by which i can achieve this.
    ~Blackperil

    Hi Mathias,
    What i understood is that you want to triger a server side event (simulate onClick event of button)from a client side event (javascript confirm popup), based on the choice of user..
    You can also try this one...
    Check = confirm("Do you really want to proceed?");
    if (Check == true)
    document.getElementById('do_proceed').click();
    else
    document.getElementById('do_cancel').click();
    Regards,
    Anubhav

  • Simulate mouse clicks with keyboard

    Hello,
    I'd like to create a little tool in JAVA that would simulate a mouseclick when I pressed a key on the keyboard.
    But that should be valid even when I have any other program as active (selected).
    Can that be done in Java or Java can only listen to events generated when the java application is active?
    If you have working code that would be very appreciated.
    Thank you in advance,
    Nuno Vidal

    Ok... have never done anythong with JNI before, can
    you give me an insight?The way I would do it would be to write a system wide keyboard hook, (which you can't do in Java and should do in C++)into a JNI dll as smg123 said. Then you will have that method notify your java program on a key press and from your Java program you can use the Robot class to send a mouse click or since your already using a native code you could write a C++ function to do it and invoke that from your Java app.

  • Mouse clicks send app to crazy land

    I have a multi-threaded app with two main windows. One is the data display / main user interface event handler. The other is a seperate window with nothing but the menu bar--basically categorized commands that may be executed independent of what the main user interface is doing. This way I can move the commands around, hide them, etc--they are seperate.
    From the user interface I am running a script. At first the sub-vi that ran scripts was a modal 'Cancel' button to end the script and return to the user interface. The modal property kept the user from doing anything with the user-interface while the script was executing. Perfect. The problem is, it also kept the user from accessing the command window. So I changed the scri
    pt from a modal dialog box to a non-modal pop-up window that i set to Always-on-Top. This allows access to the command window and keeps the 'Cancel' button on top so it won't disappear behind the user interface if the main window gets clicked. Also, the user interface remains locked out because the script sub-vi is called from the user interface event handler.
    The problem I have is that clicking on the main user interface (for example, selecting a different tab to view) while the 'Cancel' button dialog box is visible, does nothing. When the dialog box exits however, all of the clicks done previously (which you'd think would have been forgotten), get propogated. The application goes haywire momentarily trying to change and update things. If you clicked five different tabs while the dialog box was open, it would do nothing, then all of a sudden (when the dialog box exits), flip rapidly between the five different tabs selected, as fast as possible.
    Is there any way to cancel
    or ignore these mouse click events that get sent to the main user interface? Is this a problem with the windows Always-on-Top setting?

    This is certainly occuring because of the "Always on Top" selection. However, there is one option you have here. You could try using Dynamic Events. They're new to LabVIEW 7.0. You can actually unregister a particular event (tab changed) and have it only trigger when you want. For instance, you could unregister this right before the cancel window comes up. Then, if the user clicks the tabs, since this event is unregistered, they will not be tallied. Then, when you get back to that window, there will be no events stored up so nothing should happen.
    J.R. Allen

  • J2ME, Robot class, and sending mouse clicks from a remote device

    I'm trying to simulate a mouse click on a client machine, using J2ME on a remote host device. What's the best way to do this?

    import java.awt.Robot;
    import java.awt.event.InputEvent;
    import javax.swing.JButton;
    import javax.swing.JFrame;
    public class Main
        public static void main(String[] args)
            JFrame frame = new JFrame();
            frame.getContentPane().add(new JButton("Click Me"));
            frame.pack();
            frame.setLocationRelativeTo(null);
            try
                // Simulate a middle-button mouse click
                Robot robot = new Robot();
                robot.mousePress(InputEvent.BUTTON2_MASK);
                // Simulate a middle-button mouse click again
                robot.mousePress(InputEvent.BUTTON2_MASK);
            catch (Exception e)
                e.printStackTrace();
            frame.setVisible(true);
    }?

  • Mouse Clicks' Queue when Button is Disabled

    Hi, I was wondering about the Disable property for UI
    Components.
    In the docs it says that when the component is disabled it
    ignores all
    interaction whatsoever - in particular - user interaction.
    In my case, the button is disabled for a few seconds right
    after it
    was clicked by the user (I disable it till the httprequest is
    returned
    and then enable it).
    What happens is that if the user clicks the button while it's
    disabled
    - nothing happens. But when the button turns enabled - it
    acts as if
    it just got the click event.
    It seems like the mouse click event went into this queue and
    the
    button listened to it right after to turned enable?
    Am I correct? If so - how can I prevent this problem?
    If I'm wrong, what's the reason for this? And again, how can
    I sort
    this so the user can't send mouse clicks to the button when
    it's
    disabled??
    Many thanks :)
    Gilad

    "giladozer" <[email protected]> wrote in
    message
    news:gnbng6$o6m$[email protected]..
    > Hi, I was wondering about the Disable property for UI
    Components.
    > In the docs it says that when the component is disabled
    it ignores all
    > interaction whatsoever - in particular - user
    interaction.
    > In my case, the button is disabled for a few seconds
    right after it
    > was clicked by the user (I disable it till the
    httprequest is returned
    > and then enable it).
    > What happens is that if the user clicks the button while
    it's disabled
    > - nothing happens. But when the button turns enabled -
    it acts as if
    > it just got the click event.
    > It seems like the mouse click event went into this queue
    and the
    > button listened to it right after to turned enable?
    > Am I correct? If so - how can I prevent this problem?
    > If I'm wrong, what's the reason for this? And again, how
    can I sort
    > this so the user can't send mouse clicks to the button
    when it's
    > disabled??
    No idea about whether you're correct or wrong, but you might
    want to try
    setting mouseEvents = false on the button and see if that
    helps.

  • Mouse clicks inside image in applet

    How can I respond to mouse clicks inside particular regions in an image loaded as part of an applet in a browser? ie, I want to send these clicks onto the server for the server to handle it and the server should change the image according to the mouse clicks.
    Thanks,

    /*  <applet code="ImageMouse" width="400" height="400"></applet>
    *  use: >appletviewer ImageMouse.java
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.image.BufferedImage;
    import java.io.*;
    import java.net.*;
    import javax.imageio.ImageIO;
    import javax.swing.*;
    public class ImageMouse extends JApplet
        JLabel label;
        public void init()
            ImageMousePanel panel = new ImageMousePanel();
            ImageMouser mouser = new ImageMouser(panel, this);
            panel.addMouseMotionListener(mouser);
            getContentPane().add(panel);
            getContentPane().add(getLabel(), "South");
        private JLabel getLabel()
            label = new JLabel(" ");
            label.setHorizontalAlignment(JLabel.CENTER);
            label.setBorder(BorderFactory.createTitledBorder("image coordinates"));
            Dimension d = label.getPreferredSize();
            d.height = 35;
            label.setPreferredSize(d);
            return label;
        public static void main(String[] args)
            JApplet applet = new ImageMouse();
            JFrame f = new JFrame();
            f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            f.getContentPane().add(applet);
            f.setSize(400,400);
            f.setLocation(200,200);
            applet.init();
            f.setVisible(true);
    class ImageMousePanel extends JPanel
        BufferedImage image;
        Rectangle r;
        public ImageMousePanel()
            loadImage();
            r = new Rectangle(getPreferredSize());
        protected void paintComponent(Graphics g)
            super.paintComponent(g);
            Graphics2D g2 = (Graphics2D)g;
            g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
                                RenderingHints.VALUE_ANTIALIAS_ON);
            int w = getWidth();
            int h = getHeight();
            int imageWidth = image.getWidth();
            int imageHeight = image.getHeight();
            r.x = (w - imageWidth)/2;
            r.y = (h - imageHeight)/2;
            g2.drawImage(image, r.x, r.y, this);
            //g2.setPaint(Color.red);
            //g2.draw(r);
        public Dimension getPreferredSize()
            return new Dimension(image.getWidth(), image.getHeight());
        private void loadImage()
            String s = "images/greathornedowl.jpg";
            try
                URL url = getClass().getResource(s);
                image = ImageIO.read(url);
            catch(MalformedURLException mue)
                System.err.println("url: " + mue.getMessage());
            catch(IOException ioe)
                System.err.println("read: " + ioe.getMessage());
    class ImageMouser extends MouseMotionAdapter
        ImageMousePanel panel;
        ImageMouse applet;
        boolean outsideImage;
        public ImageMouser(ImageMousePanel imp, ImageMouse applet)
            panel = imp;
            this.applet = applet;
            outsideImage = true;
        public void mouseMoved(MouseEvent e)
            Point p = e.getPoint();
            if(panel.r.contains(p))
                int x = p.x - panel.r.x;
                int y = p.y - panel.r.y;
                applet.label.setText("x = " + x + "  y = " + y);
                if(outsideImage)
                    outsideImage = false;
            else if(!outsideImage)
                outsideImage = true;
                applet.label.setText("outside image");
    }

  • 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

  • HELP - mouse click no longer working - Tiger bug?

    Hi Guys,
    I had a weird issue with Tiger (10.4.10) on my PowerBook G4 this evening. I was dragging a file to the trash, and "dropped" it onto the dock by mistake, just missing the trash. I was slightly to the left of the trashcan. I expected the icon to jump back to the desktop, as the place I had dropped it was invalid, but to my surprise, as I moved the pointer across the screen with the mouse button unclicked, a ghost version of the icon was still attached to the mouse pointer.
    I was unable to click on anything, as the OS still believed for some reason that I was dragging this icon around. I used the keyboard to reboot the laptop, and when it came back up, the mouse click was not working - I can drag around, but can't click on anything. This is with the on board trackpad. I also have a bluetooth apple mouse, which exhibits exactly the same behaviour.
    I've rebooted several times (and shutdown and removed the battery), zapped the PRAM. Nothing has helped. I've tried logging in as a different user, but the click still doesn't work with the on-board or external mouse. It's like something within the OS has been corrupted, but I don't know what I can do. I have loads of data on the laptop, so I am not rebuilding. There is something on the help pages about resetting my PowerBook PMU, but I don't think this should be required.
    This is a major, urgent issue for me, as I can't use the laptop until I figure out how to resolve this.
    Anyone - please help
    Thanks,
    Robin

    Thanks for the feedback. Since resetting the PMU fixed the problem, it's not a bug but some conflict in the original setup.
    If you want to report this to Apple, either send Feedback or send bug reports and enhancement requests to Apple via its Bug Reporter system. Join the Apple Developer Connection (ADC)—it's free and available for all Mac users and gets you a look at some development software. Since you already have an Apple username/ID, use that. Once a member, go to Apple BugReporter and file your bug report/enhancement request. The nice thing with this procedure is that you get a response and a follow-up number; thus, starting a dialog with engineering.

  • Need a shortcut to "Allow pages to choose their own colors, instead of my selections above option preference" I know where it is and how to use it but I have to go through 7 mouse clicks to change it, then a few minutes later change it back. I also k

    Need a shortcut to "Allow pages to choose their own colors, instead of my selections above option preference" I know where it is and how to use it but I have to go through 7 mouse clicks to change it, then a few minutes later change it back. I also know the sequnce is alt t, alt o, alt c, alt a, then ok, ok. Got to be a way to make a one key short cut for this. I use a black background to reduce eye strain, but about 10% of the webpage I go to can't be send with black so I have to go into tools and hit 6 or 7 things to chnage it then after through with webpage have to do it all over at Not allow webpages to have own color. Very very cumbersome.
    == This happened ==
    A few times a week
    == made that way

    https://addons.mozilla.org/en-US/firefox/addon/toggledocumentcolors-198916/
    The above addon will solve your problem.
    Shortcut to toggle user color/page color :- Ctr+Shift+C

  • Event Handlers of a mouse click

    In the simplest way possible please tell me how to do an event handler for a mouse click.
    private int clickCounter = 0;
    private void MyCanvas_MouseLeftButtonDown(object sender, MouseButtonEventArgs e)
    if (Device1RB.IsChecked == true)
    clickCounter++;
    return;
    else if (RemoveRB.IsChecked == true)
    clickCounter--;
    return;
    else
    return;
    private void Switch_class()
    switch (clickCounter)
    case 1:
    //code here
    break;
    case 2:
    //code here
    break;
    case 3:
    //code here
    break;
    case 4:
    //code here
    break;
    case 5:
    //code here
    break;
    default:
    //code here??
    break;
    This is what I have and I apparently need an event handler for the mouse click. Also if there is an easier way to do what I want then please point me in the right direction.

    I still can't figure out why its not working.
    private int clickCounter = 0;
    private void MyCanvas_MouseLeftButtonDown(object sender, MouseButtonEventArgs e)
    if (Device1RB.IsChecked == true)
    clickCounter++;
    return;
    else if (RemoveRB.IsChecked == true)
    clickCounter--;
    return;
    else
    return;
    private void Switch_class()
    switch (clickCounter)
    case 1:
    pic_1.Visibility = System.Windows.Visibility.Visible;
    break;
    case 2:
    pic_2.Visibility = System.Windows.Visibility.Visible;
    break;
    case 3:
    pic_3.Visibility = System.Windows.Visibility.Visible;
    break;
    case 4:
    pic_4.Visibility = System.Windows.Visibility.Visible;
    break;
    case 5:
    pic_5.Visibility = System.Windows.Visibility.Visible;
    break;
    default:
    //code here??
    break;
    That's what I've got.
    <Canvas x:Name="MyCanvas" HorizontalAlignment="Left" Height="391" Margin="130,20,0,0" VerticalAlignment="Top" Width="520" MouseLeftButtonDown="MyCanvas_MouseLeftButtonDown" Background="Transparent">
    <Rectangle Fill="White" HorizontalAlignment="Left" Height="391" Stroke="Black" VerticalAlignment="Top" Width="520"/>
    <Image HorizontalAlignment="Left" Height="34" VerticalAlignment="Top" Width="100" Source="Power.png" Visibility="Visible"/>
    <Image x:Name="pic_1" Height="42" Canvas.Left="152" Canvas.Top="70" Width="44" Source="2box.png" Visibility="Hidden"/>
    <Image x:Name="pic_2" Height="42" Canvas.Left="152" Canvas.Top="70" Width="44" Source="2box.png" Visibility="Hidden"/>
    <Image x:Name="pic_3" Height="42" Canvas.Left="152" Canvas.Top="70" Width="44" Source="2box.png" Visibility="Hidden"/>
    <Image x:Name="pic_4" Height="42" Canvas.Left="152" Canvas.Top="70" Width="44" Source="2box.png" Visibility="Hidden"/>
    <Image x:Name="pic_5" Height="42" Canvas.Left="152" Canvas.Top="70" Width="44" Source="2box.png" Visibility="Hidden"/>
    </Canvas>
    This is the canvas...Is there something blatantly obvious that I'm missing?

  • Macbook Pro crashes on mouse click

    Hello everyone,
    I've been having this problem for two weeks now and it's happening more and more frequently!
    Info:
    Macbook Pro 15'' mid 2011
    Mac OS X Mavericks / Mac OS X Yosemite
    Hard Drive: Samsung 840 Evo 250GB SSD
    8 GB Ram
    THE ISSUE:
    Every so often at a random time, at the exact moment I perform a mouse click, my macbook pro crashes.
    That instant, the screen goes dark ( like I just ripped out it's battery ) and reboots automatically, saying "your mac restarted because of a problem".
    Like I said, it's gotten more and more frequent! ( 5 times a day or more now... )
    WHAT I'VE TRIED:
    So the problem occurred in Mavericks, so I figured I'll install Yosemite ( on a new partition ) and see if it's any better.. Well it isn't...
    Same problem, same type of crash.
    Then I figured maybe it's related to my magic mouse.. So i turned it off and used a third party mouse. No luck! It also happened while using the Macbook's trackpad.
    I also haven't found anyone with a similar problem online so far, so if any of you have experienced something like this or know what might be causing it, i'd be grateful for any information!
    Best regards,
    Robert

    These instructions must be carried out as an administrator. If you have only one user account, you are the administrator.
    This procedure is a diagnostic test. It makes no changes to your data.
    Please triple-click anywhere in the line below on this page to select it:
    syslog -k Sender kernel -k Message CSeq 'n Cause: -' | tail | awk '/:/{$4=""; print}' | pbcopy
    Copy the selected text to the Clipboard by pressing the key combination command-C.
    Launch the built-in Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    Paste into the Terminal window by pressing the key combination command-V. I've tested these instructions only with the Safari web browser. If you use another browser, you may have to press the return key after pasting.
    Wait for a new line ending in a dollar sign ($) to appear below what you entered.
    The output of the command will be automatically copied to the Clipboard. If the command produced no output, the Clipboard will be empty. Paste into a reply to this message.
    The Terminal window doesn't show the output. Please don't copy anything from there.

  • Getting mouse click coordinates with image button

    I'm using ADF Rich Client components in JDeveloper 11g Technology preview.
    I have to get the mouse click coordinates with an image button. In the page I put something like this:
    <af:commandButton text="commandButton1" icon="ambiente.jpg"
    actionListener="#{prova.listen}" action="#{prova.esegui}" />
    In the listener method of the managed bean I try to get the coordinates with this code:
    public void listen(ActionEvent e)
    FacesContext context = FacesContext.getCurrentInstance();
    String clientId = e.getComponent().getClientId(context);
    Map requestParams =
    context.getExternalContext().getRequestParameterMap();
    int x =
    new Integer((String) requestParams.get(clientId + ".x")).intValue();
    int y =
    new Integer((String) requestParams.get(clientId + ".y")).intValue();
    but it doesn't work. It seems that there aren't in the request the coordinates of the image point clicked. Is it true? How can I do that with ADF ?

    Hi,
    the mouse position is not part of the request parameters send. You will have to use client side JavaScript for this
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
    <jsp:directive.page contentType="text/html;charset=windows-1252"/>
    <f:view>
    <af:document>
    <f:verbatim>
    <![CDATA[
    <script>
    function handleMouseCoordinates(event) {      
    alert("x: "+event.getPageX()+" y: "+event.getPageY());
    </script>
    ]]>
    </f:verbatim>
    <af:form>
    <af:commandButton text="My Click Button" icon="/images/jdev_cup.gif">
    <af:clientListener method="handleMouseCoordinates" type="click"/>
    </af:commandButton>
    </af:form>
    </af:document>
    </f:view>
    </jsp:root>
    Frank

Maybe you are looking for

  • How do I link to Anchor Text from browser to PDF file exported from InDesign?

    I see that this question was asked previously but not answered: http://forums.adobe.com/message/3737541 I need a way to link to topics (from an HTML page) within a structured PDF file generated from InDesign, i.e. one that has an interactive bookmark

  • Problem in App Migration

    I am migrating an Application from an Oracle 9iAS – Enterprise Edition release 1.0.2.2.2 , with container for J2EE OC4J 9.0.2.0.0, Oracle Reports 6i, Workflow release 9.6 and Oracle database 9.2.0.4. The new server must use Oracle Application Server

  • Widget Missing?

    I have a weather widget icon that does not work. The weather Widget application is in its proper Library folder(s) and the pointer is in the dashboard. When either is selected, nothing happens. It has worked in the past but after installing the lates

  • HT5655 why  i can't open.. you tube ...say blocket plug-in ..ow to fixit please

    i dont know how to fix blocket plug-in

  • Recipefox add-on not showing up

    Is RecipeFox (from SourceForge) incompatible with the newest version of Firefox, or with Windows 8.1? I've added and enabled it, but it simply doesn't show up anywhere on the Firefox toolbar.