Move a Rectangle object

Hi guys
I'm just trying to create an applet that draws a shape such as a rectangle that will allow the user to click on the rectangle, then move the mouse and the shape will be re-drawn at the point where the mouse is released.
Any ideas where i can start, pointers greatly appreciated.

Here is the program you posted (with my corrections) which works
import java.awt.*;
import java.applet.*;
import java.awt.event.*;
public class Test extends Applet
                            implements MouseListener
    private Color color = Color.black;
        int x1, y1, x2, y2 = 0;
int width, height = 0;
  int startX, startY = 0;
boolean drawObject = false;
     boolean moveObject = false;
     Rectangle myRectangle = new Rectangle(startX,startY,width,height);
    public void init()
        setBackground(Color.gray);
        addMouseListener(this);
        int i = 5;
    public void paint(Graphics g)
          //recover Graphics2D
            Graphics2D g2 = (Graphics2D)g;
          g2.setColor(color);
             if(drawObject){
                 //create Rectangle Object
                        myRectangle = new Rectangle(startX,startY,width,height);
                      g2.draw(myRectangle);}
          else if (moveObject){
                   g2.drawString("MOVE", 100,100); //just testing here
                     myRectangle.setLocation(x2,y2);}
    //--> Start of section dealing with Mouse Events
    public void mouseClicked(MouseEvent e)
    public void mouseEntered(MouseEvent e)
    public void mouseExited(MouseEvent e)
    public void mousePressed(MouseEvent e)
           x1 = e.getX();
          y1 = e.getY();
          //Check to see if mouse is pressed in the current rectangle.
            if(myRectangle.contains(x1,y1))
                       //move the object instead of moving it
                  drawObject = false;
                     moveObject = true;
               else
                       //draw the object, don't move
                   drawObject = true;
                      moveObject = false;
    public void mouseReleased(MouseEvent e)
               //get the positions of where the mouse was released
             x2 = e.getX();
          y2 = e.getY();
          if (x1 != x2 && y1 != y2){
          //maths to work out where to draw the object
            if(x1 < x2 && y1 < y2){//1
                      startX = x1;
                    startY = y1;
                    height = y2 - y1;
                       width = x2 - x1;}
               else if (x1 > x2 && y1 > y2){//2
                        startX = x2;
                    startY = y2;
                    height = y1 - y2;
                       width = x1 - x2;}
               else if (x1 > x2 && y1 < y2){//3
                        startX = x2;
                    startY = y1;
                    height = y2 - y1;
                       width = x1 - x2;
               else if (x1 < x2 && y1 > y2){//4
                        startX = x1;
                    startY = y2;
                    height = y1 - y2;
                       width = x2 - x1;}
               } repaint();
}I.e. User can draw a rectangle; clicking inside it causes string MOVE to appear at point 100,100. If you want to redraw rectangle at point where mouse has been clicked, try to think about it a bit and post your code if it wont work. Do not ask to write it for you.

