Help me with my session.update() please....

Hi there again...
I want to ask something very annoying for me.
Here i have some code to update my data. It would be like this:
     public void updateTopicReply(Integer id,Integer reply) {
          Topic topic = null;
          Session session = null;
          Transaction tx = null;
          session = HibernateSessionFactory.currentSession();
          reply=reply+1;
          topic = (Topic) session.get(Topic.class, id);
          topic.setReply(reply);
          tx = session.beginTransaction();
          session.update(topic);
          tx.commit();
     session.close();
when i saw it again in my jsp, no its not changed. But when I press F5, yeaaaa, it's been updated.
But when i press F5 again, it changed back again. And I keep press F5, it's just like the lamp of christmas tree...
So i read some more and I try to add this flush() and refresh()
          tx = session.beginTransaction();
          session.update(topic);
          session.flush();
          session.refresh(topic);
          tx.commit();
But, man.It's still the same.
Anyone know what is the problem?
Any idea or solution u can share?
Or any other method to give?

It all depends on the number of beeps.  Please count the beeps and post the amount. Put in the original ram.
Reslot your ram if you truly believe it is that.

Similar Messages

  • Can you help me with mouse pressed method please?

    hi
    can you help me with my problem please, player label doesn't show up in the applet and the draw string method it doesn't draw any strings like X or O for the game I don't know what is the problem maybe it is with MousePressed method which is in Board class. I tried to write the code of the location many times I'm not sure if the problem comes from there.
    there is no error in my code, but it doesn't work.
    this is class Board which has the mouseListener
    class Board extends JPanel  implements MouseListener, MouseMotionListener
        private JLabel playerlabel; 
         private boolean play;
         private boolean start;
        private int turn; 
        private Square squares[][];
      private Player myplayer[][];
         public Board()
              setBackground( Color.WHITE );
              playerlabel = new JLabel( "X player first" );
              //playerlabel.setLayout(null);
         //     playerlabel.setLocation(500,500);
              add( playerlabel );
              play = true;
              turn = 1;
             squares = new Square[3][3];
             myplayer = new Player[3][3];
             int x = 40;
              int y = 40;
              for (int i=0; i<3; i++){
                   x = 40;
                   for (int j=0; j<3; j++){
                        Square s = new Square( x,y );
                        squares[i][j] = s;
                        x +=50;
                   y +=50;
                this.addMouseListener(this);
            this.addMouseMotionListener(this);
          public void mouseClicked( MouseEvent event ){}
          public void mouseMoved( MouseEvent event ){}
          public void mouseEntered( MouseEvent event ){}
          public void mouseExited( MouseEvent event ){}
          public void mousePressed( MouseEvent event )
          {int xPos = event.getX();
                  int yPos = event.getY();
                    if(play && turn ==1){
                    for (int i=0; i<3; i++){
                        for (int j=0; j<3; j++){
                             int x = squares[i][j].getX();
                             int y = squares[i][j].getY();
                             if(xPos> x && xPos<x+40&& yPos> y && yPos<y+40){
                                  if( squares[i][j].getOccupied() ==0 ){
                                       String ptext;
                                       ptext = "X";
                                       Player p = new Player(x, y,ptext);
                                       myplayer[i][j] = p;
                                       squares[i][j].setOccupied(1);
                                       playerlabel.setText( "O Player Turn" );
                                       turn = 2;
                                       repaint();
                                       Win();
                                  else{
                                       turn = 2;
                                       playerlabel.setText( "O Player Turn" );
                                       repaint();
              if ( play && turn ==2 )
    for (int i=0; i<3; i++){
                        for (int j=0; j<3; j++){
                             int x = squares[i][j].getX();
                             int y = squares[i][j].getY();
                             if(xPos> x && xPos<x+40&& yPos> y && yPos<y+40){
                                  if( squares[i][j].getOccupied() ==0 ){
                                       String ptext;
                                       ptext = "O";
                                       Player p = new Player(x, y,ptext);
                                       myplayer[i][j] = p;
                                       squares[i][j].setOccupied(2);
                                       playerlabel.setText( "X Player Turn" );
                                       turn = 1;
                                       repaint();
                                       Win();
                                  else{
                                       turn = 1;
                                       playerlabel.setText( "X Player Turn" );
                                       repaint();
          public void mouseReleased( MouseEvent event )
          public void mouseDragged( MouseEvent event )
         public void Win(){
              if(squares[0][0].getOccupied() == squares[0][1].getOccupied() &&squares[0][1].getOccupied()==squares[0][2].getOccupied() &&squares[0][2].getOccupied() == 1)
              {playerlabel.setText("Player 1 X WON THE GAME!");
              play =false;          }
              else if (squares[1][0].getOccupied() == squares[1][1].getOccupied() &&squares[1][1].getOccupied()==squares[1][2].getOccupied() &&squares[1][2].getOccupied() == 1)
              {playerlabel.setText("Player 1 X WON THE GAME!");
              play =false;          }
              else      if(squares[2][0].getOccupied() == squares[2][1].getOccupied() &&squares[2][1].getOccupied()==squares[2][2].getOccupied() &&squares[2][2].getOccupied() == 1)
              {playerlabel.setText("Player 1 X WON THE GAME!");
              play =false;          }
                   if(squares[0][0].getOccupied() == squares[0][1].getOccupied() &&squares[0][1].getOccupied()==squares[0][2].getOccupied() &&squares[0][2].getOccupied() == 2)
              {playerlabel.setText("Player 2 O WON THE GAME!");
              play =false;          }
              else if (squares[1][0].getOccupied() == squares[1][1].getOccupied() &&squares[1][1].getOccupied()==squares[1][2].getOccupied() &&squares[1][2].getOccupied() == 2)
              {playerlabel.setText("Player 2 O WON THE GAME!");
              play =false;          }
              else      if(squares[2][0].getOccupied() == squares[2][1].getOccupied() &&squares[2][1].getOccupied()==squares[2][2].getOccupied() &&squares[2][2].getOccupied() == 2)
              {playerlabel.setText("Player 2 O WON THE GAME!");
              play =false;          }
              //Vertically win
               if (squares[0][0].getOccupied() == squares[1][0].getOccupied() &&squares[1][0].getOccupied()==squares[2][0].getOccupied() &&squares[2][0].getOccupied() == 1)
              {playerlabel.setText("Player 1 X WON THE GAME!");
              play =false;          }
              else if (squares[0][1].getOccupied() == squares[1][1].getOccupied() &&squares[1][1].getOccupied()==squares[2][1].getOccupied() &&squares[2][1].getOccupied() == 1)
              {playerlabel.setText("Player 1 X WON THE GAME!");
              play =false;          }
              else      if(squares[0][2].getOccupied() == squares[1][2].getOccupied() &&squares[1][2].getOccupied()==squares[2][2].getOccupied() &&squares[2][2].getOccupied() == 1)
              {playerlabel.setText("Player 1 X WON THE GAME!");
              play =false;          }
               if (squares[0][0].getOccupied() == squares[1][0].getOccupied() &&squares[1][0].getOccupied()==squares[2][0].getOccupied() &&squares[2][0].getOccupied() == 2)
              {playerlabel.setText("Player 2 O WON THE GAME!");
              play =false;          }
              else if (squares[0][1].getOccupied() == squares[1][1].getOccupied() &&squares[1][1].getOccupied()==squares[2][1].getOccupied() &&squares[2][1].getOccupied() == 2)
              {playerlabel.setText("Player 2 O WON THE GAME!");
              play =false;          }
              else      if(squares[0][2].getOccupied() == squares[1][2].getOccupied() &&squares[1][2].getOccupied()==squares[2][2].getOccupied() &&squares[2][2].getOccupied() == 2)
              {playerlabel.setText("Player 2 O WON THE GAME!");
              play =false;          }
              //Diagonal win
                    if (squares[0][0].getOccupied() == squares[1][1].getOccupied() &&squares[1][1].getOccupied()==squares[2][2].getOccupied() &&squares[2][2].getOccupied() == 1)
              {playerlabel.setText("Player 1 X WON THE GAME!");
              play =false;          }
              else if (squares[0][2].getOccupied() == squares[1][1].getOccupied() &&squares[1][1].getOccupied()==squares[2][0].getOccupied() &&squares[2][0].getOccupied() == 1)
              {playerlabel.setText("Player 1 X WON THE GAME!");
              play =false;          }
               if (squares[0][0].getOccupied() == squares[1][1].getOccupied() &&squares[1][1].getOccupied()==squares[2][2].getOccupied() &&squares[2][2].getOccupied() == 2)
              {playerlabel.setText("Player 2 O WON THE GAME!");
              play =false;          }
              else if (squares[0][2].getOccupied() == squares[1][1].getOccupied() &&squares[1][1].getOccupied()==squares[2][0].getOccupied() &&squares[2][0].getOccupied() == 2)
              {playerlabel.setText("Player 2 O WON THE GAME!");
              play =false;          }
         }//end win
    public void setTurn(int t)
              turn = t;
              playerlabel.setText( "X Player Plays First" );
         public void paintComponent( Graphics g )
               super.paintComponent( g );
               this.setBackground( Color.WHITE );
              for (int i=0; i<3; i++){
                   for (int j=0; j<3; j++){
                        g.setColor( Color.BLACK );
                         g.drawRect( squares[i][j].getX(), squares[i][j].getY(), 50, 50 );     
               for (int i=0; i<3; i++){
                   for (int j=0; j<3; j++){
                         myplayer[i][j].draw(g);     
            //End of paintComponent   
    }and this is the whole code of my program.
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.util.*;
    class Player{
         private int xCoordinate;
         private int yCoordinate;
        private String playerText;
      public   Player(int x, int y, String t)
            playerText = t;
            xCoordinate = x;
            yCoordinate = y;
        public void draw(Graphics g)
               g.drawString(playerText,  xCoordinate, yCoordinate);
         public void SetText(String t)
         { playerText = t;
    }//end player
    class Square
         private int x;
         private int y;
         private int occupied;
         public Square(int x1, int y1)
              x = x1;
              y= y1;
              occupied = 0;
         public void setX(int x1)
              x = x1;
         public int getX()
              return x;
         public void setY(int y1)
              y = y1;
         public int getY()
              return y;
         public void setOccupied(int o)
              occupied = o;
         public int getOccupied()
              return occupied;
    public class TicTac extends JApplet implements ActionListener
    { private JPanel panel;
         private JButton newgame;
         private Board B;
         public void init()
              B = new Board();
              add( B, BorderLayout.CENTER );
              panel = new JPanel();
               newgame = new JButton( "New Game" );
               panel.add( newgame);
               add( panel, BorderLayout.SOUTH );
               newgame.addActionListener(this);
              public void actionPerformed( ActionEvent ev)
               {     Object source = ev.getSource();
         if (source == newgame)
                    {remove(B);
                   repaint();
              B = new Board();
                   add( B, BorderLayout.CENTER );
         B.setTurn(1);
                   repaint();
                   validate();
            }//end class TicTac
    class Board extends JPanel  implements MouseListener, MouseMotionListener
        private JLabel playerlabel; 
         private boolean play;
         private boolean start;
        private int turn; 
        private Square squares[][];
      private Player myplayer[][];
         public Board()
              setBackground( Color.WHITE );
              playerlabel = new JLabel( "X player first" );
              //playerlabel.setLayout(null);
         //     playerlabel.setLocation(500,500);
              add( playerlabel );
              play = true;
              turn = 1;
             squares = new Square[3][3];
             myplayer = new Player[3][3];
             int x = 40;
              int y = 40;
              for (int i=0; i<3; i++){
                   x = 40;
                   for (int j=0; j<3; j++){
                        Square s = new Square( x,y );
                        squares[i][j] = s;
                        x +=50;
                   y +=50;
                this.addMouseListener(this);
            this.addMouseMotionListener(this);
          public void mouseClicked( MouseEvent event ){}
          public void mouseMoved( MouseEvent event ){}
          public void mouseEntered( MouseEvent event ){}
          public void mouseExited( MouseEvent event ){}
          public void mousePressed( MouseEvent event )
          {int xPos = event.getX();
                  int yPos = event.getY();
                    if(play && turn ==1){
                    for (int i=0; i<3; i++){
                        for (int j=0; j<3; j++){
                             int x = squares[i][j].getX();
                             int y = squares[i][j].getY();
                             if(xPos> x && xPos<x+40&& yPos> y && yPos<y+40){
                                  if( squares[i][j].getOccupied() ==0 ){
                                       String ptext;
                                       ptext = "X";
                                       Player p = new Player(x, y,ptext);
                                       myplayer[i][j] = p;
                                       squares[i][j].setOccupied(1);
                                       playerlabel.setText( "O Player Turn" );
                                       turn = 2;
                                       repaint();
                                       Win();
                                  else{
                                       turn = 2;
                                       playerlabel.setText( "O Player Turn" );
                                       repaint();
              if ( play && turn ==2 )
    for (int i=0; i<3; i++){
                        for (int j=0; j<3; j++){
                             int x = squares[i][j].getX();
                             int y = squares[i][j].getY();
                             if(xPos> x && xPos<x+40&& yPos> y && yPos<y+40){
                                  if( squares[i][j].getOccupied() ==0 ){
                                       String ptext;
                                       ptext = "O";
                                       Player p = new Player(x, y,ptext);
                                       myplayer[i][j] = p;
                                       squares[i][j].setOccupied(2);
                                       playerlabel.setText( "X Player Turn" );
                                       turn = 1;
                                       repaint();
                                       Win();
                                  else{
                                       turn = 1;
                                       playerlabel.setText( "X Player Turn" );
                                       repaint();
          public void mouseReleased( MouseEvent event )
          public void mouseDragged( MouseEvent event )
         public void Win(){
              if(squares[0][0].getOccupied() == squares[0][1].getOccupied() &&squares[0][1].getOccupied()==squares[0][2].getOccupied() &&squares[0][2].getOccupied() == 1)
              {playerlabel.setText("Player 1 X WON THE GAME!");
              play =false;          }
              else if (squares[1][0].getOccupied() == squares[1][1].getOccupied() &&squares[1][1].getOccupied()==squares[1][2].getOccupied() &&squares[1][2].getOccupied() == 1)
              {playerlabel.setText("Player 1 X WON THE GAME!");
              play =false;          }
              else      if(squares[2][0].getOccupied() == squares[2][1].getOccupied() &&squares[2][1].getOccupied()==squares[2][2].getOccupied() &&squares[2][2].getOccupied() == 1)
              {playerlabel.setText("Player 1 X WON THE GAME!");
              play =false;          }
                   if(squares[0][0].getOccupied() == squares[0][1].getOccupied() &&squares[0][1].getOccupied()==squares[0][2].getOccupied() &&squares[0][2].getOccupied() == 2)
              {playerlabel.setText("Player 2 O WON THE GAME!");
              play =false;          }
              else if (squares[1][0].getOccupied() == squares[1][1].getOccupied() &&squares[1][1].getOccupied()==squares[1][2].getOccupied() &&squares[1][2].getOccupied() == 2)
              {playerlabel.setText("Player 2 O WON THE GAME!");
              play =false;          }
              else      if(squares[2][0].getOccupied() == squares[2][1].getOccupied() &&squares[2][1].getOccupied()==squares[2][2].getOccupied() &&squares[2][2].getOccupied() == 2)
              {playerlabel.setText("Player 2 O WON THE GAME!");
              play =false;          }
              //Vertically win
               if (squares[0][0].getOccupied() == squares[1][0].getOccupied() &&squares[1][0].getOccupied()==squares[2][0].getOccupied() &&squares[2][0].getOccupied() == 1)
              {playerlabel.setText("Player 1 X WON THE GAME!");
              play =false;          }
              else if (squares[0][1].getOccupied() == squares[1][1].getOccupied() &&squares[1][1].getOccupied()==squares[2][1].getOccupied() &&squares[2][1].getOccupied() == 1)
              {playerlabel.setText("Player 1 X WON THE GAME!");
              play =false;          }
              else      if(squares[0][2].getOccupied() == squares[1][2].getOccupied() &&squares[1][2].getOccupied()==squares[2][2].getOccupied() &&squares[2][2].getOccupied() == 1)
              {playerlabel.setText("Player 1 X WON THE GAME!");
              play =false;          }
               if (squares[0][0].getOccupied() == squares[1][0].getOccupied() &&squares[1][0].getOccupied()==squares[2][0].getOccupied() &&squares[2][0].getOccupied() == 2)
              {playerlabel.setText("Player 2 O WON THE GAME!");
              play =false;          }
              else if (squares[0][1].getOccupied() == squares[1][1].getOccupied() &&squares[1][1].getOccupied()==squares[2][1].getOccupied() &&squares[2][1].getOccupied() == 2)
              {playerlabel.setText("Player 2 O WON THE GAME!");
              play =false;          }
              else      if(squares[0][2].getOccupied() == squares[1][2].getOccupied() &&squares[1][2].getOccupied()==squares[2][2].getOccupied() &&squares[2][2].getOccupied() == 2)
              {playerlabel.setText("Player 2 O WON THE GAME!");
              play =false;          }
              //Diagonal win
                    if (squares[0][0].getOccupied() == squares[1][1].getOccupied() &&squares[1][1].getOccupied()==squares[2][2].getOccupied() &&squares[2][2].getOccupied() == 1)
              {playerlabel.setText("Player 1 X WON THE GAME!");
              play =false;          }
              else if (squares[0][2].getOccupied() == squares[1][1].getOccupied() &&squares[1][1].getOccupied()==squares[2][0].getOccupied() &&squares[2][0].getOccupied() == 1)
              {playerlabel.setText("Player 1 X WON THE GAME!");
              play =false;          }
               if (squares[0][0].getOccupied() == squares[1][1].getOccupied() &&squares[1][1].getOccupied()==squares[2][2].getOccupied() &&squares[2][2].getOccupied() == 2)
              {playerlabel.setText("Player 2 O WON THE GAME!");
              play =false;          }
              else if (squares[0][2].getOccupied() == squares[1][1].getOccupied() &&squares[1][1].getOccupied()==squares[2][0].getOccupied() &&squares[2][0].getOccupied() == 2)
              {playerlabel.setText("Player 2 O WON THE GAME!");
              play =false;          }
         }//end win
    public void setTurn(int t)
              turn = t;
              playerlabel.setText( "X Player Plays First" );
         public void paintComponent( Graphics g )
               super.paintComponent( g );
               this.setBackground( Color.WHITE );
              for (int i=0; i<3; i++){
                   for (int j=0; j<3; j++){
                        g.setColor( Color.BLACK );
                         g.drawRect( squares[i][j].getX(), squares[i][j].getY(), 50, 50 );     
               for (int i=0; i<3; i++){
                   for (int j=0; j<3; j++){
                         myplayer[i][j].draw(g);     
            //End of paintComponent   
            Edited by: mshadows on May 18, 2008 7:53 AM

    I was playing with this a little bit and came up with this game model, something that I'm sure can be improved upon greatly:
    TttXO.java
    an enum to encapsulate X vs O. I could use a boolean here since it has 2 states, but this seems more intuitive to me
    package dy08.m05.ttt;
    * tic tac toe encapsulation of X vs O
    * @author Pete
    public enum TttXO
        X, O
    }TttCell.java
    encapsulates an individual cell in the tictactoe grid.
    package dy08.m05.ttt;
    * Tic Tac Toe Game cell
    * can be occupied or not
    * can hold TttXO X or O or null 
    * @author Pete
    public class TttCell
        private boolean occupied = false;
        private TttXO xo = null;
        public TttCell()
         * sets a Square for either x or o
         * @param TttXO
         * @return true if successful, false if already occupied
        public boolean setXO(TttXO xo)
            if (occupied)
                return false;
            else
                occupied = true;
                this.xo = xo;
                return true;
        public void reset()
            occupied = false;
            xo = null;
        public boolean isOccupied()
            return occupied;
        public TttXO getXO()
            return xo;
        // used to test and debug the class
        public String toString()
            if (occupied)
                return xo.toString();
            else
                return "-";
    package dy08.m05.ttt;
    * Tic Tac Toe game model
    * @author Pete
    public class TttGameModel
        private TttCell[][] cellGrid = new TttCell[3][3];
        private boolean xTurn = true;
        private boolean win = false;
        public TttGameModel()
            for (int i = 0; i < cellGrid.length; i++)
                for (int j = 0; j < cellGrid.length; j++)
    cellGrid[i][j] = new TttCell();
    public void reset()
    xTurn = true;
    win = false;
    for (int i = 0; i < cellGrid.length; i++)
    for (int j = 0; j < cellGrid[i].length; j++)
    cellGrid[i][j].reset();
    public boolean isXTurn()
    return xTurn;
    public boolean isWin()
    return win;
    * @param row
    * @param col
    * @return true if valid move, false if game already over or cell occupied
    public boolean takeTurn(int col, int row)
    TttXO currentXO = TttXO.O;
    TttCell cell = cellGrid[row][col];
    if (win)
    return false;
    if (cell.isOccupied())
    return false;
    if (xTurn)
    currentXO = TttXO.X;
    cell.setXO(currentXO);
    win = checkWin(col, row, currentXO);
    xTurn = !xTurn; // toggle xturn
    return true;
    public boolean checkWin(int col, int row, TttXO xo)
    boolean win = false;
    // first rows and columns
    boolean temp = true;
    for (int i = 0; i < 3; i++)
    temp &= cellGrid[row][i].getXO() == xo;
    win |= temp;
    temp = true;
    for (int i = 0; i < 3; i++)
    temp &= cellGrid[i][col].getXO() == xo;
    win |= temp;
    if (row == col) // if slash diagonal
    temp = true;
    for (int i = 0; i < 3; i++)
    temp &= cellGrid[i][i].getXO() == xo;
    win |= temp;
    if (row + col == 2) // if backslash diagonal
    temp = true;
    for (int i = 0; i < 3; i++)
    temp &= cellGrid[i][2 - i].getXO() == xo;
    win |= temp;
    return win;
    // used to test and debug the class
    public String toString()
    StringBuilder sb = new StringBuilder();
    for (int i = 0; i < cellGrid.length; i++)
    for (int j = 0; j < cellGrid[i].length; j++)
    sb.append(cellGrid[i][j] + " ");
    sb.append("\n");
    if (win)
    sb.append("win! Game over");
    else
    sb.append("No winner yet");
    return sb.toString();
    // test the class
    public static void main(String[] args)
    TttGameModel model = new TttGameModel();
    checkMove(model, 0, 0);
    checkMove(model, 1, 0);
    checkMove(model, 1, 1);
    checkMove(model, 2, 0);
    checkMove(model, 1, 0); // bad move
    checkMove(model, 2, 2);
    // to test the class
    private static void checkMove(TttGameModel model, int i, int j)
    System.out.println("OK move: " + model.takeTurn(i, j));
    System.out.println(model + "\n");

  • Can you help me with an jsp execption please?

    Hello!
    Could you please try to help me with this code
    that brings me an exception?
    this is the jsp page :
    <%@ page import="java.io.*,javax.servlet.http.HttpServletRequest,javax.servlet.ServletInputStream" %>
    <%@ page import="java.io.FileWriter,java.io.IOException" %>
    <%
        String savePath = "", filepath = "", filename = "";
        String contentType = "", fileData = "", strLocalFileName = "";
        int startPos = 0;
        int endPos = 0;
    %>
    <%!
        temp data buffer
        void copyByte(byte [] fromBytes, byte [] toBytes, int start, int len){
           for(int i=start;i<(start+len);i++)
              toBytes[i - start] = fromBytes;
    %>
    <%
    int BOF = 0, EOF = 0;
    contentType = request.getContentType();
    out.println("<br>Content type is :: " +contentType);
    if ((contentType != null) && (contentType.indexOf("multipart/form-data") >= 0)) {
         DataInputStream in = new DataInputStream(request.getInputStream());
         DataInputStream in1 = in;
         int formDataLength = request.getContentLength();
         byte dataBytes[] = new byte[formDataLength];
         int byteRead = 0;
         int totalBytesRead = 0;
         while (totalBytesRead < formDataLength){     
              byteRead = in1.read(dataBytes, totalBytesRead, formDataLength);
              totalBytesRead += byteRead;
         out.println("<br>totalBytesRead : " + totalBytesRead + " : formDataLength = " + formDataLength);
         byte[] line = new byte[128];
         if (totalBytesRead < 3){
         return;     //exit if file length is not sufficiently large
         String boundary = "";
         String s = "";
         int count = 0;          
         int pos = 0;
         do{
         copyByte(dataBytes, line, count ,1);     //read 1 byte at a time
         count+=1;
         s = new String(line, 0, 1);
         fileData = fileData + s;
         pos = fileData.indexOf("Content-Disposition: form-data; name=\""); //set the file name
         if(pos != -1)
         endPos = pos;
         }while(pos == -1);
         boundary = fileData.substring(startPos, endPos);
         startPos = endPos;
         do{
         copyByte(dataBytes, line, count ,1);     //read 1 byte at a time
         count+=1;
         s = new String(line, 0, 1);
         fileData = fileData + s;
         pos = fileData.indexOf("filename=\"", startPos); //set the file name
         if(pos != -1)
    startPos = pos;
         }while(pos == -1);                         
         do{
         copyByte(dataBytes, line, count ,1);     //read 1 byte at a time
         count+=1;
         s = new String(line, 0, 1);
         fileData = fileData + s;
         pos = fileData.indexOf("Content-Type: ", startPos);
         if(pos != -1)
              endPos = pos;                              
         }while(pos == -1);
         filename = fileData.substring(startPos + 10, endPos - 3);     //to eliminate " from start & end
         strLocalFileName = filename;
         int index = filename.lastIndexOf("\\");
         if(index != -1)
         filename = filename.substring(index + 1);
         else
         filename = filename;
         boolean blnNewlnFlag = false;
         startPos = endPos;     //added length of "Content-Type: "
         do{
         copyByte(dataBytes, line, count ,1);     //read 1 byte at a time
         count+=1;
         s = new String(line, 0, 1);
         fileData = fileData + s;               
         pos = fileData.indexOf("\n", startPos);
         if(pos != -1){
              if(blnNewlnFlag == true)
                   endPos = pos;                         
              else{
              blnNewlnFlag = true;
              pos = -1;
         }while(pos == -1);
    contentType = fileData.substring(startPos + 14, endPos);
         startPos = count + 1;
         do{
         copyByte(dataBytes, line, count ,1);     //read 1 byte at a time
         count+=1;
         s = new String(line, 0, 1);
         fileData = fileData + s;
         pos = fileData.indexOf(boundary, startPos);     //check for end of file data i.e boundry value               
         }while(pos == -1);
         endPos = count - boundary.length();
         out.println("<br><br>0. Local File Name = " + strLocalFileName);
         out.println("<br><br>1. filename = " + filename);
         out.println("<br>2. contentType = " + contentType);
         out.println("<br>3. startPos = " + startPos);
         out.println("<br>4. endPos = " + endPos);
         out.println("<br>5. boundary = " + boundary);
         String appPath = application.getRealPath("/");
         out.println("<br>appPath : " + appPath);
         String destFolder = appPath + "images/";
    String name = request.getParameter("signinName").trim();
    String email = request.getParameter("signinEmail").trim();
    String age = request.getParameter("signinAge").trim();
    String passwd = request.getParameter("signinPassword").trim();
    String profile = request.getParameter("signinProfile").trim();
    String type = filename.substring(filename.lastIndexOf("."));
         filename = destFolder + name + type;
         fileOutputStream fileOut = new FileOutputStream(filename);
         fileOut.write(dataBytes, startPos, (endPos - startPos));
         fileOut.flush();
         fileOut.close();
         out.println("<br>File saved as >> " + filename);
         else {
              out.println("Error in uploading ");
    %>
    this is the exception:
    exception
    org.apache.jasper.JasperException: java.lang.NullPointerException
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:382)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:409)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:317)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
         com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:73)
         com.sun.enterprise.web.VirtualServerPipeline.invoke(VirtualServerPipeline.java:120)
         org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:231)
         com.sun.enterprise.web.connector.grizzly.ProcessorTask.invokeAdapter(ProcessorTask.java:667)
         com.sun.enterprise.web.connector.grizzly.ProcessorTask.processNonBlocked(ProcessorTask.java:574)
         com.sun.enterprise.web.connector.grizzly.ProcessorTask.process(ProcessorTask.java:844)
         com.sun.enterprise.web.connector.grizzly.ReadTask.executeProcessorTask(ReadTask.java:287)
         com.sun.enterprise.web.connector.grizzly.ReadTask.doTask(ReadTask.java:212)
         com.sun.enterprise.web.connector.grizzly.TaskBase.run(TaskBase.java:252)
         com.sun.enterprise.web.connector.grizzly.WorkerThread.run(WorkerThread.java:75)
    root cause
    java.lang.NullPointerException
         org.apache.jsp.uploadFile_jsp._jspService(uploadFile_jsp.java:190)
         org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:111)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:353)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:409)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:317)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
         com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:73)
         com.sun.enterprise.web.VirtualServerPipeline.invoke(VirtualServerPipeline.java:120)
         org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:231)
         com.sun.enterprise.web.connector.grizzly.ProcessorTask.invokeAdapter(ProcessorTask.java:667)
         com.sun.enterprise.web.connector.grizzly.ProcessorTask.processNonBlocked(ProcessorTask.java:574)
         com.sun.enterprise.web.connector.grizzly.ProcessorTask.process(ProcessorTask.java:844)
         com.sun.enterprise.web.connector.grizzly.ReadTask.executeProcessorTask(ReadTask.java:287)
         com.sun.enterprise.web.connector.grizzly.ReadTask.doTask(ReadTask.java:212)
         com.sun.enterprise.web.connector.grizzly.TaskBase.run(TaskBase.java:252)
         com.sun.enterprise.web.connector.grizzly.WorkerThread.run(WorkerThread.java:75)Thanks a lot !!

    root cause
    java.lang.NullPointerException
         org.apache.jsp.uploadFile_jsp._jspService(uploadFile_jsp.java:190)Some variable is getting null value ..so debug it.
    Best way is to start putting System.out's ....
    System.out.println("Step ############1");
    Put the incremental numbering between several code blocks. Check the log output. You will surely be able to find out till what point ur code is Ok.
    -Rohit

  • Help with a software update please

    I have tried on loads of occasions to update the software on my iphone 4 through my itunes, it takes forever for itunes to download the update, and then when it tries to update my phone it comes up with an error and doesnt update.  Has anyone else had problems like this, and does anyone know how I can fix this and get my phone updated.  Any help will be greatly appreciated

    What is the error message?
    Have you tried disabling your sevurity software?

  • Please help me with the iOS6 update for iPhone4!

    My iPhone4 says to connect to iTunes after my update, but when i do my computer says: iTunes has detected an iPhone in recovery mode. You must restore this iPhone before it can be used with iTunes.
    I would recover it, but the computer with all of it's data is in the shop! I have no clue if the shop guy will erase the data or what! Plus, i have so much on my phone that i really do not want to risk recovering, however, i will if it is absolutely, positively, necessary.

    Hi,
    That sounds like a job for the LAST function:
    SELECT  MIN (rates) KEEP (DENSE_RANK LAST ORDER BY rt_date) AS eff_rate
    FROM    rate
    WHERE   rt_date < 1 + DATE '2009-12-08'
    MIN above means that, in case of a tie (that is, 2 or more rows with the exact same latest rt_date) the lowest rates from that latest rt_date will be returned.  In rt_date is unique, then it doesn't matter if you use MIN or MAX, but syntax demands that you use some aggregate function there.
    I hope this answers your question.
    If not, post a little sample data (CREATE TABLE and INSERT statements, relevant columns only) for your sample data, and also post the results you want from that data.
    Point out where the statement above is getting the wrong results, and explain, using specific examples, how you get the right results from the given data in those places.
    Always say which version of Oracle you're using (e.g., 11.2.0.2.0).
    See the forum FAQ: https://forums.oracle.com/message/9362002#9362002

  • Please, Help me with keeping SESSION persistence

    Hi guys,
    I run into the problem when I can't pass a Java Bean because session is lost.
    What am I doing: First, I start my webserver - tomcat, but DON'T open a browser. Then I start some Agent program in Java which sends a request to Tomcat - URL to JSP page(setAgent.jsp), passing all the parameters (with url.openStream())
    This setAgent.jsp creates Java Bean with <jsp:useBean id="sdbean" class=...scope="session"/>, sets all the parameters into the bean.
    Then I open my Netscape browser calling another JSP(getAgent.jsp) which wants to access this bean (also with <jsp:useBean.../>, sdbean.getName()) and this bean is empty - no data like brand new bean.
    But when I call setAgent.jsp?... directly in the browser and then getAgent.jsp - then that Java Bean is populated.
    So I figured that the session is not the same.
    How to preserve the session or what is the other approach to pass the data through the web server without opening browser? Or how to retrieve that previous Session? If I simply get Session_ID what can I do with it?
    Thanks a lot.
    Gene

    Isn't this the same thing you asked here?
    http://forum.java.sun.com/thread.jsp?forum=45&thread=469430

  • Please GOD somebody help me with this session

    I went to a Track to use an EQ and now my whole session will not display only the EQ window I was using!! has anyone ever had this issue??

    hit cmd-1.

  • Iphoto has stopped working.Help me with any possible ideas please..

    I have a 9.1.3 version of iphoto'11 on macbook pro with Mac OS X 10.6.6. I can get the application to open but it does not upload and keeps showing the circular 'in process' sign on the iphoto page continuously. Please 

    You might consider updating the app and your OS. The latest version of 10.6 is 10.6.8 and the latest version of iPhoto that will run on that is 9.2.3
    Other than that:
    Option 1
    Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild. Choose to Repair Database. If that doesn't help, then try again, this time using Rebuild Database.
    If that fails:
    Option 2
    Download iPhoto Library Manager and use its rebuild function. (In early versions of Library Manager it's the File -> Rebuild command. In later versions it's under the Library menu.)
    This will create an entirely new library. It will then copy (or try to) your photos and all the associated metadata and versions to this new Library, and arrange it as close as it can to what you had in the damaged Library. It does this based on information it finds in the iPhoto sharing mechanism - but that means that things not shared won't be there, so no slideshows, books or calendars, for instance - but it should get all your events, albums and keywords, faces and places back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one.  
    Regards
    TD

  • Help me with this spacecraft game please!

    I have to create a space craft game using Java.
    Right now, I'm just trying to get the rectangle (which I'm going to turn into a space craft later) to shoot the "bullet" when I press the mouse.
    When I run the program, it shoots the bullet fine. But the space craft stops moving until the bullet reaches the end of the screen.
    But I want the bullets and the space craft to move 'independently' without having to wait for the bullets to reach the end of the screen.
    HELP ME PLEASE
    import java.applet.Applet;
    import java.awt.*;
    import java.awt.event.*;
    public class Graphics4 extends Applet
    implements MouseListener, MouseMotionListener {
    int mx, my; // the mouse coordinates
    int s; //shooting control variable
    boolean isButtonPressed = false;
    public void init() {
    setBackground( Color.black ); //background of applet
    setSize(1024,768);
    mx =512; //mouse coordinate in the centre
    my = 384;//mouse coordinate in the centre
    addMouseListener( this );
    addMouseMotionListener( this );
    }//close initializer
    public void mouseEntered( MouseEvent e ) {
    // called when the pointer enters the applet's rectangular area
    public void mouseExited( MouseEvent e ) {
    // called when the pointer leaves the applet's rectangular area
    public void mouseClicked( MouseEvent e ) {
    // called after a press and release of a mouse button
    // with no motion in between
    // (If the user presses, drags, and then releases, there will be
    // no click event generated.)
    public void mousePressed( MouseEvent e ) {  // called after a button is pressed down
    isButtonPressed = true;
    mx = e.getX();
    my = e.getY();
    s=1;
    repaint();
    // "Consume" the event so it won't be processed in the
    // default manner by the source which generated it.
    e.consume();
    public void mouseReleased( MouseEvent e ) {  // called after a button is released
    isButtonPressed = false;
    setBackground( Color.black );
    repaint();
    e.consume();
    s=2;
    public void mouseMoved( MouseEvent e ) {  // called during motion when no buttons are down
    mx = e.getX();
    my = e.getY();
    repaint();
    e.consume();
    s=2;
    public void mouseDragged( MouseEvent e ) {  // called during motion with buttons down
    mx = e.getX();
    my = e.getY();
    repaint();
    e.consume();
    s=1;
    public void paint( Graphics g ) {
    g.setColor( Color.white );
    g.fillRect( mx-20, my-20, 40, 40 ); //draws a rectangle around the mouse
    if (s==1){
    for (int y=my;y>0;y--){ //shoots bullet if mouse is pressed
    g.setColor(Color.yellow);
    g.fillOval(mx-3, y-26, 6, 6);
    try{
    Thread.sleep(1);
    catch (Exception c){
    g.setColor(Color.black);
    g.fillOval(mx-3, y-26, 6, 6);
    }//for
    }//if
    }//Graphics g
    // TODO overwrite start(), stop() and destroy() methods
    }

    you're pausing the game in your paint method until the bullet reaches the top of the screen. a better way would be to create a list of bullets to draw each loop and move them across the screen. here's one way to do it:
    import java.util.ArrayList;
         /** a list of bullets to draw. */
         ArrayList<Point> bullets = new ArrayList<Point>();
         public void mousePressed( MouseEvent e ) { // called after a button is pressed down
              isButtonPressed = true;
              mx = e.getX();
              my = e.getY();
              // add a new bullet at this location
              bullets.add(new Point(mx - 3, my));
              s=1;
              repaint();
    //          "Consume" the event so it won't be processed in the
    //          default manner by the source which generated it.
              e.consume();
         public void mouseDragged( MouseEvent e ) { // called during motion with buttons down
              mx = e.getX();
              my = e.getY();
              repaint();
              e.consume();
              // add a new bullet at this location
              bullets.add(new Point(mx - 3, my));
              s=1;
         public void paint( Graphics g ) {
              // draw ship
              g.setColor( Color.white );
              g.fillRect( mx-20, my-20, 40, 40 ); //draws a rectangle around the mouse
              // draw bullets
              if (!bullets.isEmpty()) {
                   for (int i = 0; i < bullets.size(); i++) {
                        Point bullet = bullets.get(i);
                        bullet.y -= 26;
                        if (bullet.y <= 0) { // bullet reached top of the screen
                             bullets.remove(bullet);
                             i--;
                        } else {
                             g.setColor(Color.yellow);
                             g.fillOval(bullet.x, bullet.y, 6, 6);
                             try{
                                  Thread.sleep(1);
                             catch (Exception c){
                             g.setColor(Color.black);
                             g.fillOval(bullet.x, bullet.y, 6, 6);
              if (s==1){
                   for (int y=my;y>0;y--){ //shoots bullet if mouse is pressed
                        g.setColor(Color.yellow);
                        g.fillOval(mx-3, y-26, 6, 6);
                        try{
                             Thread.sleep(1);
                        catch (Exception c){
                        g.setColor(Color.black);
                        g.fillOval(mx-3, y-26, 6, 6);
                   }//for
              }//if
         }//Graphics gyou still have a problem with your animation, since the paint method isn't called reliably - it only gets called when you move or click the mouse. if you want to make this a game, you'll need to add your own Runnable that updates the game and calls repaint() regularly. check this site for more examples: [https://fivedots.coe.psu.ac.th/~ad/jg/]

  • Help needed with Safari Crash Report Please

    I cannot visit the Apple Store site along with some other sites (My Amazon Login Page ) without Safari 4 crashing. This is happening on two computers and I have tried the following with no success.....
    Repairing permissions
    Removing plist file
    Running 10.5.7 Combo update
    Emptied Cache
    Deleting Safari and reinstalling
    Restored Safari 4 beta from Time Machine (still crashes)
    Ensuring Assisted Devices etc are off under Universal Access preferences
    Creating new user account
    Removing all internet plugins from HD/Library/InternetPlugins and UserName/Library/InternetPlugins
    Removed items from HD /Library/Inputmanagers
    Disabling Javascript is the only method I have found that will stop these crashes.
    If somebody could look at my crash report below I would be grateful as I am not sure what I am looking for.
    I am quite "happy" for the problem to be some 3rd party software that I am using - however I can see no sign of them in my crash report and it seems strange that my only workaround is to disable Javascript.
    Anyway if anybody could help here is my crash report (with all the plugins installed) - many thanks
    Adam
    Process: Safari 200
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Identifier: com.apple.Safari
    Version: 4.0 (5530.17)
    Build Info: WebBrowser-55301700~2
    Code Type: X86 (Native)
    Parent Process: launchd 81
    Interval Since Last Report: 1855 sec
    Crashes Since Last Report: 1
    Per-App Interval Since Last Report: 1773 sec
    Per-App Crashes Since Last Report: 1
    Date/Time: 2009-06-13 17:32:14.954 +0100
    OS Version: Mac OS X 10.5.7 (9J61)
    Report Version: 6
    Anonymous UUID: 60DC4115-DF92-42FC-9590-F3F2EB277286
    Exception Type: EXCBADACCESS (SIGBUS)
    Exception Codes: KERNPROTECTIONFAILURE at 0x0000000000000024
    Crashed Thread: 0
    Thread 0 Crashed:
    0 com.apple.WebCore 0x9199390c WebCore::RenderBlock::layoutBlock(bool) + 2892
    1 com.apple.WebCore 0x91992d88 WebCore::RenderBlock::layout() + 40
    2 com.apple.WebCore 0x919964fb WebCore::RenderBlock::layoutInlineChildren(bool, int&, int&) + 795
    3 com.apple.WebCore 0x91992ff4 WebCore::RenderBlock::layoutBlock(bool) + 564
    4 com.apple.WebCore 0x91992d88 WebCore::RenderBlock::layout() + 40
    5 com.apple.WebCore 0x91994b60 WebCore::RenderBlock::layoutBlockChildren(bool, int&) + 1040
    6 com.apple.WebCore 0x9199360d WebCore::RenderBlock::layoutBlock(bool) + 2125
    7 com.apple.WebCore 0x919ab3d6 WebCore::RenderTextControlSingleLine::layout() + 550
    8 com.apple.WebCore 0x919964fb WebCore::RenderBlock::layoutInlineChildren(bool, int&, int&) + 795
    9 com.apple.WebCore 0x91992ff4 WebCore::RenderBlock::layoutBlock(bool) + 564
    10 com.apple.WebCore 0x91992d88 WebCore::RenderBlock::layout() + 40
    11 com.apple.WebCore 0x91994b60 WebCore::RenderBlock::layoutBlockChildren(bool, int&) + 1040
    12 com.apple.WebCore 0x9199360d WebCore::RenderBlock::layoutBlock(bool) + 2125
    13 com.apple.WebCore 0x91992d88 WebCore::RenderBlock::layout() + 40
    14 com.apple.WebCore 0x91994b60 WebCore::RenderBlock::layoutBlockChildren(bool, int&) + 1040
    15 com.apple.WebCore 0x9199360d WebCore::RenderBlock::layoutBlock(bool) + 2125
    16 com.apple.WebCore 0x91992d88 WebCore::RenderBlock::layout() + 40
    17 com.apple.WebCore 0x91994b60 WebCore::RenderBlock::layoutBlockChildren(bool, int&) + 1040
    18 com.apple.WebCore 0x9199360d WebCore::RenderBlock::layoutBlock(bool) + 2125
    19 com.apple.WebCore 0x91992d88 WebCore::RenderBlock::layout() + 40
    20 com.apple.WebCore 0x91994b60 WebCore::RenderBlock::layoutBlockChildren(bool, int&) + 1040
    21 com.apple.WebCore 0x9199360d WebCore::RenderBlock::layoutBlock(bool) + 2125
    22 com.apple.WebCore 0x91992d88 WebCore::RenderBlock::layout() + 40
    23 com.apple.WebCore 0x919964fb WebCore::RenderBlock::layoutInlineChildren(bool, int&, int&) + 795
    24 com.apple.WebCore 0x91992ff4 WebCore::RenderBlock::layoutBlock(bool) + 564
    25 com.apple.WebCore 0x91992d88 WebCore::RenderBlock::layout() + 40
    26 com.apple.WebCore 0x91994b60 WebCore::RenderBlock::layoutBlockChildren(bool, int&) + 1040
    27 com.apple.WebCore 0x9199360d WebCore::RenderBlock::layoutBlock(bool) + 2125
    28 com.apple.WebCore 0x91992d88 WebCore::RenderBlock::layout() + 40
    29 com.apple.WebCore 0x91994b60 WebCore::RenderBlock::layoutBlockChildren(bool, int&) + 1040
    30 com.apple.WebCore 0x9199360d WebCore::RenderBlock::layoutBlock(bool) + 2125
    31 com.apple.WebCore 0x91992d88 WebCore::RenderBlock::layout() + 40
    32 com.apple.WebCore 0x91994b60 WebCore::RenderBlock::layoutBlockChildren(bool, int&) + 1040
    33 com.apple.WebCore 0x9199360d WebCore::RenderBlock::layoutBlock(bool) + 2125
    34 com.apple.WebCore 0x91992d88 WebCore::RenderBlock::layout() + 40
    35 com.apple.WebCore 0x91994b60 WebCore::RenderBlock::layoutBlockChildren(bool, int&) + 1040
    36 com.apple.WebCore 0x9199360d WebCore::RenderBlock::layoutBlock(bool) + 2125
    37 com.apple.WebCore 0x91992d88 WebCore::RenderBlock::layout() + 40
    38 com.apple.WebCore 0x91992c0a WebCore::RenderView::layout() + 250
    39 com.apple.WebCore 0x91ba37d5 -AccessibilityObjectWrapper accessibilityIsIgnored + 37
    40 com.apple.AppKit 0x9450d5c9 NSAccessibilityPostNotificationForObservedElement + 92
    41 com.apple.AppKit 0x9450d56b NSAccessibilityPostNotification + 28
    42 com.apple.WebCore 0x91b96029 WebCore::AXObjectCache::postNotification(WebCore::RenderObject*, WebCore::String const&) + 105
    43 com.apple.WebCore 0x91986b4c WebCore::RenderTextControl::setInnerTextValue(WebCore::String const&) + 764
    44 com.apple.WebCore 0x91983a0f WebCore::RenderTextControlSingleLine::updateFromElement() + 159
    45 com.apple.WebCore 0x9196c8e2 WebCore::HTMLFormControlElement::attach() + 50
    46 com.apple.WebCore 0x9196e973 WebCore::HTMLInputElement::attach() + 51
    47 com.apple.WebCore 0x9196dfde WebCore::HTMLInputElement::setInputType(WebCore::String const&) + 1518
    48 com.apple.WebCore 0x9196d362 WebCore::HTMLInputElement::parseMappedAttribute(WebCore::MappedAttribute*) + 450
    49 com.apple.WebCore 0x91944d0a WebCore::StyledElement::attributeChanged(WebCore::Attribute*, bool) + 234
    50 com.apple.WebCore 0x91a6468f WebCore::Element::setAttribute(WebCore::AtomicString const&, WebCore::AtomicString const&, int&) + 287
    51 com.apple.WebCore 0x91a643bd WebCore::JSElement::setAttribute(JSC::ExecState*, JSC::ArgList const&) + 301
    52 com.apple.WebCore 0x91a64263 WebCore::jsElementPrototypeFunctionSetAttribute(JSC::ExecState*, JSC::JSObject*, JSC::JSValue, JSC::ArgList const&) + 115
    53 ??? 0x01c3920f 0 + 29594127
    54 com.apple.JavaScriptCore 0x92bd7729 JSC::Interpreter::execute(JSC::ProgramNode*, JSC::ExecState*, JSC::ScopeChainNode*, JSC::JSObject*, JSC::JSValue*) + 537
    55 com.apple.JavaScriptCore 0x92bc36f9 JSC::evaluate(JSC::ExecState*, JSC::ScopeChain&, JSC::SourceCode const&, JSC::JSValue) + 377
    56 com.apple.WebCore 0x9195d794 WebCore::ScriptController::evaluate(WebCore::ScriptSourceCode const&) + 260
    57 com.apple.WebCore 0x9195d601 WebCore::FrameLoader::executeScript(WebCore::ScriptSourceCode const&) + 161
    58 com.apple.WebCore 0x9195d24c WebCore::HTMLTokenizer::scriptExecution(WebCore::ScriptSourceCode const&, WebCore::HTMLTokenizer::State) + 204
    59 com.apple.WebCore 0x9195be41 WebCore::HTMLTokenizer::scriptHandler(WebCore::HTMLTokenizer::State) + 4353
    60 com.apple.WebCore 0x9194dc9b WebCore::HTMLTokenizer::parseSpecial(WebCore::SegmentedString&, WebCore::HTMLTokenizer::State) + 2267
    61 com.apple.WebCore 0x9193b6df WebCore::HTMLTokenizer::parseTag(WebCore::SegmentedString&, WebCore::HTMLTokenizer::State) + 9103
    62 com.apple.WebCore 0x91938c9b WebCore::HTMLTokenizer::write(WebCore::SegmentedString const&, bool) + 2907
    63 com.apple.WebCore 0x919fb2c6 WebCore::HTMLTokenizer::notifyFinished(WebCore::CachedResource*) + 1174
    64 com.apple.WebCore 0x919faddc WebCore::CachedScript::checkNotify() + 60
    65 com.apple.WebCore 0x91978af8 WebCore::Loader::Host::didFinishLoading(WebCore::SubresourceLoader*) + 360
    66 com.apple.WebCore 0x919788fd WebCore::SubresourceLoader::didFinishLoading() + 45
    67 com.apple.Foundation 0x966ba4a7 -NSURLConnection(NSURLConnectionReallyInternal) sendDidFinishLoading + 87
    68 com.apple.Foundation 0x966ba413 _NSURLConnectionDidFinishLoading + 147
    69 com.apple.CFNetwork 0x906fbb96 URLConnectionClient::_clientDidFinishLoading(URLConnectionClient::ClientConnect ionEventQueue*) + 212
    70 com.apple.CFNetwork 0x906fc8e0 URLConnectionClient::ClientConnectionEventQueue::processAllEventsAndConsumePayl oad(XConnectionEventInfo<XClientEvent, XClientEventParams>*, long) + 310
    71 com.apple.CFNetwork 0x906fb36c URLConnectionClient::processEvents() + 104
    72 com.apple.CFNetwork 0x906a8dbf MultiplexerSource::perform() + 189
    73 com.apple.CoreFoundation 0x901de595 CFRunLoopRunSpecific + 3141
    74 com.apple.CoreFoundation 0x901dec78 CFRunLoopRunInMode + 88
    75 com.apple.HIToolbox 0x9077c28c RunCurrentEventLoopInMode + 283
    76 com.apple.HIToolbox 0x9077c0a5 ReceiveNextEventCommon + 374
    77 com.apple.HIToolbox 0x9077bf19 BlockUntilNextEventMatchingListInMode + 106
    78 com.apple.AppKit 0x94437d0d _DPSNextEvent + 657
    79 com.apple.AppKit 0x944375c0 -NSApplication nextEventMatchingMask:untilDate:inMode:dequeue: + 128
    80 com.apple.Safari 0x0000cac3 0x1000 + 47811
    81 com.apple.AppKit 0x944305fb -NSApplication run + 795
    82 com.apple.AppKit 0x943fd834 NSApplicationMain + 574
    83 com.apple.Safari 0x000032a2 0x1000 + 8866
    Thread 1:
    0 libSystem.B.dylib 0x9220f46e _semwaitsignal + 10
    1 libSystem.B.dylib 0x92239dcd pthreadcondwait$UNIX2003 + 73
    2 com.apple.WebCore 0x918a4584 WebCore::IconDatabase::syncThreadMainLoop() + 260
    3 com.apple.WebCore 0x918a0409 WebCore::IconDatabase::iconDatabaseSyncThread() + 185
    4 libSystem.B.dylib 0x92239155 pthreadstart + 321
    5 libSystem.B.dylib 0x92239012 thread_start + 34
    Thread 2:
    0 libSystem.B.dylib 0x92208286 machmsgtrap + 10
    1 libSystem.B.dylib 0x9220fa7c mach_msg + 72
    2 com.apple.CoreFoundation 0x901de04e CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x901dec78 CFRunLoopRunInMode + 88
    4 com.apple.CFNetwork 0x9067c298 CFURLCacheWorkerThread(void*) + 388
    5 libSystem.B.dylib 0x92239155 pthreadstart + 321
    6 libSystem.B.dylib 0x92239012 thread_start + 34
    Thread 3:
    0 libSystem.B.dylib 0x9220f46e _semwaitsignal + 10
    1 libSystem.B.dylib 0x92239dcd pthreadcondwait$UNIX2003 + 73
    2 com.apple.JavaScriptCore 0x92b9d741 **::ThreadCondition::timedWait(**::Mutex&, double) + 81
    3 com.apple.WebCore 0x9190cbd5 WebCore::LocalStorageThread::localStorageThread() + 325
    4 libSystem.B.dylib 0x92239155 pthreadstart + 321
    5 libSystem.B.dylib 0x92239012 thread_start + 34
    Thread 4:
    0 libSystem.B.dylib 0x92208286 machmsgtrap + 10
    1 libSystem.B.dylib 0x9220fa7c mach_msg + 72
    2 com.apple.CoreFoundation 0x901de04e CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x901dec78 CFRunLoopRunInMode + 88
    4 com.apple.Safari 0x00026b55 0x1000 + 154453
    5 com.apple.Safari 0x00026870 0x1000 + 153712
    6 com.apple.Safari 0x000267fb 0x1000 + 153595
    7 libSystem.B.dylib 0x92239155 pthreadstart + 321
    8 libSystem.B.dylib 0x92239012 thread_start + 34
    Thread 5:
    0 libSystem.B.dylib 0x9220f46e _semwaitsignal + 10
    1 libSystem.B.dylib 0x92239dcd pthreadcondwait$UNIX2003 + 73
    2 com.apple.QuartzCore 0x928eba09 fefragmentthread + 54
    3 libSystem.B.dylib 0x92239155 pthreadstart + 321
    4 libSystem.B.dylib 0x92239012 thread_start + 34
    Thread 6:
    0 libSystem.B.dylib 0x922576fa select$DARWIN_EXTSN + 10
    1 libSystem.B.dylib 0x92239155 pthreadstart + 321
    2 libSystem.B.dylib 0x92239012 thread_start + 34
    Thread 7:
    0 libSystem.B.dylib 0x92208286 machmsgtrap + 10
    1 libSystem.B.dylib 0x9220fa7c mach_msg + 72
    2 com.apple.CoreFoundation 0x901de04e CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x901dec78 CFRunLoopRunInMode + 88
    4 com.apple.Foundation 0x966b8530 +NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop: + 320
    5 com.apple.Foundation 0x96654e0d -NSThread main + 45
    6 com.apple.Foundation 0x966549b4 _NSThread__main_ + 308
    7 libSystem.B.dylib 0x92239155 pthreadstart + 321
    8 libSystem.B.dylib 0x92239012 thread_start + 34
    Thread 8:
    0 libSystem.B.dylib 0x9220f46e _semwaitsignal + 10
    1 libSystem.B.dylib 0x92239dcd pthreadcondwait$UNIX2003 + 73
    2 com.apple.JavaScriptCore 0x92b9d741 **::ThreadCondition::timedWait(**::Mutex&, double) + 81
    3 com.apple.Safari 0x0011de33 0x1000 + 1166899
    4 com.apple.Safari 0x0011df21 0x1000 + 1167137
    5 com.apple.Safari 0x00042753 0x1000 + 268115
    6 com.apple.Safari 0x000426cb 0x1000 + 267979
    7 libSystem.B.dylib 0x92239155 pthreadstart + 321
    8 libSystem.B.dylib 0x92239012 thread_start + 34
    Thread 9:
    0 libSystem.B.dylib 0x922082e6 semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x9223a2af pthread_condwait + 1244
    2 libSystem.B.dylib 0x9223bb33 pthreadcond_timedwait_relativenp + 47
    3 com.apple.Foundation 0x9669adcc -NSCondition waitUntilDate: + 236
    4 com.apple.Foundation 0x9669abe0 -NSConditionLock lockWhenCondition:beforeDate: + 144
    5 com.apple.Foundation 0x9669ab45 -NSConditionLock lockWhenCondition: + 69
    6 com.apple.AppKit 0x9449dd20 -NSUIHeartBeat _heartBeatThread: + 753
    7 com.apple.Foundation 0x96654e0d -NSThread main + 45
    8 com.apple.Foundation 0x966549b4 _NSThread__main_ + 308
    9 libSystem.B.dylib 0x92239155 pthreadstart + 321
    10 libSystem.B.dylib 0x92239012 thread_start + 34
    Thread 10:
    0 libSystem.B.dylib 0x92208286 machmsgtrap + 10
    1 libSystem.B.dylib 0x9220fa7c mach_msg + 72
    2 com.apple.CoreFoundation 0x901de04e CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x901dec78 CFRunLoopRunInMode + 88
    4 com.apple.Foundation 0x966893e5 -NSRunLoop(NSRunLoop) runMode:beforeDate: + 213
    5 com.apple.Foundation 0x96695504 -NSRunLoop(NSRunLoop) run + 84
    6 com.apple.Safari 0x00034bc6 0x1000 + 211910
    7 com.apple.Foundation 0x96654e0d -NSThread main + 45
    8 com.apple.Foundation 0x966549b4 _NSThread__main_ + 308
    9 libSystem.B.dylib 0x92239155 pthreadstart + 321
    10 libSystem.B.dylib 0x92239012 thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0x01cf1000 ebx: 0x91992dd1 ecx: 0x00000000 edx: 0x00000000
    edi: 0x196a3010 esi: 0x00000000 ebp: 0xbfffb718 esp: 0xbfffb5a0
    ss: 0x0000001f efl: 0x00010246 eip: 0x9199390c cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    cr2: 0x00000024
    Binary Images:
    0x1000 - 0x271ff2 com.apple.Safari 4.0 (5530.17) <f2a6090eab89fe9620270fc7f32156b9> /Applications/Safari.app/Contents/MacOS/Safari
    0x2d0000 - 0x2dfffc SyndicationUI ??? (???) <4bfd6fbc102be03e5fb08374be0ca362> /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
    0x2ef000 - 0x3f5ff7 com.apple.PubSub 1.0.4 (65.11) <296d6ac9aec1acb5386e761bcd8e4d47> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x1af5000 - 0x1afafff +com.roxio.ToastItPlugin ToastIt 1.1.2 (build 18) (1.1.2) <271b940259dab4f545540356099bd7bb> /Users/adam/Library/Contextual Menu Items/ToastIt.plugin/Contents/MacOS/ToastIt
    0x1b03000 - 0x1b05ffe com.apple.AutomatorCMM 1.1 (161) <dd4f219df5f726e3fea63790235f92dc> /System/Library/Contextual Menu Items/AutomatorCMM.plugin/Contents/MacOS/AutomatorCMM
    0x1b0b000 - 0x1b0cffd com.apple.BluetoothMenu 2.1.6 (2.1.6f8) /System/Library/Contextual Menu Items/BluetoothContextualMenu.plugin/Contents/MacOS/BluetoothContextualMenu
    0x1b11000 - 0x1b85ff7 com.apple.Bluetooth 2.1.6 (2.1.6f8) <2efdc5543023a1c9b534269d1153d8d8> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x1bd3000 - 0x1bd5fff com.apple.BezelServicesFW 1.4.929 (1.4.929) /System/Library/PrivateFrameworks/BezelServices.framework/Versions/A/BezelServi ces
    0x1bdc000 - 0x1be1fff com.apple.FolderActionsMenu 1.3.2 (1.3.2) <9305ccde37dcf5329fd9faea1db1f153> /System/Library/Contextual Menu Items/FolderActionsMenu.plugin/Contents/MacOS/FolderActionsMenu
    0x11ebd000 - 0x120c4fef com.apple.RawCamera.bundle 2.0.15 (471) <557c94fbd7c15219746393464a79cf87> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x1576d000 - 0x157abfe7 +com.adobe.vcmenu ??? (4.0.1.095) /Library/Contextual Menu Items/ADFSMenu.plugin/Contents/MacOS/ADFSMenu
    0x15808000 - 0x15822fff +AdobeBIB ??? (???) /Library/Contextual Menu Items/ADFSMenu.plugin/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBI B
    0x15c2d000 - 0x15c5fffc +com.stuffit.StuffItCM 13.0.3 (13.0.3) <836627efb5c9eb791c76265bd5b222a2> /Library/Contextual Menu Items/StuffItCM.plugin/Contents/MacOS/StuffItCM
    0x15c79000 - 0x15cc1fe3 +com.stuffit.sdk 13.0.3 (13.0.3) <eea4f8830679cddcb99bf6d49a28459a> /Library/Frameworks/StuffIt.framework/Versions/B/StuffIt
    0x1646f000 - 0x16474ff3 libCGXCoreImage.A.dylib ??? (???) <3a78abc535c80f9819931b670da804a2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x16b33000 - 0x16b33ffe com.apple.JavaPluginCocoa 12.2.0 (12.2.0) <b08d1285182ffcbaedd747d17fdaeefd> /Library/Internet Plug-Ins/JavaPluginCocoa.bundle/Contents/MacOS/JavaPluginCocoa
    0x16b39000 - 0x16b3fffd com.apple.JavaVM 12.2.2 (12.2.2) <9ad39149cc7ecc91da3e93df7f61d315> /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaVM
    0x17800000 - 0x1788eff1 +com.stuffit.stuffitcore 13.0.3 (13.0.3) <0e82d419e0e4b50cf3490754d30b6bc3> /Library/Frameworks/StuffItCore.framework/Versions/A/StuffItCore
    0x8fe00000 - 0x8fe2db43 dyld 97.1 (???) <b0ea42e222a36a182e4ea30c3d71ce68> /usr/lib/dyld
    0x90003000 - 0x90007fff libGIF.dylib ??? (???) <713b902cb8f54365b1c78ff3507494a7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x90008000 - 0x90092fe3 com.apple.DesktopServices 1.4.8 (1.4.8) <3065de6531ce839c7cb5b6dd70e03f4f> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x90093000 - 0x9014dfe3 com.apple.CoreServices.OSServices 227 (227) <30cebcb68b1b571df7d77474e0c31556> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x9014e000 - 0x9014eff8 com.apple.Cocoa 6.5 (???) <a1bc9247cf65c20f1a44d0973cbe649c> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x9014f000 - 0x9016affb libPng.dylib ??? (???) <e92ab921713f1c28bc639d68683b8ee3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x9016b000 - 0x9029efef com.apple.CoreFoundation 6.5.6 (476.18) <2d52bab73660117571bd6486dc318f8e> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x9029f000 - 0x902e0fe7 libRIP.A.dylib ??? (???) <69bd09fcd8d8b235cee7a405290d6818> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x902e6000 - 0x902edff7 libCGATS.A.dylib ??? (???) <211348279493364e9920adc86484cedd> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x9033d000 - 0x90377fe7 com.apple.coreui 1.2 (62) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x90378000 - 0x90386ffd libz.1.dylib ??? (???) <a98b3b221a72b54faf73ded3dd7000e5> /usr/lib/libz.1.dylib
    0x90387000 - 0x903c5fff libGLImage.dylib ??? (???) <a6425aeb77f4da13212ac75df57b056d> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x903c6000 - 0x90443fef libvMisc.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x90444000 - 0x90484fff com.apple.CoreMediaIOServicesPrivate 20.0 (20.0) /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0x904ca000 - 0x905aafff libobjc.A.dylib ??? (???) <bba0c22add60c7724e259ab28de8953e> /usr/lib/libobjc.A.dylib
    0x905ab000 - 0x90676fff com.apple.ColorSync 4.5.1 (4.5.1) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x90677000 - 0x90677ffb com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x90678000 - 0x90678fff com.apple.Carbon 136 (136) <4177916bbf70e0ddc446f94001d54c95> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x90679000 - 0x9071dfec com.apple.CFNetwork 438.10 (438.12) <fde64bbb20532794396fb21911ccaa98> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x9071e000 - 0x9074bfeb libvDSP.dylib ??? (???) <e89461ed03200fb3c0304e62e14a42ed> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x9074c000 - 0x90a54fff com.apple.HIToolbox 1.5.5 (???) <b17766e3d8800a73f534c41f624f5ac4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x90a55000 - 0x90a6bfff com.apple.DictionaryServices 1.0.0 (1.0.0) <7d20b8d1fb238c3e71d0fa6fda18c4f7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x90a6c000 - 0x90ba5ff7 libicucore.A.dylib ??? (???) <cac059ebdac7d9a63ee0f7a648c9f6cf> /usr/lib/libicucore.A.dylib
    0x90ba6000 - 0x90bc3ff7 com.apple.QuickLookFramework 1.3.1 (170.9) /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x90c16000 - 0x90c16ffd com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x90c17000 - 0x90c17ff8 com.apple.ApplicationServices 34 (34) <ee7bdf593da050bb30c7a1fc446eb8a6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x90c18000 - 0x90c19ffc libffi.dylib ??? (???) <eaf10b99a3fbc4920b175809407466c0> /usr/lib/libffi.dylib
    0x90c1a000 - 0x90c29ffe com.apple.DSObjCWrappers.Framework 1.3 (1.3) <47c451a0ea1fd2ebd6a192ecdc3f3867> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x90c39000 - 0x90c88fff com.apple.QuickLookUIFramework 1.3.1 (170.9) /System/Library/PrivateFrameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x90c89000 - 0x90cadfeb libssl.0.9.7.dylib ??? (???) <8084593b773bec8f2b9614fd23c5ed73> /usr/lib/libssl.0.9.7.dylib
    0x90cae000 - 0x90d08ff7 com.apple.CoreText 2.0.4 (???) <f0b6c1d4f40bd21505097f0255abfead> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90d09000 - 0x90e4fff7 com.apple.ImageIO.framework 2.0.4 (2.0.4) <c0d51a3b27fe6977d8db45c84c7ff46b> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x90e50000 - 0x90e5bfe7 libCSync.A.dylib ??? (???) <9e3544fe087bb4dc760b7afe0850dd6c> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x90e61000 - 0x90f49ff3 com.apple.CoreData 100.2 (186.1) <8fb61e1714a4b8d587ce97605ad32547> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x90fbd000 - 0x90fbdffe com.apple.MonitorPanelFramework 1.2.0 (1.2.0) <1f4c10fcc17187a6f106e0a0be8236b0> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x90fbe000 - 0x90ff0fff com.apple.LDAPFramework 1.4.5 (110) <9ece7a1930b00f7b20ae9ef0759270cf> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x910e6000 - 0x910eafff libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0x910eb000 - 0x910f7ffe libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x910f8000 - 0x9112efef libtidy.A.dylib ??? (???) <7b9fc90dc0d50da27a24f6f84ccdd7b7> /usr/lib/libtidy.A.dylib
    0x9112f000 - 0x912aefff com.apple.AddressBook.framework 4.1.2 (700) <41a71b250286dc8d8bcee30784b894c8> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x912af000 - 0x912b8fff com.apple.speech.recognition.framework 3.7.24 (3.7.24) <da2d8411921a3fd8bc898dc753b7f3ee> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x912b9000 - 0x912bcfff com.apple.help 1.1 (36) <1a25a8fbb49a830efb31d5c0a52939cd> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x912bd000 - 0x912bdffa com.apple.CoreServices 32 (32) <373d6a888f9204641f313bc6070ae065> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x912be000 - 0x912dcfff libresolv.9.dylib ??? (???) <36c871d5da9b49bb5bcf0449833d1dc5> /usr/lib/libresolv.9.dylib
    0x912dd000 - 0x91306fff libcups.2.dylib ??? (???) <1b0435164b9dc6c773d0b1f24701e554> /usr/lib/libcups.2.dylib
    0x91307000 - 0x91338ffb com.apple.quartzfilters 1.5.0 (1.5.0) <92b4f39479fdcabae0d8f53febd22fad> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x91339000 - 0x91362fff com.apple.CoreMediaPrivate 15.0 (15.0) /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x91363000 - 0x9139dffe com.apple.securityfoundation 3.0.2 (36131) <39663c9b6f1a09d0566305d9f87cfc91> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x9139e000 - 0x9139effd com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91489000 - 0x9148efff com.apple.DisplayServicesFW 2.0.2 (2.0.2) <b42b339d6b18d416b81c2d0eaa4f36b9> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x9148f000 - 0x91496ffe libbsm.dylib ??? (???) <fa7ae5f1a621d9b69e7e18747c9405fb> /usr/lib/libbsm.dylib
    0x91497000 - 0x91499fff com.apple.securityhi 3.0 (30817) <40562b85d99118354c974e76c32fa6fb> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x9149a000 - 0x914dcfef com.apple.NavigationServices 3.5.2 (163) <26eeb5a205f749aad83d5dac0330c41f> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x914dd000 - 0x914f5ff7 com.apple.CoreVideo 1.6.0 (20.0) <dd60118bac9aefaf88d9ab44558f05c4> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x914f6000 - 0x91540fe1 com.apple.securityinterface 3.0.2 (36684) <7109034b9898a11506fc67e887e69d2b> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x91541000 - 0x915befeb com.apple.audio.CoreAudio 3.1.2 (3.1.2) <5a4e6329f8dbca5dcd70924525afd24a> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x915d7000 - 0x915dcfff com.apple.CommonPanels 1.2.4 (85) <c135f02edd6b2e2864311e0b9d08a98d> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x91822000 - 0x9189cff8 com.apple.print.framework.PrintCore 5.5.4 (245.6) <03d0585059c20cb0bde5e000438c49e1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9189d000 - 0x9212dfff com.apple.WebCore 5530 (5530.17) <9868576f7495c85d5f4513dd4e0f9b95> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x9212e000 - 0x9213aff9 com.apple.helpdata 1.0.1 (14.2) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x9213b000 - 0x9215affa libJPEG.dylib ??? (???) <348a77547e3646c80704ddfd88f6e008> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x9215b000 - 0x92162fe9 libgcc_s.1.dylib ??? (???) <e280ddf3f5fb3049e674edcb109f389a> /usr/lib/libgcc_s.1.dylib
    0x92207000 - 0x9236eff3 libSystem.B.dylib ??? (???) <b47c8e6e45aef620730710a732bf1930> /usr/lib/libSystem.B.dylib
    0x9238c000 - 0x924c4fe7 com.apple.imageKit 1.0.2 (1.0) <f36b085e6878145ea194d53fad37a8e8> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x924c5000 - 0x92696ffb com.apple.security 5.0.5 (36371) <c13e0bb1acfdcf94be4d3ee118ef190e> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x92697000 - 0x92723ff7 com.apple.framework.IOKit 1.5.2 (???) <97b9f9d584f48891377f0481b9104434> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x92724000 - 0x927d6ffb libcrypto.0.9.7.dylib ??? (???) <9d714c92872a93dd127ea8556b2c8945> /usr/lib/libcrypto.0.9.7.dylib
    0x927d7000 - 0x927e4fe7 com.apple.opengl 1.5.10 (1.5.10) <5a2813f80c9441170cc1ab8a3dac5038> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x927f7000 - 0x92b94fef com.apple.QuartzCore 1.5.8 (1.5.8) <a28fa54346a9f9d5b3bef076a1ee0fcf> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x92b95000 - 0x92d1cfeb com.apple.JavaScriptCore 5530 (5530.17) <687d2f3063f4d922f233623d8f219822> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x92d1d000 - 0x92d2dfff com.apple.speech.synthesis.framework 3.7.1 (3.7.1) <7bd1ec22c47e62a11b34d7ba66606e2e> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x92d2e000 - 0x92e07ff7 com.apple.WebKit 5530 (5530.17) <a7127d7d7f22d74df35aaa16b776912c> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x93071000 - 0x93152ff7 libxml2.2.dylib ??? (???) <068cab13eb4608a7c6a5fad807ee0e33> /usr/lib/libxml2.2.dylib
    0x93158000 - 0x93208fff edu.mit.Kerberos 6.0.13 (6.0.13) <804bd1b3f08fb57396781f012006367c> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x9320f000 - 0x93237ff7 com.apple.shortcut 1.0.1 (1.0) <131202e7766e327d02d55c0f5fc44ad7> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x93238000 - 0x93277fef libTIFF.dylib ??? (???) <1b5ab7f4bb5251ce1488dd0b1e21ad39> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x93278000 - 0x9330bff3 com.apple.ApplicationServices.ATS 3.7 (???) <a535fc4982d3acff6530ec25c402e679> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x9338e000 - 0x9341aff7 com.apple.LaunchServices 290.3 (290.6) <bdba267184df88bd5b8e2116ea903872> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x9341b000 - 0x93420fff com.apple.backup.framework 1.0 (1.0) /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x93421000 - 0x9342bfeb com.apple.audio.SoundManager 3.9.2 (3.9.2) <df077a8048afc3075c6f2d9e7780e78e> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x9349c000 - 0x93776ff3 com.apple.CoreServices.CarbonCore 786.11 (786.13) <9e2d85d52e5e2951aa4dd53c48ccc52f> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x93777000 - 0x9378ffff com.apple.openscripting 1.2.8 (???) <54ab21172b8b3caa601dde44872a9c0d> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x93790000 - 0x937aeff3 com.apple.DirectoryService.Framework 3.5.6 (3.5.6) <daa1307737197c7757f44f16370249dc> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x937af000 - 0x9380bff7 com.apple.htmlrendering 68 (1.1.3) <1c5c0c417891b920dfe139385fc6c155> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x9380c000 - 0x9389ffff com.apple.ink.framework 101.3 (86) <d4c85b5cafa8027fff042b84a8be71dc> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x938a0000 - 0x939f2ff3 com.apple.audio.toolbox.AudioToolbox 1.5.2 (1.5.2) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x93a23000 - 0x93adaff3 com.apple.QTKit 7.6.2 (1327) /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x93adb000 - 0x93facfbe libGLProgrammability.dylib ??? (???) <7f18294a7bd0b6afe4319f29187fc70d> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x93fad000 - 0x93fbcfff libsasl2.2.dylib ??? (???) <c0bb658cd951bbe8882244fc5db4617b> /usr/lib/libsasl2.2.dylib
    0x93fbd000 - 0x9401affb libstdc++.6.dylib ??? (???) <f75e5133d72769de5ce6c06153fc65f6> /usr/lib/libstdc++.6.dylib
    0x9401b000 - 0x94064fef com.apple.Metadata 10.5.2 (398.25) <bf7f665f6ad79df3a8355b41fa1ed207> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x94065000 - 0x94067ffd com.apple.CrashReporterSupport 10.5.7 (161) <dc6dfd99e332f53791f5c0a4e6889cb3> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x94068000 - 0x9438efe2 com.apple.QuickTime 7.6.2 (1327) <3754e41d846b7948f96c9ec4c690b520> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x9438f000 - 0x943f5ffb com.apple.ISSupport 1.8 (38.3) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x943f6000 - 0x943f6ffd com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x943f7000 - 0x94bf5fef com.apple.AppKit 6.5.7 (949.46) <a80f8cb62f6bdcb3bed3c8675d55881d> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x94bf6000 - 0x94c25fe3 com.apple.AE 402.3 (402.3) <b13bfda0ad9314922ee37c0d018d7de9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x94c26000 - 0x94c5dfff com.apple.SystemConfiguration 1.9.2 (1.9.2) <cfd64ded4da1064ce316243fd425d5a4> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x94c5e000 - 0x94cafff7 com.apple.HIServices 1.7.0 (???) <74c3d19e3981d6999630ec516681f079> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x94cb0000 - 0x94cd4fff libxslt.1.dylib ??? (???) <ec4c269815bab8e7211cb8fe9df3a9a3> /usr/lib/libxslt.1.dylib
    0x94cd5000 - 0x95375fe3 com.apple.CoreGraphics 1.409.3 (???) <25dceb14af3455b768f56e8765ecf3ca> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x95506000 - 0x95508ff5 libRadiance.dylib ??? (???) <6d980a95dd5a8448e2846568cc1458cd> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x95509000 - 0x95509ffe com.apple.quartzframework 1.5 (1.5) <6865aa0aeaa584b5a54d43f2f21d6c08> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x9550a000 - 0x95510fff com.apple.print.framework.Print 218.0.3 (220.2) <5b7f4ef7c2df36aff9605377775781e4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x95511000 - 0x9553cfe7 libauto.dylib ??? (???) <a64961ed20db64f0f439bfbc6f962bf9> /usr/lib/libauto.dylib
    0x9553d000 - 0x955affff com.apple.PDFKit 2.1.2 (2.1.2) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x955b0000 - 0x9562fff5 com.apple.SearchKit 1.2.1 (1.2.1) <4ebff1a287bd6686107fa50d5a21b000> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x9660c000 - 0x96614fff com.apple.DiskArbitration 2.2.1 (2.2.1) <d97688958e0b1fdcd4747088bdf1962a> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x9664a000 - 0x968c6fe7 com.apple.Foundation 6.5.8 (677.24) <aa84b0383891378c348ffa4a94853082> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x968c7000 - 0x9696efeb com.apple.QD 3.11.56 (???) <a94d0f5438b730e88e5efdb233295c52> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x9696f000 - 0x969f6ff7 libsqlite3.0.dylib ??? (???) <3334ea5af7a911637413334154bb4100> /usr/lib/libsqlite3.0.dylib
    0x969f7000 - 0x96abeff2 com.apple.vImage 3.0 (3.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x96abf000 - 0x96ecffef libBLAS.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x96ed0000 - 0x96ed0ffc com.apple.audio.units.AudioUnit 1.5 (1.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x96ed1000 - 0x96ee1ffc com.apple.LangAnalysis 1.6.4 (1.6.4) <5c122260176a6bcd9da8c7f8bb567b34> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x96ee2000 - 0x9709eff3 com.apple.QuartzComposer 2.1 (106.13) <f487aaca8ebdc7e334e2c79cebd8da66> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x9709f000 - 0x9745dfea libLAPACK.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x9745e000 - 0x974b7ff7 libGLU.dylib ??? (???) <a3b9be30100a25a6cd3ad109892f52b7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x974b8000 - 0x974cdffb com.apple.ImageCapture 5.0.2 (5.0.2) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0xfffe8000 - 0xfffebfff libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib
    0xffff0000 - 0xffff1780 libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib

    Many thanks for taking the time to help.
    I have removed the items you suggested but unfortunately Safari still crashes.
    Below is another crash report with the items removed.
    If anybody can help I would be most grateful.
    Also I do not have LazyMouse installed and I have unchecked Enable access for assistive devices in System preferences>Universal Access.
    Many thanks
    Adam
    Crash report.............
    Process: Safari [410]
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Identifier: com.apple.Safari
    Version: 4.0 (5530.17)
    Build Info: WebBrowser-55301700~2
    Code Type: X86 (Native)
    Parent Process: launchd [132]
    Interval Since Last Report: 3686 sec
    Crashes Since Last Report: 1
    Per-App Interval Since Last Report: 3276 sec
    Per-App Crashes Since Last Report: 1
    Date/Time: 2009-06-15 19:43:22.310 +0100
    OS Version: Mac OS X 10.5.7 (9J61)
    Report Version: 6
    Anonymous UUID: 60DC4115-DF92-42FC-9590-F3F2EB277286
    Exception Type: EXCBADACCESS (SIGBUS)
    Exception Codes: KERNPROTECTIONFAILURE at 0x000000000000000c
    Crashed Thread: 0
    Thread 0 Crashed:
    0 com.apple.WebCore 0x9501ac5c WebCore::InlineFlowBox::deleteLine(WebCore::RenderArena*) + 44
    1 com.apple.WebCore 0x9562be31 WebCore::RenderBlock::determineStartPosition(bool&, bool&, WebCore::BidiResolver<WebCore::InlineIterator, WebCore::BidiRun>&, ***::Vector<WebCore::RenderBlock::FloatWithRect, 0ul>&, unsigned int&) + 1137
    2 com.apple.WebCore 0x94f9279c WebCore::RenderBlock::layoutInlineChildren(bool, int&, int&) + 1468
    3 com.apple.WebCore 0x94f8eff4 WebCore::RenderBlock::layoutBlock(bool) + 564
    4 com.apple.WebCore 0x94f8ed88 WebCore::RenderBlock::layout() + 40
    5 com.apple.WebCore 0x94f90b60 WebCore::RenderBlock::layoutBlockChildren(bool, int&) + 1040
    6 com.apple.WebCore 0x94f8f60d WebCore::RenderBlock::layoutBlock(bool) + 2125
    7 com.apple.WebCore 0x94fa73d6 WebCore::RenderTextControlSingleLine::layout() + 550
    8 com.apple.WebCore 0x94f924fb WebCore::RenderBlock::layoutInlineChildren(bool, int&, int&) + 795
    9 com.apple.WebCore 0x94f8eff4 WebCore::RenderBlock::layoutBlock(bool) + 564
    10 com.apple.WebCore 0x94f8ed88 WebCore::RenderBlock::layout() + 40
    11 com.apple.WebCore 0x94f90b60 WebCore::RenderBlock::layoutBlockChildren(bool, int&) + 1040
    12 com.apple.WebCore 0x94f8f60d WebCore::RenderBlock::layoutBlock(bool) + 2125
    13 com.apple.WebCore 0x94f8ed88 WebCore::RenderBlock::layout() + 40
    14 com.apple.WebCore 0x94f90b60 WebCore::RenderBlock::layoutBlockChildren(bool, int&) + 1040
    15 com.apple.WebCore 0x94f8f60d WebCore::RenderBlock::layoutBlock(bool) + 2125
    16 com.apple.WebCore 0x94f8ed88 WebCore::RenderBlock::layout() + 40
    17 com.apple.WebCore 0x94f90b60 WebCore::RenderBlock::layoutBlockChildren(bool, int&) + 1040
    18 com.apple.WebCore 0x94f8f60d WebCore::RenderBlock::layoutBlock(bool) + 2125
    19 com.apple.WebCore 0x94f8ed88 WebCore::RenderBlock::layout() + 40
    20 com.apple.WebCore 0x94f90b60 WebCore::RenderBlock::layoutBlockChildren(bool, int&) + 1040
    21 com.apple.WebCore 0x94f8f60d WebCore::RenderBlock::layoutBlock(bool) + 2125
    22 com.apple.WebCore 0x94f8ed88 WebCore::RenderBlock::layout() + 40
    23 com.apple.WebCore 0x94f924fb WebCore::RenderBlock::layoutInlineChildren(bool, int&, int&) + 795
    24 com.apple.WebCore 0x94f8eff4 WebCore::RenderBlock::layoutBlock(bool) + 564
    25 com.apple.WebCore 0x94f8ed88 WebCore::RenderBlock::layout() + 40
    26 com.apple.WebCore 0x94f90b60 WebCore::RenderBlock::layoutBlockChildren(bool, int&) + 1040
    27 com.apple.WebCore 0x94f8f60d WebCore::RenderBlock::layoutBlock(bool) + 2125
    28 com.apple.WebCore 0x94f8ed88 WebCore::RenderBlock::layout() + 40
    29 com.apple.WebCore 0x94f90b60 WebCore::RenderBlock::layoutBlockChildren(bool, int&) + 1040
    30 com.apple.WebCore 0x94f8f60d WebCore::RenderBlock::layoutBlock(bool) + 2125
    31 com.apple.WebCore 0x94f8ed88 WebCore::RenderBlock::layout() + 40
    32 com.apple.WebCore 0x94f90b60 WebCore::RenderBlock::layoutBlockChildren(bool, int&) + 1040
    33 com.apple.WebCore 0x94f8f60d WebCore::RenderBlock::layoutBlock(bool) + 2125
    34 com.apple.WebCore 0x94f8ed88 WebCore::RenderBlock::layout() + 40
    35 com.apple.WebCore 0x94f90b60 WebCore::RenderBlock::layoutBlockChildren(bool, int&) + 1040
    36 com.apple.WebCore 0x94f8f60d WebCore::RenderBlock::layoutBlock(bool) + 2125
    37 com.apple.WebCore 0x94f8ed88 WebCore::RenderBlock::layout() + 40
    38 com.apple.WebCore 0x94f8ec0a WebCore::RenderView::layout() + 250
    39 com.apple.WebCore 0x9519f7d5 -[AccessibilityObjectWrapper accessibilityIsIgnored] + 37
    40 com.apple.AppKit 0x943d35c9 NSAccessibilityPostNotificationForObservedElement + 92
    41 com.apple.AppKit 0x943d356b NSAccessibilityPostNotification + 28
    42 com.apple.WebCore 0x95192029 WebCore::AXObjectCache::postNotification(WebCore::RenderObject*, WebCore::String const&) + 105
    43 com.apple.WebCore 0x94f82b4c WebCore::RenderTextControl::setInnerTextValue(WebCore::String const&) + 764
    44 com.apple.WebCore 0x94f7fa0f WebCore::RenderTextControlSingleLine::updateFromElement() + 159
    45 com.apple.WebCore 0x94f688e2 WebCore::HTMLFormControlElement::attach() + 50
    46 com.apple.WebCore 0x94f6a973 WebCore::HTMLInputElement::attach() + 51
    47 com.apple.WebCore 0x94f69fde WebCore::HTMLInputElement::setInputType(WebCore::String const&) + 1518
    48 com.apple.WebCore 0x94f69362 WebCore::HTMLInputElement::parseMappedAttribute(WebCore::MappedAttribute*) + 450
    49 com.apple.WebCore 0x94f40d0a WebCore::StyledElement::attributeChanged(WebCore::Attribute*, bool) + 234
    50 com.apple.WebCore 0x9506068f WebCore::Element::setAttribute(WebCore::AtomicString const&, WebCore::AtomicString const&, int&) + 287
    51 com.apple.WebCore 0x950603bd WebCore::JSElement::setAttribute(JSC::ExecState*, JSC::ArgList const&) + 301
    52 com.apple.WebCore 0x95060263 WebCore::jsElementPrototypeFunctionSetAttribute(JSC::ExecState*, JSC::JSObject*, JSC::JSValue, JSC::ArgList const&) + 115
    53 ??? 0x1649a20f 0 + 373924367
    54 com.apple.JavaScriptCore 0x92db3729 JSC::Interpreter::execute(JSC::ProgramNode*, JSC::ExecState*, JSC::ScopeChainNode*, JSC::JSObject*, JSC::JSValue*) + 537
    55 com.apple.JavaScriptCore 0x92d9f6f9 JSC::evaluate(JSC::ExecState*, JSC::ScopeChain&, JSC::SourceCode const&, JSC::JSValue) + 377
    56 com.apple.WebCore 0x94f59794 WebCore::ScriptController::evaluate(WebCore::ScriptSourceCode const&) + 260
    57 com.apple.WebCore 0x94f59601 WebCore::FrameLoader::executeScript(WebCore::ScriptSourceCode const&) + 161
    58 com.apple.WebCore 0x94f5924c WebCore::HTMLTokenizer::scriptExecution(WebCore::ScriptSourceCode const&, WebCore::HTMLTokenizer::State) + 204
    59 com.apple.WebCore 0x94f57e41 WebCore::HTMLTokenizer::scriptHandler(WebCore::HTMLTokenizer::State) + 4353
    60 com.apple.WebCore 0x94f49c9b WebCore::HTMLTokenizer::parseSpecial(WebCore::SegmentedString&, WebCore::HTMLTokenizer::State) + 2267
    61 com.apple.WebCore 0x94f376df WebCore::HTMLTokenizer::parseTag(WebCore::SegmentedString&, WebCore::HTMLTokenizer::State) + 9103
    62 com.apple.WebCore 0x94f34c9b WebCore::HTMLTokenizer::write(WebCore::SegmentedString const&, bool) + 2907
    63 com.apple.WebCore 0x94ff72c6 WebCore::HTMLTokenizer::notifyFinished(WebCore::CachedResource*) + 1174
    64 com.apple.WebCore 0x94ff6ddc WebCore::CachedScript::checkNotify() + 60
    65 com.apple.WebCore 0x94f74af8 WebCore::Loader::Host::didFinishLoading(WebCore::SubresourceLoader*) + 360
    66 com.apple.WebCore 0x94f748fd WebCore::SubresourceLoader::didFinishLoading() + 45
    67 com.apple.Foundation 0x95b8c4a7 -[NSURLConnection(NSURLConnectionReallyInternal) sendDidFinishLoading] + 87
    68 com.apple.Foundation 0x95b8c413 _NSURLConnectionDidFinishLoading + 147
    69 com.apple.CFNetwork 0x95e2ab96 URLConnectionClient::_clientDidFinishLoading(URLConnectionClient::ClientConnect ionEventQueue*) + 212
    70 com.apple.CFNetwork 0x95e2b8e0 URLConnectionClient::ClientConnectionEventQueue::processAllEventsAndConsumePayl oad(XConnectionEventInfo<XClientEvent, XClientEventParams>*, long) + 310
    71 com.apple.CFNetwork 0x95e2a36c URLConnectionClient::processEvents() + 104
    72 com.apple.CFNetwork 0x95dd7dbf MultiplexerSource::perform() + 189
    73 com.apple.CoreFoundation 0x91267595 CFRunLoopRunSpecific + 3141
    74 com.apple.CoreFoundation 0x91267c78 CFRunLoopRunInMode + 88
    75 com.apple.HIToolbox 0x9005228c RunCurrentEventLoopInMode + 283
    76 com.apple.HIToolbox 0x900520a5 ReceiveNextEventCommon + 374
    77 com.apple.HIToolbox 0x90051f19 BlockUntilNextEventMatchingListInMode + 106
    78 com.apple.AppKit 0x942fdd0d _DPSNextEvent + 657
    79 com.apple.AppKit 0x942fd5c0 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    80 com.apple.Safari 0x0000cac3 0x1000 + 47811
    81 com.apple.AppKit 0x942f65fb -[NSApplication run] + 795
    82 com.apple.AppKit 0x942c3834 NSApplicationMain + 574
    83 com.apple.Safari 0x000032a2 0x1000 + 8866
    Thread 1:
    0 libSystem.B.dylib 0x91e4c46e _semwaitsignal + 10
    1 libSystem.B.dylib 0x91e76dcd pthreadcondwait$UNIX2003 + 73
    2 com.apple.WebCore 0x94ea0584 WebCore::IconDatabase::syncThreadMainLoop() + 260
    3 com.apple.WebCore 0x94e9c409 WebCore::IconDatabase::iconDatabaseSyncThread() + 185
    4 libSystem.B.dylib 0x91e76155 pthreadstart + 321
    5 libSystem.B.dylib 0x91e76012 thread_start + 34
    Thread 2:
    0 libSystem.B.dylib 0x91e45286 machmsgtrap + 10
    1 libSystem.B.dylib 0x91e4ca7c mach_msg + 72
    2 com.apple.CoreFoundation 0x9126704e CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x91267c78 CFRunLoopRunInMode + 88
    4 com.apple.CFNetwork 0x95dab298 CFURLCacheWorkerThread(void*) + 388
    5 libSystem.B.dylib 0x91e76155 pthreadstart + 321
    6 libSystem.B.dylib 0x91e76012 thread_start + 34
    Thread 3:
    0 libSystem.B.dylib 0x91e4c46e _semwaitsignal + 10
    1 libSystem.B.dylib 0x91e76dcd pthreadcondwait$UNIX2003 + 73
    2 com.apple.JavaScriptCore 0x92d79741 ***::ThreadCondition::timedWait(***::Mutex&, double) + 81
    3 com.apple.WebCore 0x94f08bd5 WebCore::LocalStorageThread::localStorageThread() + 325
    4 libSystem.B.dylib 0x91e76155 pthreadstart + 321
    5 libSystem.B.dylib 0x91e76012 thread_start + 34
    Thread 4:
    0 libSystem.B.dylib 0x91e45286 machmsgtrap + 10
    1 libSystem.B.dylib 0x91e4ca7c mach_msg + 72
    2 com.apple.CoreFoundation 0x9126704e CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x91267c78 CFRunLoopRunInMode + 88
    4 com.apple.Safari 0x00026b55 0x1000 + 154453
    5 com.apple.Safari 0x00026870 0x1000 + 153712
    6 com.apple.Safari 0x000267fb 0x1000 + 153595
    7 libSystem.B.dylib 0x91e76155 pthreadstart + 321
    8 libSystem.B.dylib 0x91e76012 thread_start + 34
    Thread 5:
    0 libSystem.B.dylib 0x91e4c46e _semwaitsignal + 10
    1 libSystem.B.dylib 0x91e76dcd pthreadcondwait$UNIX2003 + 73
    2 com.apple.QuartzCore 0x907fda09 fefragmentthread + 54
    3 libSystem.B.dylib 0x91e76155 pthreadstart + 321
    4 libSystem.B.dylib 0x91e76012 thread_start + 34
    Thread 6:
    0 libSystem.B.dylib 0x91e45286 machmsgtrap + 10
    1 libSystem.B.dylib 0x91e4ca7c mach_msg + 72
    2 com.apple.CoreFoundation 0x9126704e CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x91267c78 CFRunLoopRunInMode + 88
    4 com.apple.Foundation 0x95b8a530 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 320
    5 com.apple.Foundation 0x95b26e0d -[NSThread main] + 45
    6 com.apple.Foundation 0x95b269b4 _NSThread__main_ + 308
    7 libSystem.B.dylib 0x91e76155 pthreadstart + 321
    8 libSystem.B.dylib 0x91e76012 thread_start + 34
    Thread 7:
    0 libSystem.B.dylib 0x91e946fa select$DARWIN_EXTSN + 10
    1 libSystem.B.dylib 0x91e76155 pthreadstart + 321
    2 libSystem.B.dylib 0x91e76012 thread_start + 34
    Thread 8:
    0 libSystem.B.dylib 0x91e4c46e _semwaitsignal + 10
    1 libSystem.B.dylib 0x91e76dcd pthreadcondwait$UNIX2003 + 73
    2 com.apple.JavaScriptCore 0x92d79741 ***::ThreadCondition::timedWait(***::Mutex&, double) + 81
    3 com.apple.Safari 0x0011de33 0x1000 + 1166899
    4 com.apple.Safari 0x0011df21 0x1000 + 1167137
    5 com.apple.Safari 0x00042753 0x1000 + 268115
    6 com.apple.Safari 0x000426cb 0x1000 + 267979
    7 libSystem.B.dylib 0x91e76155 pthreadstart + 321
    8 libSystem.B.dylib 0x91e76012 thread_start + 34
    Thread 9:
    0 libSystem.B.dylib 0x91e4c46e _semwaitsignal + 10
    1 libSystem.B.dylib 0x91e76dcd pthreadcondwait$UNIX2003 + 73
    2 com.apple.ColorSync 0x95ee945c pthreadSemaphoreWait(t_pthreadSemaphore*) + 42
    3 com.apple.ColorSync 0x95efbd8e CMMConvTask(void*) + 54
    4 libSystem.B.dylib 0x91e76155 pthreadstart + 321
    5 libSystem.B.dylib 0x91e76012 thread_start + 34
    Thread 10:
    0 libSystem.B.dylib 0x91e45286 machmsgtrap + 10
    1 libSystem.B.dylib 0x91e4ca7c mach_msg + 72
    2 com.apple.CoreFoundation 0x9126704e CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x91267c78 CFRunLoopRunInMode + 88
    4 com.apple.Foundation 0x95b5b3e5 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 213
    5 com.apple.Foundation 0x95b67504 -[NSRunLoop(NSRunLoop) run] + 84
    6 com.apple.Safari 0x00034bc6 0x1000 + 211910
    7 com.apple.Foundation 0x95b26e0d -[NSThread main] + 45
    8 com.apple.Foundation 0x95b269b4 _NSThread__main_ + 308
    9 libSystem.B.dylib 0x91e76155 pthreadstart + 321
    10 libSystem.B.dylib 0x91e76012 thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0x00000000 ebx: 0x9562b9d1 ecx: 0x1756fa80 edx: 0x17087618
    edi: 0x1756fa80 esi: 0x1708763c ebp: 0xbfffb688 esp: 0xbfffb660
    ss: 0x0000001f efl: 0x00010206 eip: 0x9501ac5c cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    cr2: 0x0000000c
    Binary Images:
    0x1000 - 0x271ff2 com.apple.Safari 4.0 (5530.17) <f2a6090eab89fe9620270fc7f32156b9> /Applications/Safari.app/Contents/MacOS/Safari
    0x2d0000 - 0x2dfffc SyndicationUI ??? (???) <4bfd6fbc102be03e5fb08374be0ca362> /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
    0x2ef000 - 0x3f5ff7 com.apple.PubSub 1.0.4 (65.11) <296d6ac9aec1acb5386e761bcd8e4d47> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x11ebd000 - 0x120c4fef com.apple.RawCamera.bundle 2.0.15 (471) <557c94fbd7c15219746393464a79cf87> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x1647f000 - 0x16484ff3 libCGXCoreImage.A.dylib ??? (???) <3a78abc535c80f9819931b670da804a2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x166c4000 - 0x166c4ffe com.apple.JavaPluginCocoa 12.2.0 (12.2.0) <b08d1285182ffcbaedd747d17fdaeefd> /Library/Internet Plug-Ins/JavaPluginCocoa.bundle/Contents/MacOS/JavaPluginCocoa
    0x16a7d000 - 0x16a83ffd com.apple.JavaVM 12.2.2 (12.2.2) <9ad39149cc7ecc91da3e93df7f61d315> /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaVM
    0x178d7000 - 0x178dafef com.apple.LiveType.component 2.1.3 (2.1.3) /Library/QuickTime/LiveType.component/Contents/MacOS/LiveType
    0x17957000 - 0x1795a02f +Motion ??? (???) <b5e862eee0ff4f86a78998e3e601a18c> /Library/Frameworks/Motion.framework/Versions/A/Motion
    0x17e80000 - 0x17e8efeb libSimplifiedChineseConverter.dylib ??? (???) <baa9dea57e3b49ca537934ab76645bea> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x17e93000 - 0x17ea5fff libTraditionalChineseConverter.dylib ??? (???) <35982309fdf5ddada718fd6fc36dbe96> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0x1868f000 - 0x186aefed com.apple.audio.CoreAudioKit 1.5 (1.5) <585f5ec95dc8f1efe51d820be84d53a6> /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
    0x196e2000 - 0x19d05fef +com.macromedia.Flash Player.plugin 10.0.22.87 (1.0.4f872) <860692a215f054b7b9474b410abeb530> /Library/Internet Plug-Ins/Flash Player.plugin/Contents/MacOS/Flash Player
    0x1ae45000 - 0x1aeaafde com.apple.LiveType.framework 2.1.3 (2.1.3) /System/Library/PrivateFrameworks/LiveType.framework/Versions/A/LiveType
    0x1aeca000 - 0x1af3cfff +com.DivXInc.DivXDecoder 6.4.0 (6.4.0) /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x1af4a000 - 0x1af90fc3 com.apple.motion.component 1.0 (1.0) <77973a134e79426f853f2318e52a2207> /Library/QuickTime/Motion.component/Contents/MacOS/Motion
    0x8fe00000 - 0x8fe2db43 dyld 97.1 (???) <b0ea42e222a36a182e4ea30c3d71ce68> /usr/lib/dyld
    0x90003000 - 0x90021fff libresolv.9.dylib ??? (???) <36c871d5da9b49bb5bcf0449833d1dc5> /usr/lib/libresolv.9.dylib
    0x90022000 - 0x9032afff com.apple.HIToolbox 1.5.5 (???) <b17766e3d8800a73f534c41f624f5ac4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x9032b000 - 0x9037afff com.apple.QuickLookUIFramework 1.3.1 (170.9) /System/Library/PrivateFrameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x9037b000 - 0x903d8ffb libstdc++.6.dylib ??? (???) <f75e5133d72769de5ce6c06153fc65f6> /usr/lib/libstdc++.6.dylib
    0x903d9000 - 0x903f4ffb libPng.dylib ??? (???) <e92ab921713f1c28bc639d68683b8ee3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x903f5000 - 0x903f7ffd com.apple.CrashReporterSupport 10.5.7 (161) <dc6dfd99e332f53791f5c0a4e6889cb3> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x903f8000 - 0x90408fff com.apple.speech.synthesis.framework 3.7.1 (3.7.1) <7bd1ec22c47e62a11b34d7ba66606e2e> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x90409000 - 0x905c5ff3 com.apple.QuartzComposer 2.1 (106.13) <f487aaca8ebdc7e334e2c79cebd8da66> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x905d3000 - 0x905fcfff libcups.2.dylib ??? (???) <1b0435164b9dc6c773d0b1f24701e554> /usr/lib/libcups.2.dylib
    0x905fd000 - 0x90615ff7 com.apple.CoreVideo 1.6.0 (20.0) <dd60118bac9aefaf88d9ab44558f05c4> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x90616000 - 0x90622ff9 com.apple.helpdata 1.0.1 (14.2) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x90623000 - 0x9062cfff com.apple.speech.recognition.framework 3.7.24 (3.7.24) <da2d8411921a3fd8bc898dc753b7f3ee> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x90662000 - 0x906dcff8 com.apple.print.framework.PrintCore 5.5.4 (245.6) <03d0585059c20cb0bde5e000438c49e1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x906dd000 - 0x90708fe7 libauto.dylib ??? (???) <a64961ed20db64f0f439bfbc6f962bf9> /usr/lib/libauto.dylib
    0x90709000 - 0x90aa6fef com.apple.QuartzCore 1.5.8 (1.5.8) <a28fa54346a9f9d5b3bef076a1ee0fcf> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x90aa7000 - 0x90aa7ffd com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x90aa8000 - 0x90b25feb com.apple.audio.CoreAudio 3.1.2 (3.1.2) <5a4e6329f8dbca5dcd70924525afd24a> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x90b26000 - 0x90b4ffff com.apple.CoreMediaPrivate 15.0 (15.0) /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x90b50000 - 0x90f60fef libBLAS.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x90f61000 - 0x910e0fff com.apple.AddressBook.framework 4.1.2 (700) <41a71b250286dc8d8bcee30784b894c8> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x910e1000 - 0x91105fff libxslt.1.dylib ??? (???) <ec4c269815bab8e7211cb8fe9df3a9a3> /usr/lib/libxslt.1.dylib
    0x91106000 - 0x91106ffc com.apple.audio.units.AudioUnit 1.5 (1.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x9116e000 - 0x9116effd com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x9116f000 - 0x911affff com.apple.CoreMediaIOServicesPrivate 20.0 (20.0) /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0x911b0000 - 0x911f2fef com.apple.NavigationServices 3.5.2 (163) <26eeb5a205f749aad83d5dac0330c41f> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x911f3000 - 0x911f3ffe com.apple.MonitorPanelFramework 1.2.0 (1.2.0) <1f4c10fcc17187a6f106e0a0be8236b0> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x911f4000 - 0x91327fef com.apple.CoreFoundation 6.5.6 (476.18) <2d52bab73660117571bd6486dc318f8e> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x91328000 - 0x91461ff7 libicucore.A.dylib ??? (???) <cac059ebdac7d9a63ee0f7a648c9f6cf> /usr/lib/libicucore.A.dylib
    0x91462000 - 0x914f5ff3 com.apple.ApplicationServices.ATS 3.7 (???) <a535fc4982d3acff6530ec25c402e679> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x914f6000 - 0x915d6fff libobjc.A.dylib ??? (???) <bba0c22add60c7724e259ab28de8953e> /usr/lib/libobjc.A.dylib
    0x915d7000 - 0x918b1ff3 com.apple.CoreServices.CarbonCore 786.11 (786.13) <9e2d85d52e5e2951aa4dd53c48ccc52f> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x918b2000 - 0x918c2ffc com.apple.LangAnalysis 1.6.4 (1.6.4) <5c122260176a6bcd9da8c7f8bb567b34> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x918c3000 - 0x9194fff7 com.apple.LaunchServices 290.3 (290.6) <bdba267184df88bd5b8e2116ea903872> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x91950000 - 0x91a29ff7 com.apple.WebKit 5530 (5530.17) <a7127d7d7f22d74df35aaa16b776912c> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x91a2a000 - 0x91d50fe2 com.apple.QuickTime 7.6.2 (1327) <3754e41d846b7948f96c9ec4c690b520> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x91d51000 - 0x91d9bfe1 com.apple.securityinterface 3.0.2 (36684) <7109034b9898a11506fc67e887e69d2b> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x91d9c000 - 0x91e43feb com.apple.QD 3.11.56 (???) <a94d0f5438b730e88e5efdb233295c52> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x91e44000 - 0x91fabff3 libSystem.B.dylib ??? (???) <b47c8e6e45aef620730710a732bf1930> /usr/lib/libSystem.B.dylib
    0x91fac000 - 0x92036fe3 com.apple.DesktopServices 1.4.8 (1.4.8) <3065de6531ce839c7cb5b6dd70e03f4f> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x920af000 - 0x920b1ff5 libRadiance.dylib ??? (???) <6d980a95dd5a8448e2846568cc1458cd> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x920b2000 - 0x920b5fff com.apple.help 1.1 (36) <1a25a8fbb49a830efb31d5c0a52939cd> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x92124000 - 0x92143ffa libJPEG.dylib ??? (???) <348a77547e3646c80704ddfd88f6e008> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x92144000 - 0x927e4fe3 com.apple.CoreGraphics 1.409.3 (???) <25dceb14af3455b768f56e8765ecf3ca> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x927f1000 - 0x92937ff7 com.apple.ImageIO.framework 2.0.4 (2.0.4) <c0d51a3b27fe6977d8db45c84c7ff46b> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x92ba1000 - 0x92ba8fe9 libgcc_s.1.dylib ??? (???) <e280ddf3f5fb3049e674edcb109f389a> /usr/lib/libgcc_s.1.dylib
    0x92ba9000 - 0x92c59fff edu.mit.Kerberos 6.0.13 (6.0.13) <804bd1b3f08fb57396781f012006367c> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x92c5a000 - 0x92c5affe com.apple.quartzframework 1.5 (1.5) <6865aa0aeaa584b5a54d43f2f21d6c08> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x92c65000 - 0x92c92feb libvDSP.dylib ??? (???) <e89461ed03200fb3c0304e62e14a42ed> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x92d71000 - 0x92ef8feb com.apple.JavaScriptCore 5530 (5530.17) <687d2f3063f4d922f233623d8f219822> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x92f36000 - 0x92f5afeb libssl.0.9.7.dylib ??? (???) <8084593b773bec8f2b9614fd23c5ed73> /usr/lib/libssl.0.9.7.dylib
    0x92f5b000 - 0x92facff7 com.apple.HIServices 1.7.0 (???) <74c3d19e3981d6999630ec516681f079> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x92fad000 - 0x930ffff3 com.apple.audio.toolbox.AudioToolbox 1.5.2 (1.5.2) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x93100000 - 0x93136fef libtidy.A.dylib ??? (???) <7b9fc90dc0d50da27a24f6f84ccdd7b7> /usr/lib/libtidy.A.dylib
    0x93137000 - 0x931e9ffb libcrypto.0.9.7.dylib ??? (???) <9d714c92872a93dd127ea8556b2c8945> /usr/lib/libcrypto.0.9.7.dylib
    0x931ea000 - 0x931f6ffe libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x931f7000 - 0x932b1fe3 com.apple.CoreServices.OSServices 227 (227) <30cebcb68b1b571df7d77474e0c31556> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x932b2000 - 0x932b2ffd com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x933d8000 - 0x933dffff com.apple.agl 3.0.9 (AGL-3.0.9) <2526a28a2fc087c09f9238dd03684513> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x933e0000 - 0x933e5fff com.apple.DisplayServicesFW 2.0.2 (2.0.2) <b42b339d6b18d416b81c2d0eaa4f36b9> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x933e6000 - 0x933e6ffb com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x933e7000 - 0x933f6fff libsasl2.2.dylib ??? (???) <c0bb658cd951bbe8882244fc5db4617b> /usr/lib/libsasl2.2.dylib
    0x933f7000 - 0x93436fef libTIFF.dylib ??? (???) <1b5ab7f4bb5251ce1488dd0b1e21ad39> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x93437000 - 0x934c3ff7 com.apple.framework.IOKit 1.5.2 (???) <97b9f9d584f48891377f0481b9104434> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x934c4000 - 0x934f6fff com.apple.LDAPFramework 1.4.5 (110) <9ece7a1930b00f7b20ae9ef0759270cf> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x934f7000 - 0x934f8ffc libffi.dylib ??? (???) <eaf10b99a3fbc4920b175809407466c0> /usr/lib/libffi.dylib
    0x934f9000 - 0x936caffb com.apple.security 5.0.5 (36371) <c13e0bb1acfdcf94be4d3ee118ef190e> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x936ee000 - 0x9371fffb com.apple.quartzfilters 1.5.0 (1.5.0) <92b4f39479fdcabae0d8f53febd22fad> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x93723000 - 0x93723ff8 com.apple.Cocoa 6.5 (???) <a1bc9247cf65c20f1a44d0973cbe649c> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93724000 - 0x937a3ff5 com.apple.SearchKit 1.2.1 (1.2.1) <4ebff1a287bd6686107fa50d5a21b000> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x937a4000 - 0x93837fff com.apple.ink.framework 101.3 (86) <d4c85b5cafa8027fff042b84a8be71dc> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x93838000 - 0x93879fe7 libRIP.A.dylib ??? (???) <69bd09fcd8d8b235cee7a405290d6818> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x9387a000 - 0x938b1fff com.apple.SystemConfiguration 1.9.2 (1.9.2) <cfd64ded4da1064ce316243fd425d5a4> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x938b2000 - 0x938e1fe3 com.apple.AE 402.3 (402.3) <b13bfda0ad9314922ee37c0d018d7de9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x938e2000 - 0x93a71fe7 com.apple.CoreAUC 3.07.3 (3.07.3) <f98585dd6479989bf85beae472aa3656> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x93a72000 - 0x93a76fff libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0x93a77000 - 0x93a7effe libbsm.dylib ??? (???) <fa7ae5f1a621d9b69e7e18747c9405fb> /usr/lib/libbsm.dylib
    0x93a7f000 - 0x93a97fff com.apple.openscripting 1.2.8 (???) <54ab21172b8b3caa601dde44872a9c0d> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x93a98000 - 0x93aa2feb com.apple.audio.SoundManager 3.9.2 (3.9.2) <df077a8048afc3075c6f2d9e7780e78e> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x93aa3000 - 0x93f74fbe libGLProgrammability.dylib ??? (???) <7f18294a7bd0b6afe4319f29187fc70d> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x93f75000 - 0x93f7afff com.apple.CommonPanels 1.2.4 (85) <c135f02edd6b2e2864311e0b9d08a98d> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x93f7b000 - 0x94063ff3 com.apple.CoreData 100.2 (186.1) <8fb61e1714a4b8d587ce97605ad32547> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x94064000 - 0x94068fff libGIF.dylib ??? (???) <713b902cb8f54365b1c78ff3507494a7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x94069000 - 0x94078ffe com.apple.DSObjCWrappers.Framework 1.3 (1.3) <47c451a0ea1fd2ebd6a192ecdc3f3867> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x941e7000 - 0x942aeff2 com.apple.vImage 3.0 (3.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x942af000 - 0x942bcfe7 com.apple.opengl 1.5.10 (1.5.10) <5a2813f80c9441170cc1ab8a3dac5038> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x942bd000 - 0x94abbfef com.apple.AppKit 6.5.7 (949.46) <a80f8cb62f6bdcb3bed3c8675d55881d> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x94bb0000 - 0x94c0cff7 com.apple.htmlrendering 68 (1.1.3) <1c5c0c417891b920dfe139385fc6c155> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x94c0d000 - 0x94cb0ff7 com.apple.QuickTimeImporters.component 7.6.2 (1327) /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x94cb1000 - 0x94cb6fff com.apple.backup.framework 1.0 (1.0) /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x94cb7000 - 0x94d98ff7 libxml2.2.dylib ??? (???) <2f6b294896866822330a8888b7f53b75> /usr/lib/libxml2.2.dylib
    0x94d99000 - 0x94d9bfff com.apple.securityhi 3.0 (30817) <40562b85d99118354c974e76c32fa6fb> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x94d9c000 - 0x94da7fe7 libCSync.A.dylib ??? (???) <9e3544fe087bb4dc760b7afe0850dd6c> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x94da8000 - 0x94da8ff8 com.apple.ApplicationServices 34 (34) <ee7bdf593da050bb30c7a1fc446eb8a6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x94da9000 - 0x94de7fff libGLImage.dylib ??? (???) <a6425aeb77f4da13212ac75df57b056d> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x94de8000 - 0x94e6fff7 libsqlite3.0.dylib ??? (???) <3334ea5af7a911637413334154bb4100> /usr/lib/libsqlite3.0.dylib
    0x94e70000 - 0x94e98ff7 com.apple.shortcut 1.0.1 (1.0) <131202e7766e327d02d55c0f5fc44ad7> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x94e99000 - 0x95729fff com.apple.WebCore 5530 (5530.17) <9868576f7495c85d5f4513dd4e0f9b95> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x9572a000 - 0x9579cfff com.apple.PDFKit 2.1.2 (2.1.2) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x9579d000 - 0x958d5fe7 com.apple.imageKit 1.0.2 (1.0) <f36b085e6878145ea194d53fad37a8e8> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x958d6000 - 0x95910ffe com.apple.securityfoundation 3.0.2 (36131) <39663c9b6f1a09d0566305d9f87cfc91> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x95911000 - 0x959c8ff3 com.apple.QTKit 7.6.2 (1327) /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x959c9000 - 0x959deffb com.apple.ImageCapture 5.0.2 (5.0.2) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x959df000 - 0x959e7fff com.apple.DiskArbitration 2.2.1 (2.2.1) <d97688958e0b1fdcd4747088bdf1962a> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x959e8000 - 0x959eefff com.apple.print.framework.Print 218.0.3 (220.2) <5b7f4ef7c2df36aff9605377775781e4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x959ef000 - 0x95a55ffb com.apple.ISSupport 1.8 (38.3) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x95aa8000 - 0x95aa8ffa com.apple.CoreServices 32 (32) <373d6a888f9204641f313bc6070ae065> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x95b1c000 - 0x95d98fe7 com.apple.Foundation 6.5.8 (677.24) <aa84b0383891378c348ffa4a94853082> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x95d99000 - 0x95da7ffd libz.1.dylib ??? (???) <a98b3b221a72b54faf73ded3dd7000e5> /usr/lib/libz.1.dylib
    0x95da8000 - 0x95e4cfec com.apple.CFNetwork 438.10 (438.12) <fde64bbb20532794396fb21911ccaa98> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x95e4d000 - 0x95e6bff3 com.apple.DirectoryService.Framework 3.5.6 (3.5.6) <daa1307737197c7757f44f16370249dc> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x95e6c000 - 0x95eb5fef com.apple.Metadata 10.5.2 (398.25) <bf7f665f6ad79df3a8355b41fa1ed207> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x95eb6000 - 0x95f81fff com.apple.ColorSync 4.5.1 (4.5.1) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x95f82000 - 0x95fdcff7 com.apple.CoreText 2.0.4 (???) <f0b6c1d4f40bd21505097f0255abfead> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x95fdd000 - 0x95fddfff com.apple.Carbon 136 (136) <4177916bbf70e0ddc446f94001d54c95> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x95fde000 - 0x9605bfef libvMisc.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x96061000 - 0x9607eff7 com.apple.QuickLookFramework 1.3.1 (170.9) /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x9607f000 - 0x9705aff6 com.apple.QuickTimeComponents.component 7.6.2 (1327) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x9705b000 - 0x97062ff7 libCGATS.A.dylib ??? (???) <211348279493364e9920adc86484cedd> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x97063000 - 0x97421fea libLAPACK.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x97422000 - 0x9745cfe7 com.apple.coreui 1.2 (62) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x9745d000 - 0x974b6ff7 libGLU.dylib ??? (???) <a3b9be30100a25a6cd3ad109892f52b7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x974b7000 - 0x974cdfff com.apple.DictionaryServices 1.0.0 (1.0.0) <7d20b8d1fb238c3e71d0fa6fda18c4f7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0xba900000 - 0xba916fff libJapaneseConverter.dylib ??? (???) <8467dfa15de3658db2bd72670166ca93> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0xbab00000 - 0xbab21fe2 libKoreanConverter.dylib ??? (???) <1de8124131adeee8e96c4d92413024e1> /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
    0xfffe8000 - 0xfffebfff libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib
    0xffff0000 - 0xffff1780 libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib

  • Can anyone help me with Error -3259? PLEASE :((

    Re: My home button isn't working well so i went to my service provider to ask about the problem. They advised me to update my iPhone to iOS 5 but the problem is no matter what i do, there is always an error. What should I do?
    my home button isn't working well so i went to my service prodiver to ask about the problem. They advised me to update my iPhone 4.2.1 software to iOS 5.1, since there is a setting that i can use where i just have to touch my screen to go to the home screen, or somewhat like that. but i have been trying to update my software to iOS 5.1, but Erroe -3259 always occurs. and now, i tried the advised of some in the community, still it won't work. for the nth time. i don't know what to do already, i cant use my iPhone 4 because of the home screen button. is there any other way to solve this problem? please. thank you.

    the only way I found was to map other buttons to cover for the iphone's home button, I was using a friends iphone for a while as he always like me to test stuff out so he can then use me as free tech support and now I'm herer XD
    anyway after checking with him I had to Jailbrea his phone and installed activator, then using that I was  able to get the home fuction when both volume buttons were pressed.
    1. You need to jailbreak first don't worry not as scary as it sounds in fact quite easy, download a program redsn0w, ( http://blog.iphone-dev.org/tagged/redsn0w ) once you run  it you need to put your phone into DFU mode, make sure itunes is closed before trying this.
    2. (1. turn off iphone while plugged into computer, then hold the sleep button count to three 2. then hold the home button whiile still holding the sleep button, count to 10 3. release the sleep button but keep home button,) you phone should now be in DFU mode, while in this mode run redsn0w it will guide you through the process.
    3. Once jailbroken you will find a new icon cydia on the springboard (homescreen) press on it and it'll as what kind of person you are, I sugggest user for first time. then it'll close just restart and it'll show you a normal screen, down in bottom right is the serch tab, tap that and it'll bring up search, tap "Activator", tap on the activator at the top of the list then tap install and comfirm
    4. once installed you'll find a new option called activator, tap it to open it here you can map and command to button's, I suggest tapping anywhere then scroll down to Volume button's->both press->home button
    5. then you can ust press both volume button's anytime and it'll response just like home button, even if you double press, doesn't work as a hold so can use voice control but it'll work for everthing else and even still work as volume buttons

  • Could anyone help me with Adobe Application Manager please? I write my approved serial number but can´t go further?

    I bought a Student version CS5 back in 2010 for my studies and it worked wonderfully until last week. Now when I try to open any of the Adobe programs, it takes me to Adobe Application Manager and asks for me to provide my serial number. When I write it, it´s approved but it still does not allow me to open any of the Adobe programs. Instead, it asks me again for the serial number. I called support and they confirmed my serial number is correct but they do not deal with CS5 over the phone anymore. Could anyone kindly help me through here please? Many thanks in advance.

    When I try to open any Adobe program, "Adobe Creative Suite 5 Design Standard - Adobe Software License Agreement" pops up. I press "Agree" and then it takes me to the next part: "Provide A Serial Number" because my trial had expired. I had never agreed to a trial back when I bought the CS5 package because I had the package, of course. And I have never had any troubles/messages to access my Adobe programs until last week. I called Adobe to confirm my serial number and it is correct but then the person could not help me further because they do not deal with CS5 over the phone, hence asking through here. Once I write the serial number, I get a green tick saying that "This serial number will be used for: Adobe Creative Suite 5 Design Standard". I then press "Complete" and it takes me all the way back to the "Adobe Software License Agreement". It has been this vicious circle over and over. I unistalled it, then installed it again various times using my serial number and ID, I don´t know what else to do and everyone I call they can not help me for some reason. So thank you very much for taking your time in helping me out.

  • Help me with a simple CMR - please!!

    Hi!
    Please Im pretty new to CMR and appreciate if you could help me answer a simple question.
    Database model:
    WriterTbl
    ID___ Name
    1____RodJohnson
    2____PankajKumar
    BookTbl
    FK___Name
    1____J2EE-DesignAndDevelopment
    1____ProfessionalJSP
    2____J2EESecurity
    Question:
    I ve two CMP entities: WriterBean and BookBean
    I ve set the relations between Writer and Books, and it works as far as a writer only has one book.
    That because I set the FK also as a PK to the BookBean. And when I try to create next book for a writer it fails with duplicate-exception, logicaly.
    Can I solve this without any need of specifing a primary key for books at all?
    How is CMP handling no-pk entity and is relations working without any pk?
    Do EJB vendors manage no pk ejbs? what about ejb restrictions.
    I ve read that there must be a primary key, but not necessery a database field - HOW? could you please explain!
    Please this is very urgent and I Thank you very much!!

    Hi!
    Please Im pretty new to CMR and appreciate if you
    could help me answer a simple question.
    Database model:
    WriterTbl
    ID___ Name
    1____RodJohnson
    2____PankajKumar
    BookTbl
    FK___Name
    1____J2EE-DesignAndDevelopment
    1____ProfessionalJSP
    2____J2EESecurity
    Question:
    I ve two CMP entities: WriterBean and BookBean
    I ve set the relations between Writer and Books, and
    it works as far as a writer only has one book.
    That because I set the FK also as a PK to the
    BookBean. And when I try to create next book for a
    writer it fails with duplicate-exception, logicaly.
    Can I solve this without any need of specifing a
    primary key for books at all?I dont see how. In your AS you would have had to specify either a primary key or primary class or unknown Object as primary key.
    How is CMP handling no-pk entity and is relations
    working without any pk?Using s1as l have found out that l if you do not specify a primary key on creation of entity bean, the ejbCreate returns null as the primary key which causes an EJBException.
    Why? Cos I think a primary key has to be returned at the same time as the handle to the entity bean is stored in the Context. Why it would not insert the data first then request a primary key l dont know. I must say that this happens when you try to use autoincrement in the primary key column.
    Do EJB vendors manage no pk ejbs? what about ejb
    restrictions.
    Reading the specification literature gives the impression that they do, but practice is another thing entirely.
    I ve read that there must be a primary key, but not
    necessery a database field - HOW? could you please
    explain!
    That the theory. When you find the answer to HOW(?), please let us know.
    Derrick
    Please this is very urgent and I Thank you very much!!

  • Help me with my audio, pretty please

    Okay, I have a iMac G5 that I believe is up to date (when I check for updates, it says that everything is up to date).
    The issue is with my audio. Sometimes. Movies work fine, music works fine, .avi files work. But .wmv, .mpg, .mpeg, and flash (youtube uses flash, right?) don't work though. I tried reinstalling flash player, quicktime, windows media player and even Mozilla firefox, and the issue still persists.
    Thanks for any help you may be able to provide.
    P.S. My speakers are turned on.

    Welcome to Apple Discussions!
    Sounds like (pun not intended) you have an issue with Audio Midi resetting itself after an update. This article explains how that happens:
    http://docs.info.apple.com/article.html?artnum=300832

  • Help needed with so-called "updates"

    I just now downloaded the "latest" adobe flash update, as prompted by Adobe.  Now I discover that the version downloaded on my computer is NOT the latest update.  This takes 45 min to do - what's up with this?  Why did it not give me the latest update?????  I have work to do on the computer and just cannot continue to take 45 min off to update something that isn't an update.

    This particular forum (sharing and storage) was created to help those transitioning from Photoshop.com to Adobe Revel. I am moving your post to the proper forum so that it can get proper attention.
    We also have many other forums relating to other Adobe products at: http://forums.adobe.com.

Maybe you are looking for

  • Open and print pdf file through form 6i

    I want to run and print a pdf file through the form. Any suggestion please...... thanks in advance.... ifti

  • What are the uses of portal

    Hi, Iam new to Enterprise portal. Can anybody tel me what are the uses of portal correct me if iam wrong " EP can be used from anywhere where the internet conncetion is available and anybody who is authorised to view the content" Thanks in advance SA

  • Documents will not open up in Preview

    I cannot print labels, statements, anything that previously worked fine to print from Preview. It would automatically open, I never had to select anything. The window flashes but never opens. When I go to applications it is there but still won't open

  • CRM Survey, how to retrieve answers

    Hi, I was wondering if there is someone out there knowing how to retrieve answers from a survey question with pre defined answers. I am using function module CRM_SVY_VALUES_READ to get the XML And then the class cl_crm_svy_values and the methods valu

  • Downloaded software updates-lost Adobe flash, can't get it back. What do I do now? (10.6.8)

    (10.6.8) Downloaded software updates-lost my Adobe flash, can't get it back. What do I do now?