Passing the graphics canvas

I am creating a program that check a certain condition. If met, a method will draw an object. My call reads:
"minus(random2,canvas,generator);"
, with canvas being my Graphics canvas and generator being my random number generator. The method itself is:
"private void minus(int random,Graphics canvas, Random generator)".
The method is called, I checked this, but it will not draw what I want it to. Can someone please help?

Any painting done to the graphics object will be temporary. Upon repainting the drawing will disappear. So for example if you draw a circle, and then make the frame visible, the circle will not be visible. The act of making the frame visible calls a repaint() and the drawing disappears. Unless you override paintComponent(Graphics g) (for Swing) or paint(Graphics g) (for AWT) and draw in those methods (or other methods that you call from within those ones) then you cannot expect your drawing constructs (like a circle) to be visible across repaints.

Similar Messages

  • My graphic card failed but passes the recall test - surely Apple would replace it? How wrong can you be!

    Even though I had read about the product recall on some iMacs, mine had never had an issue, but to be safe, the plan was to take it to an Apple store to have them test and replace it.
    A week ago, on occasion, the screen suddenly started going completely gray, everything else seemed to be working fine, and any apps running would continue to do so. Without being able to see the screen, the only options was to power it down, run any diagnostic test and start normally. It passed pro tools tests, with no warnings so I thought it could have been a software issue. After many restarts without anything else plugged in, the iMac appeared to function for maybe a day or so, but gray screen whenever it wanted to.
    So I called Apple, they told me to get it into a service centre, and they would do further tests. Whilst on the phone to the engineer, my iMac with the gray screen suddenly refused to power back up. The engineers tell me that the graphic card fails any benchmarking tests with corruption and the same gray screen issue, so it looks promising yes? No. The specific tests that the machine must fail for the recall - passed.
    Having spent almost an hour on the phone to a Apple senior advisor today, he tells me that it is not covered by the recall !!
    The machine is one of the matching serial numbered machines in the recall, it has suddenly developed a graphic card issue that leaves the machine unusable, it suddenly started having this problem within weeks of the recall being announced - It has the faulty card in it, it has the fault - yet it does not qualify?
    Can someone please tell me what I could have done to get this card replaced without the estimated £250 charge to get my machine running again.
    I am a die hard Apple enthusiast, I have converted everyone I have been in contact with to purchase from them for their legendary customer services and yet feel perplexed as to what I should do next.
    My first reaction is to raise a big fuss about the situation at an Apple store, but I can't blame them too much if my machine does not match the recall criteria - but come on, it can't be a coincident that this card has failed now, can it?
    What do I do next. I don't want to take my machine over to proper Apple store and raise a fuss, that would be counter productive. But  really Apple
    Anyone have a suggestion - would you buy another iMac that could have the same problem and get the same response?
    To any Apple engineers out there who can look at  a case number my ref number is 500592345, apparently there is a lot of info in there, but nothing that will help me!

    Apple engineers do not participate here. The only replies you will normally get are from people who are, like me, just fellow users, and there's nothing any of us can do to intervene in this matter.
    If Apple says that your system is not covered by the recall, there's not much you can do. You can try taking your system to an Apple Store and politely - do not "make a fuss"; polite but gently insistent is much more likely to get you useful results - ask for assistance. Or you can call Apple tech support, ask to speak with customer relations, and explain the situation to them and request coverage under the recall program.
    If all that fails, though, then you're probably at a dead end and will need to pay for the service if you want it done.
    Regards.

  • Having a problem saving the graphics on a canvas.

    I'm having a problem saving graphics on a canvas. It draws on the canvas but when another window comes up the graphics disappear. I put in a method to take the graphics on the canvas and repaint it with the graphics. But this comes up blank. So I don't know why this is happening. It is probably the paint method but I don't know why. If anyone has any ideas could you please respond because I have had this problem for ages now and it's driving me mad and I have to get this finished or I'm going to be a lot of trouble. I'll show you the code for the class I am concerned with. It is long but most of it can be disregarded. The only parts which are relevent are the paint method and where the drawline e.t.c are called which is in the mouse release
    package com.project.CSSE4;
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.image.ImageFilter;
    import java.awt.image.CropImageFilter;
    import java.awt.image.FilteredImageSource;
    import java.io.*;
    import java.util.*;
    import java.net.*;
    import javax.swing.*;
    import java.sql.*;
    public class CanvasOnly extends JPanel
           implements MouseListener, MouseMotionListener
       public static final int line = 1;
       public static final int freehand = 2;
       public static final int text = 3;
       public static final int mode_paint = 0;
       public static final int mode_xor = 1;
       public Color drawColor;
       public int drawThickness = 1;
       public int drawType = 0;
       public boolean fill = false;
       private boolean dragging = false;
       public int oldx = 0;
       public int oldy = 0;
       private int rectangleWidth;
       private int rectangleHeight;
       private tempLine draftLine;
       private tempText draftText;
       public Canvas pad;
       public static final Font defaultFont =
         new Font("Helvetica", Font.BOLD, 14);
       protected boolean floatingText = false;
       boolean showingPicture;
       protected Image offScreen;
       public JTextArea coor;
       public JButton writeIn;
       Connection connection;
       String codeLine;
       int x = 0;
       int y = 0;
       public CanvasOnly()
           try
                Class.forName("com.mysql.jdbc.Driver").newInstance();
           }catch( Exception e)
                 System.err.println("Unable to find and load driver");
                 System.exit(1);
            pad = new Canvas();
            pad.setBackground(Color.white);
            pad.setVisible(true);
            pad.setSize(400, 400);
           coor = new JTextArea(15, 15);
           writeIn = new JButton("load TExt");
           writeIn.addActionListener(new ActionListener()
                   public void actionPerformed(ActionEvent event1)
                     try
                   Statement statement = connection.createStatement();
                   ResultSet rs = statement.executeQuery("SELECT * FROM submit WHERE file_name = 'cmd.java'");
                   rs.next();
                   String one1 = rs.getString("student_id");
                   //System.out.println("one1 :" + one1);
                   String two1 = rs.getString("file_name");
                   //System.out.println("two1 : " + two1);
                    InputStream textStream = rs.getAsciiStream("file");
                    BufferedReader textReader = new BufferedReader(
                                     new InputStreamReader(textStream));
                    codeLine = textReader.readLine();
                    x = 0;
                    y = -12;
                    while(codeLine != null)
                        y = y + 12;
                        //fileText.append( line + "\n");
                        //canvasPad.drawTheString(line, x, y);
                        drawText(Color.black, x, y, codeLine, mode_paint);
                        codeLine = textReader.readLine();
                     textReader.close();
                    pad.setSize(400, y);
                    Timestamp three1 = rs.getTimestamp("ts");
                    //System.out.println(three1);
                    textReader.close();
                    rs.close();
              }catch (SQLException e)
                System.err.println(e);
              catch(IOException ioX)
                System.err.println(ioX);
            //setSize(300,300);
            drawColor = Color.black;
            pad.addMouseListener(this);
         pad.addMouseMotionListener(this);
         offScreen = null;
       public Image getContents()
         // Returns the contents of the canvas as an Image.  Only returns
         // the portion which is actually showing on the screen
         // If the thing showing on the canvas is a picture, just send back
         // the picture
         if (showingPicture)
             return (offScreen);
         ImageFilter filter =
             new CropImageFilter(0, 0, getWidth(), getHeight());
         Image newImage =
             createImage(new FilteredImageSource(offScreen.getSource(),
                                  filter));
         return(newImage);
        public void setImage(Image theImage)
         // Fit it to the canvas
         offScreen = theImage;
         repaint();
         showingPicture = true;
        synchronized public void paint(Graphics g)
         int width = 0;
         int height = 0;
         //The images are stored on an off screen buffer.
            //offScreen is the image declared at top
         if (offScreen != null)
                  //intislise the widt and heigth depending on if showingpicture is true
              if (!showingPicture)
                       width = offScreen.getWidth(this);
                       height = offScreen.getHeight(this);
                   //width = getWidth(this);
                   //height = getHeight(this);  //offScreen
              else
                   //width = pad.getSize().width;
                   //height = getSize().height;
                   width = pad.getWidth();
                   //width = getSize().width;
                   height = pad.getHeight();
                   //height = getSize().height;
                    //Draws as much of the specified image as has already
                    //been scaled to fit inside the specified rectangle
                    //The "this" is An asynchronous update interface for receiving
                    //notifications about Image information as the Image is constructed
    //This is causing problems
              g.drawImage(offScreen, 0, 0, width, height, pad);
              g.dispose();
         //clear the canvas with this method
        synchronized public void clear()
         // The maximum size of the usable drawing canvas, for now, will be
         // 1024x768
         offScreen = createImage(1024, 768);
         //Creates an off-screen drawable image to be used for double buffering
         pad.setBackground(Color.white);
         //Set the showingPicture to false for paint method
         showingPicture = false;
         repaint();
         synchronized public void drawLine(Color color, int startx, int starty,
                              int endx, int endy, int thickness,
                              int mode)
         int dx, dy;
         Graphics g1 = pad.getGraphics();
         Graphics g2;
         //if image is not intialised to null
         //the getGraphics is used for freehand drawing
         //Image.getGraphics() is often used for double buffering by rendering
            //into an offscreen buffer.
         if (offScreen != null)
             g2 = offScreen.getGraphics();
         else
             g2 = g1;
            //mode is put into the method and XOR is final and equal to 1
         if (mode == this.mode_xor)
                  //calls the setXOR mode for g1 and g2
                  //Sets the paint mode of this graphics context to alternate
                    //between this graphics context's current color and the
                    //new specified color.
              g1.setXORMode(Color.white);//This will
              g2.setXORMode(Color.white);
         else
                  //Sets this graphics context's current color to the
                    //specified color
              g1.setColor(color);
              g2.setColor(color);
         if (endx > startx)
             dx = (endx - startx);
         else
             dx = (startx - endx);
         if (endy > starty)
             dy = (endy - starty);
         else
             dy = (starty - endy);
         if (dx >= dy)
              starty -= (thickness / 2);
              endy -= (thickness / 2);
         else
              startx -= (thickness / 2);
              endx -= (thickness / 2);
         for (int count = 0; count < thickness; count ++)
              g1.drawLine(startx, starty, endx, endy);
              g2.drawLine(startx, starty, endx, endy);
              if (dx >= dy)
                  { starty++; endy++; }
              else
                  { startx++; endx++; }
            //Disposes of this graphics context and releases any system
            //resources that it is using.
         g1.dispose();
         g2.dispose();
         //This method is not causing trouble
         synchronized public void drawText(Color color, int x, int y,
                String text, int mode)
         Graphics g1 = pad.getGraphics();
         Graphics g2;
         if (offScreen != null)
             g2 = offScreen.getGraphics();
         else
             g2 = g1;
         if (mode == this.mode_xor)
              g1.setXORMode(Color.white);
              g2.setXORMode(Color.white);
         else
              g1.setColor(color);
              g2.setColor(color);
         g1.setFont(new Font("Times Roman", Font.PLAIN, 10));
         g2.setFont(new Font("Times Roman", Font.PLAIN, 10));
         g1.drawString(text, x, y);
         g2.drawString(text, x, y);
         g1.dispose();
         g2.dispose();
          //connect to database
      public void connectToDB()
        try
           connection = DriverManager.getConnection(
           "jdbc:mysql://localhost/submissions?user=root&password=football");
                     //may have to load in a username and password
                                                     //code "?user=spider&password=spider"
        }catch(SQLException connectException)
           System.out.println("Unable to connect to db");
           System.exit(1);
      //use this method to instatiate connectToDB method
      public void init()
           connectToDB();
        protected void floatText(String text)
         draftText = new tempText(this.drawColor,
                            this.oldx,
                            this.oldy,
                                        text);
         this.floatingText = true;
        //nothing happens when the mouse is clicked
        public void mouseClicked(MouseEvent e)
        //When the mouse cursor enters the canvas make it the two
        //straigth lines type
        public void mouseEntered(MouseEvent e)
         pad.setCursor(new Cursor(Cursor.CROSSHAIR_CURSOR));
        //When mouse exits canvas set to default type
        public void mouseExited(MouseEvent E)
         pad.setCursor(new Cursor(Cursor.DEFAULT_CURSOR));
        //used for creating the shapes and positioning thetext
        public void mousePressed(MouseEvent e)
             // Save the coordinates of the mouse being pressed
         oldx = e.getX();
         oldy = e.getY();
         // If we are doing lines, rectangles, or ovals, we will show
         // draft lines to suggest the final shape of the object
         //Draw type is a publc int which can be changed
         if (drawType == this.line)
            draftLine = new tempLine(drawColor, oldx, oldy, oldx,
                                 oldy, drawThickness);
            // Set the draw mode to XOR and draw it.
            drawLine(draftLine.color, draftLine.startx,
            draftLine.starty, draftLine.endx,
            draftLine.endy, drawThickness, this.mode_xor);
        //mouse listener for when the mouse button is released
        public void mouseReleased(MouseEvent e)
             if (drawType == this.line)
              // Erase the draft line
              drawLine(draftLine.color, draftLine.startx, draftLine.starty,
                    draftLine.endx, draftLine.endy, drawThickness,
                    this.mode_xor);
              // Add the real line to the canvas
              //When the imput changes to "mode_paint" it is drawen
              //on the canvas
              drawLine(drawColor, oldx, oldy, e.getX(), e.getY(),
                    drawThickness, this.mode_paint);
              dragging = false;
         else if (drawType == this.text)
              if (floatingText)
                   // The user wants to place the text (s)he created.
                   // Erase the old draft text
                   drawText(drawColor, draftText.x, draftText.y,
                                            draftText.text, this.mode_xor);
                       String str = Integer.toString(e.getX());
                       String str1  = Integer.toString(e.getY());
                       coor.append(str + " " + str1 + "\n");
                   // Set the new coordinates
                   draftText.x = e.getX();
                   draftText.y = e.getY();
                   // Draw the permanent text
                   drawText(drawColor, draftText.x, draftText.y,
                         draftText.text, this.mode_paint);
                   floatingText = false;
         public void mouseDragged(MouseEvent e)
            if (drawType == this.freehand)
              drawLine(drawColor, oldx, oldy, e.getX(), e.getY(),
                    drawThickness, this.mode_paint);
              oldx = e.getX();
              oldy = e.getY();
         else
             dragging = true;
         if (drawType == this.line)
            // Erase the old draft line
            drawLine(draftLine.color, draftLine.startx, draftLine.starty,
              draftLine.endx, draftLine.endy, drawThickness,
              this.mode_xor);
            // Draw the new draft line
            draftLine.endx = e.getX();
            draftLine.endy = e.getY();
            drawLine(draftLine.color, draftLine.startx, draftLine.starty,
              draftLine.endx, draftLine.endy, drawThickness,
              this.mode_xor);
         public void mouseMoved(MouseEvent e)
             if (floatingText)
              // When the user has entered some text to place on the
              // canvas, it remains sticky with the cursor until another
              // click is entered to place it.
              // Erase the old draft text
              drawText(drawColor, draftText.x, draftText.y,
                                draftText.text, this.mode_xor);
              // Set the new coordinates
              draftText.x = e.getX();
              draftText.y = e.getY();
              // Draw the new floating text
              drawText(drawColor, draftText.x, draftText.y,
                        draftText.text, this.mode_xor);
         //declare  a class for the line shown before the is as wanted
        class tempLine
         public Color color;
         public int startx;
         public int starty;
         public int endx;
         public int endy;
         public int thickness;
         public tempLine(Color mycolor, int mystartx, int mystarty,
                      int myendx, int myendy, int mythickness)
             color = mycolor;
             startx = mystartx;
             starty = mystarty;
             endx = myendx;
             endy = myendy;
             thickness = mythickness;
        class tempText
         public Color color;
         public int x;
         public int y;
         public String text;
         public tempText(Color mycolor, int myx, int myy, String mytext)
             color = mycolor;
             x = myx;
             y = myy;
             text = mytext;
    }

    http://www.java2s.com/ExampleCode/2D-Graphics/DemonstratingUseoftheImageIOLibrary.htm

  • Overlay Images and Shapes on the same canvas

    The example copde below was taken from: http://math.hws.edu/eck/cs124/javanotes3/source/
    Is it possible to update the code so that images (jpg,gif) can be added as well as shapes?
    Any help with this is much appreciated.
        The ShapeDraw applet lets the user add small colored shapes to
        a drawing area and then drag them around.  The shapes are rectangles,
        ovals, and roundrects.  The user adds a shape to the canvas by
        clicking on a button.  The shape is added at the upper left corner
        of the canvas.  The color of the shape is given by the current
        setting of a pop-up menu.  The user can drag the shapes with the
        mouse.  Ordinarily, the shapes maintain a given back-to-front order.
        However, if the user shift-clicks on a shape, that shape will be
        brought to the front.
        A menu can be popped up on a shape (by right-clicking or performing
        some othe platform-dependent action).  This menu allows the user
        to change the size and color of a shape.  It is also possible to
        delete the shape and to bring it to the front.
        This file defines the applet class plus several other classes used
        by the applet, namely:  ShapeCanvas, Shape, RectShape, OvalShape,
        and RoundRectShape.
        David Eck
        July 28,  1998
    import java.awt.*;
    import java.awt.event.*;
    import java.applet.Applet;
    import java.util.Vector;
    public class ShapeDrawWithMenu extends Applet {
       public void init() { 
            // Set up the applet's GUI.  It consists of a canvas, or drawing area,
            // plus a row of controls below the canvas.  The controls include three
            // buttons which are used to add shapes to the canvas and a Choice menu
            // that is used to select the color used for a shape when it is created.
            // The canvas is set as the "listener" for these controls so that it can
            // respond to the user's actions.  (The pop-up menu is created by the canvas.)
          setBackground(Color.lightGray);
          ShapeCanvas canvas = new ShapeCanvas();  // create the canvas
          Choice colorChoice = new Choice();  // color choice menu
          colorChoice.add("Red");
          colorChoice.add("Green");
          colorChoice.add("Blue");
          colorChoice.add("Cyan");
          colorChoice.add("Magenta");
          colorChoice.add("Yellow");
          colorChoice.add("Black");
          colorChoice.add("White");
          colorChoice.addItemListener(canvas);
          Button rectButton = new Button("Rect");    // buttons for adding shapes
          rectButton.addActionListener(canvas);
          Button ovalButton = new Button("Oval");
          ovalButton.addActionListener(canvas);
          Button roundRectButton = new Button("RoundRect");
          roundRectButton.addActionListener(canvas);
          Panel bottom = new Panel();   // a Panel to hold the control buttons
          bottom.setLayout(new GridLayout(1,4,3,3));
          bottom.add(rectButton);
          bottom.add(ovalButton);
          bottom.add(roundRectButton);
          bottom.add(colorChoice);
          setLayout(new BorderLayout(3,3));
          add("Center",canvas);              // add canvas and controls to the applet
          add("South",bottom);
       public Insets getInsets() {
            // Says how much space to leave between the edges of the applet and the
            // components in the applet.
          return new Insets(3,3,3,3);
    }  // end class ShapeDraw
    class ShapeCanvas extends Canvas implements ActionListener, ItemListener,
                                                MouseListener, MouseMotionListener {
          // This class represents a canvas that can display colored shapes and
          // let the user drag them around.  It uses an off-screen images to
          // make the dragging look as smooth as possible.  A pop-up menu is
          // added to the canvas that can be used to performa certain actions
          // on the shapes;
       Image offScreenCanvas = null;   // off-screen image used for double buffering
       Graphics offScreenGraphics;     // graphics context for drawing to offScreenCanvas
       Vector shapes = new Vector();   // holds a list of the shapes that are displayed on the canvas
       Color currentColor = Color.red; // current color; when a shape is created, this is its color
       ShapeCanvas() {
            // Constructor: set background color to white, set up listeners to respond to mouse actions,
            //              and set up the pop-up menu
          setBackground(Color.white);
          addMouseListener(this);
          addMouseMotionListener(this);
          popup = new PopupMenu();
          popup.add("Red");
          popup.add("Green");
          popup.add("Blue");
          popup.add("Cyan");
          popup.add("Magenta");
          popup.add("Yellow");
          popup.add("Black");
          popup.add("White");
          popup.addSeparator();
          popup.add("Big");
          popup.add("Medium");
          popup.add("Small");
          popup.addSeparator();
          popup.add("Delete");
          popup.add("Bring To Front");
          add(popup);
          popup.addActionListener(this);
       } // end construtor
       synchronized public void paint(Graphics g) {
            // In the paint method, everything is drawn to an off-screen canvas, and then
            // that canvas is copied onto the screen.
          makeOffScreenCanvas();
          g.drawImage(offScreenCanvas,0,0,this);
       public void update(Graphics g) {
            // Update method is called when canvas is to be redrawn.
            // Just call the paint method.
          paint(g);
       void makeOffScreenCanvas() {
             // Erase the off-screen canvas and redraw all the shapes in the list.
             // (First, if canvas has not yet been created, then create it.)
          if (offScreenCanvas == null) {
             offScreenCanvas = createImage(getSize().width,getSize().height);
             offScreenGraphics = offScreenCanvas.getGraphics();
          offScreenGraphics.setColor(getBackground());
          offScreenGraphics.fillRect(0,0,getSize().width,getSize().height);
          int top = shapes.size();
          for (int i = 0; i < top; i++) {
             Shape s = (Shape)shapes.elementAt(i);
             s.draw(offScreenGraphics);
       public void itemStateChanged(ItemEvent evt) {
              // This is called to respond to item events.  Such events
              // can only be sent by the color choice menu,
              // so respond by setting the current color according to
              // the selected item in that menu.
          Choice colorChoice = (Choice)evt.getItemSelectable();
          switch (colorChoice.getSelectedIndex()) {
             case 0: currentColor = Color.red;     break;
             case 1: currentColor = Color.green;   break;
             case 2: currentColor = Color.blue;    break;
             case 3: currentColor = Color.cyan;    break;
             case 4: currentColor = Color.magenta; break;
             case 5: currentColor = Color.yellow;  break;
             case 6: currentColor = Color.black;   break;
             case 7: currentColor = Color.white;   break;
       public void actionPerformed(ActionEvent evt) {
              // Called to respond to action events.  The three shape-adding
              // buttons have been set up to send action events to this canvas.
              // Respond by adding the appropriate shape to the canvas.  This
              // also be a command from a pop-up menu.
          String command = evt.getActionCommand();
          if (command.equals("Rect"))
             addShape(new RectShape());
          else if (command.equals("Oval"))
             addShape(new OvalShape());
          else if (command.equals("RoundRect"))
             addShape(new RoundRectShape());
          else
             doPopupMenuCommand(command);
       synchronized void addShape(Shape shape) {
              // Add the shape to the canvas, and set its size/position and color.
              // The shape is added at the top-left corner, with size 50-by-30.
              // Then redraw the canvas to show the newly added shape.
          shape.setColor(currentColor);
          shape.reshape(3,3,50,30);
          shapes.addElement(shape);
          repaint();
       // ------------ This rest of the class implements dragging and the pop-up menu ---------------------
       PopupMenu popup;
       Shape selectedShape = null;     // This is null unless a menu has been popped up on this shape.
       Shape draggedShape = null;      // This is null unless a shape has been selected for dragging.
       int prevDragX;  // During dragging, these record the x and y coordinates of the
       int prevDragY;  //    previous position of the mouse.
       Shape clickedShape(int x, int y) {
             // Find the frontmost shape at coordinates (x,y); return null if there is none.
          for ( int i = shapes.size() - 1; i >= 0; i-- ) {  // check shapes from front to back
             Shape s = (Shape)shapes.elementAt(i);
             if (s.containsPoint(x,y))
                return s;
          return null;
       void doPopupMenuCommand(String command) {
             // Handle a command from the pop-up menu.
          if (selectedShape == null)  // should be impossible
             return;
          if (command.equals("Red"))
             selectedShape.setColor(Color.red);
          else if (command.equals("Green"))
             selectedShape.setColor(Color.green);
          else if (command.equals("Blue"))
             selectedShape.setColor(Color.blue);
          else if (command.equals("Cyan"))
             selectedShape.setColor(Color.cyan);
          else if (command.equals("Magenta"))
             selectedShape.setColor(Color.magenta);
          else if (command.equals("Yellow"))
             selectedShape.setColor(Color.yellow);
          else if (command.equals("Black"))
             selectedShape.setColor(Color.black);
          else if (command.equals("White"))
             selectedShape.setColor(Color.white);
          else if (command.equals("Big"))
             selectedShape.resize(75,45);
          else if (command.equals("Medium"))
             selectedShape.resize(50,30);
          else if (command.equals("Small"))
             selectedShape.resize(25,15);
          else if (command.equals("Delete"))
             shapes.removeElement(selectedShape);
          else if (command.equals("Bring To Front")) {
             shapes.removeElement(selectedShape);
             shapes.addElement(selectedShape);
          repaint();
       synchronized public void mousePressed(MouseEvent evt) {
             // User has pressed the mouse.  Find the shape that the user has clicked on, if
             // any.  If there is a shape at the position when the mouse was clicked, then
             // start dragging it.  If the user was holding down the shift key, then bring
             // the dragged shape to the front, in front of all the other shapes.
          int x = evt.getX();  // x-coordinate of point where mouse was clicked
          int y = evt.getY();  // y-coordinate of point
          if (evt.isPopupTrigger()) {            // If this is a pop-up menu event that
             selectedShape = clickedShape(x,y);  // occurred over a shape, record which shape
             if (selectedShape != null)          // it is and show the menu.
                popup.show(this,x,y);
          else {
             draggedShape = clickedShape(x,y);
             if (draggedShape != null) {
                prevDragX = x;
                prevDragY = y;
                if (evt.isShiftDown()) {                 // Bring the shape to the front by moving it to
                   shapes.removeElement(draggedShape);  //       the end of the list of shapes.
                   shapes.addElement(draggedShape);
                   repaint();  // repaint canvas to show shape in front of other shapes
       synchronized public void mouseDragged(MouseEvent evt) {
              // User has moved the mouse.  Move the dragged shape by the same amount.
          if (draggedShape != null) {
             int x = evt.getX();
             int y = evt.getY();
             draggedShape.moveBy(x - prevDragX, y - prevDragY);
             prevDragX = x;
             prevDragY = y;
             repaint();      // redraw canvas to show shape in new position
       synchronized public void mouseReleased(MouseEvent evt) {
              // User has released the mouse.  Move the dragged shape, then set
              // shapeBeingDragged to null to indicate that dragging is over.
              // If the shape lies completely outside the canvas, remove it
              // from the list of shapes (since there is no way to ever move
              // it back onscreen).
          int x = evt.getX();
          int y = evt.getY();
          if (draggedShape != null) {
             draggedShape.moveBy(x - prevDragX, y - prevDragY);
             if ( draggedShape.left >= getSize().width || draggedShape.top >= getSize().height ||
                     draggedShape.left + draggedShape.width < 0 ||
                     draggedShape.top + draggedShape.height < 0 ) {  // shape is off-screen
                shapes.removeElement(draggedShape);  // remove shape from list of shapes
             draggedShape = null;
             repaint();
          else if (evt.isPopupTrigger()) {        // If this is a pop-up menu event that
             selectedShape = clickedShape(x,y);   // occurred over a shape, record the
             if (selectedShape != null)           // shape and show the menu.
                popup.show(this,x,y);
       public void mouseEntered(MouseEvent evt) { }   // Other methods required for MouseListener and
       public void mouseExited(MouseEvent evt) { }    //              MouseMotionListener interfaces.
       public void mouseMoved(MouseEvent evt) { }
       public void mouseClicked(MouseEvent evt) { }
    }  // end class ShapeCanvas
    abstract class Shape {
          // A class representing shapes that can be displayed on a ShapeCanvas.
          // The subclasses of this class represent particular types of shapes.
          // When a shape is first constucted, it has height and width zero
          // and a default color of white.
       int left, top;      // Position of top left corner of rectangle that bounds this shape.
       int width, height;  // Size of the bounding rectangle.
       Color color = Color.white;  // Color of this shape.
       void reshape(int left, int top, int width, int height) {
             // Set the position and size of this shape.
          this.left = left;
          this.top = top;
          this.width = width;
          this.height = height;
       void resize(int width,int height) {
             // Set the size without changing the position
          this.width = width;
          this.height = height;
       void moveTo(int x, int y) {
              // Move upper left corner to the point (x,y)
          this.left = x;
          this.top = y;
       void moveBy(int dx, int dy) {
              // Move the shape by dx pixels horizontally and dy pixels veritcally
              // (by changing the position of the top-left corner of the shape).
          left += dx;
          top += dy;
       void setColor(Color color) {
              // Set the color of this shape
          this.color = color;
       boolean containsPoint(int x, int y) {
             // Check whether the shape contains the point (x,y).
             // By default, this just checks whether (x,y) is inside the
             // rectangle that bounds the shape.  This method should be
             // overridden by a subclass if the default behaviour is not
             // appropriate for the subclass.
          if (x >= left && x < left+width && y >= top && y < top+height)
             return true;
          else
             return false;
       abstract void draw(Graphics g); 
             // Draw the shape in the graphics context g.
             // This must be overriden in any concrete subclass.
    }  // end of class Shape
    class RectShape extends Shape {
          // This class represents rectangle shapes.
       void draw(Graphics g) {
          g.setColor(color);
          g.fillRect(left,top,width,height);
          g.setColor(Color.black);
          g.drawRect(left,top,width,height);
    class OvalShape extends Shape {
           // This class represents oval shapes.
       void draw(Graphics g) {
          g.setColor(color);
          g.fillOval(left,top,width,height);
          g.setColor(Color.black);
          g.drawOval(left,top,width,height);
       boolean containsPoint(int x, int y) {
             // Check whether (x,y) is inside this oval, using the
             // mathematical equation of an ellipse.
          double rx = width/2.0;   // horizontal radius of ellipse
          double ry = height/2.0;  // vertical radius of ellipse
          double cx = left + rx;   // x-coord of center of ellipse
          double cy = top + ry;    // y-coord of center of ellipse
          if ( (ry*(x-cx))*(ry*(x-cx)) + (rx*(y-cy))*(rx*(y-cy)) <= rx*rx*ry*ry )
             return true;
          else
            return false;
    class RoundRectShape extends Shape {
           // This class represents rectangle shapes with rounded corners.
           // (Note that it uses the inherited version of the
           // containsPoint(x,y) method, even though that is not perfectly
           // accurate when (x,y) is near one of the corners.)
       void draw(Graphics g) {
          g.setColor(color);
          g.fillRoundRect(left,top,width,height,width/3,height/3);
          g.setColor(Color.black);
          g.drawRoundRect(left,top,width,height,width/3,height/3);
    }

    Manveer-Singh
    Please don't post in old threads that are long dead. When you have a question, please start a topic of your own. Feel free to provide a link to an old thread if relevant.
    I'm locking this 3 year old thread now.
    db
    edit You have earlier been advised not to post in old dead threads.
    [http://forums.sun.com/thread.jspa?threadID=354443]
    Continuing to ignore this advice will render your account liable to be blocked.
    Edited by: Darryl.Burke

  • FX 5200 TDR128 driver not pass the windows XP logo testing

    Hi there,
    I've just bought an FX 5200 TDR128 VGA Cards, the problem is I cant install the driver because the driver is not pass the windows XP logo test (the error massage box says yhat the device driver is not designed with windows XP logo. So what can I do now? My VGA wont work properly if I do not install the driver which designed for microsoft windows XP logo.
    Best regards

    A MS signed (WHQL - Windows Hardware Quality Labs) driver is not a requirement - MS may make a big deal about it, but do you really think that MS has the time to test each and every driver (and their many revisions) that are made by all the hardware manufacturers in existence??!
    Fact is, by the time MS finally 'certifies' a driver, odds are the manufacturer has built a newer and better one (especially in the case of graphic card drivers).  Odds are, MS only really tests certain driver revisions as submitted to them by the author.  (and, if you happen to install older hardware, the last driver available for that hardware may very well not be signed - what would you do then?!)
    That said, you can ignore the warning message that Windows gives you about a driver not being signed.  In fact, you can disable the driver check altogether in - Control Panel -> System -> Hardware tab in Device Manager section click the 'Driver Signing' button and set to 'ignore.'
    Finally, after all that, the current nVidia driver (v.56.64) is WHQL signed - browse to it here or go directly (Win XP/2K) here.

  • Display employees details in the stacked canvas from the content canvas

    Hi all,
           I want to display employees details in the stacked canvas from the content canvas,where i passed the empno & click on the find button , i have 2 blocks(emp,control), in control block only find button there, I have only one table i.e;emp
    BEGIN
        GO_BLOCK('EMP');
        Set_block_property('EMP', default_where, 'Empno = :EMP.EMPNO');
         Show_view('EMP_DET_CAN');
        execute_query;
    END;
    Thank You

    Hi Andreas Wieden,
    Andreas Weiden wrote:
    When you query on the EMP-block, yiou cannot include a WHERE-condition to that block as the block is cleared when the EXECUTE_QUERY starts. If you want to have a different find-block where you enter your search-condition, you have to include that item in your separate find-block. Otherwise use the standard-search-mechanism with ENTER_QUERY and EXECUTE_QUERY.
    You are right, so where clause is not possible in the same block, right?.I have to take empno column where it is a search column into the control block right?
    Please suggest me i want to retrieve records into the stacked canvas when i pass the empno & click on the find button in the content canvas? Is this not possible? If possible please let me know? I mean i want to take the search column in the EMP Block & find button in the control block..
    Thank You

  • How can I target the background canvas with toolkit for createjs?

    Hello again everyone,
    I have been tooling around a bit with Flash and toolkit for createjs. I am trying to create a navigation menu that plays animated icons when the user mouses over them.
    http://www.thephotoncore.com/navigation.html
    The navigation consists of 8 <li> tags for the main nav buttons and inside each of those tags is a unique canvas element. For some reason, the icons animate ONLY when the mouse hovers over the graphics INSIDE each button and not the container canvas itself. Is there a way for me to start and stop the animation for when the user mouses in and out of the entire canvas element for each button?
    *IDEALY I want the the animation to start and stop for when the user mouses in and out of the <li> tags containing the <canvas> tags. I am not sure if this would work with createjs, but it would be perfect if I could do it that way.*
    Thanks again!
    -DJ

    Let me know if this didn't make any sense. Essentially I want the code to go like:
        this.frame_0 = function() {
            this.stop();
            (*parent <li> of this <canvas> item*).onMouseOver = function() {
                this.gotoAndPlay(1);
            (*parent <li> of this <canvas> item*).onMouseOut = function() {
                this.gotoAndStop(0);
        this.frame_179 = function() {
            this.gotoAndPlay(1);

  • HT2452 Hello... I bough my iMac 2 weeks ago but not happy with the graphic card HD6750M and would like to upgrade to HD6770M wuld it be better for games and in general? Thanks adv brgds Wigor

    Hello Would I be able to do myself to change the graphic card. Present one which came with my iMac is Radeon HD6750M but I'm not really happy with it.
    What is the advantage to changing to HD6770M?
    Many Thanks for an advice.
    With Kind regards Wigor

    The only way for you to upgrade is to return it and bring it back to Apple in 14 days and get your full money back.
    The only way to get a better video card is to order a 27 inch iMac with the custom graphics chip option.
    I am not sure if you can order this in an Apple store or not. The iMac options are listed on their online ordering site.
    The custom GPU is a 1 or 2 GB VRAM GPU. It is only available in the 27 inch screen models.
    If it has really been a full two weeks, you need to return this iMac like tomorrow.
    Apple won't do the video upgrade for you as this is a non-upgradeable part by Apple standards.
    If you attempt to upgrade/replace this GPU yourself, you void your 1 or 3 year AppleCare warranty with no hope of ever getting any free warranty work ever done on this iMac if anything should go wrong.
    If your time for a full refund has passed, you need to sell this iMac so you can purchase an iMac with better specs and options.
    Other than RAM, iMacs are not user upgradeable and you need to order the right iMac and combination of options options at actual time of purchase.

  • IMac won't start up passed the grey screen

    Last friday my iMac (late 2006, 24", 2.33 duo core Intel, OS 10.6.8) gave me the spinning beach ball.
    Restarting resulted in: first the apple screen with the progress indicator, followed by grey screen..
    That was it. It hangs at the grey screen.
    I've been busy this weekend testing all kinds of ideas to get my imac to fully start up again.
    I checked the RAM, it's fine.
    I flushed NVRAM, wild guess, but nothing changed.
    Starting up in safe mode doesn't work.
    Starting up in recovery mode doesn't work.
    On the upside, I was able to start my imac up in Target mode. Using the host computer and Disk Utlity I can see there's nothing wrong with the HD. All the data is still there!, so later today I'll make a copy of the complete HD, hoping/thinking that I won't copy whatever is wrong.
    I had Disk Utility repair all the permissions.
    I've used the host computer to reinstall the OS on my imac.
    But on start up my beloved iMac still won't get passed the grey screen.
    I'm thinking something goes wrong before my Mac even gets to the HD. Maybe it's the firmware, but I'm not really sure that firmware matters in this case. And I wouldn't know how to reinstall the latest version of firmware because my imac won't start up from it's disk drive
    I'm thinking maybe something could be wrong with the graphic card's RAM, though on start up I can see the apple logo just fine.
    I'm not able to start up from CD, I've tried that because I wanted to reinstall my OS (before I figured out how to do that in Target Mode) by putting the OS disk in my imac's own disk drive. Staring up with the C key still gets me the grey screen. Staring up with Option key shows no other option but the HD.
    So is there anybody out there who has an idea that could help me further along?
    Any help is greatly appreciated!
    Frank

    Hi Jan,
    If you have another firewire Mac you can check if the HD of your Mac is OK by connecting them with a firewire cable and use target-mode. That way I found out my HD was just fine.
    It also offers you the chance to run a diagnostic program to check if anything else is fine. I used TechTool to do that. But everything checked out fine.
    In the end I decided the problem is probably hardware. Some electronic part that broke. Very frustrating that some small transistor or so is keeping me from using my otherwise fine iMac.
    I contacted a repairshop that also works for the local Mac retailer. They told me my iMac was concidered 'classic' and therefor it wasn't economically not worth the trouble trying to repair it.
    I gave up, took two weeks to mourn the loss of my beloved iMac, and bought a Mac mini.
    FrankV
    Judging by your name I'm guessing I could've anwered this in Dutch.

  • Ingest Issue ... Never getting passed the first file

    Sorry to bore you all with a dreary ingest issue but even after a very laborious uninstall, reinstall, I still have the issue. In short, I want to upload a load batchs of 100 .mov and mpg files. I do not want any transcoding for the moment. I use the upload button and upload into a production. All is well for the first file but it never gets passed the first file. The Job in Progress wheel turns for hours without advancing then freezes. The media are held on an external HD. I offer up a 3 min console snapshot in the hope that someone can tell me why. Many thanks
    Nom du modèle : Mac mini
    Identifiant du modèle : Macmini3,1
    Nom du processeur : Intel Core 2 Duo
    Vitesse du processeur : 2,26 GHz
    Nombre de processeurs : 1
    Mac OS X 10.6.4 (10F569)
    Final Cut Server 1.5.2
    Dernière modification : 21/07/10 14:50
    Type : Universel
    64 bits (Intel) : Oui
    Informations générales : Final Cut Server
    Emplacement : /Users/admin/Desktop/Final Cut Server.app
    19/08/10 20:46:19 [0x0-0x7b77b7].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[53853] INFO: Saving Window Prefs: com.apple.FinalCutServer.javaui.entities.EntityViewEntityRegistry 154,287,1000,568
    19/08/10 20:46:19 [0x0-0x7b77b7].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[53853] 19 août 2010 20:46:19 com.apple.FinalCutServer.javaui.WindowSizePositionManager savePreferences
    19/08/10 20:46:19 [0x0-0x7b77b7].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[53853] INFO: Saving Window Prefs: com.apple.FinalCutServer.javaui.Workspace 6,22,1182,892
    19/08/10 20:46:37 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 ao�t 2010 20:46:37 com.apple.FinalCutServer.javaui.Platform$1 run
    19/08/10 20:46:37 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: unable to override default encoding: java.lang.NullPointerException
    19/08/10 20:46:40 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 ao�t 2010 20:46:40 com.apple.FinalCutServer.javaui.quicktime.QTInit checkVersion
    19/08/10 20:46:40 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] INFO: found QuickTime version: 7.6.6
    19/08/10 20:46:40 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:46:40 com.apple.FinalCutServer.javaui.FinalCutServer$1 run
    19/08/10 20:46:40 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] INFO: default file.encoding = UTF-8
    19/08/10 20:46:40 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:46:40 com.apple.FinalCutServer.javaui.LoginDialog loadServerHistory
    19/08/10 20:46:40 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] INFO: WebStart server = 152.146.202.144
    19/08/10 20:46:51 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:46:51 com.apple.FinalCutServer.javaui.WindowSizePositionManager getPreferences
    19/08/10 20:46:51 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] INFO: Getting Window Prefs: com.apple.FinalCutServer.javaui.Workspace 6,22,1182,892
    19/08/10 20:46:52 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:46:52 com.apple.FinalCutServer.javaui.WindowSizePositionManager getPreferences
    19/08/10 20:46:52 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] INFO: Getting Window Prefs: com.apple.FinalCutServer.javaui.entities.EntityViewEntityRegistry 154,287,1000,568
    19/08/10 20:46:55 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:46:55 com.apple.FinalCutServer.javaui.panels.EntityPanel$8 run
    19/08/10 20:46:55 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] INFO: Start Search (values in ms)
    19/08/10 20:46:57 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:46:57 com.apple.FinalCutServer.javaui.controls.ThumbnailCache$1 run
    19/08/10 20:46:57 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: There are no links of type 5 from address : /asset/616
    19/08/10 20:46:57 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:46:57 com.apple.FinalCutServer.javaui.controls.ThumbnailCache$1 run
    19/08/10 20:46:57 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: There are no links of type 5 from address : /asset/621
    19/08/10 20:46:57 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:46:57 com.apple.FinalCutServer.javaui.controls.ThumbnailCache$1 run
    19/08/10 20:46:57 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: There are no links of type 5 from address : /asset/614
    19/08/10 20:46:57 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:46:57 com.apple.FinalCutServer.javaui.controls.ThumbnailCache$1 run
    19/08/10 20:46:57 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: There are no links of type 5 from address : /asset/623
    19/08/10 20:46:57 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:46:57 com.apple.FinalCutServer.javaui.controls.ThumbnailCache$1 run
    19/08/10 20:46:57 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: There are no links of type 5 from address : /asset/625
    19/08/10 20:46:57 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:46:57 com.apple.FinalCutServer.javaui.controls.ThumbnailCache$1 run
    19/08/10 20:46:57 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: There are no links of type 5 from address : /asset/612
    19/08/10 20:46:58 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:46:58 com.apple.FinalCutServer.javaui.controls.ThumbnailCache$1 run
    19/08/10 20:46:58 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: There are no links of type 5 from address : /asset/626
    19/08/10 20:46:58 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:46:58 com.apple.FinalCutServer.javaui.controls.ThumbnailCache$1 run
    19/08/10 20:46:58 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: There are no links of type 5 from address : /asset/645
    19/08/10 20:46:58 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:46:58 com.apple.FinalCutServer.javaui.controls.ThumbnailCache$1 run
    19/08/10 20:46:58 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: There are no links of type 5 from address : /asset/649
    19/08/10 20:46:58 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:46:58 com.apple.FinalCutServer.javaui.controls.ThumbnailCache$1 run
    19/08/10 20:46:58 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: There are no links of type 5 from address : /asset/650
    19/08/10 20:46:58 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:46:58 com.apple.FinalCutServer.javaui.controls.ThumbnailCache$1 run
    19/08/10 20:46:58 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: There are no links of type 5 from address : /asset/651
    19/08/10 20:46:58 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:46:58 com.apple.FinalCutServer.javaui.controls.ThumbnailCache$1 run
    19/08/10 20:46:58 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: There are no links of type 5 from address : /asset/652
    19/08/10 20:46:58 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:46:58 com.apple.FinalCutServer.javaui.controls.ThumbnailCache$1 run
    19/08/10 20:46:58 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: There are no links of type 5 from address : /asset/653
    19/08/10 20:46:59 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:46:59 com.apple.FinalCutServer.javaui.panels.EntityPanel$8 run
    19/08/10 20:46:59 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] INFO: Start Search (values in ms)
    19/08/10 20:46:59 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:46:59 com.apple.FinalCutServer.javaui.controls.ThumbnailCache$1 run
    19/08/10 20:46:59 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: There are no links of type 5 from address : /asset/267
    19/08/10 20:47:00 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:47:00 com.apple.FinalCutServer.javaui.panels.EntityPanel$8 run
    19/08/10 20:47:00 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] INFO: End Search 1665
    19/08/10 20:47:01 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:47:01 com.apple.FinalCutServer.javaui.controls.ThumbnailCache$1 run
    19/08/10 20:47:01 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: There are no assets linked from : /project/33
    19/08/10 20:47:01 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:47:01 com.apple.FinalCutServer.javaui.controls.ThumbnailCache$1 run
    19/08/10 20:47:01 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: None of the assets seems to have a proxy
    19/08/10 20:47:01 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:47:01 com.apple.FinalCutServer.javaui.controls.ThumbnailCache$1 run
    19/08/10 20:47:01 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: There are no assets linked from : /project/35
    19/08/10 20:47:01 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:47:01 com.apple.FinalCutServer.javaui.controls.ThumbnailCache$1 run
    19/08/10 20:47:01 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: None of the assets seems to have a proxy
    19/08/10 20:47:01 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:47:01 com.apple.FinalCutServer.javaui.controls.ThumbnailCache$1 run
    19/08/10 20:47:01 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: None of the assets seems to have a proxy
    19/08/10 20:47:02 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:47:02 com.apple.FinalCutServer.javaui.controls.ThumbnailCache$1 run
    19/08/10 20:47:02 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: None of the assets seems to have a proxy
    19/08/10 20:47:02 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:47:02 com.apple.FinalCutServer.javaui.controls.ThumbnailCache$1 run
    19/08/10 20:47:02 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: None of the assets seems to have a proxy
    19/08/10 20:47:02 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:47:02 com.apple.FinalCutServer.javaui.controls.ThumbnailCache$1 run
    19/08/10 20:47:02 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: None of the assets seems to have a proxy
    19/08/10 20:47:02 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:47:02 com.apple.FinalCutServer.javaui.controls.ThumbnailCache$1 run
    19/08/10 20:47:02 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: None of the assets seems to have a proxy
    19/08/10 20:47:02 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:47:02 com.apple.FinalCutServer.javaui.controls.ThumbnailCache$1 run
    19/08/10 20:47:02 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: None of the assets seems to have a proxy
    19/08/10 20:47:02 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:47:02 com.apple.FinalCutServer.javaui.controls.ThumbnailCache$1 run
    19/08/10 20:47:02 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: None of the assets seems to have a proxy
    19/08/10 20:47:02 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:47:02 com.apple.FinalCutServer.javaui.controls.ThumbnailCache$1 run
    19/08/10 20:47:02 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: None of the assets seems to have a proxy
    19/08/10 20:47:02 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:47:02 com.apple.FinalCutServer.javaui.controls.ThumbnailCache$1 run
    19/08/10 20:47:02 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: None of the assets seems to have a proxy
    19/08/10 20:47:02 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:47:02 com.apple.FinalCutServer.javaui.controls.ThumbnailCache$1 run
    19/08/10 20:47:02 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: None of the assets seems to have a proxy
    19/08/10 20:47:02 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:47:02 com.apple.FinalCutServer.javaui.controls.ThumbnailCache$1 run
    19/08/10 20:47:02 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: None of the assets seems to have a proxy
    19/08/10 20:47:02 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:47:02 com.apple.FinalCutServer.javaui.controls.ThumbnailCache$1 run
    19/08/10 20:47:02 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: None of the assets seems to have a proxy
    19/08/10 20:47:02 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:47:02 com.apple.FinalCutServer.javaui.panels.EntityPanel$8 run
    19/08/10 20:47:02 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] INFO: End Search 6912
    19/08/10 20:47:10 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:47:10 com.apple.FinalCutServer.javaui.controls.ThumbnailCache$1 run
    19/08/10 20:47:10 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: None of the assets seems to have a proxy
    19/08/10 20:47:10 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:47:10 com.apple.FinalCutServer.javaui.panels.EntityPanel$8 run
    19/08/10 20:47:10 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] INFO: Start Search (values in ms)
    19/08/10 20:47:10 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:47:10 com.apple.FinalCutServer.javaui.panels.EntityPanel$8 run
    19/08/10 20:47:10 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] INFO: End Search 28
    19/08/10 20:47:10 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:47:10 com.apple.FinalCutServer.javaui.controls.ThumbnailCache$1 run
    19/08/10 20:47:10 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: There are no links of type 5 from address : /asset/840
    19/08/10 20:47:41 kernel AFP_VFS afpfs_unmount: /Volumes/PROD_TV, flags 0, pid 55692
    19/08/10 20:49:12 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:49:12 com.apple.FinalCutServer.javaui.AbstractJobDialog hasLockedMO
    19/08/10 20:49:12 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: Entity /dev/4/Agne%CC%81s%20Agopian%2048%20ans.mov doesn't know how to do listChildLinks
    19/08/10 20:49:13 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:49:13 com.apple.FinalCutServer.javaui.AbstractJobDialog hasLockedMO
    19/08/10 20:49:13 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: Entity /dev/4/Elouan,%20Thime%CC%81o%20et%20Ange%CC%81lique.mov doesn't know how to do listChildLinks
    19/08/10 20:49:13 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:49:13 com.apple.FinalCutServer.javaui.AbstractJobDialog hasLockedMO
    19/08/10 20:49:13 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: Entity /dev/4/He%CC%81le%CC%81ne%20Lecoin%2050%20ans**.mov doesn't know how to do listChildLinks
    19/08/10 20:49:14 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:49:14 com.apple.FinalCutServer.javaui.AbstractJobDialog hasLockedMO
    19/08/10 20:49:14 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: Entity /dev/4/Ine%CC%81s%20Dija%2023%20ans%20*.mov doesn't know how to do listChildLinks
    19/08/10 20:49:14 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:49:14 com.apple.FinalCutServer.javaui.AbstractJobDialog hasLockedMO
    19/08/10 20:49:14 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: Entity /dev/4/Joelle%20Cauce%CC%81%2056%20ans%20(cheveu.mov doesn't know how to do listChildLinks
    19/08/10 20:49:14 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:49:14 com.apple.FinalCutServer.javaui.AbstractJobDialog hasLockedMO
    19/08/10 20:49:14 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: Entity /dev/4/Loane%20et%20Ve%CC%81ronique%20Crampe%CC%81%205.mov doesn't know how to do listChildLinks
    19/08/10 20:49:15 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:49:15 com.apple.FinalCutServer.javaui.AbstractJobDialog hasLockedMO
    19/08/10 20:49:15 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: Entity /dev/4/Ve%CC%81ronique%20Borgias%2052%20ans.mov doesn't know how to do listChildLinks
    19/08/10 20:46:19 [0x0-0x7b77b7].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[53853] INFO: Saving Window Prefs: com.apple.FinalCutServer.javaui.entities.EntityViewEntityRegistry 154,287,1000,568
    19/08/10 20:46:19 [0x0-0x7b77b7].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[53853] 19 août 2010 20:46:19 com.apple.FinalCutServer.javaui.WindowSizePositionManager savePreferences
    19/08/10 20:46:19 [0x0-0x7b77b7].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[53853] INFO: Saving Window Prefs: com.apple.FinalCutServer.javaui.Workspace 6,22,1182,892
    19/08/10 20:46:37 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 ao�t 2010 20:46:37 com.apple.FinalCutServer.javaui.Platform$1 run
    19/08/10 20:46:37 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: unable to override default encoding: java.lang.NullPointerException
    19/08/10 20:46:40 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 ao�t 2010 20:46:40 com.apple.FinalCutServer.javaui.quicktime.QTInit checkVersion
    19/08/10 20:46:40 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] INFO: found QuickTime version: 7.6.6
    19/08/10 20:46:40 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:46:40 com.apple.FinalCutServer.javaui.FinalCutServer$1 run
    19/08/10 20:46:40 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] INFO: default file.encoding = UTF-8
    19/08/10 20:46:40 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:46:40 com.apple.FinalCutServer.javaui.LoginDialog loadServerHistory
    19/08/10 20:46:40 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] INFO: WebStart server = 152.146.202.144
    19/08/10 20:46:51 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:46:51 com.apple.FinalCutServer.javaui.WindowSizePositionManager getPreferences
    19/08/10 20:46:51 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] INFO: Getting Window Prefs: com.apple.FinalCutServer.javaui.Workspace 6,22,1182,892
    19/08/10 20:46:52 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:46:52 com.apple.FinalCutServer.javaui.WindowSizePositionManager getPreferences
    19/08/10 20:46:52 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] INFO: Getting Window Prefs: com.apple.FinalCutServer.javaui.entities.EntityViewEntityRegistry 154,287,1000,568
    19/08/10 20:46:55 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:46:55 com.apple.FinalCutServer.javaui.panels.EntityPanel$8 run
    19/08/10 20:46:55 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] INFO: Start Search (values in ms)
    19/08/10 20:46:57 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:46:57 com.apple.FinalCutServer.javaui.controls.ThumbnailCache$1 run
    19/08/10 20:46:57 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: There are no links of type 5 from address : /asset/616
    19/08/10 20:46:57 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:46:57 com.apple.FinalCutServer.javaui.controls.ThumbnailCache$1 run
    19/08/10 20:46:57 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: There are no links of type 5 from address : /asset/621
    19/08/10 20:46:57 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:46:57 com.apple.FinalCutServer.javaui.controls.ThumbnailCache$1 run
    19/08/10 20:46:57 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: There are no links of type 5 from address : /asset/614
    19/08/10 20:46:57 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:46:57 com.apple.FinalCutServer.javaui.controls.ThumbnailCache$1 run
    19/08/10 20:46:57 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: There are no links of type 5 from address : /asset/623
    19/08/10 20:46:57 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:46:57 com.apple.FinalCutServer.javaui.controls.ThumbnailCache$1 run
    19/08/10 20:46:57 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: There are no links of type 5 from address : /asset/625
    19/08/10 20:46:57 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:46:57 com.apple.FinalCutServer.javaui.controls.ThumbnailCache$1 run
    19/08/10 20:46:57 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: There are no links of type 5 from address : /asset/612
    19/08/10 20:46:58 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:46:58 com.apple.FinalCutServer.javaui.controls.ThumbnailCache$1 run
    19/08/10 20:46:58 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: There are no links of type 5 from address : /asset/626
    19/08/10 20:46:58 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:46:58 com.apple.FinalCutServer.javaui.controls.ThumbnailCache$1 run
    19/08/10 20:46:58 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: There are no links of type 5 from address : /asset/645
    19/08/10 20:46:58 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:46:58 com.apple.FinalCutServer.javaui.controls.ThumbnailCache$1 run
    19/08/10 20:46:58 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: There are no links of type 5 from address : /asset/649
    19/08/10 20:46:58 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:46:58 com.apple.FinalCutServer.javaui.controls.ThumbnailCache$1 run
    19/08/10 20:46:58 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: There are no links of type 5 from address : /asset/650
    19/08/10 20:46:58 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:46:58 com.apple.FinalCutServer.javaui.controls.ThumbnailCache$1 run
    19/08/10 20:46:58 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: There are no links of type 5 from address : /asset/651
    19/08/10 20:46:58 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:46:58 com.apple.FinalCutServer.javaui.controls.ThumbnailCache$1 run
    19/08/10 20:46:58 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: There are no links of type 5 from address : /asset/652
    19/08/10 20:46:58 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:46:58 com.apple.FinalCutServer.javaui.controls.ThumbnailCache$1 run
    19/08/10 20:46:58 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: There are no links of type 5 from address : /asset/653
    19/08/10 20:46:59 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:46:59 com.apple.FinalCutServer.javaui.panels.EntityPanel$8 run
    19/08/10 20:46:59 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] INFO: Start Search (values in ms)
    19/08/10 20:46:59 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:46:59 com.apple.FinalCutServer.javaui.controls.ThumbnailCache$1 run
    19/08/10 20:46:59 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: There are no links of type 5 from address : /asset/267
    19/08/10 20:47:00 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:47:00 com.apple.FinalCutServer.javaui.panels.EntityPanel$8 run
    19/08/10 20:47:00 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] INFO: End Search 1665
    19/08/10 20:47:01 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:47:01 com.apple.FinalCutServer.javaui.controls.ThumbnailCache$1 run
    19/08/10 20:47:01 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: There are no assets linked from : /project/33
    19/08/10 20:47:01 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:47:01 com.apple.FinalCutServer.javaui.controls.ThumbnailCache$1 run
    19/08/10 20:47:01 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: None of the assets seems to have a proxy
    19/08/10 20:47:01 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:47:01 com.apple.FinalCutServer.javaui.controls.ThumbnailCache$1 run
    19/08/10 20:47:01 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: There are no assets linked from : /project/35
    19/08/10 20:47:01 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:47:01 com.apple.FinalCutServer.javaui.controls.ThumbnailCache$1 run
    19/08/10 20:47:01 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: None of the assets seems to have a proxy
    19/08/10 20:47:01 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:47:01 com.apple.FinalCutServer.javaui.controls.ThumbnailCache$1 run
    19/08/10 20:47:01 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: None of the assets seems to have a proxy
    19/08/10 20:47:02 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:47:02 com.apple.FinalCutServer.javaui.controls.ThumbnailCache$1 run
    19/08/10 20:47:02 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: None of the assets seems to have a proxy
    19/08/10 20:47:02 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:47:02 com.apple.FinalCutServer.javaui.controls.ThumbnailCache$1 run
    19/08/10 20:47:02 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: None of the assets seems to have a proxy
    19/08/10 20:47:02 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:47:02 com.apple.FinalCutServer.javaui.controls.ThumbnailCache$1 run
    19/08/10 20:47:02 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: None of the assets seems to have a proxy
    19/08/10 20:47:02 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:47:02 com.apple.FinalCutServer.javaui.controls.ThumbnailCache$1 run
    19/08/10 20:47:02 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: None of the assets seems to have a proxy
    19/08/10 20:47:02 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:47:02 com.apple.FinalCutServer.javaui.controls.ThumbnailCache$1 run
    19/08/10 20:47:02 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: None of the assets seems to have a proxy
    19/08/10 20:47:02 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:47:02 com.apple.FinalCutServer.javaui.controls.ThumbnailCache$1 run
    19/08/10 20:47:02 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: None of the assets seems to have a proxy
    19/08/10 20:47:02 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:47:02 com.apple.FinalCutServer.javaui.controls.ThumbnailCache$1 run
    19/08/10 20:47:02 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: None of the assets seems to have a proxy
    19/08/10 20:47:02 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:47:02 com.apple.FinalCutServer.javaui.controls.ThumbnailCache$1 run
    19/08/10 20:47:02 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: None of the assets seems to have a proxy
    19/08/10 20:47:02 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:47:02 com.apple.FinalCutServer.javaui.controls.ThumbnailCache$1 run
    19/08/10 20:47:02 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: None of the assets seems to have a proxy
    19/08/10 20:47:02 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:47:02 com.apple.FinalCutServer.javaui.controls.ThumbnailCache$1 run
    19/08/10 20:47:02 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: None of the assets seems to have a proxy
    19/08/10 20:47:02 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:47:02 com.apple.FinalCutServer.javaui.controls.ThumbnailCache$1 run
    19/08/10 20:47:02 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: None of the assets seems to have a proxy
    19/08/10 20:47:02 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:47:02 com.apple.FinalCutServer.javaui.panels.EntityPanel$8 run
    19/08/10 20:47:02 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] INFO: End Search 6912
    19/08/10 20:47:10 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:47:10 com.apple.FinalCutServer.javaui.controls.ThumbnailCache$1 run
    19/08/10 20:47:10 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: None of the assets seems to have a proxy
    19/08/10 20:47:10 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:47:10 com.apple.FinalCutServer.javaui.panels.EntityPanel$8 run
    19/08/10 20:47:10 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] INFO: Start Search (values in ms)
    19/08/10 20:47:10 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:47:10 com.apple.FinalCutServer.javaui.panels.EntityPanel$8 run
    19/08/10 20:47:10 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] INFO: End Search 28
    19/08/10 20:47:10 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:47:10 com.apple.FinalCutServer.javaui.controls.ThumbnailCache$1 run
    19/08/10 20:47:10 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: There are no links of type 5 from address : /asset/840
    19/08/10 20:47:41 kernel AFP_VFS afpfs_unmount: /Volumes/PROD_TV, flags 0, pid 55692
    19/08/10 20:49:12 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:49:12 com.apple.FinalCutServer.javaui.AbstractJobDialog hasLockedMO
    19/08/10 20:49:12 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: Entity /dev/4/Agne%CC%81s%20Agopian%2048%20ans.mov doesn't know how to do listChildLinks
    19/08/10 20:49:13 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:49:13 com.apple.FinalCutServer.javaui.AbstractJobDialog hasLockedMO
    19/08/10 20:49:13 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: Entity /dev/4/Elouan,%20Thime%CC%81o%20et%20Ange%CC%81lique.mov doesn't know how to do listChildLinks
    19/08/10 20:49:13 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:49:13 com.apple.FinalCutServer.javaui.AbstractJobDialog hasLockedMO
    19/08/10 20:49:13 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: Entity /dev/4/He%CC%81le%CC%81ne%20Lecoin%2050%20ans**.mov doesn't know how to do listChildLinks
    19/08/10 20:49:14 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:49:14 com.apple.FinalCutServer.javaui.AbstractJobDialog hasLockedMO
    19/08/10 20:49:14 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: Entity /dev/4/Ine%CC%81s%20Dija%2023%20ans%20*.mov doesn't know how to do listChildLinks
    19/08/10 20:49:14 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:49:14 com.apple.FinalCutServer.javaui.AbstractJobDialog hasLockedMO
    19/08/10 20:49:14 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: Entity /dev/4/Joelle%20Cauce%CC%81%2056%20ans%20(cheveu.mov doesn't know how to do listChildLinks
    19/08/10 20:49:14 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:49:14 com.apple.FinalCutServer.javaui.AbstractJobDialog hasLockedMO
    19/08/10 20:49:14 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: Entity /dev/4/Loane%20et%20Ve%CC%81ronique%20Crampe%CC%81%205.mov doesn't know how to do listChildLinks
    19/08/10 20:49:15 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:49:15 com.apple.FinalCutServer.javaui.AbstractJobDialog hasLockedMO
    19/08/10 20:49:15 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: Entity /dev/4/Ve%CC%81ronique%20Borgias%2052%20ans.mov doesn't know how to do listChildLinks
    19/08/10 20:46:19 [0x0-0x7b77b7].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[53853] INFO: Saving Window Prefs: com.apple.FinalCutServer.javaui.entities.EntityViewEntityRegistry 154,287,1000,568
    19/08/10 20:46:19 [0x0-0x7b77b7].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[53853] 19 août 2010 20:46:19 com.apple.FinalCutServer.javaui.WindowSizePositionManager savePreferences
    19/08/10 20:46:19 [0x0-0x7b77b7].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[53853] INFO: Saving Window Prefs: com.apple.FinalCutServer.javaui.Workspace 6,22,1182,892
    19/08/10 20:46:37 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 ao�t 2010 20:46:37 com.apple.FinalCutServer.javaui.Platform$1 run
    19/08/10 20:46:37 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: unable to override default encoding: java.lang.NullPointerException
    19/08/10 20:46:40 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 ao�t 2010 20:46:40 com.apple.FinalCutServer.javaui.quicktime.QTInit checkVersion
    19/08/10 20:46:40 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] INFO: found QuickTime version: 7.6.6
    19/08/10 20:46:40 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:46:40 com.apple.FinalCutServer.javaui.FinalCutServer$1 run
    19/08/10 20:46:40 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] INFO: default file.encoding = UTF-8
    19/08/10 20:46:40 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:46:40 com.apple.FinalCutServer.javaui.LoginDialog loadServerHistory
    19/08/10 20:46:40 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] INFO: WebStart server = 152.146.202.144
    19/08/10 20:46:51 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:46:51 com.apple.FinalCutServer.javaui.WindowSizePositionManager getPreferences
    19/08/10 20:46:51 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] INFO: Getting Window Prefs: com.apple.FinalCutServer.javaui.Workspace 6,22,1182,892
    19/08/10 20:46:52 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:46:52 com.apple.FinalCutServer.javaui.WindowSizePositionManager getPreferences
    19/08/10 20:46:52 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] INFO: Getting Window Prefs: com.apple.FinalCutServer.javaui.entities.EntityViewEntityRegistry 154,287,1000,568
    19/08/10 20:46:55 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:46:55 com.apple.FinalCutServer.javaui.panels.EntityPanel$8 run
    19/08/10 20:46:55 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] INFO: Start Search (values in ms)
    19/08/10 20:46:57 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:46:57 com.apple.FinalCutServer.javaui.controls.ThumbnailCache$1 run
    19/08/10 20:46:57 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: There are no links of type 5 from address : /asset/616
    19/08/10 20:46:57 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:46:57 com.apple.FinalCutServer.javaui.controls.ThumbnailCache$1 run
    19/08/10 20:46:57 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: There are no links of type 5 from address : /asset/621
    19/08/10 20:46:57 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:46:57 com.apple.FinalCutServer.javaui.controls.ThumbnailCache$1 run
    19/08/10 20:46:57 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: There are no links of type 5 from address : /asset/614
    19/08/10 20:46:57 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:46:57 com.apple.FinalCutServer.javaui.controls.ThumbnailCache$1 run
    19/08/10 20:46:57 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: There are no links of type 5 from address : /asset/623
    19/08/10 20:46:57 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:46:57 com.apple.FinalCutServer.javaui.controls.ThumbnailCache$1 run
    19/08/10 20:46:57 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: There are no links of type 5 from address : /asset/625
    19/08/10 20:46:57 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:46:57 com.apple.FinalCutServer.javaui.controls.ThumbnailCache$1 run
    19/08/10 20:46:57 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: There are no links of type 5 from address : /asset/612
    19/08/10 20:46:58 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:46:58 com.apple.FinalCutServer.javaui.controls.ThumbnailCache$1 run
    19/08/10 20:46:58 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: There are no links of type 5 from address : /asset/626
    19/08/10 20:46:58 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:46:58 com.apple.FinalCutServer.javaui.controls.ThumbnailCache$1 run
    19/08/10 20:46:58 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: There are no links of type 5 from address : /asset/645
    19/08/10 20:46:58 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:46:58 com.apple.FinalCutServer.javaui.controls.ThumbnailCache$1 run
    19/08/10 20:46:58 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: There are no links of type 5 from address : /asset/649
    19/08/10 20:46:58 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:46:58 com.apple.FinalCutServer.javaui.controls.ThumbnailCache$1 run
    19/08/10 20:46:58 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: There are no links of type 5 from address : /asset/650
    19/08/10 20:46:58 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:46:58 com.apple.FinalCutServer.javaui.controls.ThumbnailCache$1 run
    19/08/10 20:46:58 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: There are no links of type 5 from address : /asset/651
    19/08/10 20:46:58 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:46:58 com.apple.FinalCutServer.javaui.controls.ThumbnailCache$1 run
    19/08/10 20:46:58 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: There are no links of type 5 from address : /asset/652
    19/08/10 20:46:58 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:46:58 com.apple.FinalCutServer.javaui.controls.ThumbnailCache$1 run
    19/08/10 20:46:58 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: There are no links of type 5 from address : /asset/653
    19/08/10 20:46:59 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:46:59 com.apple.FinalCutServer.javaui.panels.EntityPanel$8 run
    19/08/10 20:46:59 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] INFO: Start Search (values in ms)
    19/08/10 20:46:59 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:46:59 com.apple.FinalCutServer.javaui.controls.ThumbnailCache$1 run
    19/08/10 20:46:59 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: There are no links of type 5 from address : /asset/267
    19/08/10 20:47:00 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:47:00 com.apple.FinalCutServer.javaui.panels.EntityPanel$8 run
    19/08/10 20:47:00 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] INFO: End Search 1665
    19/08/10 20:47:01 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:47:01 com.apple.FinalCutServer.javaui.controls.ThumbnailCache$1 run
    19/08/10 20:47:01 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: There are no assets linked from : /project/33
    19/08/10 20:47:01 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:47:01 com.apple.FinalCutServer.javaui.controls.ThumbnailCache$1 run
    19/08/10 20:47:01 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: None of the assets seems to have a proxy
    19/08/10 20:47:01 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:47:01 com.apple.FinalCutServer.javaui.controls.ThumbnailCache$1 run
    19/08/10 20:47:01 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: There are no assets linked from : /project/35
    19/08/10 20:47:01 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:47:01 com.apple.FinalCutServer.javaui.controls.ThumbnailCache$1 run
    19/08/10 20:47:01 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: None of the assets seems to have a proxy
    19/08/10 20:47:01 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:47:01 com.apple.FinalCutServer.javaui.controls.ThumbnailCache$1 run
    19/08/10 20:47:01 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: None of the assets seems to have a proxy
    19/08/10 20:47:02 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:47:02 com.apple.FinalCutServer.javaui.controls.ThumbnailCache$1 run
    19/08/10 20:47:02 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: None of the assets seems to have a proxy
    19/08/10 20:47:02 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:47:02 com.apple.FinalCutServer.javaui.controls.ThumbnailCache$1 run
    19/08/10 20:47:02 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: None of the assets seems to have a proxy
    19/08/10 20:47:02 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:47:02 com.apple.FinalCutServer.javaui.controls.ThumbnailCache$1 run
    19/08/10 20:47:02 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: None of the assets seems to have a proxy
    19/08/10 20:47:02 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:47:02 com.apple.FinalCutServer.javaui.controls.ThumbnailCache$1 run
    19/08/10 20:47:02 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: None of the assets seems to have a proxy
    19/08/10 20:47:02 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:47:02 com.apple.FinalCutServer.javaui.controls.ThumbnailCache$1 run
    19/08/10 20:47:02 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: None of the assets seems to have a proxy
    19/08/10 20:47:02 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:47:02 com.apple.FinalCutServer.javaui.controls.ThumbnailCache$1 run
    19/08/10 20:47:02 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: None of the assets seems to have a proxy
    19/08/10 20:47:02 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:47:02 com.apple.FinalCutServer.javaui.controls.ThumbnailCache$1 run
    19/08/10 20:47:02 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: None of the assets seems to have a proxy
    19/08/10 20:47:02 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:47:02 com.apple.FinalCutServer.javaui.controls.ThumbnailCache$1 run
    19/08/10 20:47:02 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: None of the assets seems to have a proxy
    19/08/10 20:47:02 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:47:02 com.apple.FinalCutServer.javaui.controls.ThumbnailCache$1 run
    19/08/10 20:47:02 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: None of the assets seems to have a proxy
    19/08/10 20:47:02 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:47:02 com.apple.FinalCutServer.javaui.controls.ThumbnailCache$1 run
    19/08/10 20:47:02 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: None of the assets seems to have a proxy
    19/08/10 20:47:02 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:47:02 com.apple.FinalCutServer.javaui.controls.ThumbnailCache$1 run
    19/08/10 20:47:02 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: None of the assets seems to have a proxy
    19/08/10 20:47:02 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:47:02 com.apple.FinalCutServer.javaui.panels.EntityPanel$8 run
    19/08/10 20:47:02 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] INFO: End Search 6912
    19/08/10 20:47:10 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:47:10 com.apple.FinalCutServer.javaui.controls.ThumbnailCache$1 run
    19/08/10 20:47:10 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: None of the assets seems to have a proxy
    19/08/10 20:47:10 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:47:10 com.apple.FinalCutServer.javaui.panels.EntityPanel$8 run
    19/08/10 20:47:10 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] INFO: Start Search (values in ms)
    19/08/10 20:47:10 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:47:10 com.apple.FinalCutServer.javaui.panels.EntityPanel$8 run
    19/08/10 20:47:10 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] INFO: End Search 28
    19/08/10 20:47:10 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:47:10 com.apple.FinalCutServer.javaui.controls.ThumbnailCache$1 run
    19/08/10 20:47:10 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: There are no links of type 5 from address : /asset/840
    19/08/10 20:47:41 kernel AFP_VFS afpfs_unmount: /Volumes/PROD_TV, flags 0, pid 55692
    19/08/10 20:49:12 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:49:12 com.apple.FinalCutServer.javaui.AbstractJobDialog hasLockedMO
    19/08/10 20:49:12 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: Entity /dev/4/Agne%CC%81s%20Agopian%2048%20ans.mov doesn't know how to do listChildLinks
    19/08/10 20:49:13 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:49:13 com.apple.FinalCutServer.javaui.AbstractJobDialog hasLockedMO
    19/08/10 20:49:13 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: Entity /dev/4/Elouan,%20Thime%CC%81o%20et%20Ange%CC%81lique.mov doesn't know how to do listChildLinks
    19/08/10 20:49:13 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:49:13 com.apple.FinalCutServer.javaui.AbstractJobDialog hasLockedMO
    19/08/10 20:49:13 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: Entity /dev/4/He%CC%81le%CC%81ne%20Lecoin%2050%20ans**.mov doesn't know how to do listChildLinks
    19/08/10 20:49:14 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:49:14 com.apple.FinalCutServer.javaui.AbstractJobDialog hasLockedMO
    19/08/10 20:49:14 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: Entity /dev/4/Ine%CC%81s%20Dija%2023%20ans%20*.mov doesn't know how to do listChildLinks
    19/08/10 20:49:14 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:49:14 com.apple.FinalCutServer.javaui.AbstractJobDialog hasLockedMO
    19/08/10 20:49:14 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: Entity /dev/4/Joelle%20Cauce%CC%81%2056%20ans%20(cheveu.mov doesn't know how to do listChildLinks
    19/08/10 20:49:14 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:49:14 com.apple.FinalCutServer.javaui.AbstractJobDialog hasLockedMO
    19/08/10 20:49:14 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: Entity /dev/4/Loane%20et%20Ve%CC%81ronique%20Crampe%CC%81%205.mov doesn't know how to do listChildLinks
    19/08/10 20:49:15 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] 19 août 2010 20:49:15 com.apple.FinalCutServer.javaui.AbstractJobDialog hasLockedMO
    19/08/10 20:49:15 [0x0-0x7d97d9].com.apple.jnlp-http__152.146.202.144__FinalCutServer_FinalCutServermac.jnlp[55682] ATTENTION: Entity /dev/4/Ve%CC%81ronique%20Borgias%2052%20ans.mov doesn't know how to do listChildLinks
    Message was edited by: chlowden

    I don't know what issue you are referring to when you say you "still have the issue."
    How did you reinstall? Did you reformat the disk or reinstall the OS, or just FCSvr?
    If you had a corrupted FCSvrdatabase and you restored from a backup, the corruption will persist.
    Make sure the external HD is not the problem - use the shortest cable you can with no hubs. FireWire has better performance than USB.
    Also note that a Mac mini is not supported for Final Cut Server - you are supposed to have a system that does not rely on an integrated graphics chip. That said, some people do it without problems, but I wouldn't recommend it in a professional environment. If you only have 4 GB in this machine that could be an issue as well.

  • Help export the graphic with transparent background and not braking the quality

    hi I'd like some help please if its possible.
    I've created a monitor graphic in Fireworks that looks like iMac and I would like to export it with transparent background.
    the jpeg format looks great with no damage to the graphic at all but I can't have transparent background, although I changed the canvas fill to none. the png-8 format can apply transparent background, but damages the graphic.
    Here are the previews
    1st - the png-8 format
    2nd - thejpeg format
    A ny ideas on how I can export the graphic with transparent background and not braking the quality??

    Fireworks questions are best answered at this link:
    <http://forums.adobe.com/community/fireworks/fireworks_general>
    Good luck.

  • Building Workflows via Citrix - can't see the Graphical View

    Hi all,
    I have access to a client site via Citrix. I have zero knoweledge about how to set up Citrix.
    When I am physically at the client site I have no issues with the Workflow Builder. But when I try to use the Workflow Builder through Citrix I can't get the Graphical Model - it defaults to 'Tree' and I can't change it! From SWDD, I tried to change it using Menu Path: Extras > Options and no joy. I can't get the Graphical Model via Citrix.
    I found one relevant thread: https://forums.sdn.sap.com/click.jspa?searchID=11364882&messageID=3427385
    In this thread Kjetil Kilhavn comments "... I am actually working from a Citrix login myself here right now, and after setting the correct options ("true" full screen) it is just like working in a normal environment."
    I wonder if someone can give me some hints/tips so i can pass them on to the people that set up Citrix e.g. what are the 'correct options' that have to be set up?
    Any ideas?
    Much thanks and regards,
    Cristiana

    Hello Christiana,
    This is most likely not a problem with Citrix itself but with the SAPGUI installed in your Citrix client. Scripting must be enabled and some graphical components of the SAPGUI must also be installed. I don't know the details because they are all installed by default - so presumably someone disabled something.
    Talk to your citrix admins and/or ask someone to reinstall SAPGUI for you.
    Cheers,
    Mike
    Edit: A quick check: inside SAPGUI, goto options (last icon -> Options). Goto tab 'Scripting' and make sure it's installed and everything's ticked.
    Edited by: Mike Pokraka on May 2, 2008 11:48 AM

  • Grabbing the Graphics instance outside of paint()?

    This may sound stupid, but I'll ask it anyway.
    I've a class extending Canvas, drawing a load of list items out to the screen. Because some of the text is wider than the screen, I need to truncate them and add "...". No problem to do in paint(Graphics g), but when the list gets very large the screen gets very slow to repaint.
    I'd like to do these string-width calculations once and only once on class instantiation, but I need to grab a hold of the Graphics object to do the measuring. Does anyone know of a way to do this in the class constructor? Something like this.getGraphics()?
    TIA

    Scratch that, I've just realised I can use Font.getDefaultFont().stringwidth().
    Thanks anyway.

  • Re: translating the Graphics 2d instance

    Hi
    I have used Graphics2d.translate to move the origin to centre of the canvas. But as the API suggests all the shapes are being translated too. The application I am developping allows users to draw lines, circles and rectangles with mouse. I am doing this by listening to the mouse events. Could some one suggest a way by which I could transform the origin but still be able to use the entire canvas i.e. draw where there is a mouse event.
    Thanks in advance

    Hi
    Thanks for the replies. Crwood thanks for your help. I tried it before. It didn't work for some reason. I appreciate the help.
    I should ave posted my code too.
    public void paint(Graphics g){
            g.translate(this.getWidth()/2, this.getHeight()/2);
            Graphics2D g2 = (Graphics2D)g;
            g.setColor(Color.WHITE);              
            Axis2d xAxis = new Axis2d(g2,40,this.getHeight()/2,this.getWidth()-40,(this.getHeight()/2));
            Axis2d yAxis = new Axis2d(g2,this.getWidth()/2,40,this.getWidth()/2,this.getHeight()-40);
            save.decipher d = new save.decipher();       
    //        fileName = fileName.concat(".obj");
            d.d(fileName, fileLocation);
           // g.translate(0, 0);
            //int i = 0,k;
    //    for(k=0;k<=i;k++){
    //        Line line = new Line();
    //        line.drawLine(g,(int)lineEndPoints[k][0].getX(), (int)lineEndPoints[k][0].getY(),
    //                (int)lineEndPoints[k][1].getX(),(int)lineEndPoints[k][1].getY());
            if(p.equals("l")){
            Line line = new Line(g2,oldMousePositionx, oldMousePositiony, newMousePositionx, newMousePositiony); 
        if(p.equals("c")){
        Circle circle = new Circle(g,oldMousePositionx, oldMousePositiony, newMousePositionx, newMousePositiony);
        if(p.equals("r")){
            rectangle(g,oldMousePositionx, oldMousePositiony, newMousePositionx, newMousePositiony);
        //public void saveLine(int x0,int y0, int x1, int y1){
            //tempSave temp = new tempSave();
    public void rectangle(Graphics g, int x0, int y0, int x1, int y1){
    g.setColor(mainColor);
    g.drawLine(x0,y0,x0,y1);
    g.drawLine(x0,y1,x1,y1);
    g.drawLine(x1,y1,x1,y0);
    g.drawLine(x1,y0,x0,y0);
    }The paint method is given above. following is the rectangle method that draws a rectangle.line and Circle are seperate classes hence they have been instantiated.
    The variables oldMousePositionx,oldMousePositiony,newMousePositionx,newMousePositiony are initial and final points for line, rectangle etc. These are enclosed in mouseClicked and mouseReleased methods. The points are acquired using
    e.getX() and
    e.getY() methods.
    As you can see I have used
    g.translate(this.getWidth()/2, this.getHeight()/2); at the beginning of the method. Hence the two axes I am drawing after that appear at the center of the canvas dividing it into 4 quadrants.
    The problem is when I pick a point any where on the canvas the line(shape) appears in the fourth quadrant(right bottom). As I mentioned in the previous post this is because as the API suggests all the shapes following the translate method will be translated proportionately.

  • Job scheduling(passing the values to the child program)

    when i'm trying to schedule a background job(using job_open job_submit and job_close) i'm passing the values of the selection screen(parent program) to my child program using set parameter id. And trying to get the values using get parameter id in the cild program.
    But the values of the parent program are not being passed to the child program what may be the cause for it?

    rathan,
    Why con't you use
    SUBMIT... [VIA SELECTION-SCREEN]
    [USING SELECTION-SET <var>]
    [WITH <sel> <criterion>]
    [WITH FREE SELECTIONS <freesel>]
    [WITH SELECTION-TABLE <rspar>].
    When you start an executable program, the standard selection screen normally appears, containing the selection criteria and parameters of both the logical database connected to the program and of the program itself (see Direct Execution - Reports). When you start an executable program using SUBMIT, there are various additions that you can use to fill the input fields on the selection screen:
    SUBMIT... [VIA SELECTION-SCREEN]
    [USING SELECTION-SET <var>]
    [WITH <sel> <criterion>]
    [WITH FREE SELECTIONS <freesel>]
    [WITH SELECTION-TABLE <rspar>].
    These options have the following effects:
    VIA SELECTION-SCREEN
    The selection screen of the called executable program (report) appears. If you transfer values to the program using one or more of the other options, the corresponding input fields in the selections screen are filled. The user can change these values. By default, the system does not display a selection screen after SUBMIT.
    USING SELECTION-SET <var>
    This option tells the system to start the called program with the variant <var>.
    WITH <sel> <criterion>
    Use this option to fill individual elements <sel> of the selection screen (selection tables and parameters). Use one of the elements <criterion>:
    <op> <f> [SIGN <s>], for single value selection
    If <sel> is a selection criterion, use <op> to fill the OPTION field, <f> to fill the LOW field, and <s> to fill the SIGN field of the selection table <sel> in the called program.
    If <sel> is a parameter, you can use any operator for <op>. The parameter <sel> is always filled with <f>.
    [NOT] BETWEEN <f1> AND <f2> [SIGN <s>], for interval selection
    <f1> is transferred into the LOW field, <f2> into the HIGH field, and <s> into the SIGN field of the selection table <sel> in the called program. If you omit the NOT option, the system places the value BT into the OPTION field; if you use NOT, the system fills OPTION with NB.
    IN <seltab>, transferring a selection table
    This addition fills the selection table <sel> in the called program with the values of the table <seltab> in the calling program. Table <seltab> must have the structure of a selection table. Use the RANGES statement to create selection tables.
    WITH FREE SELECTION <freesel>, user dialog for dynamic selections
    To use this option, the called program must be connected to a logical database that supports dynamic selections. In the calling program, use the function modules FREE_SELECTIONS_INIT and FREE_SELECTIONS_DIALOG. They allow the user to enter dynamic selections on a selection screen. One export parameter of these function modules has structure RSDS_TEXPR from the RSDS type group. Transfer the values of this export parameter by means of the internal table <freesel> of the same structure to the called report.
    WITH SELECTION-TABLE <rspar>, dynamic transfer of values
    You need an internal table <rspar> with the Dictionary structure RSPARAMS. The table then consists of the following six fields:
    SELNAME (type C, length 8) for the name of the selection criterion or parameter
    KIND (type C, length 1) for the selection type (S for selection criterion, P for parameter)
    SIGN, OPTION, LOW, HIGH as in a normal selection table, except that LOW and HIGH both have type C and length 45.
    This table can be filled dynamically in the calling program with all of the required values for the selection screen of the called program. If the name of a selection criterion appears more than once, the system creates a multiple-line selection table for that criterion in the called program. If the name of a parameter appears more than once, the system uses the last value. Note that LOW and HIGH have type C, so that the system executes type conversions to the criteria of the called program. This is important for date fields, for example. Before your program is used in a live context, you should check it using the VIA SELECTION-SCREEN addition.
    Except for WITH SELECTION-TABLE, you can use any of the above options several times and in any combination within a SUBMIT statement. In particular, you can use the WITH <sel> option several times for one single criterion <sel>. In the called program, the system appends the corresponding lines to the selection tables used. For parameters, it uses the last value specified. The only combination possible for the WITH SELECTION-TABLE option is USING SELECTION-SET.
    If the input fields on the selection screen are linked to SPA/GPA parameters, you can also use this technique to pass values to the selection screen (see Passing Data Between Programs).
    The following executable program (report) creates a selection screen containing the parameter PARAMET and the selection criterion SELECTO:
    REPORT  demo_program_submit_rep1.
    DATA number TYPE i.
    PARAMETERS      paramet(14) TYPE c.
    SELECT-OPTIONS  selecto FOR number.
    The program DEMO_PROGRAM_SUBMIT_REP1 is called by the following program using various parameters:
    REPORT demo_program_submit_sel_screen NO STANDARD PAGE HEADING.
    DATA: int TYPE i,
          rspar TYPE TABLE OF rsparams,
          wa_rspar LIKE LINE OF rspar.
    RANGES seltab FOR int.
    WRITE: 'Select a Selection!',
    SKIP.
    FORMAT HOTSPOT COLOR 5 INVERSE ON.
    WRITE: 'Selection 1',
         / 'Selection 2'.
    AT LINE-SELECTION.
      CASE sy-lilli.
        WHEN 4.
          seltab-sign = 'I'. seltab-option = 'BT'.
          seltab-low  = 1.   seltab-high   = 5.
          APPEND seltab.
          SUBMIT demo_program_submit_rep1 VIA SELECTION-SCREEN
                          WITH paramet eq 'Selection 1'
                          WITH selecto IN seltab
                          WITH selecto ne 3
                          AND RETURN.
        WHEN 5.
          wa_rspar-selname = 'SELECTO'. wa_rspar-kind = 'S'.
          wa_rspar-sign = 'E'. wa_rspar-option = 'BT'.
          wa_rspar-low  = 14.  wa_rspar-high = 17.
          APPEND wa_rspar TO rspar.
          wa_rspar-selname = 'PARAMET'. wa_rspar-kind = 'P'.
          wa_rspar-low  = 'Selection 2'.
          APPEND wa_rspar TO rspar.
          wa_rspar-selname = 'SELECTO'. wa_rspar-kind = 'S'.
          wa_rspar-sign = 'I'. wa_rspar-option = 'GT'.
          wa_rspar-low  = 10.
          APPEND wa_rspar TO rspar.
          SUBMIT demo_program_submit_rep1 VIA SELECTION-SCREEN
                          WITH SELECTION-TABLE rspar
                          AND RETURN.
      ENDCASE.
    Pls. reward if useful...

Maybe you are looking for

  • Org.apache.jasper.JasperException: Unable to compile

    Hi, I am trying to load a small JSP script using IE 6.0. I have the file tim.jsp in Tomcat 6.0\webapps\examples\. I am getting the following error. Can you please let me know if I need to configure anything else to get this working ?. Thanks, Baskar

  • How can I unlock my disabled I phone without loosing my data?

    How can I unlock my Iphone 3GS without loosing my pics, contacts and music?

  • PLZ HELP ME! -- How to make a developer app. Client / Server?

    Can anyone tell me how to make a developer application (which i have build) Client/Server? I would like to make a installation cd which i can run? Which program can i use for this and how does this work. Thanks, Vincent

  • Content Services ES on WebSphere issue

    Could you be so kind to help us resolve an issue with Adobe Content Services ES errors on WebSphere app server? One of our customers have an installation of Adobe LiveCycle ES 8.2 on IBM WebSphere App server with DB2 database. The version of WebSpher

  • Need to find PowerPC Data Recovery Software

    So, I was working one day inside my Power Mac G5 Quad by putting in some additional memory. Suddenly, my arm accidently pushes over my external hard drive with lots of my back up software. The drive falls to the carpeted floor. Next, I hooked it up t