Similar Messages

  • Indesign : how to move a rectangle object with his content ?

    hi
    i develop an indesign extension with flash builder and cs extension builder 2.
    when I move a rectangle object containing an image with the geometricBounds property the image does not move and is not visible anymore ...
    how to move a rectangle object with his content ?
    thanks
    Simon

    Use rectangle.move()

  • Move an animator object from right to left

    How do I move an animator object from right to left?  I tried using the value with a minus sign in front of it. (i.e. -(xcoord) )  Please help.
    Thanks,
    Chris

    After you create the animator, click on it on the panel, you will see a rectangle. You can drag the rectangle to bigger or smaller. The graphic will be moving inside of this rectangle. In this rectangle, bottom left corner is x0 y0.  Top right cornet is x100, y100.
    Ryan Shi
    National Instruments
    Attachments:
    process1.zip ‏1 KB

  • How to move the anchor object in indesign cs2 using js?

    i can able to move the normal textframe and other objects but cant do this for anchor objects.
    syntex:  anchorobject.move([x value,y value],undefined,true)
    how to move the anchor objects?
    thanks
    subha

    Could it be that the anchord object in question won't move because you have it set to keep within margins which is preventing the move you're requesting? I've certainly run into that.
    I've also run into the situation where the object model thinks the anchored object is in one place when it is actually in another because of that same keep within margins option. In this case, a move will apparently not work because the move is invisible, it being completely outside of the margins -- although that only applies to relative moves, I think.
    Dave

  • Creating multiple rectangle objects

    Hi all
    Just having a bit of trouble with a drawing applet i'm creating. At the moment i want the user to be able to click on the screen and the mouse presses and releases define the size of the rectangle. This isn't a problem its just that now i want them to be albe to add more shapes by clicking a new Shape button. at the min my code seems to get stuck in the while loop in the paint method i think, and then it says that the applet is disposed?
    Any ideas where i could be going wrong?
    Cheeers for any pointers
    Heres the code
    import java.awt.*;
    import java.applet.*;
    import java.awt.event.*;
    import java.util.*;
    public class drawingApplet extends Applet
                           implements ActionListener, MouseListener
         private Button newShape = new Button("New");
         private Button button2D = new Button("2D");
         //arraylist for objects
         ArrayList shapesArray = new ArrayList();
              boolean drawObject = true; //Drawing Mode
         boolean moveObject = false;
              private Color color = Color.black;
         int x1,y1,x2,y2,x3,y3,x4,y4 = 0;
         int startX,startY,width,height = 0;
         Rectangle myRectangle = new Rectangle(startX,startY,width,height);
              public void init()
              Panel pEast = new Panel();
              pEast.setLayout(new GridLayout(7,1));
              pEast.add(newShape);
              pEast.add(button2D);
              setBackground(Color.gray);
              newShape.addActionListener(this);
              button2D.addActionListener(this);
              addMouseListener(this);
        public void paint(Graphics g)
              Graphics2D g2 = (Graphics2D)g;
              g2.setColor(color);
              //create Rectangle Object
              myRectangle = new Rectangle(50,50,50,50);
              shapesArray.add(myRectangle);
              Iterator it = shapesArray.iterator();
              while(it.hasNext())
                   //DRAW Object
                   if(drawObject == true){
                        g2.draw(myRectangle);
              }//--> End of While loop
         }     //--> End of Paint()
         //--> Start of actionPeformed()
        public void actionPerformed(ActionEvent a)
            if (a.getSource()== button2D){
                   drawObject = true;
                   moveObject = false;
              }else if(a.getSource()== newShape){
                   //add rectangle to arraylist
                   shapesArray.add(myRectangle);
            repaint();}
        }//--> End of actionPerformed()
        //--> Start of section dealing with Mouse Events
        public void mouseClicked(MouseEvent e)
        public void mouseEntered(MouseEvent e)
        public void mouseExited(MouseEvent e)
        public void mousePressed(MouseEvent e)
              x1 = e.getX();
              y1 = e.getY();
              if(myRectangle.contains(x1,y1)){
                   drawObject = false;
                   moveObject = true;
              }else{ //draw the object
                   drawObject = true;}
         }//--> End of mousePressed()
         public void mouseReleased(MouseEvent e)
              //get the positions of where the mouse was released
              x2 = e.getX();
              y2 = e.getY();
              if(drawObject == true){
                   if (x1 != x2 && y1 != y2){
                   //maths to work out where to draw the object
                   if(x1 < x2 && y1 < y2){//1
                        startX = x1;
                        startY = y1;
                        height = y2 - y1;
                        width = x2 - x1;}
                   else if (x1 > x2 && y1 > y2){//2
                        startX = x2;
                        startY = y2;
                        height = y1 - y2;
                        width = x1 - x2;}
                   else if (x1 > x2 && y1 < y2){//3
                        startX = x2;
                        startY = y1;
                        height = y2 - y1;
                        width = x1 - x2;
                   else if (x1 < x2 && y1 > y2){//4
                        startX = x1;
                        startY = y2;
                        height = y1 - y2;
                        width = x2 - x1;}
              }else if(moveObject == true){
                   if (x1 != x2 && y1 != y2){
                        startX = x2;
                        startY = y2;
                        width = myRectangle.width;
                        height = myRectangle.height;
              repaint();
         }//--> End of mouseReleased()
    }Also if anybody has some examples i could look at i would be very grateful. Cheers!!

    /*  <applet code="AddingRectangles" width="400" height="300"></applet>
    *  use: >appletviewer AddingRectangles.java
    import java.applet.Applet;
    import java.awt.*;
    import java.awt.event.*;
    import java.util.*;
    public class AddingRectangles extends Applet implements ActionListener, MouseListener
        private Button newShape = new Button("New");
        private Button button2D = new Button("2D");
        //arraylist for objects
        ArrayList shapesArray = new ArrayList();
        boolean drawObject = true; //Drawing Mode
        boolean moveObject = false;
        private Color color = Color.black;
        int x1,y1,x2,y2,x3,y3,x4,y4 = 0;
        int startX,startY,width,height = 0;
        Rectangle selectedRectangle;
        public void init()
            Panel pEast = new Panel();
            pEast.setLayout(new GridLayout(7,1));
            pEast.add(newShape);
            pEast.add(button2D);
    //        setBackground(Color.gray);
            newShape.addActionListener(this);
            button2D.addActionListener(this);
            addMouseListener(this);
        public void paint(Graphics g)
            Graphics2D g2 = (Graphics2D)g;
            g2.setColor(color);
            //create Rectangle Object
    //        myRectangle = new Rectangle(50,50,50,50);
    //        shapesArray.add(myRectangle);
            Iterator it = shapesArray.iterator();
            while(it.hasNext())
                g2.draw((Rectangle)it.next());
        } //--> End of Paint()
        //--> Start of actionPeformed()
        public void actionPerformed(ActionEvent a)
            if (a.getSource()== button2D){
                drawObject = true;
                moveObject = false;
            }else if(a.getSource()== newShape){
                //add rectangle to arraylist
    //            shapesArray.add(myRectangle);
            repaint();
        }//--> End of actionPerformed()
        //--> Start of section dealing with Mouse Events
        public void mouseClicked(MouseEvent e){}
        public void mouseEntered(MouseEvent e){}
        public void mouseExited(MouseEvent e){}
        public void mousePressed(MouseEvent e)
            x1 = e.getX();
            y1 = e.getY();
            selectedRectangle = null;
            Iterator it = shapesArray.iterator();
            Rectangle r;
            while(it.hasNext())
                r = (Rectangle)it.next();
                if(r.contains(x1,y1)){
                    drawObject = false;
                    moveObject = true;
                    selectedRectangle = r;
                    break;
            // no rectangle selected
            if(selectedRectangle == null)
                selectedRectangle = new Rectangle(x1, y1, 0, 0);
                drawObject = true;
        }//--> End of mousePressed()
        public void mouseReleased(MouseEvent e)
            //get the positions of where the mouse was released
            x2 = e.getX();
            y2 = e.getY();
            if(drawObject == true){
                if (x1 != x2 && y1 != y2){
                    //maths to work out where to draw the object
                    if(x1 < x2 && y1 < y2){//1
                        startX = x1;
                        startY = y1;
                        height = y2 - y1;
                        width = x2 - x1;
                    else if (x1 > x2 && y1 > y2){//2
                        startX = x2;
                        startY = y2;
                        height = y1 - y2;
                        width = x1 - x2;
                    else if (x1 > x2 && y1 < y2){//3
                        startX = x2;
                        startY = y1;
                        height = y2 - y1;
                        width = x1 - x2;
                else if (x1 < x2 && y1 > y2){//4
                    startX = x1;
                    startY = y2;
                    height = y1 - y2;
                    width = x2 - x1;
                if(Math.abs(x2 - x1) > 0 && Math.abs(y2 - y1) > 0)
                    shapesArray.add(new Rectangle(x1, y1, width, height));
            }else if(moveObject == true){
                if (x1 != x2 && y1 != y2){
                    startX = x2;
                    startY = y2;
                    width = selectedRectangle.width;
                    height = selectedRectangle.height;
            repaint();
        }//--> End of mouseReleased()
        public static void main(String[] args)
            Applet applet = new AddingRectangles();
            Frame f = new Frame("Adding Rectangle");
            f.addWindowListener(new WindowAdapter()
                public void windowClosing(WindowEvent e)
                    System.exit(0);
            f.add(applet);
            f.setSize(400,300);
            f.setLocation(200,200);
            applet.init();
            applet.start();
            f.setVisible(true);
    }

  • How does operator 'less than' work with Rectangle objects?

    Just found in legacy code the following:
    private var firstRect:Rectangle;
    private var secondRect:Rectangle;
    if (firstRect < secondRect)
    // do something
    How does operator 'less than' work with Rectangle objects?
    Doc says that object is converted to number if it is not a String.
    Rectangle is not a String, though has conversion to String.
    Please help.

    IME the best way to know for sure is to experiment. The docs are only one person's best understanding of how things worked on the day, which is seldom 100% accurate. I find that even with code I wrote I can't accurately say 100% of what it does until I've worked with it for a while. Keep in mind that the docs are usually written when the code is written, so  never expect more than a rough idea from the docs.

  • Trying to move a graphics object using buttons.

    Hello, im fairly new to GUI's. Anyway I have 1 class which makes my main JFrame, then I have another 2 classes, one to draw a lil square graphics component (which iwanna move around) which is placed in the center of my main frame and then another class to draw a Buttonpanel with my buttons on which is placed at the bottom of my main frame.
    I have then made an event handling class which implements ActionListner, I am confused at how I can get the graphics object moving, and where I need to place the updateGUI() method which the actionPerformed method calls from inside the event handling class.
    I am aware you can repaint() graphics and assume this would be used, does anyone have a good example of something simular being done or could post any help or code to aid me, thanks!

    Yeah.. here's an example of custom painting on a JPanel with a box. I used a mouse as it was easier for me to setup than a nice button panel on the side.
    Anyways... it should make it pretty clear how to get everything setup, just add a button panel on the side. and use it to move the box instead of the mouse.
    -Js
    import java.awt.Color;
    import java.awt.Graphics;
    import java.awt.event.MouseEvent;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import javax.swing.event.MouseInputAdapter;
    public class MoveBoxAroundExample extends JFrame
         private final static int SQUARE_EDGE_LENGTH = 40;
         private JPanel panel;
         private int xPos;
         private int yPos;
         public MoveBoxAroundExample()
              this.setSize(500,500);
              this.setDefaultCloseOperation(javax.swing.JFrame.EXIT_ON_CLOSE);
              this.setContentPane(getPanel());
              xPos = 250;
              yPos = 250;
              this.setVisible(true);     
         private JPanel getPanel()
              if(panel == null)
                   panel = new JPanel()
                        public void paintComponent(Graphics g)
                             super.paintComponent(g);
                             g.setColor(Color.RED);
                             g.fillRect(xPos-(SQUARE_EDGE_LENGTH/2), yPos-(SQUARE_EDGE_LENGTH/2), SQUARE_EDGE_LENGTH, SQUARE_EDGE_LENGTH);
                   MouseInputAdapter mia = new MouseInputAdapter()
                        public void mousePressed(MouseEvent e)
                            xPos = e.getX();
                            yPos = e.getY();
                            panel.repaint();
                        public void mouseDragged(MouseEvent e)
                            xPos = e.getX();
                            yPos = e.getY();
                            panel.repaint();
                   panel.addMouseListener(mia);
                   panel.addMouseMotionListener(mia);
              return panel;
         public static void main(String args[])
              new MoveBoxAroundExample();
    }

  • Illustrator CC Suddenly Crashes when mouse cursor moves a drawn object

    I've relaunched and tried re-installing Illustrator CC twice and didn't solve this unexpected crash problem. It has never happened since I paid for this software months ago.
    Illustrator won't crash when:
    - using the keyboard arrows to manually move any path or drawn shapes/ objects
    - using my wireless mouse to draw objects/ new paths from clipboards, colour boards etc.
    Illustrator CRASHES when:
    - using my wireless mouse and macbook's touchpad mouse to move any new or old drawn paths/ objects/ shapes/ lines etc.
    In my Opinion - ROOT OF PROBLEM:
    - Wirelss and macbook's touchpad mouse cursor causees it to hang then crash 1 minute later.
    Why would my mouse cursor suddenly be the cause of this crash problem when it was working fine all along?
    Below is the error message, need a SOLUTION or ADVICE ASAP as I use this software to run my design business, thank you!
    Process:         Adobe Illustrator [18899]
    Path:            /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/MacOS/Adobe Illustrator
    Identifier:      com.adobe.illustrator
    Version:         17.1.0 (17.0.0)
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [122]
    User ID:         501
    Date/Time:       2014-03-14 23:11:31.108 +1100
    OS Version:      Mac OS X 10.8.4 (12E55)
    Report Version:  10
    Interval Since Last Report:          638014 sec
    Crashes Since Last Report:           50
    Per-App Interval Since Last Report:  614683 sec
    Per-App Crashes Since Last Report:   10
    Anonymous UUID:                      6279357D-4FC4-2602-FF78-501FBDC454EB
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: EXC_I386_GPFLT
    Application Specific Information:
    objc_msgSend() selector name: hash
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libobjc.A.dylib                         0x00007fff8682424c objc_msgSend + 12
    1   com.apple.CoreFoundation                0x00007fff8d34f12d -[__NSDictionaryM objectForKey:] + 77
    2   com.apple.AppKit                        0x00007fff8df3e46f +[NSPasteboard _pasteboardWithName:] + 135
    3   com.adobe.dvaui.framework               0x000000010805b7d6 dvaui::datatransfer::OS_SendData::DoDragAndDrop(int, int*) + 358
    4   com.adobe.illustrator                   0x000000010060bd2e 0x100000000 + 6339886
    5   com.adobe.illustrator                   0x0000000100508293 0x100000000 + 5276307
    6   com.adobe.illustrator                   0x00000001005056ac 0x100000000 + 5265068
    7   com.adobe.illustrator                   0x00000001004f6bbb 0x100000000 + 5204923
    8   com.adobe.illustrator                   0x00000001004f47a3 0x100000000 + 5195683
    9   com.adobe.illustrator                   0x00000001004cd539 0x100000000 + 5035321
    10  com.adobe.illustrator                   0x0000000100479242 0x100000000 + 4690498
    11  com.adobe.illustrator                   0x000000010047d2f1 0x100000000 + 4707057
    12  com.adobe.illustrator                   0x000000010047b950 0x100000000 + 4700496
    13  com.adobe.illustrator                   0x0000000100484dcc 0x100000000 + 4738508
    14  com.adobe.illustrator                   0x0000000100488223 0x100000000 + 4751907
    15  com.adobe.dvaui.framework               0x00000001080e869a dvaui::ui::UI_Node::UI_DispatchPointerEventToLeaf(dvaui::ui::UI_Node*, dvaui::ui::UI_Node*, dvaui::ui::PointerEvent const&) + 154
    16  com.adobe.dvaui.framework               0x00000001080e824a dvaui::ui::UI_Node::DispatchPointerEvent::operator()(dvaui::ui::UI_Node*, dvaui::ui::UI_Node*, dvacore::geom::PointT<float> const&) const + 122
    17  com.adobe.dvaui.framework               0x00000001080ee893 std::pair<bool, dvaui::ui::UI_Node*> dvaui::ui::UI_Node::UI_DispatchPointerEventTowardsLeafT<dvaui::ui::UI_Node::DispatchPoint erEvent>(dvaui::ui::UI_Node::DispatchPointerEvent&, dvacore::geom::PointT<float> const&, bool) + 163
    18  com.adobe.dvaui.framework               0x00000001080e74d1 dvaui::ui::UI_Node::UI_DispatchPointerEventTowardsLeaf(dvaui::ui::PointerEvent const&, bool) + 65
    19  com.adobe.dvaui.framework               0x00000001080e6bb2 dvaui::ui::UI_Node::UI_DispatchPointerEventToTarget(dvaui::ui::UI_Node*, dvaui::ui::PointerEvent const&, bool) + 194
    20  com.adobe.dvaui.framework               0x00000001080e6a52 dvaui::ui::UI_Node::UI_DispatchPointerEvent(dvaui::ui::PointerEvent const&, bool) + 66
    21  com.adobe.dvaui.framework               0x00000001081630a7 dvaui::ui::OS_View::UI_DispatchPlatformMouseEvent(dvaui::ui::MouseEvent const&, bool) + 663
    22  com.adobe.dvaui.framework               0x0000000108162c0e dvaui::ui::OS_View::UI_DispatchPlatformMouseClickEvent(dvaui::ui::OS_Event const&) + 622
    23  com.adobe.dvaui.framework               0x0000000108161478 dvaui::ui::OS_View::UI_DispatchEvent(dvaui::ui::OS_Event*) + 120
    24  com.adobe.dvaui.framework               0x00000001081613d6 dvaui::ui::OS_View::UI_HandleOSEvent(dvaui::ui::OS_Event*) + 22
    25  com.adobe.dvaui.framework               0x0000000108162679 dvaui::ui::OS_View::UI_HandlePlatformEvent(NSEvent*) + 57
    26  com.adobe.dvacore.framework             0x0000000107a0ba74 int dvacore::config::ErrorManager::ExecuteFunction<void>(boost::function0<void>*, void*) + 68
    27  com.adobe.illustrator                   0x000000010048f3f2 0x100000000 + 4781042
    28  com.adobe.dvacore.framework             0x0000000107a0bb0c void dvacore::config::ErrorManager::ExecuteFunctionWithTopLevelExceptionHandler<void>(boost::f unction0<void>, bool*) + 140
    29  com.adobe.dvacore.framework             0x0000000107a0ea1d void dvacore::config::ExecuteTopLevelFunction<void>(boost::function0<void>, bool*) + 125
    30  com.adobe.dvaui.framework               0x000000010816d2ba -[DVAMacContainerView mouseDown:] + 122
    31  com.apple.AppKit                        0x00007fff8e0f250e -[NSWindow sendEvent:] + 6853
    32  com.adobe.owl                           0x000000010582a840 0x1057f4000 + 223296
    33  com.apple.AppKit                        0x00007fff8e0ee644 -[NSApplication sendEvent:] + 5761
    34  com.adobe.dvaui.framework               0x0000000108166b7e -[DVAMacApplication sendEvent:] + 622
    35  com.adobe.exo.framework                 0x0000000108b0827f -[ExoMacApplication sendEvent:] + 559
    36  com.apple.AppKit                        0x00007fff8e00421a -[NSApplication run] + 636
    37  com.adobe.exo.framework                 0x0000000108b07c98 exo::app::OS_AppBase::RunEventLoop() + 56
    38  com.adobe.illustrator                   0x000000010048db15 0x100000000 + 4774677
    39  com.adobe.illustrator                   0x000000010043189c 0x100000000 + 4397212
    40  com.adobe.illustrator                   0x000000010041bfa7 0x100000000 + 4308903
    41  com.adobe.illustrator                   0x0000000100003754 0x100000000 + 14164
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff8bafbd16 kevent + 10
    1   libdispatch.dylib                       0x00007fff8b196dea _dispatch_mgr_invoke + 883
    2   libdispatch.dylib                       0x00007fff8b1969ee _dispatch_mgr_thread + 54
    Thread 2:
    0   libsystem_kernel.dylib                  0x00007fff8bafb0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff91d5efe9 _pthread_cond_wait + 869
    2   com.adobe.AGM                           0x0000000102bfed0b 0x1028bc000 + 3419403
    3   com.adobe.AGM                           0x0000000102bff7bd 0x1028bc000 + 3422141
    4   com.adobe.AGM                           0x0000000102c157e8 0x1028bc000 + 3512296
    5   libsystem_c.dylib                       0x00007fff91d5a7a2 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff91d471e1 thread_start + 13
    Thread 3:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x00007fff8bafb322 __select + 10
    1   com.apple.CoreFoundation                0x00007fff8d2a1f46 __CFSocketManager + 1302
    2   libsystem_c.dylib                       0x00007fff91d5a7a2 _pthread_start + 327
    3   libsystem_c.dylib                       0x00007fff91d471e1 thread_start + 13
    Thread 4:
    0   libsystem_kernel.dylib                  0x00007fff8bafb386 __semwait_signal + 10
    1   libsystem_c.dylib                       0x00007fff91de4800 nanosleep + 163
    2   libsystem_c.dylib                       0x00007fff91de4717 usleep + 54
    3   com.adobe.illustrator.plugins.dBrushTool          0x000000011563184b 0x1155da000 + 358475
    4   libsystem_c.dylib                       0x00007fff91d5a7a2 _pthread_start + 327
    5   libsystem_c.dylib                       0x00007fff91d471e1 thread_start + 13
    Thread 5:
    0   libsystem_kernel.dylib                  0x00007fff8baf96c2 semaphore_wait_trap + 10
    1   com.adobe.illustrator.plugins.dBrushTool          0x000000011563219f 0x1155da000 + 360863
    Thread 6:
    0   libsystem_kernel.dylib                  0x00007fff8baf96c2 semaphore_wait_trap + 10
    1   com.adobe.illustrator.plugins.dBrushTool          0x000000011563219f 0x1155da000 + 360863
    Thread 7:
    0   libsystem_kernel.dylib                  0x00007fff8bafb0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff91d5efe9 _pthread_cond_wait + 869
    2   com.adobe.AFlame                        0x000000011cb76b1b 0x11c9fb000 + 1555227
    3   com.adobe.AFlame                        0x000000011cb2e234 0x11c9fb000 + 1258036
    4   libsystem_c.dylib                       0x00007fff91d5a7a2 _pthread_start + 327
    5   libsystem_c.dylib                       0x00007fff91d471e1 thread_start + 13
    Thread 8:
    0   libsystem_kernel.dylib                  0x00007fff8bafb386 __semwait_signal + 10
    1   libsystem_c.dylib                       0x00007fff91de4800 nanosleep + 163
    2   com.adobe.illustrator.plugins.ScriptingSupport          0x00000001109a4c78 0x110831000 + 1522808
    3   com.adobe.illustrator.plugins.ScriptingSupport          0x000000011098d04e 0x110831000 + 1425486
    4   com.adobe.illustrator.plugins.ScriptingSupport          0x00000001109a4835 0x110831000 + 1521717
    5   libsystem_c.dylib                       0x00007fff91d5a7a2 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff91d471e1 thread_start + 13
    Thread 9:: C4 ThreadController
    0   libsystem_kernel.dylib                  0x00007fff8bafb0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff91d5efe9 _pthread_cond_wait + 869
    2   com.adobe.illustrator                   0x0000000100e99cab 0x100000000 + 15309995
    3   com.adobe.illustrator                   0x0000000100e9874b 0x100000000 + 15304523
    4   com.adobe.illustrator                   0x0000000100e96bda 0x100000000 + 15297498
    5   com.adobe.boost_threads.framework          0x0000000106e0d1be thread_proxy + 158
    6   libsystem_c.dylib                       0x00007fff91d5a7a2 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff91d471e1 thread_start + 13
    Thread 10:: C4 ThreadController
    0   libsystem_kernel.dylib                  0x00007fff8bafb0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff91d5efe9 _pthread_cond_wait + 869
    2   com.adobe.illustrator                   0x0000000100e99cab 0x100000000 + 15309995
    3   com.adobe.illustrator                   0x0000000100e9874b 0x100000000 + 15304523
    4   com.adobe.illustrator                   0x0000000100e96bda 0x100000000 + 15297498
    5   com.adobe.boost_threads.framework          0x0000000106e0d1be thread_proxy + 158
    6   libsystem_c.dylib                       0x00007fff91d5a7a2 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff91d471e1 thread_start + 13
    Thread 11:: C4 ThreadController
    0   libsystem_kernel.dylib                  0x00007fff8bafb0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff91d5efe9 _pthread_cond_wait + 869
    2   com.adobe.illustrator                   0x0000000100e99cab 0x100000000 + 15309995
    3   com.adobe.illustrator                   0x0000000100e9874b 0x100000000 + 15304523
    4   com.adobe.illustrator                   0x0000000100e96bda 0x100000000 + 15297498
    5   com.adobe.boost_threads.framework          0x0000000106e0d1be thread_proxy + 158
    6   libsystem_c.dylib                       0x00007fff91d5a7a2 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff91d471e1 thread_start + 13
    Thread 12:: C4 ThreadController
    0   libsystem_kernel.dylib                  0x00007fff8bafb0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff91d5efe9 _pthread_cond_wait + 869
    2   com.adobe.illustrator                   0x0000000100e99cab 0x100000000 + 15309995
    3   com.adobe.illustrator                   0x0000000100e9874b 0x100000000 + 15304523
    4   com.adobe.illustrator                   0x0000000100e96bda 0x100000000 + 15297498
    5   com.adobe.boost_threads.framework          0x0000000106e0d1be thread_proxy + 158
    6   libsystem_c.dylib                       0x00007fff91d5a7a2 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff91d471e1 thread_start + 13
    Thread 13:: C4 ThreadController
    0   libsystem_kernel.dylib                  0x00007fff8bafb0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff91d5efe9 _pthread_cond_wait + 869
    2   com.adobe.illustrator                   0x0000000100e99cab 0x100000000 + 15309995
    3   com.adobe.illustrator                   0x0000000100e9874b 0x100000000 + 15304523
    4   com.adobe.illustrator                   0x0000000100e96bda 0x100000000 + 15297498
    5   com.adobe.boost_threads.framework          0x0000000106e0d1be thread_proxy + 158
    6   libsystem_c.dylib                       0x00007fff91d5a7a2 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff91d471e1 thread_start + 13
    Thread 14:: C4 ThreadController
    0   libsystem_kernel.dylib                  0x00007fff8bafb0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff91d5efe9 _pthread_cond_wait + 869
    2   com.adobe.illustrator                   0x0000000100e99cab 0x100000000 + 15309995
    3   com.adobe.illustrator                   0x0000000100e9874b 0x100000000 + 15304523
    4   com.adobe.illustrator                   0x0000000100e96bda 0x100000000 + 15297498
    5   com.adobe.boost_threads.framework          0x0000000106e0d1be thread_proxy + 158
    6   libsystem_c.dylib                       0x00007fff91d5a7a2 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff91d471e1 thread_start + 13
    Thread 15:: C4 ThreadController
    0   libsystem_kernel.dylib                  0x00007fff8bafb0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff91d5efe9 _pthread_cond_wait + 869
    2   com.adobe.illustrator                   0x0000000100e99cab 0x100000000 + 15309995
    3   com.adobe.illustrator                   0x0000000100e9874b 0x100000000 + 15304523
    4   com.adobe.illustrator                   0x0000000100e96bda 0x100000000 + 15297498
    5   com.adobe.boost_threads.framework          0x0000000106e0d1be thread_proxy + 158
    6   libsystem_c.dylib                       0x00007fff91d5a7a2 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff91d471e1 thread_start + 13
    Thread 16:: C4 ThreadController
    0   libsystem_kernel.dylib                  0x00007fff8bafb0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff91d5efe9 _pthread_cond_wait + 869
    2   com.adobe.illustrator                   0x0000000100e99cab 0x100000000 + 15309995
    3   com.adobe.illustrator                   0x0000000100e9874b 0x100000000 + 15304523
    4   com.adobe.illustrator                   0x0000000100e96bda 0x100000000 + 15297498
    5   com.adobe.boost_threads.framework          0x0000000106e0d1be thread_proxy + 158
    6   libsystem_c.dylib                       0x00007fff91d5a7a2 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff91d471e1 thread_start + 13
    Thread 17:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x00007fff8baf9686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8baf8c42 mach_msg + 70
    2   com.apple.CoreFoundation                0x00007fff8d25d233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x00007fff8d262916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x00007fff8d2620e2 CFRunLoopRunSpecific + 290
    5   com.apple.Foundation                    0x00007fff85e54546 +[NSURLConnection(Loader) _resourceLoadLoop:] + 356
    6   com.apple.Foundation                    0x00007fff85eb2562 __NSThread__main__ + 1345
    7   libsystem_c.dylib                       0x00007fff91d5a7a2 _pthread_start + 327
    8   libsystem_c.dylib                       0x00007fff91d471e1 thread_start + 13
    Thread 18:
    0   libsystem_kernel.dylib                  0x00007fff8bafb2aa __recvfrom + 10
    1   ServiceManager-Launcher.dylib           0x000000010e6081a1 0x10e5f0000 + 98721
    2   ServiceManager-Launcher.dylib           0x000000010e6074bc 0x10e5f0000 + 95420
    3   ServiceManager-Launcher.dylib           0x000000010e60655e 0x10e5f0000 + 91486
    4   ServiceManager-Launcher.dylib           0x000000010e6065cc 0x10e5f0000 + 91596
    5   ServiceManager-Launcher.dylib           0x000000010e6011c4 0x10e5f0000 + 70084
    6   ServiceManager-Launcher.dylib           0x000000010e601bde 0x10e5f0000 + 72670
    7   ServiceManager-Launcher.dylib           0x000000010e601aeb 0x10e5f0000 + 72427
    8   ServiceManager-Launcher.dylib           0x000000010e60524e 0x10e5f0000 + 86606
    9   ServiceManager-Launcher.dylib           0x000000010e605392 0x10e5f0000 + 86930
    10  ServiceManager-Launcher.dylib           0x000000010e60514d 0x10e5f0000 + 86349
    11  ServiceManager-Launcher.dylib           0x000000010e6050c6 0x10e5f0000 + 86214
    12  ServiceManager-Launcher.dylib           0x000000010e5f37d6 0x10e5f0000 + 14294
    13  ServiceManager-Launcher.dylib           0x000000010e5f79c5 0x10e5f0000 + 31173
    14  ServiceManager-Launcher.dylib           0x000000010e605d2c 0x10e5f0000 + 89388
    15  ServiceManager-Launcher.dylib           0x000000010e607e63 0x10e5f0000 + 97891
    16  libsystem_c.dylib                       0x00007fff91d5a7a2 _pthread_start + 327
    17  libsystem_c.dylib                       0x00007fff91d471e1 thread_start + 13
    Thread 19:: C4 ThreadController
    0   libsystem_kernel.dylib                  0x00007fff8bafb0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff91d5efe9 _pthread_cond_wait + 869
    2   com.adobe.illustrator                   0x0000000100e99cab 0x100000000 + 15309995
    3   com.adobe.illustrator                   0x0000000100e9874b 0x100000000 + 15304523
    4   com.adobe.illustrator                   0x0000000100e96bda 0x100000000 + 15297498
    5   com.adobe.boost_threads.framework          0x0000000106e0d1be thread_proxy + 158
    6   libsystem_c.dylib                       0x00007fff91d5a7a2 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff91d471e1 thread_start + 13
    Thread 20:: C4 ThreadController
    0   libsystem_kernel.dylib                  0x00007fff8bafb0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff91d5efe9 _pthread_cond_wait + 869
    2   com.adobe.illustrator                   0x0000000100e99cab 0x100000000 + 15309995
    3   com.adobe.illustrator                   0x0000000100e9874b 0x100000000 + 15304523
    4   com.adobe.illustrator                   0x0000000100e96bda 0x100000000 + 15297498
    5   com.adobe.boost_threads.framework          0x0000000106e0d1be thread_proxy + 158
    6   libsystem_c.dylib                       0x00007fff91d5a7a2 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff91d471e1 thread_start + 13
    Thread 21:: C4 ThreadController
    0   libsystem_kernel.dylib                  0x00007fff8bafb0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff91d5efe9 _pthread_cond_wait + 869
    2   com.adobe.illustrator                   0x0000000100e99cab 0x100000000 + 15309995
    3   com.adobe.illustrator                   0x0000000100e9874b 0x100000000 + 15304523
    4   com.adobe.illustrator                   0x0000000100e96bda 0x100000000 + 15297498
    5   com.adobe.boost_threads.framework          0x0000000106e0d1be thread_proxy + 158
    6   libsystem_c.dylib                       0x00007fff91d5a7a2 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff91d471e1 thread_start + 13
    Thread 22:: C4 ThreadController
    0   libsystem_kernel.dylib                  0x00007fff8bafb0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff91d5efe9 _pthread_cond_wait + 869
    2   com.adobe.illustrator                   0x0000000100e99cab 0x100000000 + 15309995
    3   com.adobe.illustrator                   0x0000000100e9874b 0x100000000 + 15304523
    4   com.adobe.illustrator                   0x0000000100e96bda 0x100000000 + 15297498
    5   com.adobe.boost_threads.framework          0x0000000106e0d1be thread_proxy + 158
    6   libsystem_c.dylib                       0x00007fff91d5a7a2 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff91d471e1 thread_start + 13
    Thread 23:: C4 ThreadController
    0   libsystem_kernel.dylib                  0x00007fff8bafb0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff91d5efe9 _pthread_cond_wait + 869
    2   com.adobe.illustrator                   0x0000000100e99cab 0x100000000 + 15309995
    3   com.adobe.illustrator                   0x0000000100e9874b 0x100000000 + 15304523
    4   com.adobe.illustrator                   0x0000000100e96bda 0x100000000 + 15297498
    5   com.adobe.boost_threads.framework          0x0000000106e0d1be thread_proxy + 158
    6   libsystem_c.dylib                       0x00007fff91d5a7a2 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff91d471e1 thread_start + 13
    Thread 24:: C4 ThreadController
    0   libsystem_kernel.dylib                  0x00007fff8bafb0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff91d5efe9 _pthread_cond_wait + 869
    2   com.adobe.illustrator                   0x0000000100e99cab 0x100000000 + 15309995
    3   com.adobe.illustrator                   0x0000000100e9874b 0x100000000 + 15304523
    4   com.adobe.illustrator                   0x0000000100e96bda 0x100000000 + 15297498
    5   com.adobe.boost_threads.framework          0x0000000106e0d1be thread_proxy + 158
    6   libsystem_c.dylib                       0x00007fff91d5a7a2 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff91d471e1 thread_start + 13
    Thread 25:: C4 ThreadController
    0   libsystem_kernel.dylib                  0x00007fff8bafb0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff91d5efe9 _pthread_cond_wait + 869
    2   com.adobe.illustrator                   0x0000000100e99cab 0x100000000 + 15309995
    3   com.adobe.illustrator                   0x0000000100e9874b 0x100000000 + 15304523
    4   com.adobe.illustrator                   0x0000000100e96bda 0x100000000 + 15297498
    5   com.adobe.boost_threads.framework          0x0000000106e0d1be thread_proxy + 158
    6   libsystem_c.dylib                       0x00007fff91d5a7a2 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff91d471e1 thread_start + 13
    Thread 26:: C4 ThreadController
    0   libsystem_kernel.dylib                  0x00007fff8bafb0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff91d5efe9 _pthread_cond_wait + 869
    2   com.adobe.illustrator                   0x0000000100e99cab 0x100000000 + 15309995
    3   com.adobe.illustrator                   0x0000000100e9874b 0x100000000 + 15304523
    4   com.adobe.illustrator                   0x0000000100e96bda 0x100000000 + 15297498
    5   com.adobe.boost_threads.framework          0x0000000106e0d1be thread_proxy + 158
    6   libsystem_c.dylib                       0x00007fff91d5a7a2 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff91d471e1 thread_start + 13
    Thread 27:: com.apple.CoreAnimation.render-server
    0   libsystem_kernel.dylib                  0x00007fff8baf9686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8baf8c42 mach_msg + 70
    2   com.apple.QuartzCore                    0x00007fff8fc4717b CA::Render::Server::server_thread(void*) + 403
    3   com.apple.QuartzCore                    0x00007fff8fccbdc6 thread_fun + 25
    4   libsystem_c.dylib                       0x00007fff91d5a7a2 _pthread_start + 327
    5   libsystem_c.dylib                       0x00007fff91d471e1 thread_start + 13
    Thread 28:
    0   libsystem_kernel.dylib                  0x00007fff8baf96c2 semaphore_wait_trap + 10
    1   com.adobe.illustrator                   0x000000010000d939 0x100000000 + 55609
    2   com.adobe.illustrator                   0x000000010000e177 0x100000000 + 57719
    3   com.apple.CoreServices.CarbonCore          0x00007fff886f17e0 PrivateMPEntryPoint + 58
    4   libsystem_c.dylib                       0x00007fff91d5a7a2 _pthread_start + 327
    5   libsystem_c.dylib                       0x00007fff91d471e1 thread_start + 13
    Thread 29:
    0   libsystem_kernel.dylib                  0x00007fff8baf96c2 semaphore_wait_trap + 10
    1   com.adobe.illustrator                   0x000000010000d939 0x100000000 + 55609
    2   com.adobe.illustrator                   0x000000010000e177 0x100000000 + 57719
    3   com.apple.CoreServices.CarbonCore          0x00007fff886f17e0 PrivateMPEntryPoint + 58
    4   libsystem_c.dylib                       0x00007fff91d5a7a2 _pthread_start + 327
    5   libsystem_c.dylib                       0x00007fff91d471e1 thread_start + 13
    Thread 30:
    0   libsystem_kernel.dylib                  0x00007fff8baf96c2 semaphore_wait_trap + 10
    1   com.adobe.illustrator                   0x000000010000d939 0x100000000 + 55609
    2   com.adobe.illustrator                   0x000000010000e177 0x100000000 + 57719
    3   com.apple.CoreServices.CarbonCore          0x00007fff886f17e0 PrivateMPEntryPoint + 58
    4   libsystem_c.dylib                       0x00007fff91d5a7a2 _pthread_start + 327
    5   libsystem_c.dylib                       0x00007fff91d471e1 thread_start + 13
    Thread 31:
    0   libsystem_kernel.dylib                  0x00007fff8baf96c2 semaphore_wait_trap + 10
    1   com.adobe.illustrator                   0x000000010000d939 0x100000000 + 55609
    2   com.adobe.illustrator                   0x000000010000e177 0x100000000 + 57719
    3   com.apple.CoreServices.CarbonCore          0x00007fff886f17e0 PrivateMPEntryPoint + 58
    4   libsystem_c.dylib                       0x00007fff91d5a7a2 _pthread_start + 327
    5   libsystem_c.dylib                       0x00007fff91d471e1 thread_start + 13
    Thread 32:
    0   libsystem_kernel.dylib                  0x00007fff8baf96c2 semaphore_wait_trap + 10
    1   com.adobe.ACE                           0x00000001028503c7 ACEHasFeature + 533191
    2   com.adobe.ACE                           0x000000010284fdc1 ACEHasFeature + 531649
    3   com.adobe.ACE                           0x000000010284f67e ACEHasFeature + 529790
    4   libsystem_c.dylib                       0x00007fff91d5a7a2 _pthread_start + 327
    5   libsystem_c.dylib                       0x00007fff91d471e1 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x000000012167a140  rbx: 0x000000011ea4ea40  rcx: 0x0000000109814e00  rdx: 0x40c11856b3823fb6
      rdi: 0x40c11856b3823fb6  rsi: 0x00007fff8e837691  rbp: 0x00007fff5fbfd080  rsp: 0x00007fff5fbfd038
       r8: 0x00007fff76700110   r9: 0x0000000000000000  r10: 0x000000010e2f17a0  r11: 0x00007fff7656ed68
      r12: 0x0000000000000003  r13: 0x40c11856b3823fb6  r14: 0x40c11856b3823fb6  r15: 0x40c11856b3823fb6
      rip: 0x00007fff8682424c  rfl: 0x0000000000010246  cr2: 0x00007fff8dec49c9
    Logical CPU: 0
    Binary Images:
           0x100000000 -        0x1014a8ff7 +com.adobe.illustrator (17.1.0 - 17.0.0) <DA956763-D868-31EE-9329-0DE283ECA5D1> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/MacOS/Adobe Illustrator
           0x101887000 -        0x1025ccff7 +libicudata.40.0.dylib (40) <6211D655-ECF8-7378-CF68-3B07300D5A29> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/ICUData.framework/Versions/4.0/libicudata.40.0.dylib
           0x1025e0000 -        0x10262ffff +com.adobe.headlights.LogSessionFramework (2.1.2.1756) <BD518257-970F-344A-92B8-B8BE1A8EB4D8> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/LogSession.framework/Versions/A/LogSession
           0x102665000 -        0x102667fff +com.adobe.AdobeCrashReporter (7.0 - 7.0.1) <B68D0D42-8DEB-3F22-BD17-981AC060E9D7> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCrashRep orter
           0x10266d000 -        0x1026bdfff +com.adobe.aiport (aiport version 16.0.0 - 16.0.0.273) <21DD0108-77DD-366F-A9BA-12065481922E> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/AIPort.framework/Versions/A/aiport
           0x1026e0000 -        0x102734fff +com.adobe.filterport (filterport version 16.0.0 - 16.0.0.273) <F71C0D3A-454F-3EA9-81FF-16A0CDEF5BC2> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/FilterPort.framework/Versions/A/filterport
           0x10275d000 -        0x10275dff7 +com.adobe.SPBasic (SPBasic version 16.0.0 - 16.0.0.273) <0CED669A-C6CF-3581-8861-039B9DC863ED> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/SPBasic.framework/Versions/A/SPBasic
           0x102762000 -        0x1028a8fff +com.adobe.ACE (AdobeACE 2.20.02.31977 - 2.20.02.31977) <3A212837-B075-34C0-96E9-5A4019C9DFEE> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
           0x1028bc000 -        0x102e8dfff +com.adobe.AGM (AdobeAGM 4.30.29.31977 - 4.30.29.31977) <BFFDBF0E-28EF-3720-93BE-293618541D26> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
           0x102f2a000 -        0x102f67fff +com.adobe.ARE (AdobeARE 1.5.02.31977 - 1.5.02.31977) <73174C59-1DDC-3416-A0AD-4D70930ABA60> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/AdobeARE.framework/Versions/A/AdobeARE
           0x102f6f000 -        0x10306dff7 +com.adobe.AXEDOMCore (AdobeAXEDOMCore 3.8.0.30807 - 3.8.0.30807) <DF0EC9F6-D499-39B8-B2F4-CAF4F742D702> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/AdobeAXEDOMCore.framework/Versions/A/AdobeAXEDOMCore
           0x103119000 -        0x103136fff +com.adobe.BIB (AdobeBIB 1.2.03.31977 - 1.2.03.31977) <A69D3AA0-9248-3B77-991B-89B2B7FE46BB> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
           0x10313e000 -        0x103164fff +com.adobe.BIBUtils (AdobeBIBUtils 1.1.01 - 1.1.01) <FA20BCA0-05BF-35ED-95B7-5775B8310D12> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/AdobeBibUtils.framework/Versions/A/AdobeBIBUtils
           0x10316c000 -        0x10347dff7 +com.adobe.CoolType (AdobeCoolType 5.15.00.31977 - 5.15.00.31977) <42323DBD-3A6D-3C41-A2C1-2B944789D8A9> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
           0x1034c5000 -        0x103a5efff +com.adobe.MPS (AdobeMPS 5.8.1.30604 - 5.8.1.30604) <70CBC6A8-2740-37AB-964E-484096A1BF8A> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
           0x103adb000 -        0x104a5efef +com.adobe.psl (AdobePSL 14.0.0.30830 - 14.0.0.30830) <7BDC4AF7-B14F-3DE0-B47A-E69B37529A6B> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/AdobePSL.framework/Versions/A/AdobePSL
           0x104c1f000 -        0x104c8cfff +com.adobe.AdobeXMPCore (Adobe XMP Core 5.5 -c 14 - 79.151739) <95D40B8F-C287-3F7B-945C-CEEE0D5399A2> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
           0x104cbf000 -        0x104dcbfff +com.adobe.AdobeXMPFiles (Adobe XMP Files 5.6 -f 50 - 79.151739) <6C763585-FC85-3A15-B089-7D43EF73F6A8> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/AdobeXMPFiles.framework/Versions/A/AdobeXMPFiles
           0x104e79000 -        0x104f23fe7 +libicucnv.40.0.dylib (40) <768D99C5-46B9-B849-2834-B5BF541856D1> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/ICUConverter.framework/Versions/4.0/libicucnv.40.0.dy lib
           0x104f4b000 -        0x10508bfe7 +libicui18n.40.0.dylib (40) <B0341318-FB92-A0CF-2CA5-7FA100624DBD> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/ICUInternationalization.framework/Versions/4.0/libicu i18n.40.0.dylib
           0x10510b000 -        0x10520dfef +libicuuc.40.0.dylib (40) <76F12DCE-F356-D48D-4239-FC103706EF76> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/ICUUnicode.framework/Versions/4.0/libicuuc.40.0.dylib
           0x105256000 -        0x105384fff +com.winsoft.wrservices (WRServices 7.0.0 - 7.0.0) <0853A41B-A14A-37B7-B27F-457F87865EAD> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices
           0x1053e2000 -        0x10553bff7 +com.adobe.linguistic.LinguisticManager (7.0.0 - 19061) <F6095811-7D5F-3E06-A664-1EB9FBF8C761> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeLinguistic
           0x105589000 -        0x105591ff7 +com.adobe.coretech.adobesplashkit (AdobeSplashKit version 1.0 - 1.0) <9E166135-BA3F-3F90-A08B-26FC68B919A8> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/AdobeSplashKit.framework/Versions/A/AdobeSplashKit
           0x10559b000 -        0x1055bffff +com.adobe.AXE8SharedExpat (AdobeAXE8SharedExpat 3.8.0.30807 - 3.8.0.30807) <16FF5E16-19E0-3CE1-A68E-27567234429F> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8Sh aredExpat
           0x1055e3000 -        0x1056a1ff7 +com.adobe.AdobeExtendScript (ExtendScript 4.5.5 - 4.5.5.30772) <4FC0039A-A770-3A51-9D7A-D24167344540> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/AdobeExtendScript.framework/Versions/A/AdobeExtendScr ipt
           0x1056f1000 -        0x1057aaff7 +com.adobe.JP2K (1.2.2 - 1.2.2.29712) <869F46FB-FF39-39CA-B1E3-A13035A48B49> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/AdobeJP2K.framework/Versions/A/AdobeJP2K
           0x1057f4000 -        0x1059bfff7 +com.adobe.owl (AdobeOwl version 5.0.23 - 5.0.23) <E3DD5569-DC71-3DB2-9527-86DBB22B00C9> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
           0x105a02000 -        0x10616cff7 +com.adobe.PDFL (PROD_MAJOR.PROD_MINOR.PROD_STEP - 11.0.0.32052) <0CC380FF-CE16-336B-BC6E-B106AB85CF0B> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/AdobePDFL.framework/Versions/A/AdobePDFL
           0x106226000 -        0x10632afff +com.adobe.PDFPort (AdobePDFPort 2.1.0.31977 - 2.1.0.31977) <83787D51-C878-3CFF-A3A2-F2107F7BB920> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/AdobePDFPort.framework/Versions/A/AdobePDFPort
           0x10633d000 -        0x106362ffe +adobepdfsettings (1) <56E7F033-6032-2EC2-250E-43F1EBD123B1> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/AdobePDFSettings.framework/Versions/A/adobepdfsetting s
           0x10639c000 -        0x1063e1ff7 +com.adobe.pip (7.0.0.1768) <F022E031-1429-354F-B718-70F001B342EF> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/AdobePIP.framework/Versions/A/AdobePIP
           0x1063ed000 -        0x106498ff7 +com.adobe.AdobeScCore (ScCore 4.5.5 - 4.5.5.30772) <5DE0B54D-CDAE-3146-904F-72CBC5C89FA7> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/AdobeScCore.framework/Versions/A/AdobeScCore
           0x1064dd000 -        0x10659aff7 +com.adobe.SVGExport (AdobeSVGExport 6.0 - 6.0) <F15402B9-3F84-3687-8AB8-AD5B86C81806> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/AdobeSVGExport.framework/Versions/A/AdobeSVGExport
           0x1065bd000 -        0x1068d3fff +com.adobe.SVGRE (AdobeSVGRE 6.0 - 6.0) <D21D9020-0CD5-2CE3-FE04-8856C4F631E1> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/AdobeSVGRE.framework/Versions/A/AdobeSVGRE
           0x10699f000 -        0x1069b2ff7 +com.adobe.ahclientframework (1.8.0.31 - 1.8.0.31) <58BB943C-98EC-3812-AAAB-74F66630D1D4> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/ahclient.framework/Versions/A/ahclient
           0x1069bc000 -        0x1069d4ff7  com.apple.carbonframeworktemplate (1.0 - 1.0) <CD612584-FFB3-3311-8A49-834F1DFA2841> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/Alcid.framework/Versions/A/Alcid
           0x1069db000 -        0x106acbfff +com.adobe.amtlib (7.0.0.247 - 7.0.0.247) <48D8FFDB-DFEA-310D-BAE3-DFD8D05B0160> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib
           0x106ade000 -        0x106ae4ff7 +com.adobe.boost_date_time.framework (7.0.0 - 7.0.0.0) <C38F2ED5-444A-3354-B637-E504EA3B11E4> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/boost_date_time.framework/Versions/A/boost_date_time
           0x106afb000 -        0x106b09fff +com.adobe.boost_filesystem.framework (7.0.0 - 7.0.0.0) <CD143090-186F-3AC4-ADD4-C6FBE15A2283> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/boost_filesystem.framework/Versions/A/boost_filesyste m
           0x106b1e000 -        0x106bbcff7 +com.adobe.boost_regex.framework (7.0.0 - 7.0.0.0) <959CB98A-832D-3D4B-B41C-62A9D71D1E7F> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/boost_regex.framework/Versions/A/boost_regex
           0x106c58000 -        0x106caafff +com.adobe.boost_serialization.framework (7.0.0 - 7.0.0.0) <F43C3812-4D22-30B5-8BB3-21CD1AACD8A6> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/boost_serialization.framework/Versions/A/boost_serial ization
           0x106dd9000 -        0x106de4ff7 +com.adobe.boost_signals.framework (7.0.0 - 7.0.0.0) <A827BD38-DBCD-3974-8758-7B227A520704> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/boost_signals.framework/Versions/A/boost_signals
           0x106dff000 -        0x106e03ff7 +com.adobe.boost_system.framework (7.0.0 - 7.0.0.0) <854D8FEC-FDF8-31F9-9D15-B9770E6EDE86> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/boost_system.framework/Versions/A/boost_system
           0x106e0c000 -        0x106e18fff +com.adobe.boost_threads.framework (7.0.0 - 7.0.0.0) <B9EF0A63-734B-3C71-91D5-B310D07581E6> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/boost_threads.framework/Versions/A/boost_threads
           0x106e38000 -        0x107158ff7 +com.adobe.dvaadameve.framework (7.0.0 - 7.0.0.0) <70E16846-8C58-3811-9023-03A2FC681753> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/dvaadameve.framework/Versions/A/dvaadameve
           0x1077fe000 -        0x10790cff7 +com.adobe.dvaai.framework (7.0.0 - 7.0.0.0) <C805ABDA-1718-36F4-B9B2-0F0482749695> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/dvaai.framework/Versions/A/dvaai
           0x1079e4000 -        0x107c35ff7 +com.adobe.dvacore.framework (7.0.0 - 7.0.0.0) <3AF618E8-3F66-37DD-B6B6-AAC83715A282> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/dvacore.framework/Versions/A/dvacore
           0x107e77000 -        0x108310fff +com.adobe.dvaui.framework (7.0.0 - 7.0.0.0) <382EEBCB-C3E6-3FE9-9BAD-2ABDBBE8AE3E> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/dvaui.framework/Versions/A/dvaui
           0x10892e000 -        0x1089e6ff7 +com.adobe.dvaworkspace.framework (7.0.0 - 7.0.0.0) <DCD7579A-5260-3770-9108-06B9CF023357> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/dvaworkspace.framework/Versions/A/dvaworkspace
           0x108b00000 -        0x108bc5fff +com.adobe.exo.framework (7.0.0 - 7.0.0.0) <6AE2E47D-37D2-320C-A302-DDFDE9AE2184> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/exo.framework/Versions/A/exo
           0x108d25000 -        0x108d96fe7 +com.adobe.FileInfo.framework (Adobe XMP FileInfo 5 . 3 . 0 . 0 -i 3 - 79.151561) <380981FE-6528-37CC-9159-AB1892803BD4> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/FileInfo.framework/Versions/A/FileInfo
           0x108da9000 -        0x108dc7ff7 +com.adobe.dvaflashview.framework (7.0.0 - 7.0.0.0) <8072006D-2E76-3FB7-B7B4-00918E483B18> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/dvaflashview.framework/Versions/A/dvaflashview
           0x108df1000 -        0x108e1dff7 +libtbb.dylib (0) <64B7013E-D548-3F7B-A2FB-28B7B932275C> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/libtbb.dylib
           0x108e38000 -        0x108e57fe7 +libtbbmalloc.dylib (0) <6887ED68-67ED-3748-82DA-B39A3EB210BB> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/libtbbmalloc.dylib
           0x108e7c000 -        0x108e81fff  com.apple.agl (3.2.1 - AGL-3.2.1) <49C58BA7-3BF8-35CC-AFB3-2B0432766389> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
           0x108e88000 -        0x108e8cff7 +com.adobe.ape.shim (3.4.0.29366 - 3.4.0.29366) <B9447EE8-6F91-9E85-C163-96600BF70764> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/Adbeape.framework/Versions/A/adbeape
           0x108e93000 -        0x108fdffff +com.adobe.dvascriptui.framework (7.0.6 - 7.0.6.0) <EC978E66-CA70-3CBB-9A0D-09CD166A5F70> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/dvascriptui.framework/Versions/A/dvascriptui
           0x1092c8000 -        0x1092caff7  com.apple.textencoding.unicode (2.5 - 2.5) <0518078E-C652-3CFC-A3FB-903C600CE831> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
           0x10a23f000 -        0x10a246fff +com.adobe.illustrator.plugins.Action (Action version 17.0.0 - 17.0.0) <04BA283F-BA0E-3F24-B871-442248987654> /Applications/Adobe Illustrator CC/*/Action
           0x10a24c000 -        0x10a257ff7 +com.adobe.illustrator.plugins.FrameworkS (Framework Server version 17.0.0 - 17.0.0) <27F6E321-0909-3458-854D-C7D36025D34C> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Required/Plug-ins/FrameworkServer.aip/Contents/MacOS/FrameworkS
           0x10a25d000 -        0x10a266fff +com.adobe.illustrator.plugins.ArtConverters ( ArtConverters version 17.0.0 - 17.0.0) <4F370E42-56A8-3057-A7DD-61B5D2B3ACFD> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Required/Plug-ins/ArtConverters.aip/Contents/MacOS/ArtConverters
           0x10a26c000 -        0x10a272fff +com.adobe.illustrator.plugins.FlattenTransparency ( Flatten Transparency version 17.0.0 - 17.0.0) <045A9276-1B27-338B-94E2-1E4726635D74> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Required/Plug-ins/Flatten Transparency.aip/Contents/MacOS/FlattenTransparency
           0x10a367000 -        0x10a3b2fff +com.adobe.illustrator.plugins.CropAreaTool (CropAreaTool version 17.0.0 - 17.0.0) <A5390D54-5F00-37B1-840E-057E9619C8E6> /Applications/Adobe Illustrator CC/*/CropAreaTool
           0x10a3cc000 -        0x10a3d1ff7 +com.adobe.illustrator.plugins.TypeCase (Change Case version 17.0.0 - 17.0.0) <670DCDAA-D712-39E5-A0D0-63C10B01EF47> /Applications/Adobe Illustrator CC/*/TypeCase
           0x10a3d8000 -        0x10a3d9ff7  libCyrillicConverter.dylib (61) <D06971D7-9F16-3FE6-81E8-33E0FE4D6586> /System/Library/CoreServices/Encodings/libCyrillicConverter.dylib
           0x10a3e1000 -        0x10a3e2fff +com.adobe.illustrator.plugins.MPSCommon (MPSCommon version 17.0.0 - 17.0.0) <5D87412B-496A-35C8-9C38-23AA896A409B> /Applications/Adobe Illustrator CC/*/MPSCommon
           0x10c531000 -        0x10c531ff9 +cl_kernels (???) <7E4B5894-416F-45BC-9E2C-88B58728A10D> cl_kernels
           0x10c539000 -        0x10c539ffb +cl_kernels (???) <A3C4F634-0EB9-4E1D-B81D-82290782DBD1> cl_kernels
           0x10c53b000 -        0x10c5d5ff7  unorm8_bgra.dylib (2.2.16) <5D62BED8-DF5D-3C51-94B4-57368FF10DDB> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/unorm8_bgra .dylib
           0x10d8e6000 -        0x10d8ebff7  libFontRegistryUI.dylib (100) <9F172961-DB6F-3A82-9F90-28F9A233F755> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framework/Resourc es/libFontRegistryUI.dylib
           0x10d8f2000 -        0x10d8f3ffa +cl_kernels (???) <2B407474-6F39-4653-8D77-913AD24BFD28> cl_kernels
           0x10d94b000 -        0x10d94cffb +cl_kernels (???) <DD3C5A8F-54B3-4584-B77E-C20C4B3AC576> cl_kernels
           0x10df52000 -        0x10df57ff7  libgermantok.dylib (7) <B98522FA-23D1-351E-9F25-5AAF58FD862D> /usr/lib/libgermantok.dylib
           0x10dfaa000 -        0x10e063ff7  ColorSyncDeprecated.dylib (400) <7CE58F6E-D2C8-39FB-8EE0-28CC6EC6D04F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/Resources/ColorSyncDeprecated.dylib
           0x10e5f0000 -        0x10e61cfff +ServiceManager-Launcher.dylib (49) <C7B7406E-26BE-34DA-AF02-21A76DC52D63> /Library/Application Support/Adobe/*/ServiceManager-Launcher.dylib
           0x10f7b1000 -        0x10f7c9ff7 +com.adobe.illustrator.plugins.FOConversionSuite (FOConversionSuite version 17.0.0 - 17.0.0) <45DF5645-A071-3DB3-A074-5BEA3A77BADB> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Required/Plug-ins/FOConversionSuite.aip/Contents/MacOS/FOConversionSuite
           0x10f7e3000 -        0x10f7f9ff7 +com.adobe.illustrator.plugins.BrushManager (Brush Manager version 17.0.0 - 17.0.0) <8B1D99F5-F718-3BBA-840B-A46844D19B84> /Applications/Adobe Illustrator CC/*/BrushManager
           0x10f900000 -        0x10f9e4fff +IMSLib.dylib (7.0.0.146 - 7.0.0.146) <38D7DA66-E06E-38A3-9401-42755F56C2C5> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/IMSLib.dylib
           0x10f9fc000 -        0x10fa86ff7  com.apple.xquery (1.3.1 - 30) <04E0E165-BE1D-3DD7-899F-10AFD053B30C> /System/Library/PrivateFrameworks/XQuery.framework/XQuery
           0x10fb0e000 -        0x10fb2ffff +com.adobe.illustrator.plugins.Rasterize (Rasterize version 17.0.0 - 17.0.0) <80C34039-878E-3E09-847F-CEC6F511C021> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Required/Plug-ins/Rasterize.aip/Contents/MacOS/Rasterize
           0x10fb37000 -        0x10fb3cff7 +com.adobe.illustrator.plugins.ToolSelector (Tool Selector version 17.0.0 - 17.0.0) <453CB9EB-FF1F-3BDC-BDAA-78965A046402> /Applications/Adobe Illustrator CC/*/ToolSelector
           0x10fb44000 -        0x10fb82fff +com.adobe.AAM.AdobeUpdaterNotificationFramework (UpdaterNotifications 7.0.1.102 - 7.0.1.102) <75ADE364-1107-3DA7-84A2-26C6874EB881> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Contents/Frameworks/UpdaterNotifications.framework/Versions/A/UpdaterNoti fications
           0x10fbc7000 -        0x10fc33fff +com.adobe.illustrator.plugins.PhotoshopAdapter (Photoshop Adapter version 17.0.0 - 17.0.0) <A0DAFDA0-72C7-3E34-80A7-DA0C66591008> /Applications/Adobe Illustrator CC/*/PhotoshopAdapter
           0x10fc40000 -        0x10fc43ff7 +com.adobe.illustrator.plugins.Geometry ( Geometry Suite version 17.0.0 - 17.0.0) <B1597C8F-814E-3377-9940-D832ADFD2557> /Applications/Adobe Illustrator CC/*/Geometry
           0x10fcd8000 -        0x10fd42fff +com.adobe.illustrator.plugins.UserInterface (User Interface version 17.0.0 - 17.0.0) <7F6C3F1D-227E-38EA-A0F0-E890CA399994> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Required/Plug-ins/UserInterface.aip/Contents/MacOS/UserInterface
           0x10fd6b000 -        0x10fd87ff7 +com.adobe.illustrator.plugins.ControlPanel (ControlPalette version 17.0.0 - 17.0.0) <F91B7DC2-5FDF-3DD2-B8EC-962BA35FDDDB> /Applications/Adobe Illustrator CC/*/ControlPanel
           0x10fd91000 -        0x10fdb0ff7 +com.adobe.illustrator.plugins.VariablesPalette (Variables Palette version 17.0.0 - 17.0.0) <DBEF1763-5A83-3380-ABE3-BC7DD2F9400A> /Applications/Adobe Illustrator CC/*/VariablesPalette
           0x10fdb7000 -        0x10fdc2fff +com.adobe.illustrator.plugins.DiffusionRasterSuite (DiffusionRaster version 17.0.0 - 17.0.0) <5758BF03-6F50-31EF-8F5B-29459C80D6F0> /Applications/Adobe Illustrator CC/*/DiffusionRasterSuite
           0x10fdc8000 -        0x10fdcdff7 +com.adobe.illustrator.plugins.TrimMark (Crop Marks version 17.0.0 - 17.0.0) <B41641AE-E1E3-3FE2-ADD3-638591BB00AC> /Applications/Adobe Illustrator CC/*/TrimMark
           0x10fe39000 -        0x10fecafff +com.adobe.illustrator.plugins.BRSPencilTool ( Pencil Tool version 17.0.0 - 17.0.0) <F0DA7519-330A-3148-819A-65BBFB9B062A> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Required/Plug-ins/BRSPencilTool.aip/Contents/MacOS/BRSPencilTool
           0x10fed5000 -        0x10feebfff +com.adobe.illustrator.plugins.TextWrapDlg (TextWrapDlg version 17.0.0 - 17.0.0) <A74AF898-E1CF-314E-A706-E8AA99BB9354> /Applications/Adobe Illustrator CC/*/TextWrapDlg
           0x110200000 -        0x110262ff7 +com.adobe.illustrator.plugins.PDFSuite (PDF Suite version 17.0.0 - 17.0.0) <7D30E550-E18B-31C2-A3B8-E88464840059> /Applications/Adobe Illustrator CC/Adobe Illustrator.app/Required/Plug-ins/PDF Suite.aip/Contents/MacOS/PDFSuite
           0x110270000 -        0x110353fff +com.adobe.illustrator.plugins.BeautifulStrokes (Beautiful Strokes Suite version 17.0.0 - 17.0.0) <5E905A87-5CF9-35F5-A937-46A29444A6A0> /Applications/Adobe Illustrator CC/*/BeautifulStrokes
           0x11035e000 -        0x110469fff +com.adobe.illustrator.plugins.ColorHarmony (ColorHarmony version 17.0.0 - 17.0.0) <7FFC0B96-B13F-3BCA-80FC-28947C93CB01> /Applications/Adobe Illustrator CC/*/ColorHarmony
           0x110496000 -        0x1104ccff7 +com.adobe.illustrator.plugins.KinsokuDlg ( KinsokuDlg version 17.0.0 - 17.0.0) <84709A19-401B-3EFF-930A-70CFAD1003B2> /Applications/Adobe Illustrator CC/*/KinsokuDlg
           0x1104e6000 -        0x110685ff7 +com.adobe.illustrator.plugins.PlanetX (Live Paint version 17.0.0 - 17.0.0) <76612D25-AE50-3F5B-8EA8-517494207E0A> /Applications/Adobe Illustrator CC/*/PlanetX
           0x110694000 -        0x110771ff7 +com.adobe.illustrator.plugins.PaintStyle (Paint Style Palettes version 17.0.0 - 17.0.0) <16BB0497-7B38-3186-ABBB-CB215EAE486D> /Applications/Adobe Illustrator CC/*/PaintStyle
        

    Thanks for your input Jacob.
    I don't remember downloading added plug ins etc except downloading free fonts from reliable websites, which i've done that before and didn't cause a crash.
    This is BEYOND frustration, and ridiculous as if a virus or my illustrator software has decided to disconnect cooperation with mouse cursor (macbook touchpad and wireless usb mouse)!! It's fine for Adobe Photoshop btw.
    Will try your other options link, but it looks TEDIOUS to even begin! Just lost a client due to this disruption, bummer!

  • Using Captivate 8, is it possible to animate the movement of an object from the center of the slide to the top?

    I have an object in the center of the slide.  As the narration continues, I want the object to move up toward the top of the slide so that I can "fade in" a related (new) object just below it.  How can I do that using Captivate 8?  I tried using the Effect features and Motion Path, but there are no motion paths going up.

    You probably missed that you can edit a motion path (not very easily, has to be done by dragging). This is an old article, but still the same work flow:
    Editing Motion Paths and Reusing Customized Effects - Captivate blog
    Lilybiri

  • How do I move a 3D object in 2D space?

    I'm trying to get used to the new way of doing things in CS4. Once I've created a MC and rotated it in 3D, how can I move it across the screen w/o rotating it further? I have a MC that rotates over several frames, and once it reaches the last one, I want it to stop rotating, then begin to slide in an X direction (while reducing the alpha). But no matter which tool I use or what I do on the timeline, the object is stuck in place and will only rotate and not move. Even the 2D X and Y settings in the properties panel are grayed out.

    If you have rotated it in 3D, when you change the spatial (X, Y) properties, the perspective is going to change based on the 3D rotation. So the appearance will change if you move it on the Stage, based on that 3D. That means it will look "correct" over the tween, based on where it is on the stage.
    If you do want to have your instance not change over a period of time, you could insert the keyframes and make sure the values are not changing. It doesn't stop it from being 3D, but it will stop whatever property from tweening. Or if you really need to tween in 2D you need a new tween span -- split the span  (in that the "skew" creating the 3D appearance absolutely doesn't change between two frames based on the instances stage position), remove 3D for that section ( split and 3D are both available by right click on the span), and then use Onion Skin to modify the instance (or trace the 3D instance and replace the instance in the 2D tween).
    Or, based on the original post if you want to just stop 3D rotation but retain the 3D-ness of the instance (the skewed-ness, etc), you could just make the last rotation keyframe before the end of the tween on the Rotation Y property.
    I may be able to help more if you describe what you'd like to achieve with the "2D" part of your tween.

  • How far off stage can I move a tweened object

    Flash Pro CC 2014, all updates.
    I have a movie clip that is about 5500 pixels wide. I need to have it enter and exit across a 1920 x 1080 stage. As I try to move it to the left, it won't let me motion tween it far enough to get it off stage. It reaches the point where the left side of the object is at -3780 and that's the limit. I can drag it farther but when I release it the movie clip snaps right back to this distance.
    Also, I need to activate roving frames so the motion is smooth, but for some reason I don't get the option, it's grayed out in the menu. Don't know if this relates to problem #1 or if I am just doing something wrong.
    This one is a hot potato, as usual, I have someone hyperventilating to get this back to them.
    Thanks for any help!

    Except that it still won't work. That's one of the first things I tried.
    If I position the mc at x = 1980 so it's left edge is just off stage, then motion tween the span, then go to the last frame of the span, I enter -5478 into the x value in the properties panel and it turns it back to -3779 when I change focus just like when I drag it. It's like there's a limit on how far it will let me go.
    If the mc is not in a tween I can slide it left forever (thank you unlimited pasteboard), but in a tween it refuses to go past x = -3789. Is there a tween limit somewhere? It won't go more than 7740 to the right either, just snaps right back when you release it or change focus in the properties panel.

  • Motion 4: Match Camera to movement of an object?

    I sometimes do this in a 3d program I use and set the camera as a child of the object with movement... Is this possible with Motion? The object with movement is not a video clip.... it is a shape which I animated...
    Thanks.

    Christina, sorry I'm not at my FCP machine today but I know it's possible. I think you're looking for a parameter behavior for the camera. When you apply that parameter behavior, there wil be  well into which you will drop the object you want it to follow.
    I hope that helps, I can't even look it up in the manual.
    bogiesan

  • I can't move exactly the objects

    I have Indesign CS5, I have turned off all the snap guides, but i still have the problem, that the program snap the objects in one place to another, so i cant put exactly each other rectangles. Here is a pic demonstrating the problem.
    Here i wanted to place the yellow rectanlge exactly on the red, but this is the two closest position, a little bit under and a little bit upper than the target.
    Can somebody help, why this happens?

    Your objects are snapping to the document's pixel grid. You can precisely align objects to each other by changing their X and Y coordinates, however if you are going to be outputting to screen it makes more sense to have all your objects be aligned to this pixel grid, as it is the smallest unit you can have.

  • When will Keynote support Magic Move between masked objects?

    OK, moving an object from one slide to another is a cool transition, but when they say Move, they really just mean Move.  You would think it wouldn't be that hard to support the Magic Move transition between two masked objects but it can't be done. And many a folk here wish it could be by the postings I've seen.
    Essentially it would allow you to zoom in on a portion of an image as you transition to the next slide, or zoom out to see the big picture.
    Come on Apple, we're begging you.

    Thanks for posting Dave.
    I noticed this too (along with position problems with builds imported from Keynote 08). Magic Move is definitely a work in process. Make sure you pass your observations on to Apple via the Keynote Menu>Provide Keynote Feedback with reference to this thread.
    Very much looking forward to the next release for Keynote 09.

  • MB1C 502 movement type co object error

    Hi,
    While reversing the material in mb1c using 502 movement type iam getting the co object error.  While all the settings in OKB9 have been maintained.  And during 501 using OKB9 it has posted the document to the correct profit center and cost center.
    Thanks in Advance
    kishore.

    Hi, Check the OKB9 for the GL account getting determined for movement type 502. Also check if there is any validation/substitution rule defined for relevant GL account/cost center.
    thanks,
    Deepanshu

Maybe you are looking for

  • InDesign CC ist total langsam. Wir sind im Moment wieder zurück bei CS5! Das darf nicht passieren!

    Wir haben große finanzielle Ausfälle wegen Adobe-InDesign Cloud-Version! InDesign war bis zur CS 5 in Ordnung ab Cloud ist bei uns alles schlecht was InDesign betrifft! Wir benötigen Hilfe! Wir sind nicht bereit ein Produkt zu bezahlen das nicht rich

  • SUBC (Sub Contracting) PO Reservation.

    Dear All, I am facing problem in SUBC(Sub contracting) PO Reservation. My problem is how to delete SUBC PO reservation always it is showing SubReq in MD04 and every plant level MRP its create PR for that reservation. Thanks&Regards. Arun Pattar

  • Problem with Upgrading to 10.5.2

    Hi I recently tried to upgrade my Mac Mini from 10.5 to 10.5.2, unfortunately after downloading the upgrade from Software Update, when I try to restart for the system to upgrade, it stops in "Configuring Update" or something like that and doesn't mov

  • ITunes and DNS Cache Table

    I would like to submit the following information to the forum board for feedback. I had the strangest entry hit my cache table in the past hour. At this point I do not know if I have a missing link in my security or if it is time for a program patch.

  • I'm trying to attach a photo to an SMS/MMS message and it won't go through. I have them turned on in settings.

    I can no longer attach photos to messages that are SMS/MMS. I have that setting turned on and have tried to reboot phone and also reset  phone system. Neither has worked. I had been able to do this in the past. Also now before the phone is turned on,