Constant Mouse

Hello. My name is Chris. I took a basic java introduction class during the summer. My teacher created a graph program/sprite/turtle(logo)/keyboard/applet program. I know how to get all of that working. All I need to know is hoe I can have a constant mouse catcher. Here is my code (without all of the other stuff):
while(true) {
//loop forever
mx=g.getMouseX();
//mx is a double
//g.getMouseX(); saves last mouse click x in mx
my=g.getMouseY();
//same as above, only for Y variable (of mouse)
Tim.setPosition(mx,my);
//Send invisible Tim, the Turtle to the place where the mouse was clicked
Tim.forward(.01);
//Tim makes a mark there.
Now what I want is something that will allow me to make lines instead of just dots. So it will pick up when I have the mouse held down. How can I do this?
Thanks,
Chris

Here is my PaintArea class. This should give you some idea about how mouse listeners work, and may be along the lines of what you're looking for.
You are free to use and modify the code, but please do not change the package or take credit for it as your own.
BTW, if you're trying to do this as a challenge, this may be kind of a spoiler, so if you want the thrill of figuring it all out, stop here.
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;
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;
}

Similar Messages

  • Youtube required constant mouse movment to run smoothly. looked for a fix, now youtube no longer works.

    I have Firefox 18.0.1, Adobe Flash 11.5.502.146, and Java 7.11
    My Youtube required me to constantly move my mouse over the youtube window to get it to run smoothly (pretty annoying). so I came here for help, and it said disable all plugins. did so.
    http://i171.photobucket.com/albums/u308/b3nje909/firfoxplugins_zps056077d8.png
    I also updated all of them as well at the same time.
    Now when ever I start youtbe it says this
    http://i171.photobucket.com/albums/u308/b3nje909/firefoxplugins3_zpsc0beaca7.png
    I have been and updated them all again, and still nothing. (Infact I dont think they even update as seen here)
    http://i171.photobucket.com/albums/u308/b3nje909/firefoxplugins2_zps6a3b69d2.png
    so.
    It appears I have two problems.
    1. Updates dont work/install.
    2. Youtube is stuffed and no longer works at all (which plugins do I need enabelled, I have done the top 3 seen here, but they nothing happens)
    http://i171.photobucket.com/albums/u308/b3nje909/firefoxplugins4_zps0c325184.png
    I have also restarted and started my computer many many times and still nothing..

    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do NOT click the Reset button on the Safe mode start window or otherwise make changes.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • Constant Mouse Freezing about ever 3 seconds

    Ok, I have searched high and low for an answer. I did an SMC reset, and that worked for about 3 hours, until I shut my computer off. This seems increasingly odd to me, because it is not a problem with my mouse, because I tested it on my Apple Trackpad and a USB mouse(non-apple). If you did not quite catch that, the problem is that every 3 or so seconds, the mouse will freeze in place for about a half of a second. I am running a mac mini (mids 2011) with 2.5ghz processor and 500gb memory, with about 450gbs left. I have the AMD Readon Graphics too. I am also running Lion 1.7.5
    ANy help is greatly apprecieated

    If it happens again...
    Open Console in Utilities & see if there are any clues or repeating messages when this happens.
    One way to test is to Safe Boot from the HD, (holding Shift key down at bootup), run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions, Test for problem in Safe Mode...
    PS. Safe boot may stay on the gray radian for a long time, let it go, it's trying to repair the Hard Drive
    Reboot, test again.
    If it only does it in Regular Boot, then it could be some hardware problem like Video card, (Quartz is turned off in Safe Mode), or Airport, or some USB or Firewire device, or 3rd party add-on, Check System Preferences>Accounts>Login Items window to see if it or something relevant is listed.
    Check the System Preferences>Other Row, for 3rd party Pref Panes.
    Also look in these if they exist, some are invisible...
    /private/var/run/StartupItems
    /Library/StartupItems
    /System/Library/StartupItems
    /System/Library/LaunchDaemons
    /Library/LaunchDaemons

  • IMAC 27 - attached a second monitor - mouse tracking problem

    After attaching a 19 inch lcd via the mini display port and a dvi adapter my mouse tracking has gone bad, not just from one screen to the other even just on the main screen if you move the mouse around it jumps several inches and is very inaccurate. problem goes away when the second mointor is unpluged.
    Can anyone help?
    Stephen

    I'll add to the chorus: I have the 27" iMac, and I get the same mouse jumpiness when I connect my 24" Acer P244W display via the Mini DisplayPort-DVI adapter. Oddly enough, the mouse jumpiness is more pronounced when I use my old wired MS Intellimouse Optical than when I use the included Magic Mouse. I've confirmed with another Mac (and with this Mac minus the second display) that the wired mouse is functioning normally.
    Basically, given slow, constant mouse movement, the cursor will hiccough for about a tenth of a second once every 1.0 seconds, like clockwork. Given more normal use, the cursor will continue to hiccough every second and will also occasionally jump to a completely unrelated location on the screen. (The wired mouse was the worse off here, jumping unpredictably several times a minute.)
    I've unplugged the secondary display for now, but I kinda sorta really need it for Flash and video work. Apple, help!

  • Richt Click Mouse with user32.dll and String Constant for Escape Key

    Hi, could some one provide the input parameters to use with Mouse_Event function in user32.dll to Right Click the Mouse?   Also, what is the string constant to send if one want to type the Escape Key (Esc)?  
    I have searched this forrum but only find the parameters for Left Mouse Click.  Thanks for any help.

    Hi,
    The mouse_event function has been superseded by the sendinput command.  To learn more about the function calls with user32.dll, have a look at the msdn.com website.  The user32.dll website is shown here.  The syntax for the mouse_event function is shown below:
    Syntax
    VOID mouse_event(      
        DWORD dwFlags,
        DWORD dx,
        DWORD dy,
        DWORD dwData,
        ULONG_PTR dwExtraInfo
    );I hope this helps,
    Regards,
    Nadim
    Applications Engineering
    National Instruments

  • Constant Problems with Apple Wireless Keyboard & Mighty Mouse

    My Apple Wireless keyboard constantly loses its connection with my Mac Mini (I have brand new batteries and the latest firmware update) but it is sitting directly in front of it!
    I can get it to work when I go to sys. pref., delete the keyboard, and start the set up assistant. However, once I get the keyboard working this way the Mighty Mouse beings to move insanely slow!
    Please help me, I bought these two products because they were directly from Apple and I just assumed they would work great with my computer.
    Thanks

    Hello craig:
    If you are near an Apple store, take both products in - they can test them there. If you are not near a store, call Applecare (since your products are still in the one year warranty). They may replace one or both.
    A third possibility (one you do not wish to hear) would be the BT module itself having a problem.
    Barry

  • Satellite C660 - Mouse pad constant click

    Hi,
    The mousepad on one of our C660 laptops is acting almost like the mouse pad is constantly being tapped.
    If you hover over an icon it'll open that file several times.
    If i disable it and plug in a USB mouse the issue stops.
    I've tried:
    scanning for malware
    disabling/reenabling
    uninstalling/installing
    system restore
    driver update
    Nothing helps.
    I dont know whether this is related or not but i cant get any network connectivity either.
    Connects happily to wireless but thats where it ends..
    any advice!?

    Hi
    I think its touchpad related setting.
    Go to control panel -> mouse -> Last tab (Advanced) -> Advanced feature setting button
    Here you can see the area: Delay after last key is hit. Try to set this to LONG
    Furthermore in Pointer speed and tapping settings click on Setting button.
    Here I recommend changing the touch sensitivity level to LOW
    Last but not lease you can also disable the tapping. In such case you will need to use the left touchpad button to click in the icons..

  • Constant short system lockups, no mouse movement, spontaneous res changes

    I have an original 2006 Macbook Pro 2.0GHz Core Duo, 2GB RAM with an upgraded Seagate Momentus XT 500GB hybrid hard drive and an upgraded Apple 802.11n Airport Extreme wireless adapter.
    Beginning in August 2010, the system began to exhibit odd trackpad behaviour. The system acted as if the trackpad wasn't recognizing finger input every 20 - 30 seconds. This would happen 3 or 4 times a day. The problem got progressively worse, and in October another problem started - the display. 5 - 10 times per day the system will flash to a pastel blue screen, then drops back to the regular display at 640X480 screen resolution. Accessing Displays in System Preferences and picking "detect" returns the system to its proper settings.
    The trackpad freezes are actually short system freezes, as they happen even when using an external mouse. I thought that this might be a software problem, so I did a complete re-install to a new hard drive (the Seagate) and the problems remain - pointing to a hardware problem.
    I have reset the SMC, NVRAM and PRAM.
    There have been other issues with the machine over the years. I have replaced 2 GPU fans myself, and had the system fan replaced under the original 1-year applecare warranty. The original hard drive failed, and was replaced in 2008 with a Western Digital Scorpio 320GB. When this was filled, I replaced it in spring 2010 with a WD Scorpio Blue 640GB. Thinking that the 640 might be too slow for a system drive, I replaced it with the Seagate Momentus XT 500 Hybrid. The seagate has been a huge boost to system performance - when the system works...
    Any thoughts? I'm an IT professional with 30+ years of experience fixing a wide variety of hardware. I have been a certified repair technician for HP, Toshiba and Dell laptops, and this is one of the few problems that has me completely stumped, and it is my own system!!!
    Thanks for any thoughts you may have.

    I've actually found the answer, and it wasn't what I expected at all.  The problem is a defective thermal sensor on the CPU.  The CPU Fan NEVER spins up beyond about 1000RPM, so the temperature of the system rapidly spikes, resulting in throttling.  I can watch the temperature spikes on surrounding thermal sensors, while the CPU temperature remains flat.
    I solved the issue by manually setting a default cpu fan speed of 3200rpm, and setting a toggle to force it to 6000rpm for heavy workloads.  While this is hard on the fan, it has resulted in proper operation of the computer.
    I also set the jumper on the HD to force SATA1 (SATA150) mode, just to be safe.
    All is now functional since these two changes.

  • Firefox 3.6.12 once loaded sometimes it will slow down and once a web page is clicked it wont load without some sort of constant action like movement of the mouse.

    This has never happened before and I've done everything from high end malware scans to CCleaner and nothing fixes this.

    Entshuldigen aber mein Deutsch ist ganz schlect. was is 'datei'?
    Ich habe 3 stunden mehr ausgaben mit Adobe Support . noch ein problem! Und er war uberhaupt ein dumbkopft.
    Peter
    Sent from my iPad Air

  • Safari won't open and wheel (mouse pointer) keeps spinning

    Hi guys.
    I'm going crazy here as everything I've read and tried doesn't work?
    I've deleted cache files, history, plug-ins etc etc and every time I try and launch Safari, I keep getting the spinning wheel/beach ball/mouse pointer and safari doesn't open?
    I've received the following long error message and it may as well be in Arabic as I haven't got a clue what it means?
    Any techies out there who could shed some light "Error message for dummies' style please?
    This is the report error.
    Cheers,
    Marc
    Date/Time:     
    2014-06-20 15:35:13 +0400
    OS Version:    
    10.7.5 (Build 11G63)
    Architecture:  
    x86_64
    Report Version:  9
    Command:       
    Safari
    Path:          
    /Applications/Safari.app/Contents/MacOS/Safari
    Version:         6.0.2
    (7536.26.17)
    Build Version:   2
    Project Name:  
    WebBrowser
    Source Version:
    7536026017000000
    Parent:        
    launchd [124]
    PID:             216
    Event:           hang
    Duration:        1.61s
    Steps:           17
    (100ms sampling interval)
    Pageins:         24
    Pageouts:        0
    Process:       
    Safari [216]
    Path:          
    /Applications/Safari.app/Contents/MacOS/Safari
    Architecture:  
    x86_64
    UID:             501
      Thread 0x62e        DispatchQueue 1
      User stack:
        17 ??? (in Safari)
    [0x1033dff2c]
          17 SafariMain +
    166 (in Safari) [0x1035f735a]
            17
    NSApplicationMain + 867 (in AppKit) [0x7fff8b723eac]
              17
    -[NSApplication run] + 470 (in AppKit) [0x7fff8b4a79b9]
                17
    -[BrowserApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 162 (in
    Safari) [0x10343234f]
                  17
    -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 135 (in
    AppKit) [0x7fff8b4ab07d]
                    17
    _DPSNextEvent + 1247 (in AppKit) [0x7fff8b4ab9c5]
                      17
    AEProcessAppleEvent + 102 (in HIToolbox) [0x7fff8f178b69]
                        17
    aeProcessAppleEvent + 250 (in AE) [0x7fff8f4bb9f7]
    17 _ZL25dispatchEventAndSendReplyPK6AEDescPS_ + 38 (in AE)
    [0x7fff8f4bbb03]
    17 aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned int, unsigned
    char*) + 200 (in AE) [0x7fff8f4bbc25]
    17 _NSAppleEventManagerGenericHandler + 105 (in Foundation)
    [0x7fff8995a5dc]
    17 -[NSAppleEventManager
    dispatchRawAppleEvent:withRawReply:handlerRefCon:] + 283 (in Foundation)
    [0x7fff8995a74e]
    17 __-[NSAppleEventManager
    setEventHandler:andSelector:forEventClass:andEventID:]_block_invoke_1 + 101 (in
    Foundation) [0x7fff8995b7c7]
                                    17 -[NSObject
    performSelector:withObject:withObject:] + 65 (in CoreFoundation)
    [0x7fff84183541]
                                      17
    -[NSApplication(NSAppleEventHandling) _handleCoreEvent:withReplyEvent:] + 330
    (in AppKit) [0x7fff8b4ae5b9]
                                        17
    -[NSApplication(NSAppleEventHandling) _handleAEOpenEvent:] + 227 (in AppKit)
    [0x7fff8b4ae849]
                                          17
    -[NSApplication _reopenWindowsAsNecessaryIncludingRestorableState:registeringAsReady:completion Handler:]
    + 180 (in AppKit) [0x7fff8b4ae9ec]
                                            17
    -[NSPersistentUIManager promptToIgnorePersistentState] + 178 (in AppKit)
    [0x7fff8b4da234]
                                              17 -[NSApplication
    _suppressFinishLaunchingFromEventHandlersWhilePerformingBlock:] + 31 (in
    AppKit) [0x7fff8b758782]
                                                17
    __-[NSPersistentUIManager promptToIgnorePersistentState]_block_invoke_1 + 798
    (in AppKit) [0x7fff8b4da58a]
    17 +[NSAlert
    alertWithMessageText:defaultButton:alternateButton:otherButton:informativeTextWi thFormat:]
    + 117 (in AppKit) [0x7fff8b74de4d]
    17 -[NSAlert init] + 105 (in AppKit) [0x7fff8b7532f0]
    17 _NXLoadNib + 190 (in AppKit) [0x7fff8b6f0116]
    17 +[NSBundle(NSNibLoading) loadNibFile:externalNameTable:withZone:] +
    110 (in AppKit) [0x7fff8b4b2cb4]
    17 +[NSBundle bundleForClass:] + 78 (in Foundation) [0x7fff8993ca1e]
    17 -[NSRecursiveLock lock] + 25 (in Foundation) [0x7fff89927df9]
    17 __psynch_mutexwait + 10 (in libsystem_kernel.dylib) [0x7fff8a13dbf2]
      Kernel stack:
        17
    psynch_mtxcontinue + 0 (in mach_kernel) [0xffffff800059eb20]
      Thread 0x633        DispatchQueue 2
      User stack:
        17
    _dispatch_mgr_thread + 54 (in libdispatch.dylib) [0x7fff8b036316]
          17 kevent + 10
    (in libsystem_kernel.dylib) [0x7fff8a13e7e6]
      Kernel stack:
        17 kqueue_scan +
    416 (in mach_kernel) [0xffffff800053b4d0]
      Thread 0x636      
      User stack:
        17 thread_start +
    13 (in libsystem_c.dylib) [0x7fff8751ab75]
          17
    _pthread_start + 335 (in libsystem_c.dylib) [0x7fff875178bf]
            17
    _ZN3WTFL19wtfThreadEntryPointEPv + 15 (in JavaScriptCore) [0x103de638f]
              17
    WebCore::IconDatabase::iconDatabaseSyncThread() + 500 (in WebCore)
    [0x1044a56b4]
                17
    WebCore::IconDatabase::syncThreadMainLoop() + 107 (in WebCore) [0x1044a7b9b]
                  17
    __psynch_cvwait + 10 (in libsystem_kernel.dylib) [0x7fff8a13dbca]
      Kernel stack:
        17
    psynch_cvcontinue + 0 (in mach_kernel) [0xffffff800059e920]
      Thread 0x638      
      User stack:
        17 thread_start +
    13 (in libsystem_c.dylib) [0x7fff8751ab75]
          17
    _pthread_start + 335 (in libsystem_c.dylib) [0x7fff875178bf]
            17 thread_fun
    + 24 (in QuartzCore) [0x7fff83401d35]
              17
    CA::Render::Server::server_thread(void*) + 184 (in QuartzCore) [0x7fff83401df5]
                17
    mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8a13c67a]
      Kernel stack:
        17
    ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff8000215930]
      Thread 0x64a      
      User stack:
        17 thread_start +
    13 (in libsystem_c.dylib) [0x7fff8751ab75]
          17
    _pthread_start + 335 (in libsystem_c.dylib) [0x7fff875178bf]
            17
    __NSThread__main__ + 1575 (in Foundation) [0x7fff8997c6a2]
              17
    -[NSThread main] + 68 (in Foundation) [0x7fff8997c72a]
                17
    +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 335 (in
    Foundation) [0x7fff89987fd7]
                  17
    CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff84125486]
                    17
    __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff84125c74]
                      17 __CFRunLoopServiceMachPort
    + 188 (in CoreFoundation) [0x7fff8411d50c]
                        17
    mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8a13c67a]
      Kernel stack:
        17
    ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff8000215930]
      Thread 0x64d      
      User stack:
        17 thread_start +
    13 (in libsystem_c.dylib) [0x7fff8751ab75]
          17 ??? (in
    Safari) [0xdeadbeef]
            17 dlopen +
    540 (in dyld) [0x7fff62fe8657]
              17
    dyld::runInitializers(ImageLoader*) + 97 (in dyld) [0x7fff62fe21b9]
                17
    ImageLoader::runInitializers(ImageLoader::LinkContext const&,
    ImageLoader::InitializerTimingList&) + 59 (in dyld) [0x7fff62fed0b7]
                  17
    ImageLoader::recursiveInitialization(ImageLoader::LinkContext const&,
    unsigned int, ImageLoader::InitializerTimingList&) + 237 (in dyld)
    [0x7fff62fec2cd]
                    17
    _ZN4dyldL12notifySingleE17dyld_image_statesPK11ImageLoader + 226 (in dyld)
    [0x7fff62fe0973]
                      17
    load_images + 233 (in libobjc.A.dylib) [0x7fff8331c36b]
                        17
    call_load_methods + 161 (in libobjc.A.dylib) [0x7fff8331c6ca]
    17 +[VSearchLib load] + 92 (in libVSearchLoader.dylib) [0x1097ccbf4]
    17 -[NSBundle principalClass] + 41 (in Foundation) [0x7fff8997bd84]
    17 -[NSBundle load] + 18 (in Foundation) [0x7fff899843f8]
    17 objc_msgSend_vtable3 + 24 (in libobjc.A.dylib) [0x7fff8331e0d8]
      Kernel stack:
        17 hndl_alltraps +
    225 (in mach_kernel) [0xffffff80002da481]
          17 user_trap +
    711 (in mach_kernel) [0xffffff80002c4017]
            17
    exception_triage + 149 (in mach_kernel) [0xffffff8000220e15]
              17
    exception_deliver + 766 (in mach_kernel) [0xffffff8000220c1e]
                17
    exception_raise_state_identity + 325 (in mach_kernel) [0xffffff8000249c75]
                  17
    mach_msg_rpc_from_kernel_body + 277 (in mach_kernel) [0xffffff80002239d5]
                    17
    ipc_mqueue_receive + 70 (in mach_kernel) [0xffffff8000215886]
                      17
    thread_block_reason + 299 (in mach_kernel) [0xffffff800022f42b]
                        17
    thread_continue + 1661 (in mach_kernel) [0xffffff800022f1ad]
    17 machine_switch_context + 361 (in mach_kernel) [0xffffff80002c2939]
      Binary Images:
             0x1033df000
    -        0x1033dffff  com.apple.Safari 6.0.2 (7536.26.17)
    <712FC0E4-1F7C-3C6F-A65F-8F9EDE304463> /Applications/Safari.app/Contents/MacOS/Safari
             0x1033e5000
    -        0x103887fff  com.apple.Safari.framework 7536 (7536.26.17)
    <8C9589AE-EA24-3360-812B-DBAE560FBE7F>
    /System/Library/StagedFrameworks/Safari/Safari.framework/Safari
             0x103ba8000
    -        0x103e42ff7  com.apple.JavaScriptCore 7536 (7536.26.15)
    <DE475475-D66E-3BF3-9AA6-422601989CF6>
    /System/Library/StagedFrameworks/Safari/JavaScriptCore.framework/JavaScriptCore
             0x1044a1000
    -        0x105447ff7  com.apple.WebCore 7536 (7536.26.15)
    <BB07086A-227A-3817-BFED-4DF34E04CD56> /System/Library/StagedFrameworks/Safari/WebCore.framework/WebCore
             0x1097cc000
    -        0x1097cdfff  libVSearchLoader.dylib ??? (???)
    <2DF78468-AB4B-363E-A838-D4CE14679E8B> /System/Library/Frameworks/VSearch.framework/Versions/A/Libraries/libVSearchLoa der.dylib
          0x7fff62fdf000
    -     0x7fff63013baf  dyld ??? (???)
    <0CD1B35B-A28F-32DA-B72E-452EAD609613> /usr/lib/dyld
          0x7fff83313000
    -     0x7fff833f7e5f  libobjc.A.dylib ??? (???)
    <871E688B-CF57-3BC7-80D6-F6476DFF109B> /usr/lib/libobjc.A.dylib
          0x7fff833ff000
    -     0x7fff8359fff7  com.apple.QuartzCore 1.7 (270.5)
    <19E5E0AB-DAA9-3F97-988C-D9A46AFB9C04>
    /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
          0x7fff840ed000
    -     0x7fff842c1ff7  com.apple.CoreFoundation 6.7.2 (635.21)
    <62A3402E-A4E7-391F-AD20-1EF20236CE1B>
    /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff874c9000
    -     0x7fff875a6fef  libsystem_c.dylib ??? (???)
    <41B43515-2806-3FBC-ACF1-A16F35B7E290> /usr/lib/system/libsystem_c.dylib
          0x7fff89922000 -     0x7fff89c3bfff  com.apple.Foundation 6.7.2 (833.25)
    <22AAC369-B63C-3C55-8AC6-C3ECBA44DA7B>
    /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
          0x7fff8a127000
    -     0x7fff8a147fff  libsystem_kernel.dylib ??? (???)
    <66C9F9BD-C7B3-30D4-B1A0-03C8A6392351>
    /usr/lib/system/libsystem_kernel.dylib
          0x7fff8b034000
    -     0x7fff8b042fff  libdispatch.dylib ??? (???)
    <8E03C652-922A-3399-93DE-9EA0CBFA0039> /usr/lib/system/libdispatch.dylib
          0x7fff8b4a3000
    -     0x7fff8c0a9fff  com.apple.AppKit 6.7.5 (1138.51)
    <44417D02-6123-3FC3-A119-CE51BB4C3006>
    /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
          0x7fff8f168000
    -     0x7fff8f494fff  com.apple.HIToolbox 1.9 (???)
    <CCB32DEA-D0CA-35D1-8019-E599C8007AB6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
          0x7fff8f4b8000
    -     0x7fff8f4f7fff  com.apple.AE 527.7 (527.7)
    <B82F7ABC-AC8B-3507-B029-969DD5CA813D>
    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.frame work/Versions/A/AE
    Process:       
    AppleSpell [212]
    Path:          
    /System/Library/Services/AppleSpell.service/Contents/MacOS/AppleSpell
    Architecture:  
    x86_64
    UID:             501
      Thread 0x5fd        DispatchQueue 1
      User stack:
        17 ??? (in
    AppleSpell) [0x109383a7c]
          17 ??? (in
    AppleSpell) [0x109383d2e]
            17
    -[NSSpellServer run] + 74 (in Foundation) [0x7fff89a7ec76]
              17
    CFRunLoopRun + 95 (in CoreFoundation) [0x7fff8413519f]
                17
    CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff84125486]
                  17
    __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff84125c74]
                    17
    __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff8411d50c]
                      17
    mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8a13c67a]
      Kernel stack:
        17
    ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff8000215930]
      Thread 0x604        DispatchQueue 2
      User stack:
        17
    _dispatch_mgr_thread + 54 (in libdispatch.dylib) [0x7fff8b036316]
          17 kevent + 10
    (in libsystem_kernel.dylib) [0x7fff8a13e7e6]
      Kernel stack:
        17 kqueue_scan +
    416 (in mach_kernel) [0xffffff800053b4d0]
      Binary Images:
             0x109382000
    -        0x10943eff7  com.apple.AppleSpell 1.7.1 (131.1)
    <A994D9F1-C4D8-3361-B0F4-112A7BAED8BD> /System/Library/Services/AppleSpell.service/Contents/MacOS/AppleSpell
          0x7fff840ed000
    -     0x7fff842c1ff7  com.apple.CoreFoundation 6.7.2 (635.21)
    <62A3402E-A4E7-391F-AD20-1EF20236CE1B>
    /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff89922000
    -     0x7fff89c3bfff  com.apple.Foundation 6.7.2 (833.25)
    <22AAC369-B63C-3C55-8AC6-C3ECBA44DA7B> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
          0x7fff8a127000
    -     0x7fff8a147fff  libsystem_kernel.dylib ??? (???)
    <66C9F9BD-C7B3-30D4-B1A0-03C8A6392351> /usr/lib/system/libsystem_kernel.dylib
          0x7fff8b034000
    -     0x7fff8b042fff  libdispatch.dylib ??? (???)
    <8E03C652-922A-3399-93DE-9EA0CBFA0039> /usr/lib/system/libdispatch.dylib
    Process:       
    autofsd [62]
    Path:          
    /usr/libexec/autofsd
    Architecture:  
    x86_64
    UID:             0
      Thread 0x233        DispatchQueue 2
      User stack:
        17
    _dispatch_mgr_thread + 54 (in libdispatch.dylib) [0x7fff8b036316]
          17 kevent + 10
    (in libsystem_kernel.dylib) [0x7fff8a13e7e6]
      Kernel stack:
        17 kqueue_scan +
    416 (in mach_kernel) [0xffffff800053b4d0]
      Thread 0x234        DispatchQueue 6
      User stack:
        17
    _dispatch_sig_thread + 45 (in libdispatch.dylib) [0x7fff8b038b1c]
          17
    __sigsuspend_nocancel + 10 (in libsystem_kernel.dylib) [0x7fff8a13e022]
      Kernel stack:
        17 wakeup + 992
    (in mach_kernel) [0xffffff8000555e90]
      Binary Images:
             0x10dafe000
    -        0x10dafffff  autofsd ??? (???)
    <A02D5E70-1BB1-30ED-A699-375CB0CCE901> /usr/libexec/autofsd
          0x7fff8a127000
    -     0x7fff8a147fff  libsystem_kernel.dylib ??? (???)
    <66C9F9BD-C7B3-30D4-B1A0-03C8A6392351> /usr/lib/system/libsystem_kernel.dylib
          0x7fff8b034000
    -     0x7fff8b042fff  libdispatch.dylib ??? (???)
    <8E03C652-922A-3399-93DE-9EA0CBFA0039> /usr/lib/system/libdispatch.dylib
    Process:         blued
    [21]
    Path:          
    /usr/sbin/blued
    Architecture:  
    x86_64
    UID:             0
      Thread 0x12d        DispatchQueue 1
      User stack:
        17 ??? (in blued)
    [0x1033889a4]
          17 ??? (in
    blued) [0x1033bf4bf]
            17
    -[NSRunLoop(NSRunLoop) run] + 62 (in Foundation) [0x7fff8992de67]
              17 -[NSRunLoop(NSRunLoop) runMode:beforeDate:]
    + 267 (in Foundation) [0x7fff8992df7b]
                17
    CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff84125486]
                  17
    __CFRunLoopRun + 1204 (in CoreFoundation) [0x7fff84125c74]
                    17 __CFRunLoopServiceMachPort + 188 (in
    CoreFoundation) [0x7fff8411d50c]
                      17
    mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8a13c67a]
      Kernel stack:
        17
    ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff8000215930]
      Thread 0x138        DispatchQueue 2
      User stack:
        17
    _dispatch_mgr_thread + 54 (in libdispatch.dylib) [0x7fff8b036316]
          17 kevent + 10
    (in libsystem_kernel.dylib) [0x7fff8a13e7e6]
      Kernel stack:
        17 kqueue_scan +
    416 (in mach_kernel) [0xffffff800053b4d0]
      Thread 0x1a5      
      User stack:
        17 thread_start +
    13 (in libsystem_c.dylib) [0x7fff8751ab75]
          17
    _pthread_start + 335 (in libsystem_c.dylib) [0x7fff875178bf]
            17 __select +
    10 (in libsystem_kernel.dylib) [0x7fff8a13ddf2]
      Kernel stack:
        17 wakeup + 992
    (in mach_kernel) [0xffffff8000555e90]
      Binary Images:
             0x103387000
    -        0x103440fff  blued ??? (???)
    <FE392F89-6D67-3015-A6AD-BA96C1FB5EFF> /usr/sbin/blued
          0x7fff840ed000
    -     0x7fff842c1ff7  com.apple.CoreFoundation 6.7.2 (635.21)
    <62A3402E-A4E7-391F-AD20-1EF20236CE1B>
    /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff874c9000
    -     0x7fff875a6fef  libsystem_c.dylib ??? (???)
    <41B43515-2806-3FBC-ACF1-A16F35B7E290> /usr/lib/system/libsystem_c.dylib
          0x7fff89922000
    -     0x7fff89c3bfff  com.apple.Foundation 6.7.2 (833.25)
    <22AAC369-B63C-3C55-8AC6-C3ECBA44DA7B> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
          0x7fff8a127000
    -     0x7fff8a147fff  libsystem_kernel.dylib ??? (???)
    <66C9F9BD-C7B3-30D4-B1A0-03C8A6392351>
    /usr/lib/system/libsystem_kernel.dylib
          0x7fff8b034000
    -     0x7fff8b042fff  libdispatch.dylib ??? (???)
    <8E03C652-922A-3399-93DE-9EA0CBFA0039> /usr/lib/system/libdispatch.dylib
    Process:         Canon
    CMFP BackGrounder [164]
    Path:          
    /Library/Printers/Canon/CUPSCMFP/BackGrounder/Canon CMFP
    BackGrounder.app/Contents/MacOS/Canon CMFP BackGrounder
    Architecture:    i386
    UID:             501
    Process:         Canon
    PS2 BackGrounder [163]
    Path:          
    /Library/Printers/Canon/CUPSPS2/BackGrounder/Canon PS2
    BackGrounder.app/Contents/MacOS/Canon PS2 BackGrounder
    Architecture:    i386
    UID:             501
    Process:       
    com.apple.dock.extra [184]
    Path:            /System/Library/CoreServices/Dock.app/Contents/XPCServices/com.apple.dock.extra .xpc/Contents/MacOS/com.apple.dock.extra
    Architecture:  
    x86_64
    UID:             501
      Thread 0x4da        DispatchQueue 1
      User stack:
        17 ??? (in
    com.apple.dock.extra) [0x1003df474]
          17
    xpc_service_main + 448 (in XPCService) [0x7fff8a46c5ed]
            17
    NSApplicationMain + 867 (in AppKit) [0x7fff8b723eac]
              17
    -[NSApplication run] + 470 (in AppKit) [0x7fff8b4a79b9]
                17
    -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 135 (in
    AppKit) [0x7fff8b4ab07d]
                  17
    _DPSNextEvent + 659 (in AppKit) [0x7fff8b4ab779]
                    17
    BlockUntilNextEventMatchingListInMode + 62 (in HIToolbox) [0x7fff8f1713fa]
                      17
    ReceiveNextEventCommon + 355 (in HIToolbox) [0x7fff8f17156d]
                        17
    RunCurrentEventLoopInMode + 277 (in HIToolbox) [0x7fff8f16a2bf]
    17 CFRunLoopRunSpecific + 230 (in CoreFoundation) [0x7fff84125486]
                            17 __CFRunLoopRun + 1204 (in CoreFoundation)
    [0x7fff84125c74]
    17 __CFRunLoopServiceMachPort + 188 (in CoreFoundation) [0x7fff8411d50c]
    17 mach_msg_trap + 10 (in libsystem_kernel.dylib) [0x7fff8a13c67a]
      Kernel stack:
        17
    ipc_mqueue_receive_continue + 0 (in mach_kernel) [0xffffff8000215930]
      Thread 0x4e4        DispatchQueue 2
      User stack:
        17
    _dispatch_mgr_thread + 54 (in libdispatch.dylib) [0x7fff8b036316]
          17 kevent + 10
    (in libsystem_kernel.dylib) [0x7fff8a13e7e6]
      Kernel stack:
        17 kqueue_scan +
    416 (in mach_kernel) [0xffffff800053b4d0]
      Binary Images:
             0x1003de000
    -        0x1003e2ff7  com.apple.dock.extra 1.0 (1)
    <13C8211B-0B1D-302A-8EF9-740BA3BD69C0>
    /System/Library/CoreServices/Dock.app/Contents/XPCServices/com.apple.dock.extra. xpc/Contents/MacOS/com.apple.dock.extra
          0x7fff840ed000
    -     0x7fff842c1ff7  com.apple.CoreFoundation 6.7.2 (635.21)
    <62A3402E-A4E7-391F-AD20-1EF20236CE1B> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
          0x7fff8a127000
    -     0x7fff8a147fff  libsystem_kernel.dylib ??? (???)
    <66C9F9BD-C7B3-30D4-B1A0-03C8A6392351> /usr/lib/system/libsystem_kernel.dylib
          0x7fff8a46a000
    -     0x7fff8a471ff7  com.apple.XPCService 1.3 (1)
    <68C4DBC9-18C3-3053-96D5-1858B905EAE0>
    /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService
          0x7fff8b034000
    -     0x7fff8b042fff  libdispatch.dylib ??? (???)
    <8E03C652-922A-3399-93DE-9EA0CBFA0039> /usr/lib/system/libdispatch.dylib
          0x7fff8b4a3000
    -     0x7fff8c0a9fff  com.apple.AppKit 6.7.5 (1138.51)
    <44417D02-6123-3FC3-A119-CE51BB4C3006> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
          0x7fff8f168000
    -     0x7fff8f494fff  com.apple.HIToolbox 1.9 (???)
    <CCB32DEA-D0CA-35D1-8019-E599C8007AB6>
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fram ework/Versions/A/HIToolbox

    You installed the "DownLite" trojan, perhaps under a different name. Remove it as follows.
    Malware is constantly changing to get around the defenses against it. The instructions in this comment are valid as of now, as far as I know. They won't necessarily be valid in the future. Anyone finding this comment a few days or more after it was posted should look for more recent discussions or start a new one.
    Back up all data.
    Triple-click anywhere in the line below on this page to select it:
    /Library/LaunchAgents/com.vsearch.agent.plist
    Right-click or control-click the line and select
    Services ▹ Reveal in Finder (or just Reveal)
    from the contextual menu.* A folder should open with an item named "VSearch" selected. Drag the selected item to the Trash. You may be prompted for your administrator login password.
    Repeat with each of these lines:
    /Library/LaunchDaemons/com.vsearch.daemon.plist
    /Library/LaunchDaemons/com.vsearch.helper.plist
    /Library/LaunchDaemons/Jack.plist
    Restart the computer and empty the Trash. Then delete the following items in the same way:
    /Library/Application Support/VSearch
    /Library/PrivilegedHelperTools/Jack
    /System/Library/Frameworks/VSearch.framework
    Some of these items may be absent, in which case you'll get a message that the file can't be found. Skip that item and go on to the next one.
    From the Safari menu bar, select
    Safari ▹ Preferences... ▹ Extensions
    Uninstall any extensions you don't know you need, including any that have the word "Spigot" in the description. If in doubt, uninstall all extensions. Do the equivalent for the Firefox and Chrome browsers, if you use either of those.
    This trojan is distributed on illegal websites that traffic in pirated movies. If you, or anyone else who uses the computer, visit such sites and follow prompts to install software, you can expect much worse to happen in the future.
    You may be wondering why you didn't get a warning from Gatekeeper about installing software from an unknown developer, as you should have. The reason is that the DownLite developer has a codesigning certificate issued by Apple, which causes Gatekeeper to give the installer a pass. Apple could revoke the certificate, but as of this writing, has not done so, even though it's aware of the problem. This failure of oversight is inexcusable and has compromised both Gatekeeper and the Developer ID program. You can't rely on Gatekeeper alone to protect you from harmful software.
    *If you don't see the contextual menu item, copy the selected text to the Clipboard by pressing the key combination command-C. In the Finder, select
    Go ▹ Go to Folder...
    from the menu bar and paste into the box that opens by pressing command-V. You won't see what you pasted because a line break is included. Press return.

  • Gnome Black Screen with Mouse Cursor after Login

    I am using Archlinux 64bit with a Gnome Desktop Environment. Everything was running normally uptill today. When i ran "sudo fc-cache", my system froze. I couldnt open any other app but i was able to access terminal. I restarted using "reboot" command. After that I was unable to log in to my desktop.
    The Gnome login screen comes and after entering the correct username and password, all I can see is a black screen with mouse cursor. I then started gnome manually with "startx" and it worked. But still I am unable to use normally (that is the graphical login). I reinstalled gdm but it didnt work. Please help me out.

    there are a lot of processess running... dunno killing which process will not cause a problem
    here is the xorg log  ( sorry i dont have much knowlegde to analyse it )
    [ 2957.489]
    X.Org X Server 1.16.1
    Release Date: 2014-09-21
    [ 2957.493] X Protocol Version 11, Revision 0
    [ 2957.494] Build Operating System: Linux 3.16.1-1-ARCH x86_64
    [ 2957.495] Current Operating System: Linux defo-arch 3.17.1-1-ARCH #1 SMP PREEMPT Wed Oct 15 15:04:35 CEST 2014 x86_64
    [ 2957.495] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=3c376af4-e330-4277-8bfa-388dabfced9e rw quiet
    [ 2957.497] Build Date: 21 September 2014 10:53:13AM
    [ 2957.498]
    [ 2957.499] Current version of pixman: 0.32.6
    [ 2957.501] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 2957.501] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 2957.506] (==) Log file: "/var/log/Xorg.0.log", Time: Sun Oct 26 01:36:27 2014
    [ 2957.507] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    [ 2957.507] (==) No Layout section. Using the first Screen section.
    [ 2957.507] (==) No screen section available. Using defaults.
    [ 2957.507] (**) |-->Screen "Default Screen Section" (0)
    [ 2957.507] (**) | |-->Monitor "<default monitor>"
    [ 2957.507] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 2957.507] (==) Automatically adding devices
    [ 2957.507] (==) Automatically enabling devices
    [ 2957.507] (==) Automatically adding GPU devices
    [ 2957.507] (WW) The directory "/usr/share/fonts/TTF/" does not exist.
    [ 2957.507] Entry deleted from font path.
    [ 2957.507] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 2957.507] Entry deleted from font path.
    [ 2957.507] (WW) The directory "/usr/share/fonts/Type1/" does not exist.
    [ 2957.507] Entry deleted from font path.
    [ 2957.507] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 2957.507] Entry deleted from font path.
    [ 2957.507] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 2957.507] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 2957.507] Entry deleted from font path.
    [ 2957.507] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 2957.507] (==) FontPath set to:
    /usr/share/fonts/misc/
    [ 2957.507] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 2957.507] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 2957.507] (II) Loader magic: 0x818d80
    [ 2957.507] (II) Module ABI versions:
    [ 2957.507] X.Org ANSI C Emulation: 0.4
    [ 2957.507] X.Org Video Driver: 18.0
    [ 2957.507] X.Org XInput driver : 21.0
    [ 2957.507] X.Org Server Extension : 8.0
    [ 2957.509] (II) systemd-logind: took control of session /org/freedesktop/login1/session/c1
    [ 2957.509] (II) xfree86: Adding drm device (/dev/dri/card0)
    [ 2957.510] (II) systemd-logind: got fd for /dev/dri/card0 226:0 fd 8 paused 0
    [ 2957.512] (--) PCI:*(0:0:2:0) 8086:2a02:1028:022f rev 12, Mem @ 0xfea00000/1048576, 0xe0000000/268435456, I/O @ 0x0000eff8/8
    [ 2957.512] (--) PCI: (0:0:2:1) 8086:2a03:1028:022f rev 12, Mem @ 0xfeb00000/1048576
    [ 2957.512] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 2957.512] (II) LoadModule: "glx"
    [ 2957.512] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 2957.514] (II) Module glx: vendor="X.Org Foundation"
    [ 2957.514] compiled for 1.16.1, module version = 1.0.0
    [ 2957.514] ABI class: X.Org Server Extension, version 8.0
    [ 2957.514] (==) AIGLX enabled
    [ 2957.514] (==) Matched intel as autoconfigured driver 0
    [ 2957.514] (==) Matched intel as autoconfigured driver 1
    [ 2957.514] (==) Matched modesetting as autoconfigured driver 2
    [ 2957.514] (==) Matched fbdev as autoconfigured driver 3
    [ 2957.514] (==) Matched vesa as autoconfigured driver 4
    [ 2957.514] (==) Assigned the driver to the xf86ConfigLayout
    [ 2957.514] (II) LoadModule: "intel"
    [ 2957.514] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
    [ 2957.515] (II) Module intel: vendor="X.Org Foundation"
    [ 2957.515] compiled for 1.16.1, module version = 2.99.916
    [ 2957.515] Module class: X.Org Video Driver
    [ 2957.515] ABI class: X.Org Video Driver, version 18.0
    [ 2957.515] (II) LoadModule: "modesetting"
    [ 2957.515] (WW) Warning, couldn't open module modesetting
    [ 2957.515] (II) UnloadModule: "modesetting"
    [ 2957.515] (II) Unloading modesetting
    [ 2957.515] (EE) Failed to load module "modesetting" (module does not exist, 0)
    [ 2957.515] (II) LoadModule: "fbdev"
    [ 2957.515] (WW) Warning, couldn't open module fbdev
    [ 2957.515] (II) UnloadModule: "fbdev"
    [ 2957.515] (II) Unloading fbdev
    [ 2957.515] (EE) Failed to load module "fbdev" (module does not exist, 0)
    [ 2957.515] (II) LoadModule: "vesa"
    [ 2957.515] (WW) Warning, couldn't open module vesa
    [ 2957.515] (II) UnloadModule: "vesa"
    [ 2957.515] (II) Unloading vesa
    [ 2957.515] (EE) Failed to load module "vesa" (module does not exist, 0)
    [ 2957.515] (II) intel: Driver for Intel(R) Integrated Graphics Chipsets:
    i810, i810-dc100, i810e, i815, i830M, 845G, 854, 852GM/855GM, 865G,
    915G, E7221 (i915), 915GM, 945G, 945GM, 945GME, Pineview GM,
    Pineview G, 965G, G35, 965Q, 946GZ, 965GM, 965GME/GLE, G33, Q35, Q33,
    GM45, 4 Series, G45/G43, Q45/Q43, G41, B43
    [ 2957.516] (II) intel: Driver for Intel(R) HD Graphics: 2000-6000
    [ 2957.516] (II) intel: Driver for Intel(R) Iris(TM) Graphics: 5100, 6100
    [ 2957.516] (II) intel: Driver for Intel(R) Iris(TM) Pro Graphics: 5200, 6200, P6300
    [ 2957.516] (++) using VT number 1
    [ 2957.516] (--) controlling tty is VT number 1, auto-enabling KeepTty
    [ 2957.516] (II) intel(0): Using Kernel Mode Setting driver: i915, version 1.6.0 20140725
    [ 2957.516] (--) intel(0): Integrated Graphics Chipset: Intel(R) 965GM
    [ 2957.517] (--) intel(0): CPU: x86-64, sse2, sse3, ssse3, sse4.1
    [ 2957.517] (II) intel(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
    [ 2957.517] (==) intel(0): Depth 24, (--) framebuffer bpp 32
    [ 2957.517] (==) intel(0): RGB weight 888
    [ 2957.517] (==) intel(0): Default visual is TrueColor
    [ 2957.517] (II) intel(0): Output LVDS1 has no monitor section
    [ 2957.517] (--) intel(0): Found backlight control interface acpi_video0 (type 'firmware') for output LVDS1
    [ 2957.517] (II) intel(0): Enabled output LVDS1
    [ 2957.517] (II) intel(0): Output VGA1 has no monitor section
    [ 2957.517] (II) intel(0): Enabled output VGA1
    [ 2957.517] (II) intel(0): Output HDMI1 has no monitor section
    [ 2957.517] (II) intel(0): Enabled output HDMI1
    [ 2957.517] (II) intel(0): Output TV1 has no monitor section
    [ 2957.517] (II) intel(0): Enabled output TV1
    [ 2957.517] (--) intel(0): Using a maximum size of 256x256 for hardware cursors
    [ 2957.517] (II) intel(0): Output VIRTUAL1 has no monitor section
    [ 2957.517] (II) intel(0): Enabled output VIRTUAL1
    [ 2957.517] (--) intel(0): Output LVDS1 using initial mode 1280x800 on pipe 1
    [ 2957.517] (==) intel(0): TearFree disabled
    [ 2957.517] (==) intel(0): DPI set to (96, 96)
    [ 2957.517] (II) Loading sub module "dri2"
    [ 2957.517] (II) LoadModule: "dri2"
    [ 2957.517] (II) Module "dri2" already built-in
    [ 2957.517] (II) Loading sub module "present"
    [ 2957.517] (II) LoadModule: "present"
    [ 2957.517] (II) Module "present" already built-in
    [ 2957.517] (==) Depth 24 pixmap format is 32 bpp
    [ 2957.518] (II) intel(0): SNA initialized with Broadwater (gen4) backend
    [ 2957.518] (==) intel(0): Backing store enabled
    [ 2957.518] (==) intel(0): Silken mouse enabled
    [ 2957.518] (II) intel(0): HW Cursor enabled
    [ 2957.518] (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    [ 2957.518] (==) intel(0): DPMS enabled
    [ 2957.518] (II) intel(0): [XvMC] i965_xvmc driver initialized.
    [ 2957.518] (II) intel(0): [DRI2] Setup complete
    [ 2957.518] (II) intel(0): [DRI2] DRI driver: i965
    [ 2957.518] (II) intel(0): [DRI2] VDPAU driver: i965
    [ 2957.518] (II) intel(0): direct rendering: DRI2 enabled
    [ 2957.518] (II) intel(0): hardware support for Present enabled
    [ 2957.518] (==) intel(0): display hotplug detection enabled
    [ 2957.518] (--) RandR disabled
    [ 2957.569] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
    [ 2957.569] (II) AIGLX: enabled GLX_ARB_create_context
    [ 2957.569] (II) AIGLX: enabled GLX_ARB_create_context_profile
    [ 2957.569] (II) AIGLX: enabled GLX_EXT_create_context_es2_profile
    [ 2957.569] (II) AIGLX: enabled GLX_INTEL_swap_event
    [ 2957.569] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
    [ 2957.569] (II) AIGLX: enabled GLX_EXT_framebuffer_sRGB
    [ 2957.569] (II) AIGLX: enabled GLX_ARB_fbconfig_float
    [ 2957.569] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
    [ 2957.569] (II) AIGLX: Loaded and initialized i965
    [ 2957.569] (II) GLX: Initialized DRI2 GL provider for screen 0
    [ 2957.576] (II) intel(0): switch to mode [email protected] on LVDS1 using pipe 1, position (0, 0), rotation normal, reflection none
    [ 2957.583] (II) intel(0): Setting screen physical size to 338 x 211
    [ 2957.636] (II) config/udev: Adding input device Video Bus (/dev/input/event12)
    [ 2957.636] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
    [ 2957.636] (II) LoadModule: "evdev"
    [ 2957.636] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 2957.637] (II) Module evdev: vendor="X.Org Foundation"
    [ 2957.637] compiled for 1.16.0, module version = 2.9.0
    [ 2957.637] Module class: X.Org XInput Driver
    [ 2957.637] ABI class: X.Org XInput driver, version 21.0
    [ 2957.637] (II) systemd-logind: got fd for /dev/input/event12 13:76 fd 15 paused 0
    [ 2957.637] (II) Using input driver 'evdev' for 'Video Bus'
    [ 2957.638] (**) Video Bus: always reports core events
    [ 2957.638] (**) evdev: Video Bus: Device: "/dev/input/event12"
    [ 2957.638] (--) evdev: Video Bus: Vendor 0 Product 0x6
    [ 2957.638] (--) evdev: Video Bus: Found keys
    [ 2957.638] (II) evdev: Video Bus: Configuring as keyboard
    [ 2957.638] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A03:00/LNXVIDEO:00/input/input19/event12"
    [ 2957.638] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 6)
    [ 2957.638] (**) Option "xkb_rules" "evdev"
    [ 2957.638] (**) Option "xkb_model" "pc104"
    [ 2957.638] (**) Option "xkb_layout" "us"
    [ 2957.669] (II) config/udev: Adding input device Power Button (/dev/input/event2)
    [ 2957.670] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 2957.670] (II) systemd-logind: got fd for /dev/input/event2 13:66 fd 16 paused 0
    [ 2957.670] (II) Using input driver 'evdev' for 'Power Button'
    [ 2957.670] (**) Power Button: always reports core events
    [ 2957.670] (**) evdev: Power Button: Device: "/dev/input/event2"
    [ 2957.670] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 2957.670] (--) evdev: Power Button: Found keys
    [ 2957.670] (II) evdev: Power Button: Configuring as keyboard
    [ 2957.670] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input6/event2"
    [ 2957.670] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 7)
    [ 2957.670] (**) Option "xkb_rules" "evdev"
    [ 2957.670] (**) Option "xkb_model" "pc104"
    [ 2957.670] (**) Option "xkb_layout" "us"
    [ 2957.671] (II) config/udev: Adding input device Lid Switch (/dev/input/event1)
    [ 2957.671] (II) No input driver specified, ignoring this device.
    [ 2957.671] (II) This device may have been added with another device file.
    [ 2957.671] (II) config/udev: Adding input device Sleep Button (/dev/input/event3)
    [ 2957.671] (**) Sleep Button: Applying InputClass "evdev keyboard catchall"
    [ 2957.672] (II) systemd-logind: got fd for /dev/input/event3 13:67 fd 17 paused 0
    [ 2957.672] (II) Using input driver 'evdev' for 'Sleep Button'
    [ 2957.672] (**) Sleep Button: always reports core events
    [ 2957.672] (**) evdev: Sleep Button: Device: "/dev/input/event3"
    [ 2957.672] (--) evdev: Sleep Button: Vendor 0 Product 0x3
    [ 2957.672] (--) evdev: Sleep Button: Found keys
    [ 2957.672] (II) evdev: Sleep Button: Configuring as keyboard
    [ 2957.672] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input7/event3"
    [ 2957.672] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 8)
    [ 2957.672] (**) Option "xkb_rules" "evdev"
    [ 2957.672] (**) Option "xkb_model" "pc104"
    [ 2957.672] (**) Option "xkb_layout" "us"
    [ 2957.673] (II) config/udev: Adding input device HDA Digital PCBeep (/dev/input/event6)
    [ 2957.673] (II) No input driver specified, ignoring this device.
    [ 2957.673] (II) This device may have been added with another device file.
    [ 2957.673] (II) config/udev: Adding input device HDA Intel HDMI/DP,pcm=3 (/dev/input/event7)
    [ 2957.673] (II) No input driver specified, ignoring this device.
    [ 2957.673] (II) This device may have been added with another device file.
    [ 2957.673] (II) config/udev: Adding input device HDA Intel Front Headphone Front (/dev/input/event8)
    [ 2957.673] (II) No input driver specified, ignoring this device.
    [ 2957.673] (II) This device may have been added with another device file.
    [ 2957.674] (II) config/udev: Adding input device HDA Intel Front Headphone Surround (/dev/input/event9)
    [ 2957.674] (II) No input driver specified, ignoring this device.
    [ 2957.674] (II) This device may have been added with another device file.
    [ 2957.674] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
    [ 2957.674] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
    [ 2957.675] (II) systemd-logind: got fd for /dev/input/event0 13:64 fd 18 paused 0
    [ 2957.675] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
    [ 2957.675] (**) AT Translated Set 2 keyboard: always reports core events
    [ 2957.675] (**) evdev: AT Translated Set 2 keyboard: Device: "/dev/input/event0"
    [ 2957.675] (--) evdev: AT Translated Set 2 keyboard: Vendor 0x1 Product 0x1
    [ 2957.675] (--) evdev: AT Translated Set 2 keyboard: Found keys
    [ 2957.675] (II) evdev: AT Translated Set 2 keyboard: Configuring as keyboard
    [ 2957.675] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input0/event0"
    [ 2957.675] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 9)
    [ 2957.675] (**) Option "xkb_rules" "evdev"
    [ 2957.675] (**) Option "xkb_model" "pc104"
    [ 2957.675] (**) Option "xkb_layout" "us"
    [ 2957.675] (II) config/udev: Adding input device AlpsPS/2 ALPS GlidePoint (/dev/input/event11)
    [ 2957.675] (**) AlpsPS/2 ALPS GlidePoint: Applying InputClass "evdev touchpad catchall"
    [ 2957.675] (**) AlpsPS/2 ALPS GlidePoint: Applying InputClass "touchpad catchall"
    [ 2957.675] (**) AlpsPS/2 ALPS GlidePoint: Applying InputClass "Default clickpad buttons"
    [ 2957.675] (II) LoadModule: "synaptics"
    [ 2957.676] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
    [ 2957.676] (II) Module synaptics: vendor="X.Org Foundation"
    [ 2957.676] compiled for 1.16.0, module version = 1.8.1
    [ 2957.676] Module class: X.Org XInput Driver
    [ 2957.676] ABI class: X.Org XInput driver, version 21.0
    [ 2957.676] (II) systemd-logind: got fd for /dev/input/event11 13:75 fd 19 paused 0
    [ 2957.676] (II) Using input driver 'synaptics' for 'AlpsPS/2 ALPS GlidePoint'
    [ 2957.676] (**) AlpsPS/2 ALPS GlidePoint: always reports core events
    [ 2957.676] (**) Option "Device" "/dev/input/event11"
    [ 2957.710] (--) synaptics: AlpsPS/2 ALPS GlidePoint: x-axis range 0 - 1023 (res 0)
    [ 2957.710] (--) synaptics: AlpsPS/2 ALPS GlidePoint: y-axis range 0 - 767 (res 0)
    [ 2957.710] (--) synaptics: AlpsPS/2 ALPS GlidePoint: pressure range 0 - 127
    [ 2957.710] (II) synaptics: AlpsPS/2 ALPS GlidePoint: device does not report finger width.
    [ 2957.710] (--) synaptics: AlpsPS/2 ALPS GlidePoint: buttons: left right middle
    [ 2957.710] (--) synaptics: AlpsPS/2 ALPS GlidePoint: Vendor 0x2 Product 0x8
    [ 2957.710] (--) synaptics: AlpsPS/2 ALPS GlidePoint: invalid finger width range. defaulting to 0 - 15
    [ 2957.710] (**) Option "TapButton1" "1"
    [ 2957.710] (**) Option "TapButton2" "2"
    [ 2957.710] (**) Option "TapButton3" "3"
    [ 2957.710] (--) synaptics: AlpsPS/2 ALPS GlidePoint: touchpad found
    [ 2957.710] (**) AlpsPS/2 ALPS GlidePoint: always reports core events
    [ 2957.710] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio2/input/input10/event11"
    [ 2957.710] (II) XINPUT: Adding extended input device "AlpsPS/2 ALPS GlidePoint" (type: TOUCHPAD, id 10)
    [ 2957.710] (**) synaptics: AlpsPS/2 ALPS GlidePoint: (accel) MinSpeed is now constant deceleration 2.5
    [ 2957.710] (**) synaptics: AlpsPS/2 ALPS GlidePoint: (accel) MaxSpeed is now 1.75
    [ 2957.710] (**) synaptics: AlpsPS/2 ALPS GlidePoint: (accel) AccelFactor is now 0.156
    [ 2957.710] (**) AlpsPS/2 ALPS GlidePoint: (accel) keeping acceleration scheme 1
    [ 2957.710] (**) AlpsPS/2 ALPS GlidePoint: (accel) acceleration profile 1
    [ 2957.710] (**) AlpsPS/2 ALPS GlidePoint: (accel) acceleration factor: 2.000
    [ 2957.710] (**) AlpsPS/2 ALPS GlidePoint: (accel) acceleration threshold: 4
    [ 2957.710] (--) synaptics: AlpsPS/2 ALPS GlidePoint: touchpad found
    [ 2957.711] (II) config/udev: Adding input device AlpsPS/2 ALPS GlidePoint (/dev/input/mouse1)
    [ 2957.711] (**) AlpsPS/2 ALPS GlidePoint: Ignoring device from InputClass "touchpad ignore duplicates"
    [ 2957.711] (II) config/udev: Adding input device ALPS PS/2 Device (/dev/input/event10)
    [ 2957.711] (**) ALPS PS/2 Device: Applying InputClass "evdev pointer catchall"
    [ 2957.712] (II) systemd-logind: got fd for /dev/input/event10 13:74 fd 20 paused 0
    [ 2957.712] (II) Using input driver 'evdev' for 'ALPS PS/2 Device'
    [ 2957.712] (**) ALPS PS/2 Device: always reports core events
    [ 2957.712] (**) evdev: ALPS PS/2 Device: Device: "/dev/input/event10"
    [ 2957.712] (--) evdev: ALPS PS/2 Device: Vendor 0x2 Product 0x8
    [ 2957.712] (--) evdev: ALPS PS/2 Device: Found 3 mouse buttons
    [ 2957.712] (--) evdev: ALPS PS/2 Device: Found relative axes
    [ 2957.712] (--) evdev: ALPS PS/2 Device: Found x and y relative axes
    [ 2957.712] (II) evdev: ALPS PS/2 Device: Configuring as mouse
    [ 2957.712] (**) evdev: ALPS PS/2 Device: YAxisMapping: buttons 4 and 5
    [ 2957.712] (**) evdev: ALPS PS/2 Device: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 2957.712] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio2/input/input12/event10"
    [ 2957.712] (II) XINPUT: Adding extended input device "ALPS PS/2 Device" (type: MOUSE, id 11)
    [ 2957.712] (II) evdev: ALPS PS/2 Device: initialized for relative axes.
    [ 2957.712] (**) ALPS PS/2 Device: (accel) keeping acceleration scheme 1
    [ 2957.712] (**) ALPS PS/2 Device: (accel) acceleration profile 0
    [ 2957.712] (**) ALPS PS/2 Device: (accel) acceleration factor: 2.000
    [ 2957.712] (**) ALPS PS/2 Device: (accel) acceleration threshold: 4
    [ 2957.713] (II) config/udev: Adding input device ALPS PS/2 Device (/dev/input/mouse0)
    [ 2957.713] (II) No input driver specified, ignoring this device.
    [ 2957.713] (II) This device may have been added with another device file.
    [ 2957.713] (II) config/udev: Adding input device PC Speaker (/dev/input/event4)
    [ 2957.713] (II) No input driver specified, ignoring this device.
    [ 2957.713] (II) This device may have been added with another device file.
    [ 2957.714] (II) config/udev: Adding input device Dell WMI hotkeys (/dev/input/event5)
    [ 2957.714] (**) Dell WMI hotkeys: Applying InputClass "evdev keyboard catchall"
    [ 2957.714] (II) systemd-logind: got fd for /dev/input/event5 13:69 fd 21 paused 0
    [ 2957.714] (II) Using input driver 'evdev' for 'Dell WMI hotkeys'
    [ 2957.714] (**) Dell WMI hotkeys: always reports core events
    [ 2957.714] (**) evdev: Dell WMI hotkeys: Device: "/dev/input/event5"
    [ 2957.714] (--) evdev: Dell WMI hotkeys: Vendor 0 Product 0
    [ 2957.714] (--) evdev: Dell WMI hotkeys: Found keys
    [ 2957.714] (II) evdev: Dell WMI hotkeys: Configuring as keyboard
    [ 2957.714] (**) Option "config_info" "udev:/sys/devices/virtual/input/input11/event5"
    [ 2957.714] (II) XINPUT: Adding extended input device "Dell WMI hotkeys" (type: KEYBOARD, id 12)
    [ 2957.714] (**) Option "xkb_rules" "evdev"
    [ 2957.714] (**) Option "xkb_model" "pc104"
    [ 2957.714] (**) Option "xkb_layout" "us"
    [ 2963.887] (II) evdev: Dell WMI hotkeys: Close
    [ 2963.887] (II) UnloadModule: "evdev"
    [ 2963.887] (II) systemd-logind: releasing fd for 13:69
    [ 2963.949] (II) evdev: ALPS PS/2 Device: Close
    [ 2963.950] (II) UnloadModule: "evdev"
    [ 2963.950] (II) systemd-logind: releasing fd for 13:74
    [ 2964.016] (II) UnloadModule: "synaptics"
    [ 2964.016] (II) systemd-logind: releasing fd for 13:75
    [ 2964.069] (II) evdev: AT Translated Set 2 keyboard: Close
    [ 2964.070] (II) UnloadModule: "evdev"
    [ 2964.070] (II) systemd-logind: releasing fd for 13:64
    [ 2964.123] (II) evdev: Sleep Button: Close
    [ 2964.123] (II) UnloadModule: "evdev"
    [ 2964.123] (II) systemd-logind: releasing fd for 13:67
    [ 2964.156] (II) evdev: Power Button: Close
    [ 2964.156] (II) UnloadModule: "evdev"
    [ 2964.156] (II) systemd-logind: releasing fd for 13:66
    [ 2964.183] (II) evdev: Video Bus: Close
    [ 2964.183] (II) UnloadModule: "evdev"
    [ 2964.183] (II) systemd-logind: releasing fd for 13:76
    [ 2964.271] (EE) Server terminated successfully (0). Closing log file.

  • Is there a way to disable mouse acceleration in OSX Yosemite?

    i have used my dads iMac and MBP in the past and always noticed how bad the mouse response was in my opinion. Mind you, some people like the way the mouse responds in OSX and will probably have no idea what my issue is. That is mouse acceleration and the lack of option to disable it in the mouse settings panel. Here is a good explanation about what it is, also in the video is a visual example.
    "Mouse or cursor acceleration, to put it simply, makes the travel distance of your cursor on the screen reliant of the velocity of your physical mouse movement rather than just the distance that you move your mouse. So making one movement of the same distance at two different speeds will cause two different relative cursor movements, with quick movement causing the cursor to travel a greater distance."
    source:
    https://www.youtube.com/watch?v=16diwK6HWbI
    So the thing i want to accomplish, is making the physical mouse movement one-to-one with the cursor speed on the screen. As an example: moving my mouse 10 cm would always make my mouse on the screen go 1000 pixels, no matter how fast i move my mouse.
    I've had my mouse set up like that in windows and linux for quite some time now and i hope there is an easy way to set the mouse response like that in OSX as well.
    I want to make clear that this isn't just an issue in games where you want to have great mouse precision. I have become really accustomed to this way of mouse response in any type of application. So the problem lies not in any mouse settings of any game/program. The problem lies in how OSX translates physical mouse movement to cursor movement.
    Anyway, i ran into this issue about a year ago when i was using my dad's computer. i've had my own windows computer for some time now. An option to disable mouse acceleration in OSX Yosemite might have been implemented properly in the mean time. I have searched this community and found some old posts of people who had this same problem as me, but never read about any fix for it. The main reason i am asking this is because i am considering buying a Macbook.
    I'd rather not use any third party software, but if there is any out that that just works and is easy to use, let me know.

    Please don't be obnoxious to people like tbirdvet trying to help; nobody here owes you an answer, or anything else for that matter.
    Anyway, Yosemite seems to enable mouse acceleration by default. You can disable it to get a constant pixels pointer moves / meters mouse moved ratio by typing this in terminal:
         defaults write .GlobalPreferences com.apple.mouse.scaling -1
    you'll need to logout and log back in for changes to take effect. To restore the standard behaviour:
         defaults write .GlobalPreferences com.apple.mouse.scaling 2
    should do the trick.
    C.

  • 2010 Macbook pro freezes a lot, but mouse still moves. It unfreezes if you wait. It also hard crashes... Also, weird lines and screen flashes.

    I have a 2010 Macbook pro running snow leopard (Mac OS 10.6.8).  First off, this has been the worst computer I've ever owned or have heard of someone having, Mac or PC.  There hasn't been a time where something hasn't been wrong.  I'm going to list my specs, my current problems and maybe list previous problems after that.  Any advice or suggestions would be great.  My brother works for apple out in Cali and I've been sending him crash and bug reports and he can't seem to figure out what's going on.
    Specs:
    2010 Macbook Pro (Mac OSX 10.6.8)
    Processor: 2.66 GHz Intel Core i7
    Memory: 8 GB 1067 MHz DDR3
    Graphics Cards: Intel HD Graphics (288 VRAM) and a NVIDIA GeForce GT 330M (512 VRAM)
    (if you want more info, just ask)
    To start things off, my computer hard crashes at random points playing basically any game.  StarCraft 2 (when I could play the game prior to Blizzard patching my OS out of the minimum requirements), League of Legends, MineCraft and others all crash while in use.  My computer screen suddenly flashes white and then to black and whatever audio may have been playing in the past second of gameplay is thrown into a constant loop.  The screen is solid black with no mouse and there is no keyboard functionality.  The only thing I can do is hold down the power button.  I first started noticing this problem back when StarCraft 2 Heart of the Swarm came out.  I would crash every 4 or 5 games in this way.  Since that was happening I resorted to playing other games such as League of Legends.  I wasn't having any trouble at all, but gradually it started to have the hard crashing issues.  Initially every handful of games, now it crashes in roughly 50% of the games I play.  This happens while I have NO other applications open and this has happened even after a complete restart with only 2 things opening at startup.  League started crashing in this way after I brought my computer in to have a fan replaced. 
    Another thing which has started happening since I had my fan replaced at the apple store: My computer has become very sluggish at times and my computer freezes in another way.  Many times a day, I will find I click on something in an application and the entire computer locks up.  There's no spinning beachball.  There's no movement of any sort on the screen and there is no button functionality, but I can move the mouse.  Clicking does nothing.  This sort of freeze lasts for about 30 seconds up to 5 or 6 minutes or so.  After that, it suddenly just decides to work again.  I can tell when it unfreezes because the clock in the corner jumps to the correct time.  This has happened frequently while using Google Chrome, Firefox and Safari.  It also happened while trying to use Skype.  It was freezing the most when facebook or youtube has been open, but it happens without that happening as well.  One of the first times I noticed it, earlier this year, I was searching for work and tried to go to this website: http://www.nhab.org/ (looking for a job).  It froze my computer as I described above (and I didn't know it would unfreeze after several minutes, so I thought my computer was completely frozen). I restarted, went to the same website and it froze again.  I did this a third time and it froze again, so I restarted again.  On the fourth try, it loaded.  The frequency of this problem is ridiculous.  I actually decided to delete Google Chrome from my computer (and its support files) since my computer would freeze the most often with Chrome (though I used Chrome mostly for youtube and watching tv shows online).  Almost instantly after deleting Chrome, my computer was running significantly faster.  things loaded quicker in other browsers and aplications loaded smoother.  My text no longer lagged when typing in facebook...  It hasn't solved the freezing, though the freezing tends to last less time now.
    Another thing that happens, which I am not sure is normal: When my computer is booting, after the grey screen, it changes to light blue.  During this light blue time, often times white horizontal centimeter to inch wide bars will flash across the screen near the top.  This also happens on shutting down.  I also noticed that when it shuts down the screen doesn't just shut off.  The screen flickers quick for up to a second and then it is off.  It doesn't just turn off.
    My computer has also occassionally flashed for a brief fraction of a second, to the blue start up color and back to whatever I am doing.
    Those are all issues I am having right now and I am beginning to wonder if this several thousand dollar computer is capable of doing much more than just writing text..
    Prior issues I have had:
    Right from the start, I have had major graphical issues which I showed to the people at the apple store and they reinstalled flash, but they really didn't know what was going on.  These glitches would tiles previous graphical things I had done in an artistic mozaic across my desktop, replacing my background image with broken mozaics.  It's hard to explain without showing, so here are 2 screenshots from it:
    The people at the store thought it was just flash... but I don't understand how that could be flash.  I would have to flip through different desktop backgrounds I used to make it go away.  After it doing this for 2 years, it has only happened once since then and not very badly..
    Another issue I had: The battery on my laptop just about exploded... I woke up one morning with my laptop sitting on my night stand as usual, but there was a small crack across part of my trackpad.  I was scared because I thought I must have done something... I went to the bathroom, took a shower and when I came back the crack was farther across the trackpad.  I had breakfast, came upstairs and my trackpad had 1 crack across the whole thing with multiple mini cracks going in every direction from it.  After telling my brother what was going on, he quickly said that it was the battery and to take it to a store.  I took it to the store and showed them what was happening and they very quickly took it out back and I quote "threw the battery in a firesafe immediately" because when they opened the laptop it started to quickly expand.  This ended up cracking my trackpad as well as bending the bottom of the body on the laptop.  All had to be replaced...
    Then I had the fan sounding like a weedwacker, so I had it replaced a couple months ago and a couple months ago is when the freezing began, the computer started running slowly and all games crash the computer.
    I have had a lot of things go wrong, not a lot of things go right and I'm really frustrated.  Can anyone tell me how to get my computer to stop freezing or how to make it stop hard crashing during any of the games I play?
    Basically, what I have done so far is reset the PRAM I think?  I held command + option + P + R on start up and had it chime 3 or 4 times.  Other than that, I don't know what to do.... suggestions?

    I just wanted to follow this up by saying that you were entirely correct in your diagnosis of the situation.  My computer did have the faulty part you linked to.  I brought my laptop in and specifically told them to run that test, had it fail and then argued with the person at the genius bar and the manager.  Eventually they offered to have it sent out and have everything replaced for free of charge.  They did so mainly because I had complained about graphical issues almost every other time I had come in with problems and no one ran the test.  They should have caught this problem during my warranty, but they didn't, even though I mentioned the problem.
    Anyhow, after having the part replaced, I haven't had my computer crash a single time since, or had many of the issues mentioned above.  I've never had this experience before.  Even brand new, I got occasional crashes.  Hopefully this new trend continues.
    I do find that web browsing is still incredibly slow.  Web browsers just chug along at a slow pace, even though I have great internet speed.  Maybe I'll try just deleting my web browsers and reinstalling them...
    Anyhow, thank you for your help and knowledge Clinton.

  • Constant Crashes in Safari 5.0.4 (despite Reset, delete cache & prefs etc)

    Hello,
    I am having constant crashes in Safari 5.0.4. This never happened until today.
    I have reset Safari, deleted the cache.db files and prefs (p.lists) and disabled extns, and done a Safari re-install, but i still get the following crash every time i use Safari.
    Even a right-click command to open a new page causes a crash.
    Any help you could offer would be greatly appreciated - I'm in the middle of a project and don't have time for an entire OS re-install.
    I hope the info listed below give you some insight into the cause of the problem.
    Cheers
    My system config is as follows:
    Model Name: Mac Pro
    Model Identifier: MacPro3,1
    Processor Name: Quad-Core Intel Xeon
    Processor Speed: 2.8 GHz
    Number Of Processors: 2
    Total Number Of Cores: 8
    L2 Cache (per processor): 12 MB
    Memory: 32 GB
    Bus Speed: 1.6 GHz
    Boot ROM Version: MP31.006C.B05
    SMC Version (system): 1.25f4
    Process: Safari [6251]
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Identifier: com.apple.Safari
    Version: 5.0.4 (6533.20.27)
    Build Info: WebBrowser-75332027~1
    Code Type: X86 (Native)
    Parent Process: launchd [1091]
    Date/Time: 2011-03-20 11:29:12.066 +1100
    OS Version: Mac OS X 10.6.5 (10H574)
    Report Version: 6
    Interval Since Last Report: 135598 sec
    Crashes Since Last Report: 51
    Per-App Interval Since Last Report: 172065 sec
    Per-App Crashes Since Last Report: 42
    Anonymous UUID: AD8525F5-E3F8-4090-936F-52754E4A85B7
    Exception Type: EXCBADACCESS (SIGBUS)
    Exception Codes: KERNPROTECTIONFAILURE at 0x0000000000000024
    Crashed Thread: 0 Dispatch queue: com.apple.main-thread
    Thread 0 Crashed: Dispatch queue: com.apple.main-thread
    0 com.apple.Safari 0x0007f88b 0x1000 + 518283
    1 com.apple.Safari 0x0007f7ea 0x1000 + 518122
    2 com.apple.Safari 0x0001c3f4 0x1000 + 111604
    3 com.apple.Safari 0x0001bb24 0x1000 + 109348
    4 com.apple.Safari 0x00079a5f 0x1000 + 494175
    5 com.apple.Safari 0x000799ea 0x1000 + 494058
    6 com.apple.Safari 0x00088b4a 0x1000 + 555850
    7 com.apple.Safari 0x0001acb2 0x1000 + 105650
    8 com.apple.Safari 0x0001a8f3 0x1000 + 104691
    9 com.apple.Safari 0x00083893 0x1000 + 534675
    10 com.apple.Safari 0x00083519 0x1000 + 533785
    11 com.apple.Safari 0x0008338b 0x1000 + 533387
    12 com.apple.AppKit 0x90955c46 -[NSApplication sendAction:to:from:] + 112
    13 com.apple.Safari 0x000484b5 0x1000 + 292021
    14 com.apple.AppKit 0x90a35465 -[NSControl sendAction:to:] + 108
    15 com.apple.AppKit 0x90a30f12 -[NSCell _sendActionFrom:] + 169
    16 com.apple.AppKit 0x90a30209 -[NSCell trackMouse:inRect:ofView:untilMouseUp:] + 1808
    17 com.apple.AppKit 0x90a858a1 -[NSButtonCell trackMouse:inRect:ofView:untilMouseUp:] + 524
    18 com.apple.AppKit 0x90a2ec5f -[NSControl mouseDown:] + 812
    19 com.apple.Safari 0x00083323 0x1000 + 533283
    20 com.apple.Safari 0x000832d0 0x1000 + 533200
    21 com.apple.Safari 0x00082f3d 0x1000 + 532285
    22 com.apple.AppKit 0x90a2cc68 -[NSWindow sendEvent:] + 5549
    23 com.apple.Safari 0x000408a8 0x1000 + 260264
    24 com.apple.Safari 0x00040835 0x1000 + 260149
    25 com.apple.AppKit 0x90945817 -[NSApplication sendEvent:] + 6431
    26 com.apple.Safari 0x00037aaf 0x1000 + 223919
    27 com.apple.AppKit 0x908d92a7 -[NSApplication run] + 917
    28 com.apple.AppKit 0x908d12d9 NSApplicationMain + 574
    29 com.apple.Safari 0x0000ace9 0x1000 + 40169
    Thread 1: Dispatch queue: com.apple.libdispatch-manager
    0 libSystem.B.dylib 0x9002a982 kevent + 10
    1 libSystem.B.dylib 0x9002b09c dispatch_mgrinvoke + 215
    2 libSystem.B.dylib 0x9002a559 dispatch_queueinvoke + 163
    3 libSystem.B.dylib 0x9002a2fe dispatch_workerthread2 + 240
    4 libSystem.B.dylib 0x90029d81 pthreadwqthread + 390
    5 libSystem.B.dylib 0x90029bc6 start_wqthread + 30
    Thread 2: WebCore: IconDatabase
    0 libSystem.B.dylib 0x900320a6 _semwaitsignal + 10
    1 libSystem.B.dylib 0x90031d62 pthread_condwait + 1191
    2 libSystem.B.dylib 0x900339f8 pthreadcondwait$UNIX2003 + 73
    3 com.apple.WebCore 0x913f1aaa WebCore::IconDatabase::syncThreadMainLoop() + 266
    4 com.apple.WebCore 0x913eddac WebCore::IconDatabase::iconDatabaseSyncThread() + 188
    5 libSystem.B.dylib 0x9003185d pthreadstart + 345
    6 libSystem.B.dylib 0x900316e2 thread_start + 34
    Thread 3: Safari: SafeBrowsingManager
    0 libSystem.B.dylib 0x900040fa machmsgtrap + 10
    1 libSystem.B.dylib 0x90004867 mach_msg + 68
    2 com.apple.CoreFoundation 0x952ce37f __CFRunLoopRun + 2079
    3 com.apple.CoreFoundation 0x952cd464 CFRunLoopRunSpecific + 452
    4 com.apple.CoreFoundation 0x952cd291 CFRunLoopRunInMode + 97
    5 com.apple.Safari 0x0002f33f 0x1000 + 189247
    6 com.apple.Safari 0x0002f088 0x1000 + 188552
    7 com.apple.Safari 0x0002f021 0x1000 + 188449
    8 libSystem.B.dylib 0x9003185d pthreadstart + 345
    9 libSystem.B.dylib 0x900316e2 thread_start + 34
    Thread 4:
    0 libSystem.B.dylib 0x90029a12 _workqkernreturn + 10
    1 libSystem.B.dylib 0x90029fa8 pthreadwqthread + 941
    2 libSystem.B.dylib 0x90029bc6 start_wqthread + 30
    Thread 5:
    0 libSystem.B.dylib 0x900040fa machmsgtrap + 10
    1 libSystem.B.dylib 0x90004867 mach_msg + 68
    2 com.apple.CoreFoundation 0x952ce37f __CFRunLoopRun + 2079
    3 com.apple.CoreFoundation 0x952cd464 CFRunLoopRunSpecific + 452
    4 com.apple.CoreFoundation 0x952cd291 CFRunLoopRunInMode + 97
    5 com.apple.Foundation 0x938a97d0 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 329
    6 com.apple.Foundation 0x93870bf0 -[NSThread main] + 45
    7 com.apple.Foundation 0x93870ba0 _NSThread__main_ + 1499
    8 libSystem.B.dylib 0x9003185d pthreadstart + 345
    9 libSystem.B.dylib 0x900316e2 thread_start + 34
    Thread 6: com.apple.CFSocket.private
    0 libSystem.B.dylib 0x900230c6 select$DARWIN_EXTSN + 10
    1 com.apple.CoreFoundation 0x9530dc83 __CFSocketManager + 1091
    2 libSystem.B.dylib 0x9003185d pthreadstart + 345
    3 libSystem.B.dylib 0x900316e2 thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0x00000024 ebx: 0x00000004 ecx: 0x1d55c118 edx: 0xbffff034
    edi: 0x15211990 esi: 0x910a2f34 ebp: 0xbfffef98 esp: 0xbfffef80
    ss: 0x0000001f efl: 0x00010282 eip: 0x0007f88b cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    cr2: 0x00000024
    Binary Images:
    0x1000 - 0x52bffb com.apple.Safari 5.0.4 (6533.20.27) <B6586EF6-2FEC-E5A2-0E39-425F56539D60> /Applications/Safari.app/Contents/MacOS/Safari
    0x1380000 - 0x138cff7 +com.rogueamoeba.audiohijackserver.hermes 2.2.5 (2.2.5) <CD6C7A74-BA03-F3A7-0D1E-460E6A043024> /usr/local/hermes/modules/Instant Hijack Server.hermesmodule/Contents/MacOS/Instant Hijack Server
    0x13ae000 - 0x13affff +com.ecamm.pluginloader Ecamm Plugin Loader v1.0.5 (1.0.5) /Library/InputManagers/Ecamm/Ecamm Plugin Loader.bundle/Contents/MacOS/Ecamm Plugin Loader
    0x17ad000 - 0x17e1ff7 +com.ecamm.iglasses v2.1.5 (2.1.5) <71471221-07F0-DA25-DEA7-2CE1082C2792> /Library/InputManagers/Ecamm/Plugins/iGlasses.plugin/Contents/MacOS/iGlasses
    0x15300000 - 0x154f2fea +com.elgato.mpegsupport EyeTV MPEG Support 1.0.7 (build 43) (1.0.7) /Library/QuickTime/EyeTV MPEG Support.component/Contents/MacOS/EyeTV MPEG Support
    0x157ed000 - 0x157efffa +Adobe Unit Types a2.0.0 (2.0.0) /Library/ScriptingAdditions/Adobe Unit Types.osax/Contents/MacOS/Adobe Unit Types
    0x157f3000 - 0x157f6ff7 +net.culater.SIMBL.osax 0.9.7 (0.9.7) <ADABA540-531E-706F-D0E5-FD3EA152172E> /Library/ScriptingAdditions/SIMBL.osax/Contents/MacOS/SIMBL
    0x176ed000 - 0x176f4ff7 +net.purefiction.keywurl ??? (1.4.0) <A45D4AB1-DB6F-36A2-B9E7-6947662B49C9> /Library/Application Support/SIMBL/Plugins/Keywurl.bundle/Contents/MacOS/Keywurl
    0x8fe00000 - 0x8fe4162b dyld 132.1 (???) <A4F6ADCC-6448-37B4-ED6C-ABB2CD06F448> /usr/lib/dyld
    0x90003000 - 0x901aaff7 libSystem.B.dylib 125.2.1 (compatibility 1.0.0) <62291026-D016-705D-DC1E-FC2B09D47DE5> /usr/lib/libSystem.B.dylib
    0x901f9000 - 0x90231ff7 com.apple.LDAPFramework 2.0 (120.1) <001A70A8-3984-8E19-77A8-758893CC128C> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x90275000 - 0x902e4ff7 libvMisc.dylib 268.0.1 (compatibility 1.0.0) <2FC2178F-FEF9-6E3F-3289-A6307B1A154C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x902e5000 - 0x902f2ff7 com.apple.NetFS 3.2.1 (3.2.1) <5E61A00B-FA16-9D99-A064-47BDC5BC9A2B> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x9031a000 - 0x9036bff7 com.apple.HIServices 1.8.1 (???) <51BDD848-32A5-2425-BE07-BD037A89630A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x9036c000 - 0x903afff7 com.apple.NavigationServices 3.5.4 (182) <753B8906-06C0-3AE0-3D6A-8FF5AC18ED12> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x903b0000 - 0x903b4ff7 libGFXShared.dylib ??? (???) <C3A805C4-C0E5-B300-430A-7E811395CB8E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x903b5000 - 0x903f0feb libFontRegistry.dylib ??? (???) <4FB144ED-8AF9-27CF-B315-DCE5575D5231> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x903f1000 - 0x90427fff libtidy.A.dylib ??? (???) <0FD72C68-4803-4C5B-3A63-05D7394BFD71> /usr/lib/libtidy.A.dylib
    0x90428000 - 0x904d6ff3 com.apple.ink.framework 1.3.3 (107) <57B54F6F-CE35-D546-C7EC-DBC5FDC79938> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x904ea000 - 0x904edff7 libCoreVMClient.dylib ??? (???) <1F738E81-BB71-32C5-F1E9-C1302F71021C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x904ee000 - 0x90567ff7 com.apple.PDFKit 2.5.1 (2.5.1) <CEF13510-F08D-3177-7504-7F8853906DE6> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x90568000 - 0x90694ffb com.apple.MediaToolbox 0.484.20 (484.20) <D67788A2-B772-C5DB-B12B-173B2F8EE40B> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x9087e000 - 0x908ceff7 com.apple.framework.familycontrols 2.0.1 (2010) <B9762E20-543D-13B9-F6BF-E8585F04CA01> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x908cf000 - 0x911afff7 com.apple.AppKit 6.6.7 (1038.35) <ABC7783C-E4D5-B848-BED6-99451D94D120> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x911b0000 - 0x911e0ff7 com.apple.MeshKit 1.1 (49.2) <ECFBD794-5D36-4405-6184-5568BFF29BF3> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
    0x911e1000 - 0x911ecff7 libCSync.A.dylib 545.0.0 (compatibility 64.0.0) <CB2510BD-A5B3-9D90-5917-C73F6ECAC913> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x911ed000 - 0x91234ffb com.apple.CoreMediaIOServices 133.0 (1158) <150A5F22-E7EC-9E8E-3B68-BAD75280EFC3> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x91235000 - 0x912ebff7 libFontParser.dylib ??? (???) <33F62EE1-E457-C6FD-369E-E86745B94A4B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x912ec000 - 0x9130cfe7 libresolv.9.dylib 41.0.0 (compatibility 1.0.0) <751955F3-21FB-A03A-4E92-1F3D4EFB8C5B> /usr/lib/libresolv.9.dylib
    0x91320000 - 0x9139bfff com.apple.AppleVAFramework 4.10.12 (4.10.12) <89C4EBE2-FE27-3160-0BD1-D0C2ED5F3605> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x913b0000 - 0x913e2fe3 libTrueTypeScaler.dylib ??? (???) <6E9D1A50-330E-F1F4-F93D-9ECC8A61B21A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x913e3000 - 0x913eaff3 com.apple.print.framework.Print 6.1 (237.1) <F5AAE53D-5530-9004-A9E3-2C1690C5328E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x913eb000 - 0x91e3eff7 com.apple.WebCore 6533.20 (6533.20.24) <934863A8-DF97-9C9B-B41B-923F0CBF7E66> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x91e3f000 - 0x91eefff3 com.apple.ColorSync 4.6.3 (4.6.3) <AA1076EA-7665-3005-A837-B661260DBE54> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x91ef0000 - 0x91f32ff7 libvDSP.dylib 268.0.1 (compatibility 1.0.0) <3F0ED200-741B-4E27-B89F-634B131F5E9E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x91f33000 - 0x91f36ff7 libCGXType.A.dylib 545.0.0 (compatibility 64.0.0) <B624AACE-991B-0FFA-2482-E69970576CE1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x91f37000 - 0x91f49ff7 com.apple.MultitouchSupport.framework 207.10 (207.10) <E1A6F663-570B-CE54-0F8A-BBCCDECE3B42> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x91f87000 - 0x91fa8fe7 com.apple.opencl 12.3 (12.3) <DEA600BF-4F54-66B5-DB2F-DC57FD518543> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x91fa9000 - 0x91faaff7 com.apple.TrustEvaluationAgent 1.1 (1) <FEB55E8C-38A4-CFE9-A737-945F39761B4C> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x91fab000 - 0x91facff7 com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <0EC4EEFF-477E-908E-6F21-ED2C973846A4> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x91fad000 - 0x91ff6fe7 libTIFF.dylib ??? (???) <AC1FC806-F7F4-174B-375F-FE5D6008666C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x92049000 - 0x92369ff3 com.apple.CoreServices.CarbonCore 861.23 (861.23) <B08756E4-32C5-CC33-0268-7C00A5ED7537> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x9236a000 - 0x92382ff7 com.apple.CFOpenDirectory 10.6 (10.6) <F9AFC571-3539-6B46-ABF9-46DA2B608819> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x92383000 - 0x924baff7 com.apple.CoreAUC 6.04.04 (6.04.04) <050D9D16-AAE7-3460-4318-8449574F26C7> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x927b5000 - 0x927bdff7 com.apple.DisplayServicesFW 2.3.0 (283) <48D94761-7340-D029-99E3-9BE0262FAF22> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x927be000 - 0x927beff7 com.apple.quartzframework 1.5 (1.5) <CEB78F00-C5B2-3B3F-BF70-DD6D578719C0> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x927bf000 - 0x928c1fef com.apple.MeshKitIO 1.1 (49.2) <34322CDD-E67E-318A-F03A-A3DD05201046> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itIO.framework/Versions/A/MeshKitIO
    0x928c2000 - 0x9296affb com.apple.QD 3.36 (???) <FA2785A4-BB69-DCB4-3BA3-7C89A82CAB41> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x929e5000 - 0x929eeff7 com.apple.DiskArbitration 2.3 (2.3) <E9C40767-DA6A-6CCB-8B00-2D5706753000> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x929ef000 - 0x92a0bfe3 com.apple.openscripting 1.3.1 (???) <DA16DE48-59F4-C94B-EBE3-7FAF772211A2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x92a2c000 - 0x92a60fe7 com.apple.framework.Apple80211 6.2.3 (623.1) <C096EF56-ABA3-A869-65AA-D1837351E1F6> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x92a61000 - 0x93250557 com.apple.CoreGraphics 1.545.0 (???) <1AB39678-00D5-FB88-3B41-93D78348E0DE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x93251000 - 0x9325aff7 com.apple.corelocation 12.1 (12.1) <5C64CE24-2570-EF39-FD9E-3EB026272B54> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
    0x9325b000 - 0x93299ff7 com.apple.QuickLookFramework 2.3 (327.6) <66955C29-0C99-D02C-DB18-4952AFB4E886> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x932e0000 - 0x9333dff7 com.apple.framework.IOKit 2.0 (???) <A769737F-E0D6-FB06-29B4-915CF4F43420> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x9333e000 - 0x93382ff3 com.apple.coreui 2 (114) <29F8F1A4-1C96-6A0F-4CC2-9B85CF83209F> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x93383000 - 0x93484fe7 libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <B4C5CD68-405D-0F1B-59CA-5193D463D0EF> /usr/lib/libxml2.2.dylib
    0x93485000 - 0x9348aff7 com.apple.OpenDirectory 10.6 (10.6) <C1B46982-7D3B-3CC4-3BC2-3E4B595F0231> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x934a1000 - 0x93505ffb com.apple.htmlrendering 72 (1.1.4) <4D451A35-FAB6-1288-71F6-F24A4B6E2371> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x93506000 - 0x93731ff3 com.apple.QuartzComposer 4.2 ({156.28}) <08AF01DC-110D-9443-3916-699DBDED0149> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x93732000 - 0x93769fe7 libssl.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <7DCB5938-3140-E71A-92BD-8C242F30C8F5> /usr/lib/libssl.0.9.8.dylib
    0x9376a000 - 0x9377aff7 libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <C8744EA3-0AB7-CD03-E639-C4F2B910BE5D> /usr/lib/libsasl2.2.dylib
    0x9377b000 - 0x937bcff7 libRIP.A.dylib 545.0.0 (compatibility 64.0.0) <16DAE1A5-937A-1CA2-D98F-2AF958B62993> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x9380a000 - 0x93825ff7 libPng.dylib ??? (???) <E14178E0-B92D-94EA-DACB-04F346D7534C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x93826000 - 0x93830fe7 com.apple.audio.SoundManager 3.9.3 (3.9.3) <5F494955-7290-2D91-DA94-44B590191771> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x93831000 - 0x93859ff7 libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <769EF4B2-C1AD-73D5-AAAD-1564DAEA77AF> /usr/lib/libxslt.1.dylib
    0x9385a000 - 0x93acdfe7 com.apple.Foundation 6.6.4 (751.42) <ACC0BAEB-C590-7052-3AB2-86C207C3D6D4> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x93ace000 - 0x93acfff7 com.apple.audio.units.AudioUnit 1.6.5 (1.6.5) <BE4C2495-B758-AD22-DCC0-56A6791E948E> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x93ad0000 - 0x93cb2fff com.apple.imageKit 2.0.3 (1.0) <B4DB05F7-01C5-35EE-7AB9-41BD9D63F075> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x93cb3000 - 0x93cb6ffb com.apple.help 1.3.1 (41) <67F1F424-3983-7A2A-EC21-867BE838E90B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x93d89000 - 0x93d97ff7 com.apple.opengl 1.6.11 (1.6.11) <286D1BC4-4CD8-3CD4-F723-5C196FE15FE0> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x93d98000 - 0x93e02fe7 libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
    0x93e03000 - 0x93e03ff7 liblangid.dylib ??? (???) <B99607FC-5646-32C8-2C16-AFB5EA9097C2> /usr/lib/liblangid.dylib
    0x93e04000 - 0x93f32fe7 com.apple.CoreData 102.1 (251) <E6A457F0-A0A3-32CD-6C69-6286E7C0F063> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x93f33000 - 0x93f89ff7 com.apple.MeshKitRuntime 1.1 (49.2) <F1EAE9EC-2DA3-BAFD-0A8C-6A3FFC96D728> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itRuntime.framework/Versions/A/MeshKitRuntime
    0x93f8a000 - 0x93f90fff com.apple.CommonPanels 1.2.4 (91) <2438AF5D-067B-B9FD-1248-2C9987F360BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x93fc4000 - 0x93fc4ff7 com.apple.vecLib 3.6 (vecLib 3.6) <7362077A-890F-3AEF-A8AB-22247B10E106> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x9406f000 - 0x9406fff7 com.apple.ApplicationServices 38 (38) <8012B504-3D83-BFBB-DA65-065E061CFE03> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x94070000 - 0x9426eff3 com.apple.JavaScriptCore 6533.20 (6533.20.20) <C97A479C-FDF9-3F19-2EE0-80288257C477> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x9426f000 - 0x942bcfeb com.apple.DirectoryService.PasswordServerFramework 6.0 (6.0) <BF66BA5D-BBC8-78A5-DBE2-F9DE3DD1D775> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x942e3000 - 0x95235fef com.apple.QuickTimeComponents.component 7.6.6 (1756) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x95236000 - 0x9524bfff com.apple.ImageCapture 6.0.1 (6.0.1) <E7ED2AC1-834C-A44E-531E-EC05F0496DBF> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x9524c000 - 0x95290fe7 com.apple.Metadata 10.6.3 (507.12) <8632684D-ED4C-4CE1-4C53-015DFF10D873> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x95291000 - 0x9540cfe7 com.apple.CoreFoundation 6.6.4 (550.42) <C78D5079-663E-9734-7AFA-6CE79A0539F1> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x9540d000 - 0x95614feb com.apple.AddressBook.framework 5.0.3 (875) <759B660B-00F6-F08C-37CD-69468C774B5E> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x95615000 - 0x9566ffe7 com.apple.CorePDF 1.3 (1.3) <696ADD5F-C038-A63B-4732-82E4109379D7> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x95670000 - 0x95694ff7 libJPEG.dylib ??? (???) <46AF3A0F-2B8D-87B9-62D4-0905678A64DA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x95695000 - 0x95730ff7 com.apple.ApplicationServices.ATS 4.4 (???) <ECB16606-4DF8-4AFB-C91D-F7947C26040F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x95731000 - 0x957defe7 libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <DF8E4CFA-3719-3415-0BF1-E8C5E561C3B1> /usr/lib/libobjc.A.dylib
    0x957f2000 - 0x95a55fef com.apple.security 6.1.1 (37594) <1949216A-7583-B73A-6112-4D55CA5852E3> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x95a56000 - 0x95d4ffef com.apple.QuickTime 7.6.6 (1756) <F08B13B6-31D7-BD18-DA87-A0CDFCF13B8F> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x95d50000 - 0x95d5cff7 libkxld.dylib ??? (???) <F0E915AD-6B32-0D5E-D24B-B188447FDD23> /usr/lib/system/libkxld.dylib
    0x95d5d000 - 0x95ddfffb SecurityFoundation ??? (???) <3670AE8B-06DA-C447-EB14-79423DB9C474> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x95de0000 - 0x95de6ff7 libCGXCoreImage.A.dylib 545.0.0 (compatibility 64.0.0) <DACD11D8-4B64-CD3B-C988-B1041E07D13A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x95e00000 - 0x95e02ff7 libRadiance.dylib ??? (???) <10048B4A-2AE8-A4E2-21B8-C6E7A8C5B76F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x95e03000 - 0x95e13ff7 com.apple.DSObjCWrappers.Framework 10.6 (134) <81A0B409-3906-A98F-CA9B-A49E75007495> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x95e14000 - 0x95e28ffb com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <57DD5458-4F24-DA7D-0927-C3321A65D743> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x95e29000 - 0x9625eff7 libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <5E2D2283-57DE-9A49-1DB0-CD027FEFA6C2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x9628a000 - 0x9628eff7 libGIF.dylib ??? (???) <DA5758A4-71B0-DD6E-7402-B7FB15387569> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x964e7000 - 0x96555ff7 com.apple.QuickLookUIFramework 2.3 (327.6) <74706A08-5399-24FE-00B2-4A702A6B83C1> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x96556000 - 0x96578fef com.apple.DirectoryService.Framework 3.6 (621.9) <F2EEE9D7-D4FB-14F3-E647-ABD32754F557> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x965ba000 - 0x96652fe7 edu.mit.Kerberos 6.5.10 (6.5.10) <8B83AFF3-C074-E47C-4BD0-4546EED0D1BC> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x96653000 - 0x9674fff3 com.apple.PubSub 1.0.5 (65.21) <50FE5190-7C03-3020-3CB7-4CA258F49114> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x96750000 - 0x96750ff7 com.apple.Accelerate 1.6 (Accelerate 1.6) <BC501C9F-7C20-961A-B135-0A457667D03C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x96751000 - 0x96758ff7 com.apple.agl 3.0.12 (AGL-3.0.12) <6877F0D8-0DCF-CB98-5304-913667FF50FA> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x9675f000 - 0x96818fe7 libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <52438E77-55D1-C231-1936-76F1369518E4> /usr/lib/libsqlite3.dylib
    0x96819000 - 0x968c3fe7 com.apple.CFNetwork 454.11.5 (454.11.5) <D8963574-285A-3BD6-6B25-07D39C6F67A4> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x96aa1000 - 0x96b3efe3 com.apple.LaunchServices 362.1 (362.1) <885D8567-9E40-0105-20BC-42C7FF657583> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x96b41000 - 0x96bd3fe7 com.apple.print.framework.PrintCore 6.3 (312.7) <7410D1B2-655D-68DA-D4B9-2C65747B6817> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x96bfe000 - 0x96c7efeb com.apple.SearchKit 1.3.0 (1.3.0) <9E18AEA5-F4B4-8BE5-EEA9-818FC4F46FD9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x96c7f000 - 0x96c83ff7 IOSurface ??? (???) <D849E1A5-6B0C-2A05-2765-850EC39BA2FF> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x96c84000 - 0x96c87fe7 libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
    0x96c88000 - 0x96cc7ff7 com.apple.ImageCaptureCore 1.0.3 (1.0.3) <7E02D104-F31C-CF72-71B4-DA5DF7B48337> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x96cc8000 - 0x96d01ff7 libcups.2.dylib 2.8.0 (compatibility 2.0.0) <D6F24434-8217-DF72-2126-1953080680D7> /usr/lib/libcups.2.dylib
    0x96d02000 - 0x971bbffb com.apple.VideoToolbox 0.484.20 (484.20) <E7B9F015-2569-43D7-5268-375ED937ECA5> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x971bc000 - 0x971e3ff7 com.apple.quartzfilters 1.6.0 (1.6.0) <879A3B93-87A6-88FE-305D-DF1EAED04756> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x971e4000 - 0x97313fe3 com.apple.audio.toolbox.AudioToolbox 1.6.5 (1.6.5) <0A0F68E5-4806-DB51-764B-D97554B801AD> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x9744d000 - 0x9748dff3 com.apple.securityinterface 4.0.1 (37214) <BBC88C96-8827-91DC-0CF6-7CB639183395> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x9748e000 - 0x974cbff7 com.apple.CoreMedia 0.484.20 (484.20) <105DDB24-E45F-5473-99E1-B09FDEAE4500> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x9750d000 - 0x97517ffb com.apple.speech.recognition.framework 3.11.1 (3.11.1) <EC0E69C8-A121-70E8-43CF-E6FC4C7779EC> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x97518000 - 0x97526fe7 libz.1.dylib 1.2.3 (compatibility 1.0.0) <3CE8AA79-F077-F1B0-A039-9103A4A02E92> /usr/lib/libz.1.dylib
    0x9752e000 - 0x97586fe7 com.apple.datadetectorscore 2.0 (80.7) <A40AA74A-9D13-2A6C-5440-B50905923251> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x97587000 - 0x97587ff7 com.apple.Carbon 150 (152) <9252D5F2-462D-2C15-80F3-109644D6F704> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x97588000 - 0x97597fe7 libxar.1.dylib ??? (???) <2FC317EB-7AC2-CD6C-8C09-E06B2DF02929> /usr/lib/libxar.1.dylib
    0x97598000 - 0x978bcfef com.apple.HIToolbox 1.6.3 (???) <0A5F56E2-9AF3-728D-70AE-429522AEAD8A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x978c8000 - 0x97a81feb com.apple.ImageIO.framework 3.0.4 (3.0.4) <C145139E-24C4-5A3D-B17C-809D528354B2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x97a82000 - 0x97e98ff7 libBLAS.dylib 219.0.0 (compatibility 1.0.0) <C4FB303A-DB4D-F9E8-181C-129585E59603> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x97e99000 - 0x97f9dfe7 libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <BDEFA030-5E75-7C47-2904-85AB16937F45> /usr/lib/libcrypto.0.9.8.dylib
    0x97f9e000 - 0x97fafff7 com.apple.LangAnalysis 1.6.6 (1.6.6) <97511CC7-FE23-5AC3-2EE2-B5479FAEB316> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x97fb0000 - 0x97fedff7 com.apple.SystemConfiguration 1.10.5 (1.10.2) <362DF639-6E5F-9371-9B99-81C581A8EE41> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x97fee000 - 0x98065ff3 com.apple.backup.framework 1.2.2 (1.2.2) <FE4C6311-EA63-15F4-2CF7-04CF7734F434> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x980fe000 - 0x98141ff7 libGLU.dylib ??? (???) <F8580594-0B38-F3ED-A715-CB3776B747A0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x98142000 - 0x9824eff7 libGLProgrammability.dylib ??? (???) <8B308FAE-843F-EE76-0254-3374CBFFA7B3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x98331000 - 0x9833cff7 libGL.dylib ??? (???) <48405993-0AE9-292B-6705-C3525528682A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x983bd000 - 0x987f4fef com.apple.RawCamera.bundle 3.6.0 (558) <CCF48B69-6B02-B0A5-45DF-5C5327AD16F0> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x9882e000 - 0x988a8fff com.apple.audio.CoreAudio 3.2.6 (3.2.6) <F7C9B01D-45AD-948B-2D26-9736524C1A33> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x988a9000 - 0x988dcff7 com.apple.AE 496.4 (496.4) <7F34EC47-8429-3077-8158-54F5EA908C66> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x988dd000 - 0x988f1fe7 libbsm.0.dylib ??? (???) <14CB053A-7C47-96DA-E415-0906BA1B78C9> /usr/lib/libbsm.0.dylib
    0x988f2000 - 0x98938ff7 libauto.dylib ??? (???) <29422A70-87CF-10E2-CE59-FEE1234CFAAE> /usr/lib/libauto.dylib
    0x98939000 - 0x98abbfe7 libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <35DB7644-0780-D2AB-F6A9-45F28D2D434A> /usr/lib/libicucore.A.dylib
    0x98abc000 - 0x98aedff7 libGLImage.dylib ??? (???) <78F59EAB-BBD4-7366-CA84-970547501978> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x98b8e000 - 0x98c58fef com.apple.CoreServices.OSServices 357 (357) <CF9530AD-F581-B831-09B6-16D9F9283BFA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x98c59000 - 0x98c64ff7 com.apple.CrashReporterSupport 10.6.5 (252) <1781CBE9-F2F4-0272-B434-124250CD48B5> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x98c70000 - 0x98cd1fe7 com.apple.CoreText 3.5.0 (???) <BB50C045-25F5-65B8-B1DB-8CDAEF45EB46> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x98d7b000 - 0x98d9aff7 com.apple.CoreVideo 1.6.2 (45.6) <EB53CAA4-5EE2-C356-A954-5775F7DDD493> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x98d9b000 - 0x98e76feb com.apple.DesktopServices 1.5.9 (1.5.9) <CED00AC1-924B-0E45-7D5E-1CEA8929F5BE> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x98e77000 - 0x98ee6ff7 com.apple.ISSupport 1.9.4 (52) <FC1E0AB0-1056-1CAC-430E-82197FEB5E85> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x99131000 - 0x99131ff7 com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <1DEC639C-173D-F808-DE0D-4070CC6F5BC7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x99132000 - 0x99132ff7 com.apple.CoreServices 44 (44) <51CFA89A-33DB-90ED-26A8-67D461718A4A> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x9917f000 - 0x9917fff7 com.apple.Cocoa 6.6 (???) <EA27B428-5904-B00B-397A-185588698BCC> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x99180000 - 0x9918fffb SyndicationUI ??? (???) <AF180AD9-329E-A1D1-DACE-D759D3799C75> /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
    0x99190000 - 0x9926dff7 com.apple.vImage 4.0 (4.0) <64597E4B-F144-DBB3-F428-0EC3D9A1219E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x9926e000 - 0x995d9ff7 com.apple.QuartzCore 1.6.3 (227.34) <CC1C1631-D8D1-D416-171E-A1683274E479> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x995da000 - 0x99600ffb com.apple.DictionaryServices 1.1.2 (1.1.2) <43E1D565-6E01-3681-F2E5-72AE4C3A097A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x99601000 - 0x99710fe7 com.apple.WebKit 6533.20 (6533.20.25) <248613DC-8432-F15C-B5F7-548CFCA326B5> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x997c2000 - 0x997cffe7 libbz2.1.0.dylib 1.0.5 (compatibility 1.0.0) <6008C8AC-8DB1-B38B-52A9-9133533B0DA2> /usr/lib/libbz2.1.0.dylib
    0x997d0000 - 0x99913fef com.apple.QTKit 7.6.6 (1756) <4D809734-4E1B-8E18-C825-86C5422FC3DC> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x99914000 - 0x99916ff7 com.apple.securityhi 4.0 (36638) <38D36D4D-C798-6ACE-5FA8-5C001993AD6B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0xffff0000 - 0xffff1fff libSystem.B.dylib ??? (???) <62291026-D016-705D-DC1E-FC2B09D47DE5> /usr/lib/libSystem.B.dylib
    Model: MacPro3,1, BootROM MP31.006C.B05, 8 processors, Quad-Core Intel Xeon, 2.8 GHz, 32 GB, SMC 1.25f4
    Graphics: NVIDIA GeForce GTX 285, NVIDIA GeForce GTX 285, PCIe, 1024 MB
    Memory Module: global_name
    AirPort: spairportwireless_card_type_airportextreme (0x14E4, 0x88), Broadcom BCM43xx 1.0 (5.10.131.36.1)
    Bluetooth: Version 2.3.8f7, 2 service, 19 devices, 1 incoming serial ports
    Network Service: Ethernet 1, Ethernet, en0
    Network Service: AirPort, AirPort, en2
    PCI Card: Sonnet Tempo SATA E4P, sppci_ide, Slot-4
    PCI Card: pci-bridge, sppci_pci2pcibridge, Slot-3
    PCI Card: pci137a,5, sppci_audio, Slot-3@7,0,0
    PCI Card: NVIDIA GeForce GTX 285, Display, Slot-1
    Serial ATA Device: WDC WD1001FALS-00J7B1, 931.51 GB
    Serial ATA Device: WDC WD1001FALS-00J7B1, 931.51 GB
    Serial ATA Device: WDC WD1001FALS-00J7B1, 931.51 GB
    Serial ATA Device: WDC WD1001FALS-00J7B1, 931.51 GB
    Serial ATA Device: WDC WD10EADS-00L5B1, 931.51 GB
    Serial ATA Device: WDC WD10EACS-00D6B0, 931.51 GB
    Serial ATA Device: WDC WD5000AAKS-00TMA0, 465.76 GB
    Serial ATA Device: WDC WD15EADS-00P8B0, 1.36 TB
    Serial ATA Device: WDC WD1002FAEX-00Z3A0, 931.51 GB
    Serial ATA Device: WDC WD1001FALS-00J7B1, 931.51 GB
    Serial ATA Device: WDC WD5000AAKS-00YGA0, 465.76 GB
    Serial ATA Device: WDC WD10EADS-00L5B1, 931.51 GB
    Serial ATA Device: WDC WD10EADS-00L5B1, 931.51 GB
    Parallel ATA Device: PIONEER DVD-RW DVR-112D
    USB Device: Hub, 0x050d (Belkin Corporation), 0x0237, 0xfd300000
    USB Device: MP610 series, 0x04a9 (Canon Inc.), 0x1725, 0xfd350000
    USB Device: eLicenser, 0x0819, 0x0101, 0xfd320000
    USB Device: iLok, 0x088e, 0x5036, 0xfd330000
    USB Device: Bluetooth USB Host Controller, 0x0a12 (Cambridge Silicon Radio Ltd.), 0x0001, 0xfd370000
    USB Device: Hub, 0x0424 (SMSC), 0x2504, 0xfd200000
    USB Device: Hub, 0x0424 (SMSC), 0x2504, 0xfd230000
    USB Device: Miscellaneous Device, 0x046d (Logitech Inc.), 0x09a4, 0xfd232000
    USB Device: USB2.0 Hub, 0x05e3 (Genesys Logic, Inc.), 0x0607, 0xfd234000
    USB Device: Gaming Keyboard G110, 0x046d (Logitech Inc.), 0xc22a, 0xfd234300
    USB Device: G110 G-keys, 0x046d (Logitech Inc.), 0xc22b, 0xfd234100
    USB Device: Hub, 0x0424 (SMSC), 0x2504, 0xfd240000
    USB Device: Kensington Expert Mouse, 0x047d (Kensington), 0x1020, 0xfd244000
    USB Device: Hub, 0x0424 (SMSC), 0x2504, 0xfd210000
    USB Device: Vendor-Specific Device, 0x0582 (Roland Corporation), 0x0009, 0xfd213000
    USB Device: Hub, 0x0424 (SMSC), 0x2504, 0xfd220000
    USB Device: Altec Lansing XT1 - USB Audio, 0x04d2, 0x9801, 0xfd222000
    USB Device: TripleHead2Go, 0x18ea, 0x0004, 0x3d200000
    FireWire Device: built-in_hub, Up to 800 Mb/sec

    Hi,
    Third party unsupported Safari add ons are causing Safari to crash.
    /Library/InputManagers/Ecamm/Ecamm Plugin Loader.bundle/Contents/MacOS/Ecamm Plugin Loader
    /Library/InputManagers/Ecamm/Plugins/iGlasses.plugin/Contents/MacOS/iGlasses
    /Library/ScriptingAdditions/SIMBL.osax/Contents/MacOS/SIMBL
    /Library/Application Support/SIMBL/Plugins/Keywurl.bundle/Contents/MacOS/Keywurl
    Open a Finder window. Select MacintoshHD in the Sidebar on the left. Now open the LIbrary folder then the Input Managers folder.
    Move these files to the Trash: Ecamm/Ecamm Plugin Loader.bundle/Contents/MacOS/Ecamm Plugin Loader
    and these: Ecamm/Plugins/iGlasses.plugin/Contents/MacOS/iGlasses
    From that same Library folder open the Scripting Additions folder. Move these files to the Trash:
    SIMBL.osax/Contents/MacOS/SIMBL
    Same Library folder open the Application Support folder. Move these files to the Trash: SIMBL/Plugins/Keywurl.bundle/Contents/MacOS/Keywurl
    Restart Safari.
    Apparently iGlasses can only run if you start Safari in 32 bit mode according to the information here.
    http://www.ecamm.com/mac/iglasses/faq.html
    You would have to restart in 64 bit when not using the plug in. Probably not worth the hassle. I hope you only have the trial version installed.
    OS Version: Mac OS X 10.6.5 (10H574)
    You also need to update to v10.6.6. You can do this by clicking your Apple menu (top left in your screen) then click Software Update.
    Carolyn

  • Mouse over actual panzoom animation graphic causes all to vanish ?

    Hi,
    see code below.
    We have movieClip called Map_Collection (in properties) within which are movie clips BusRoute_42 and BusRoute_43 (in properties) as well as the basic map artwork graphic.
    These are lines that glow (motion tween alpha1% to 100% to 1%) when buttons outside of the map boundary are clicked on.
    Buttons sit on Scene1 stage outside of the map area and are named in properties Button42 and Button43
    Coding also makes the map zoom and pan, using mix of freesource whitecat redcat and greymouse coding for pan and another for zoom with focus at mouse location.
    The problem:-
    1) Map route glows ok when button clicked, and pan zoom is ok until user happens to shove map around just on the location of the glowing line, the entire flash movie then goes white, all artwork vanishes.. Why ? Near it ok, but on it, zappo !
    Also, but not reason for this post...
    2) zoom works but zoomout eventually inverts then gets larger !
    we hope to remedy this by having limits set, unless there is a better way.
    Any help appreciated as apart from this we are there !
    Envirographics
    PS I dont suppose there is a way of copy pasting code in from CS5 retaining the colouring of it ?
    // Make the routes not visible
    Map_Collection.BusRoute_42.visible=false;
    Map_Collection.BusRoute_43.visible=false;
    // Add listeners
    Button42.addEventListener(MouseEvent.CLICK, hideShow42);
    Button43.addEventListener(MouseEvent.CLICK, hideShow43);
    function hideShow42(event:MouseEvent):void {
    // instead of white_cat.visible = false; we just switch it to the opposite
    Map_Collection.BusRoute_42.visible =!Map_Collection.BusRoute_42.visible;
    Map_Collection.BusRoute_43.visible=false;
    function hideShow43(event:MouseEvent):void {
    // instead of white_cat.visible = false; we just switch it to the opposite
    Map_Collection.BusRoute_43.visible =!Map_Collection.BusRoute_43.visible;
    Map_Collection.BusRoute_42.visible=false;
    /* ----- Change cursor form
    add a hand to cursor to the Map_Collection
    This way a user understands that he/she can do something with the object.
    Map_Collection.buttonMode = true;
    /* ---- dragging ---- */
    Map_Collection.addEventListener(MouseEvent.MOUSE_DOWN, startDragging);
    Map_Collection.addEventListener(MouseEvent.MOUSE_UP, stopDragging);
    function startDragging(event:MouseEvent):void {
    Map_Collection.startDrag();
    function stopDragging(event:MouseEvent):void {
    Map_Collection.stopDrag();
    /* ---- Zooming in with the scroller ---- */
    Map_Collection.addEventListener(MouseEvent.MOUSE_WHEEL, Zooming)
    const mod = 10
    function Zooming(event:MouseEvent):void {
    Map_Collection.scaleX += event.delta / mod
    Map_Collection.scaleY += event.delta / mod
    Map_Collection.x = ((2 * mouseX) - (2 * (event.localX * Map_Collection.scaleX))) / 2;
    Map_Collection.y = ((2 * mouseY) - (2 * (event.localY * Map_Collection.scaleY))) / 2;

    I am not sure it is possible to really understand what is going on from the description and the code. Some issues can arise from how objects stack on display list, etc.
    I have noticed two things from a brief looking into your code:
    1. Map_Collection.addEventListener(MouseEvent.MOUSE_UP, stopDragging); should be:
    stage.addEventListener(MouseEvent.MOUSE_UP, stopDragging);
    Or better yet:
    Map_Collection.addEventListener(MouseEvent.MOUSE_DOWN, startDragging);
    function startDragging(event:MouseEvent):void {
         Map_Collection.startDrag();
         stage.addEventListener(MouseEvent.MOUSE_UP, stopDragging);
    function stopDragging(event:MouseEvent):void {
         Map_Collection.stopDrag();
         stage.removeEventListener(MouseEvent.MOUSE_UP, stopDragging);
    2.  ((2 * mouseX) - (2 * (event.localX * Map_Collection.scaleX))) / 2;
    is the same as:
    (mouseX - event.localX * Map_Collection.scaleX) / 2;
    Also, if you need to center object around the mouse point, perhaps this lines should use dimensions - not scales:
    function Zooming(event:MouseEvent):void {
         Map_Collection.scaleX += event.delta / mod
         Map_Collection.scaleY += event.delta / mod
         Map_Collection.x = (mouseX - Map_Collection.width)/ 2;
         Map_Collection.y = (mouseY - Map_Collection.height)/ 2;

Maybe you are looking for

  • Column number limitation in apex 4.1 data loader?

    Hi all! Is there a limitation of column numbers in the APEX 4.1 data loading page? My DB Object has 59 columns and they are all available for example in the unique colum drop boxes of my data load table definition. On page two of the wizard created d

  • License issue with Intune

    In the Intune account portal when I try to assign a Intune license to a user I get the following error : There was a problem with this user's license assignments. The user has Intune already installed and is linked to the designated user. Any idea wh

  • Where do I download the updated Adobe Installer for a CS6 disk?

    I am so sick of Adobe I am ready to blow my head off! As anyone can tell from my other questions I have been working on the same problem for some time now. I have a CS6 disk that I uploaded to my computer, but my hard drive crashed, so I have been tr

  • Applet flickering

    I will award more Duke Dollars to the one/ones that give me an answer that will help solve my problem. Which is: I have an applet that displays some images. On IExplorer there is a visible flicker of one of the images (the largest one but i don't kno

  • Need career guidance

    Hi, I am a PLSQL developer and i wud like to know if i should also possess unix scripting knowledge.. I wud liketo know the career prospects of PLSQL and i wud aslo like to know if i can switch to datawarehousing or Oracle APPs... Thanks in advance.