Text chatting application

we are hopping to develop a text chat by flash sites. can you
help us

Adobe stopped updating those components many years ago and stopped including them in the Flash IDE install a couple of versions back. You now have to either buy or build your own. This is a good starting point here for building one: http://www.fmsguru.com/showtutorial.cfm?tutorialID=18

Similar Messages

  • Text chat application - General Guidelines

    Hello.
    Could someone point out the general guidelines when building a Text Chat application please?
    How should it be done? HTTPRequests refreshed over periods of time (3 seconds etc) or sockets. If the latter, could you please detail.
    How to deal with multiple TABs being open or multiple instances of the same browser or different browsers?
    Anything.
    Thank you.

    When you say iPhone app - do you mean AIR app running using AIR runtime or do you mean Native iOS App?

  • How to create private text chat with fms4(RTMFP)

    Hi,
    I am creating a simple text chat application but into the application a private chat functionality is available and i am not able to handle private chat functionality in fms4 (RTMFP) but it is working fine in (RTMP) connection and also user list area is available how will i  insert user name into the user list area text box and if any user will click user name then person will be able to do private chat.
    Thanks
    Sushil

    Here is the correct syntax :
    private static JEditorPane constructPane(String text, int normWidth, int normHeight, boolean rightAlign, boolean italic,boolean isWhite) {
              JEditorPane pane = new JEditorPane();
              pane.setEditable(false);
              pane.setContentType("text/html");
              pane.setText(
                   "<html><head></head><body>"
                   + (italic?"<i>":"")
                   + "<table><COLGROUP><COL width=\""+normWidth+"\"><THREAD><tr><td valign=\"top\" align="+(rightAlign?"\"right\"":"\"left\"")+">"
                   + text+"</td></tr></table>"
                   + (italic?"</i>":"")
                   + "</body></html>");
              pane.setSize(normWidth,normHeight);
              if(isWhite)
                   pane.setBorder(BorderFactory.createCompoundBorder(BorderFactory.createMatteBorder(1,0,1,0,Color.WHITE),BorderFactory.createEmptyBorder(0,1,0,1)));
                   pane.setForeground(Color.WHITE);
              else {
                   pane.setBorder(BorderFactory.createCompoundBorder(BorderFactory.createMatteBorder(1,0,1,0,Color.BLACK),BorderFactory.createEmptyBorder(0,1,0,1)));
                   pane.setForeground(Color.BLACK);
              return pane;
         }

  • Urgent need of help with a chat application!

    Hi,
    I'm writing a Chat Application and I want to add Emoticon, I did so by adding buttons but I don't know how to send the gif to my JTextField and to my JTextArea.
    Here is part of my code can someone can help me PLEASE!!!
    JPanel chatPane = new JPanel(new BorderLayout());
    JPanel emoticon = new JPanel(new GridLayout(2, 5));
    b1 = new JButton (sourrire);
    b1.setToolTipText("Un Sourire");
    // b1.addActionListener();
    emoticon.add(b1);
    b2 = new JButton (gsourrire);
    b2.setToolTipText("Un Grand Sourire");
    // b2.addActionListener();
    emoticon.add(b2);
    b3 = new JButton (triste);
    b3.setToolTipText("Triste");
    // b3.addActionListener();
    emoticon.add(b3);
    b4 = new JButton (grimace);
    b4.setToolTipText("Grimace");
    // b4.addActionListener();
    emoticon.add(b4);
    b5 = new JButton (pleure);
    b5.setToolTipText("Pleure");
    // b5.addActionListener();
    emoticon.add(b5);
    b6 = new JButton (bec);
    b6.setToolTipText("Un bec");
    // b6.addActionListener();
    emoticon.add(b6);
    b7 = new JButton (coeur);
    b7.setToolTipText("Un coeur pour toi");
    // b7.addActionListener();
    emoticon.add(b7);
    b8 = new JButton (fache);
    b8.setToolTipText("Fache");
    // b8.addActionListener();
    emoticon.add(b8);
    b9 = new JButton (lunettes);
    b9.setToolTipText("Je suis Cool");
    // b9.addActionListener();
    emoticon.add(b9);
    b10 = new JButton (clinoeil);
    b10.setToolTipText("Clin d'Oeil");
    //b10.addActionListener(new ActionAdapter2());
    emoticon.add(b10);
    Thanks a lot!
    Isabelle

    Hi anoopjain13
    what I did is that each button is an IconImage and I was trying to send the Icon to the textfield.
    here is the complete code of my chat, you'll understand better what I tried to do.
    //Naziha Berrassil et Isabelle Gosselin
    //Travail Pratique #1
    //remis � Said Senhaji
    //Developpement d'une application CHAT
    //package chatv2.a
    import java.lang.*;
    import java.util.*;
    import java.io.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.net.*;
    public class TCPChat2a implements Runnable {
    // Constantes de l'etat de la connection
    public final static int NULL = 0;
    public final static int DISCONNECTED = 1;
    public final static int DISCONNECTING = 2;
    public final static int BEGIN_CONNECT = 3;
    public final static int CONNECTED = 4;
    // Declaration d'un tableau de chaines
    public final static String statusMessages[] = {
    " Erreur! Aucune connexion possible!", " Deconnexion",
    " Deconnexion en cours...", " Connexion en cours...", " Connexion"
    //Instentiation de la classe
    public final static TCPChat2a tcpObj = new TCPChat2a();
    // Indique la fin d'une session
    public final static String END_CHAT_SESSION =
    new Character((char)0).toString();
    // Informations sur l'etat de la connexion
    public static String hostIP = "localhost";
    public static String user = "";
    public static String s1;
    public static int port = 1234;
    public static int connectionStatus = DISCONNECTED;
    public static boolean isHost = true;
    public static String statusString = statusMessages[connectionStatus];
    public static StringBuffer toAppend = new StringBuffer("");
    public static StringBuffer toSend = new StringBuffer("");
    // Declaration des composantes GUI et initialisation
    public final static ImageIcon sourrire = new ImageIcon ("icons/sourrire.gif");
    public static JButton b1;
    public final static ImageIcon gsourrire = new ImageIcon ("icons/grand_sourrire.gif");
    public static JButton b2;
    public final static ImageIcon triste = new ImageIcon ("icons/triste.gif");
    public static JButton b3;
    public final static ImageIcon pleure = new ImageIcon ("icons/pleure.gif");
    public static JButton b4;
    public final static ImageIcon coeur = new ImageIcon ("icons/coeur.gif");
    public static JButton b5;
    public final static ImageIcon grimace = new ImageIcon ("icons/grimace.gif");
    public static JButton b6;
    public final static ImageIcon lunettes = new ImageIcon ("icons/lunettes.gif");
    public static JButton b7;
    public final static ImageIcon fache = new ImageIcon ("icons/fache.gif");
    public static JButton b8;
    public final static ImageIcon bec = new ImageIcon ("icons/bec.gif");
    public static JButton b9;
    public final static ImageIcon clinoeil = new ImageIcon ("icons/clinoeil.gif");
    public static JButton b10;
    public static JFrame mainFrame = null;
    public static JTextArea chatText = null;
    public static JTextField chatLine = null;
    public static JPanel statusBar = null;
    public static JLabel statusField = null;
    public static JTextField statusColor = null;
    public static JTextField ipField = null;
    public static JTextField username = null;
    public static JTextField portField = null;
    public static JRadioButton hostOption = null;
    public static JRadioButton guestOption = null;
    public static JButton connectButton = null;
    public static JButton disconnectButton = null;
    // Declaration des composantes TCP
    public static ServerSocket hostServer = null;
    public static Socket socket = null;
    public static BufferedReader in = null;
    public static PrintWriter out = null;
    //Methode qui retourne le premier pannel(optionsPane),ce dernier
    //se compose de 5 panneaux
    private static JPanel initOptionsPane() {
    //pannel pane qui sera ajout� au pannel optionsPane
    JPanel pane = null;
    //initiation de la classe ActionAdapteur qui implemente ActionListner
    ActionAdapter buttonListener = null;
    // Creation du pannel optionsPane
    JPanel optionsPane = new JPanel(new GridLayout(5, 1));
    // 1er pannel pane pour label et textfield de l'adresse IP
    pane = new JPanel(new FlowLayout(FlowLayout.RIGHT));
    pane.add(new JLabel("Serveur IP:"));
    ipField = new JTextField(10);
    ipField.setBackground(new Color(0.98f, 0.97f, 0.85f));
    ipField.setText(hostIP);
    ipField.setEnabled(false);
    //evenement generer par Component avec la methode addFocusListener
    //en cas d'obtention ou perte du focus par un composant
    ipField.addFocusListener(new FocusAdapter() {
    public void focusLost(FocusEvent e) {
    ipField.selectAll();
    //Editable seulement en mode deconnexion
    if (connectionStatus != DISCONNECTED) {
    changeStatusNTS(NULL, true);
    else {
    hostIP = ipField.getText();
    pane.add(ipField);
    optionsPane.add(pane);
    // 2eme pannel pane pour label et textfield du port
    pane = new JPanel(new FlowLayout(FlowLayout.RIGHT));
    pane.add(new JLabel("Port:"));
    portField = new JTextField(10);
    portField.setBackground(new Color(0.98f, 0.97f, 0.85f));
    portField.setEditable(true);
    portField.setText((new Integer(port)).toString());
    portField.addFocusListener(new FocusAdapter() {
    public void focusLost(FocusEvent e) {
    //Textfield du port modifiable si on est en mode deconnexion
    if (connectionStatus != DISCONNECTED) {
    changeStatusNTS(NULL, true);
    else {
    int temp;
    try {
    temp = Integer.parseInt(portField.getText());
    port = temp;
    catch (NumberFormatException nfe) {
    portField.setText((new Integer(port)).toString());
    mainFrame.repaint();
    pane.add(portField);
    optionsPane.add(pane);
    // 3eme pannel pour label et textfield du nom d'utilisateur
         pane = new JPanel(new FlowLayout(FlowLayout.RIGHT));
              pane.add(new JLabel("Nom: "));
              username = new JTextField(10);
    username.setBackground(new Color(0.98f, 0.97f, 0.85f));
              username.setText(user);
              username.setEnabled(true);
              username.addFocusListener(new FocusAdapter() {
              public void focusLost(FocusEvent e) {
              // username.selectAll();
              // Should be editable only when disconnected
              if (connectionStatus != DISCONNECTED) {
              changeStatusNTS(NULL, true);
              else {
              user = username.getText();
              pane.add(username);
    optionsPane.add(pane);
    // Host/guest option
    buttonListener = new ActionAdapter() {
    public void actionPerformed(ActionEvent e) {
    if (connectionStatus != DISCONNECTED) {
    changeStatusNTS(NULL, true);
    else {
    isHost = e.getActionCommand().equals("host");
    // Cannot supply host IP if host option is chosen
    if (isHost) {
    ipField.setEnabled(false);
    ipField.setText("localhost");
    hostIP = "localhost";
    else {
    ipField.setEnabled(true);
    //creation de boutton groupe radio(serveur et invite)
    ButtonGroup bg = new ButtonGroup();
    hostOption = new JRadioButton("Serveur", true);
    hostOption.setMnemonic(KeyEvent.VK_S);
    hostOption.setActionCommand("host");
    hostOption.addActionListener(buttonListener);
    guestOption = new JRadioButton("Invite", false);
    guestOption.setMnemonic(KeyEvent.VK_I);
    guestOption.setActionCommand("invite");
    guestOption.addActionListener(buttonListener);
    bg.add(hostOption);
    bg.add(guestOption);
    // 4eme pannel pane pour les 2 bouttons radio
    pane = new JPanel(new GridLayout(1, 2));
    pane.add(hostOption);
    pane.add(guestOption);
    optionsPane.add(pane);
    // 5eme pannel buttonPane pour les bouttons de connexion et deconnexion
    JPanel buttonPane = new JPanel(new GridLayout(1, 2));
    buttonListener = new ActionAdapter() {
    public void actionPerformed(ActionEvent e) {
    // requete pou debut d'une connexion
    if (e.getActionCommand().equals("connect")) {
    changeStatusNTS(BEGIN_CONNECT, true);
    // Deconnexion
    else {
    changeStatusNTS(DISCONNECTING, true);
    //creation des bouttons dans le pannel et l'ajout au premier pannel
    //(optionsPane)
    connectButton = new JButton("Connexion");
    connectButton.setMnemonic(KeyEvent.VK_C);
    connectButton.setActionCommand("connect");
    connectButton.addActionListener(buttonListener);
    connectButton.setEnabled(true);
    disconnectButton = new JButton("Deconnexion");
    disconnectButton.setMnemonic(KeyEvent.VK_D);
    disconnectButton.setActionCommand("disconnect");
    disconnectButton.addActionListener(buttonListener);
    disconnectButton.setEnabled(false);
    buttonPane.add(connectButton);
    buttonPane.add(disconnectButton);
    optionsPane.add(buttonPane);
    return optionsPane;
    // Initialisation de toutes les composantes GUI et affichage du frame
    private static void initGUI() {
    // Configuration du status bar
    // cr�ation d'un autre pannel statusBar qui se compose d'un petit carr�
    // color� et un label indiquant le mode de connexion
    statusField = new JLabel(); //Label indiquant l'�tat de la connexion
    statusField.setText(statusMessages[DISCONNECTED]);
    statusColor = new JTextField(1); //carr� color� indiquant l'�tat de la connection grace a des couleurs
    statusColor.setBackground(Color.red);
    statusColor.setEditable(false);
    statusBar = new JPanel(new BorderLayout());
    statusBar.add(statusColor, BorderLayout.WEST);
    statusBar.add(statusField, BorderLayout.CENTER);
    // Configuration du pannel optionsPane en appelant la methode d'initiation
    // de ce dernier
    JPanel optionsPane = initOptionsPane();
    // Creation et configuration du pannel chatPane qui contient un
    // textarea au centre avec une barre defilante verticale et un textfield
    // au sud pour faire rentrer les messages
    JPanel chatPane = new JPanel(new BorderLayout());
         JPanel emoticon = new JPanel(new GridLayout(2, 5));
    b1 = new JButton (sourrire);
    b1.setToolTipText("Un Sourire");
    // b1.addActionListener();
    emoticon.add(b1);
    b2 = new JButton (gsourrire);
    b2.setToolTipText("Un Grand Sourire");
    // b2.addActionListener();
    emoticon.add(b2);
    b3 = new JButton (triste);
    b3.setToolTipText("Triste");
    // b3.addActionListener();
    emoticon.add(b3);
    b4 = new JButton (grimace);
    b4.setToolTipText("Grimace");
    // b4.addActionListener();
    emoticon.add(b4);
    b5 = new JButton (pleure);
    b5.setToolTipText("Pleure");
    // b5.addActionListener();
    emoticon.add(b5);
    b6 = new JButton (bec);
    b6.setToolTipText("Un bec");
    // b6.addActionListener();
    emoticon.add(b6);
    b7 = new JButton (coeur);
    b7.setToolTipText("Un coeur pour toi");
    // b7.addActionListener();
    emoticon.add(b7);
    b8 = new JButton (fache);
    b8.setToolTipText("Fache");
         // b8.addActionListener();
         emoticon.add(b8);
    b9 = new JButton (lunettes);
    b9.setToolTipText("Je suis Cool");
    // b9.addActionListener();
    emoticon.add(b9);
    b10 = new JButton (clinoeil);
    b10.setToolTipText("Clin d'Oeil");
    //b10.addActionListener(new ActionAdapter2());
    emoticon.add(b10);
    emoticon.addActionListener(new ActionAdapter() {
    public void actionPerformed(ActionEvent e) {
                             String image = chatLine.setImage().toString();
                             appendToChatBox(image);
                             chatLine.selectAll();
                             sendString(image)
                             chatLine.setText(" ");
    emoticon.setVisible(true);
    //b1 = setVisible(true);
    chatText = new JTextArea(10, 100);
    chatText.setBackground(new Color(0.98f, 0.97f, 0.85f));
    chatText.setLineWrap(true);
    chatText.setEditable(false);
    chatText.setForeground(Color.blue);
    JScrollPane chatTextPane = new JScrollPane(chatText,
    JScrollPane.VERTICAL_SCROLLBAR_ALWAYS,
    JScrollPane.HORIZONTAL_SCROLLBAR_NEVER);
    chatLine = new JTextField(10);
    chatLine.setBackground(new Color(0.98f, 0.97f, 0.85f));
    chatLine.setForeground(Color.blue);
    chatLine.setEnabled(false);
    chatLine.addActionListener(new ActionAdapter() {
    public void actionPerformed(ActionEvent e) {
    String s = chatLine.getText();
    if (!s.equals("")) {
    appendToChatBox(user=username.getText()+" dit : \n" + s + "\n");
    chatLine.selectAll();
    // Envoi de la chaine entr�e
    sendString(s);
    chatLine.setText("");
    chatPane.add(chatLine, BorderLayout.SOUTH);
    chatPane.add(chatTextPane, BorderLayout.NORTH);
    chatPane.setPreferredSize(new Dimension(300, 300));
         chatPane.add(emoticon, BorderLayout.CENTER);
    // Ajout des pannels dans le pannel principal (mainPane)
    JPanel mainPane = new JPanel(new BorderLayout());
    mainPane.add(statusBar, BorderLayout.SOUTH);
    mainPane.add(optionsPane, BorderLayout.WEST);
    mainPane.add(chatPane, BorderLayout.CENTER);
    // Configuration du frame (mainFrame)
    mainFrame = new JFrame("Chat");
    mainFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    // la m�thode setDefaultCloseOperation(int)provient de la classe javax.swing.JDialog
         // Elle specifi l'op�ration qui sera ex�cut�e par d�fault lorsque
         // l'utilisateur initialisera une fermeture de session
    mainFrame.setContentPane(mainPane);
    mainFrame.setSize(mainFrame.getPreferredSize());
         // la m�thode getPreferredSize() provient de la classe java.awt
         // Retourne la grosseur "pr�f�r�e" du container.
    mainFrame.setLocation(200, 200);
    // la m�thode setLocation(double, double) provient de la classe java.awt.Point
         // elle permet de specifiez un emplacement d'un point a des coordonn�es de type Float
    mainFrame.pack();
    // la m�thode pack() provient de la class AWT.Window, elle permet a la fenetre
    // d'�tre ajuster a la grosseur et a la mise en page des sous-composantes de celle-ci
    mainFrame.setVisible(true);
    // Le thread qui permet le changement des composantes GUI pendant le
    // changement de l'etat
    private static void changeStatusTS(int newConnectStatus, boolean noError) {
    // Changer l'etat si valide
    if (newConnectStatus != NULL) {
              connectionStatus = newConnectStatus;
    // S'il n'y a aucunes erreur, afficher le bon message de l'etat
    if (noError) {
    statusString = statusMessages[connectionStatus];
    // Autrement, afficher le message d'erreur
    else {
    statusString = statusMessages[NULL];
    System.out.println("Echec lors de la connexion");
    // Appel a la routine de run()(Runnable interface) sur la gestion des erreurs
    // et la mise a jours des composantes GUI grace au thread
    SwingUtilities.invokeLater(tcpObj);
    // Le changement des composantes GUI sans aucun pendant le
    // changement de l'etat
    private static void changeStatusNTS(int newConnectStatus, boolean noError) {
    // Changer l'etat si valide
    if (newConnectStatus != NULL) {
    connectionStatus = newConnectStatus;
    // S'il n'y a aucunes erreur, afficher le bon message de l'etat
    if (noError) {
    statusString = statusMessages[connectionStatus];
    // Autrement, afficher le message d'erreur
    else {
    statusString = statusMessages[NULL];
    // Appel a la routine de run()(Runnable interface) sur la gestion des erreurs
    // en utilisant le thread
    tcpObj.run();
    // L'ajout au chat box avec l'utilisation du Thread
    private static void appendToChatBox(String s) {
    synchronized (toAppend) {
    toAppend.append(s);
    System.out.println(s);
    // Ajouter le text au "send-buffer"
    private static void sendString(String s) {
    synchronized (toSend) {
    toSend.append(user=username.getText()+ " dit : \n" + s + "\n");
    // Nettoyage pour le debranchement
    private static void cleanUp() {
    try {
    if (hostServer != null) {
    hostServer.close();
    hostServer = null;
    catch (IOException e) { hostServer = null; }
    try {
    if (socket != null) {
    socket.close();
    socket = null;
    catch (IOException e) { socket = null; }
    try {
    if (in != null) {
    in.close();
    in = null;
    catch (IOException e) { in = null; }
    if (out != null) {
    out.close();
    out = null;
    // Verification de l'etat courrant et ajustement de "enable/disable"
    // en fonction de l'etat
    public void run() {
    switch (connectionStatus) {
    case DISCONNECTED:
    connectButton.setEnabled(true);
    disconnectButton.setEnabled(false);
    ipField.setEnabled(true);
    portField.setEnabled(true);
    username.setEnabled(true);
    hostOption.setEnabled(true);
    guestOption.setEnabled(true);
    chatLine.setText("");
    chatLine.setEnabled(false);
    statusColor.setBackground(Color.red);
    break;
    case DISCONNECTING:
    connectButton.setEnabled(false);
    disconnectButton.setEnabled(false);
    ipField.setEnabled(false);
    portField.setEnabled(false);
    hostOption.setEnabled(false);
    guestOption.setEnabled(false);
    chatLine.setEnabled(false);
    statusColor.setBackground(Color.orange);
    break;
    case CONNECTED:
    connectButton.setEnabled(false);
    disconnectButton.setEnabled(true);
    ipField.setEnabled(false);
    portField.setEnabled(false);
    hostOption.setEnabled(false);
    username.setEnabled(false);
    guestOption.setEnabled(false);
    chatLine.setEnabled(true);
    statusColor.setBackground(Color.green);
    break;
    case BEGIN_CONNECT:
    connectButton.setEnabled(false);
    disconnectButton.setEnabled(false);
    ipField.setEnabled(false);
    portField.setEnabled(false);
    hostOption.setEnabled(false);
    username.setEnabled(false);
    guestOption.setEnabled(false);
    chatLine.setEnabled(true);
    chatLine.grabFocus();
    statusColor.setBackground(Color.orange);
    break;
    // S'assurer que l'etat des champs bouton/texte sont consistent
    // avec l'etat interne
    ipField.setText(hostIP);
    portField.setText((new Integer(port)).toString());
    hostOption.setSelected(isHost);
    guestOption.setSelected(!isHost);
    statusField.setText(statusString);
    chatText.append(toAppend.toString());
    toAppend.setLength(0);
    mainFrame.repaint();
    // Procedure principale
    public static void main(String args[]) {
    String s;
    initGUI();
    while (true) {
    try {
    Thread.sleep(10);
         // Verification a toute les 10 ms
    catch (InterruptedException e) {}
    switch (connectionStatus) {
    case BEGIN_CONNECT:
    try {
    // Essai de configuration du serveur si "host"
    if(user != ""){
         if (isHost) {
         hostServer = new ServerSocket(port);
         socket = hostServer.accept();
         // Si invit�, essai de branchement au serveur
         else {
         socket = new Socket(hostIP, port);
    in = new BufferedReader(new
    InputStreamReader(socket.getInputStream()));
    out = new PrintWriter(socket.getOutputStream(), true);
    changeStatusTS(CONNECTED, true);
    System.out.println("Ouverture de la session: \n" + socket);
              else{
              JOptionPane.showMessageDialog(null, "Erreur, vous devez entrer un nom d'utilisateur", "Erreur", JOptionPane.PLAIN_MESSAGE);
                        changeStatusTS(DISCONNECTED, false);
    // Si erreur, nettoyage et envoi du message d'erreur
    catch (IOException e) {
    cleanUp();
    changeStatusTS(DISCONNECTED, false);
    break;
    case CONNECTED:
    try {
    // Envoi de data
    if (toSend.length() != 0) {
    out.print(toSend);
    out.flush();
    toSend.setLength(0);
    changeStatusTS(NULL, true);
    // Reception de data
    if (in.ready()) {
    s = in.readLine();
    if ((s != null) && (s.length() != 0)) {
    // Verification de la fin de la transmission
    if (s.equals(END_CHAT_SESSION)) {
    changeStatusTS(DISCONNECTING, true);
    // Autrement, reception du texte
    else {
    appendToChatBox( s + "\n");
    changeStatusTS(NULL, true);
    catch (IOException e) {
    cleanUp();
    changeStatusTS(DISCONNECTED, false);
    break;
    case DISCONNECTING:
    // Dis aux autres fenetre de chat de se d�brancher aussi
    out.print(END_CHAT_SESSION);
    out.flush();
                   System.out.println("Fermeture de la session");
    // Nettoyage (ferme les streams/sockets)
    cleanUp();
    changeStatusTS(DISCONNECTED, true);
    break;
    default: break; // ne fait rien
    // Certaines interfaces �couteurs sont accompagn�es d'adaptateurs qui
    //implementent toutes les methodes de l'interface et evitent de les lister.
    class ActionAdapter implements ActionListener {
    public void actionPerformed(ActionEvent e) {}
    ////////////////////////////////////////////////////////////////////

  • Dropping sound in text chats

    For a few months my iChat has been dropping sound in text chats. The new message, message sent, etc. sounds are dropping (or being sent to some unknown output device). I can't figure out where/how to fix this...and it's getting worse.
    Now when iChat tries to make a sound and iTunes is playing BOTH will crash! This is INCREDIBLY annoying. There is also a popping or clicking going on...through the speakers.
    Console:
    Oct 20 12:42:16 BigMac crashdump[462]: coreaudiod crashed
    Oct 20 12:42:18 BigMac crashdump[462]: crash report written to: /Library/Logs/CrashReporter/coreaudiod.crash.log
    Oct 20 12:42:21 BigMac crashdump[461]: iChat crashed
    Oct 20 12:42:22 BigMac crashdump[464]: iTunes crashed
    Any ideas?

    Hi Demetrios,
    Ok there will be more info in Console
    Go to the Logs icon top left.
    USe the Reveal Triangle on ~/Library/logs
    Open the Crash Log
    Open the iTunes and iChat Crash logs.
    See if there is any similarities in the info contained in them. Thread 1 and Binary Images are the place to look.
    It looks like you should also look at the CoreAudio crash log. It looks like this is where the problem lies.
    This may be sorted by resetting the Micorphone choice in System Preferneces > Sound > Input tab and the Volume setting in the same Preference paene but > Sound Effect tab (for Alerts).
    You may have to delete com.apple.audio.DeviceSettings.plist
    This is found in Hard drive/Library/Preferences
    This is the Library you see when you can see the Applications folder, the System Folder and Users folder when you click on your Hard drive icon or use a Finder window to navigate to it.
    The computer may need to be restarted after this.
    Ralph

  • How to create smileys in a chat application?

    Hello, i developped a chat application in java
    i use a JFrame, and to put the dialogs, i use a DefaultListModel.
    how can i print smileys ?
    the defaultlistmodel works for printing String, not pictures.
    Can you help me ?

    Hello, i developped a chat application in java
    i use a JFrame, and to put the dialogs, i use a
    DefaultListModel.
    how can i print smileys ?
    the defaultlistmodel works for printing String, not
    pictures.When you say your using DefaultListModel I assume your using it with a JList because otherwise its really pointless. You won't do this code in the list model you will have to do it with the JList by making your own renderer. Take a look at this link here is a good example of using an image in a list. I don't think they have text and an image in the same row of the list, but that shouldn't be too hard to add on your own.
    http://www.codeguru.com/java/articles/449.shtml

  • Text chat with Trillian users = DSL crash every time

    Hello all,
    I'm running iChat 3.1.8 (v445) on an iBook G4 running OS 10.4.9, with a Zyxel Prestige 600 series modem.
    iChat works fine for me...until i begin text chatting with Trillian users. The result is always the same: The first time they chat with me, whether they initiate the chat or respond to my initiation, my DSL crashes. Once I wait for my DSL to cycle or switch to stealing my neighbors' wireless, it works fine for the most part, though I do experience periodic DSL crashes after the first crash.
    Every single time. I've tested this with various friends, and it is only happening with Trillian users.
    I've got my built-in firewall on, with ports 5060, 5190, 5297, 5298, 5678, and 16384-16403 open for both TCP and UDP.
    I'm logging onto an AIM account on login.oscar.aol.com on port 5190.
    TIA for any help offered.

    Hi sbcreducer,
    At one time it was possible to bring down a web server by many people getting organised and all trying to get the same page at the same time. This was called a Denial of Service attack (DoS)
    Nowadays many modems and routers have protection against this even though you may not even be allowed by your ISP to run a web server from your end. (Your own web pages for instance)
    This protection comes in about three main ways but essentially they monitor the amount of data coming to the modem or router (and request for a web page still means data in coming to make that request) and then cut the flow of data to stop you losing the internet connection.
    One method is called Stateful Packet Inspection (SPI)
    Another is Quality of Service (QoS) and lastly
    Denial Of Service (DoS).
    Now as to where this seting is on each manufacturers device is a bit of a guess.
    In these pics at Port Forwarding.com of a Linksys, in the third pic of the Linksys you can see it in Gaming and Applications as a sub tab (near Port Forwarding but to the right)
    On my Netgear it is on the WAN page and Called DOS.
    On some Netgears it is on the same page of the Setup pages but called SPI
    USing this site http://portforward.com/routers.htm you can look up your device.
    Click on it.
    At the next page select iChat from the list.
    AT the next page it will tell you the default IP address the device is likely to use and the Default USer ID and Password so you can gain access to the set up pages via a web browser.
    After that it a question of checking all the menu items to see if you have it.
    Check anything that says Filters, and Firewalls as it can be regarded as a second level firewall, as well as the places I suggested above.
    Not all device have this of course.
    7:14 PM Friday; April 13, 2007

  • How can I reduce my Flex Chat Application Size?

    Hi all,
    I have developed a Chat application using Flex and XIFF API.
    The XIFF API size is around 500 KB. I am not using all the Packages
    that are coming with that XIFF. I need the basic chat functionality
    only . Now my chat application size is around 400KB(in release
    mode). Is there any way that I can reduce the Chat application size
    , so that it will loads to the client machine quickly.
    Thanks in Advance
    Kamal

    On Mac, open your folio in Desktop Content Viewer, then check this folder
    ~/Library/Application Support/com.adobe.dmp.contentviewer/Local Store/FolioCache
    You will see your folio and all stacks and all elements.
    As Bob mentioned, prepare your folio as 1024x768, video i would suggest even little bit smaller (cca 800x480, 750 kbit/s). And check your image sequences, if they are not too big in term of size (images without text do for 1024x768 - 72 dpi, images with text on 108 dpi - 1536x1152 px).
    Audio - AAC on 96kbit is good enough.

  • IChat crashes when I attempt to text chat

    Hello,
    Ever since I got my iPhone, I have been having trouble with iChat. Every time I try to text chat/video chat with someone, iChat locks up and crashes. I have reinstalled the application, reset my pram, repaired disk permissions, and I am still having issues. Would anyone know what the issue is? Thank You in advance.
    Process: iChat [329]
    Path: /Applications/iChat.app/Contents/MacOS/iChat
    Identifier: com.apple.iChat
    Version: 4.0 (601)
    Build Info: iChat-6010000~1
    Code Type: X86 (Native)
    Parent Process: launchd [119]
    Date/Time: 2009-03-21 09:40:01.645 -0700
    OS Version: Mac OS X 10.5.6 (9G55)
    Report Version: 6
    Exception Type: EXCBADACCESS (SIGSEGV)
    Exception Codes: KERNINVALIDADDRESS at 0x00000000e82404a9
    Crashed Thread: 0
    Thread 0 Crashed:
    0 libobjc.A.dylib 0x944d7688 objc_msgSend + 24
    1 iChatCommonGUI 0x0071e23c -[TranscriptStyleManager appendInstantMessage:] + 107
    2 com.apple.iChat 0x00090b52 0x1000 + 588626
    3 com.apple.iChat 0x00090311 0x1000 + 586513
    4 com.apple.iChat 0x0008fffa 0x1000 + 585722
    5 com.apple.iChat 0x0008f63b 0x1000 + 583227
    6 com.apple.iChat 0x0008f440 0x1000 + 582720
    7 com.apple.WebKit 0x94f22780 _ZL12CallDelegatePFP11objc_objectS0_P13objc_selectorzEP7WebViewS0_S2_S0 + 240
    8 com.apple.WebKit 0x94f3539a WebFrameLoaderClient::dispatchDidFinishLoad() + 106
    9 com.apple.WebCore 0x930df2e8 WebCore::FrameLoader::checkLoadCompleteForThisFrame() + 376
    10 com.apple.WebCore 0x930df0d6 WebCore::FrameLoader::recursiveCheckLoadComplete() + 230
    11 com.apple.WebCore 0x9316485c WebCore::FrameLoader::finishedLoading() + 156
    12 com.apple.WebCore 0x9316471c WebCore::MainResourceLoader::didFinishLoading() + 44
    13 com.apple.WebCore 0x931458be WebCore::MainResourceLoader::continueAfterContentPolicy(WebCore::PolicyAction, WebCore::ResourceResponse const&) + 1150
    14 com.apple.WebCore 0x93145413 WebCore::MainResourceLoader::continueAfterContentPolicy(WebCore::PolicyAction) + 131
    15 com.apple.WebCore 0x93144fe8 WebCore::MainResourceLoader::didReceiveResponse(WebCore::ResourceResponse const&) + 1192
    16 com.apple.WebCore 0x931448c4 WebCore::MainResourceLoader::handleDataLoadNow(WebCore::Timer<WebCore::MainReso urceLoader>*) + 516
    17 com.apple.WebCore 0x9314469b WebCore::Timer<WebCore::MainResourceLoader>::fired() + 43
    18 com.apple.WebCore 0x9313f975 WebCore::TimerBase::fireTimers(double, ***::Vector<WebCore::TimerBase*, 0ul> const&) + 133
    19 com.apple.WebCore 0x9313f3e2 WebCore::TimerBase::sharedTimerFired() + 162
    20 com.apple.WebCore 0x9313f324 _ZN7WebCoreL10timerFiredEP16_CFRunLoopTimerPv + 68
    21 com.apple.CoreFoundation 0x953f7b25 CFRunLoopRunSpecific + 4469
    22 com.apple.CoreFoundation 0x953f7cd8 CFRunLoopRunInMode + 88
    23 com.apple.Foundation 0x90e84d75 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 213
    24 com.apple.iChat 0x0008e5c6 0x1000 + 579014
    25 com.apple.iChat 0x0008e4ba 0x1000 + 578746
    26 com.apple.iChat 0x0008e41c 0x1000 + 578588
    27 com.apple.iChat 0x0008de10 0x1000 + 577040
    28 com.apple.iChat 0x0008d574 0x1000 + 574836
    29 com.apple.iChat 0x00088129 0x1000 + 553257
    30 com.apple.iChat 0x00087ead 0x1000 + 552621
    31 com.apple.iChat 0x00087d65 0x1000 + 552293
    32 com.apple.iChat 0x00085917 0x1000 + 542999
    33 com.apple.iChat 0x000827cf 0x1000 + 530383
    34 com.apple.iChat 0x00082429 0x1000 + 529449
    35 com.apple.iChat 0x00082232 0x1000 + 528946
    36 com.apple.AppKit 0x91d4a53b -[NSApplication sendAction:to:from:] + 112
    37 com.apple.AppKit 0x91d4a478 -[NSControl sendAction:to:] + 108
    38 com.apple.AppKit 0x91d92477 -[NSTableView _sendAction:to:row:column:] + 271
    39 com.apple.AppKit 0x91d907e1 -[NSTableView mouseDown:] + 8228
    40 com.apple.iChat 0x0005c859 0x1000 + 374873
    41 com.apple.AppKit 0x91d471a3 -[NSWindow sendEvent:] + 5381
    42 com.apple.AppKit 0x91d13d49 -[NSApplication sendEvent:] + 2941
    43 com.apple.iChat 0x0003c9fe 0x1000 + 244222
    44 com.apple.AppKit 0x91c7169f -[NSApplication run] + 847
    45 com.apple.AppKit 0x91c3e8a4 NSApplicationMain + 574
    46 com.apple.iChat 0x00003aba 0x1000 + 10938
    Thread 1:
    0 libSystem.B.dylib 0x9134f1c6 machmsgtrap + 10
    1 libSystem.B.dylib 0x913569bc mach_msg + 72
    2 com.apple.CoreFoundation 0x953f70ae CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x953f7cd8 CFRunLoopRunInMode + 88
    4 com.apple.IMUtils 0x9590cdc7 -[IMRemoteObjectBroadcaster _workerThread] + 246
    5 com.apple.Foundation 0x90e507ed -[NSThread main] + 45
    6 com.apple.Foundation 0x90e50394 _NSThread__main_ + 308
    7 libSystem.B.dylib 0x91380095 pthreadstart + 321
    8 libSystem.B.dylib 0x9137ff52 thread_start + 34
    Thread 2:
    0 libSystem.B.dylib 0x913563ae _semwaitsignal + 10
    1 libSystem.B.dylib 0x91380d0d pthreadcondwait$UNIX2003 + 73
    2 com.apple.viceroy.framework 0x00367bed CameraList_Thread + 349
    3 libSystem.B.dylib 0x91380095 pthreadstart + 321
    4 libSystem.B.dylib 0x9137ff52 thread_start + 34
    Thread 3:
    0 libSystem.B.dylib 0x913563ae _semwaitsignal + 10
    1 libSystem.B.dylib 0x91380d0d pthreadcondwait$UNIX2003 + 73
    2 libGLProgrammability.dylib 0x9249bb32 glvmDoWork + 162
    3 libSystem.B.dylib 0x91380095 pthreadstart + 321
    4 libSystem.B.dylib 0x9137ff52 thread_start + 34
    Thread 4:
    0 libSystem.B.dylib 0x9139e6f2 select$DARWIN_EXTSN + 10
    1 libSystem.B.dylib 0x91380095 pthreadstart + 321
    2 libSystem.B.dylib 0x9137ff52 thread_start + 34
    Thread 5:
    0 libSystem.B.dylib 0x913b8292 _workqops + 10
    1 libSystem.B.dylib 0x913b82c2 start_wqthread + 30
    Thread 6:
    0 ??? 0000000000 0 + 0
    Thread 7:
    0 libSystem.B.dylib 0x9134f1c6 machmsgtrap + 10
    1 libSystem.B.dylib 0x913569bc mach_msg + 72
    2 com.apple.CoreFoundation 0x953f70ae CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x953f7cd8 CFRunLoopRunInMode + 88
    4 com.apple.CFNetwork 0x939b7ebe CFURLCacheWorkerThread(void*) + 396
    5 libSystem.B.dylib 0x91380095 pthreadstart + 321
    6 libSystem.B.dylib 0x9137ff52 thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0x00006303 ebx: 0x0071e306 ecx: 0x0073bf84 edx: 0xe8240489
    edi: 0x181cca50 esi: 0x00000000 ebp: 0xbfffe2b8 esp: 0xbfffe278
    ss: 0x0000001f efl: 0x00010206 eip: 0x944d7688 cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    cr2: 0xe82404a9
    Binary Images:
    0x1000 - 0x230fef com.apple.iChat 4.0 (601) <15aa7157450b7908ecf8cedbdd56f2d6> /Applications/iChat.app/Contents/MacOS/iChat
    0x2a4000 - 0x317ff7 com.apple.Bluetooth 2.1.3 (2.1.3f8) <1e2732edbd0f2c1db1ce5ecf06aa8192> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x365000 - 0x4c0ff2 com.apple.viceroy.framework 363.27 (363.27) <40e608b7fc15667d8d7e8d9e278a8598> /System/Library/PrivateFrameworks/VideoConference.framework/Versions/A/VideoCon ference
    0x530000 - 0x56ffff com.apple.vmutils 4.1 (104) <2fcd53ce313bb6050bfaf0ac6c1b5ead> /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x591000 - 0x5aafff com.apple.frameworks.preferencepanes 12.2 (12.2) <090decd2f1c3f48031e43fdf2171469f> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
    0x5c4000 - 0x5feff7 com.apple.remotedesktop.screensharing 1.0.1 (1.0.1) <c524c7764b8f4404d179a65ab635c9e1> /System/Library/PrivateFrameworks/ScreenSharing.framework/Versions/A/ScreenShar ing
    0x60e000 - 0x622ff7 com.apple.ScreenSaver 2.2 (2.2) <e8b7c717976f8af3ec1f255c5ad04caf> /System/Library/Frameworks/ScreenSaver.framework/Versions/A/ScreenSaver
    0x633000 - 0x651fe3 libexpat.1.dylib ??? (???) <eff8a63a23a7d07af62b36fdb329e393> /usr/lib/libexpat.1.dylib
    0x659000 - 0x6c9ff7 com.apple.iLifeMediaBrowser 2.0.2 (321) <096200840dfe3556d984bed9e9e1e4bc> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x714000 - 0x745ff7 iChatCommonGUI ??? (???) <dd722fe899d2b7c9b493912fdd5130fa> /System/Library/PrivateFrameworks/iChatCommonGUI.framework/iChatCommonGUI
    0x76e000 - 0x770fff com.apple.BezelServicesFW 1.4.925 (1.4.925) /System/Library/PrivateFrameworks/BezelServices.framework/Versions/A/BezelServi ces
    0x77e000 - 0x77fffa +com.google.GearsEnabler ??? (1.0) <f4619f1c37ae37dfdf6af70894fa2776> /Library/InputManagers/GearsEnabler/GearsEnabler.bundle/Contents/MacOS/GearsEna bler
    0x791000 - 0x796fff com.apple.iChat.Styles.Balloons 4.0 (601) <0c00c2dcc50f4ccc79e05c29d7ae735e> /Applications/iChat.app/Contents/PlugIns/Balloons.transcriptstyle/Contents/MacO S/Balloons
    0x7f0000 - 0x7f3fff com.apple.iChat.Styles.Boxes 4.0 (601) <84e0e473214ebd8779ab24876fbdf508> /Applications/iChat.app/Contents/PlugIns/Boxes.transcriptstyle/Contents/MacOS/B oxes
    0x900000 - 0x906ffe com.apple.iChat.Styles.Compact 4.0 (601) <d9ba0f8a7f796b730f0b845ff1692414> /Applications/iChat.app/Contents/PlugIns/Compact.transcriptstyle/Contents/MacOS /Compact
    0x90e000 - 0x910fff com.apple.iChat.Styles.Text 4.0 (601) <59f220c92e77edd77c32013daeec1a3a> /Applications/iChat.app/Contents/PlugIns/Text.transcriptstyle/Contents/MacOS/Te xt
    0xc0b000 - 0xc0bffd liblangid.dylib ??? (???) <4310e568d617f1ce7178266630e1b71a> /usr/lib/liblangid.dylib
    0xf54000 - 0xf59ff3 libCGXCoreImage.A.dylib ??? (???) <375e0cdb64b043378dbf637992bbfeb0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0xf99000 - 0xfa2fff com.apple.IOFWDVComponents 1.9.5 (1.9.5) <889959011cb23c11785c378264400284> /System/Library/Components/IOFWDVComponents.component/Contents/MacOS/IOFWDVComp onents
    0xfb3000 - 0xfb6fff com.apple.audio.AudioIPCPlugIn 1.0.5 (1.0.5) <e7424df9b53076d04045fb2e0132b2d0> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0xfbc000 - 0xfbdffe com.apple.bluetooth.IOBluetoothSCOAudioDriverPlugIn 2.1.3 (2.1.3f8) <939915f8240b278188388924dd1e8c96> /System/Library/Extensions/IOBluetoothFamily.kext/Contents/PlugIns/IOBluetoothS COAudioDriver.kext/Contents/Resources/IOBluetoothSCOAudioDriverPlugIn.bundle/Con tents/MacOS/IOBluetoothSCOAudioDriverPlugIn
    0x15b5f000 - 0x15d57fff com.apple.RawCamera.bundle 2.0.13 (435) <083354ccec68bf7c9fc99523a5838f92> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x16574000 - 0x165affff com.apple.QuickTimeFireWireDV.component 7.6 (1290) /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x165bc000 - 0x165eaff7 com.apple.QuickTimeIIDCDigitizer 7.6 (1290) <150bce84e37c741ce1d1e5c242c6e422> /System/Library/QuickTime/QuickTimeIIDCDigitizer.component/Contents/MacOS/Quick TimeIIDCDigitizer
    0x165f5000 - 0x16643ffe com.apple.QuickTimeUSBVDCDigitizer 2.2.6 (2.2.6) /System/Library/QuickTime/QuickTimeUSBVDCDigitizer.component/Contents/MacOS/Qui ckTimeUSBVDCDigitizer
    0x16651000 - 0x167d4fe3 GLEngine ??? (???) <bfbd7ce69ea896a6b38d6232b01cdeda> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x16802000 - 0x1685bff7 com.apple.driver.AppleIntelGMA950GLDriver 1.5.36 (5.3.6) <5f0420ab48f5d0f1b419c2ba4a89b7eb> /System/Library/Extensions/AppleIntelGMA950GLDriver.bundle/Contents/MacOS/Apple IntelGMA950GLDriver
    0x16863000 - 0x1687fff7 GLRendererFloat ??? (???) <dcdc2e0de7fb9a52d99e529c3688f26d> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
    0x1793d000 - 0x17942fff com.apple.audio.AppleHDAHALPlugIn 1.6.2 (1.6.2a37) /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x17a29000 - 0x17bf6fe7 com.apple.audio.codecs.Components 1.6.5 (1.6.5) /System/Library/Components/AudioCodecs.component/Contents/MacOS/AudioCodecs
    0x8fe00000 - 0x8fe2db43 dyld 97.1 (???) <100d362e03410f181a34e04e94189ae5> /usr/lib/dyld
    0x90003000 - 0x90003fff com.apple.Carbon 136 (136) <7f03616ee9261fb42dc6e6dd77a6f01c> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x90004000 - 0x9007eff8 com.apple.print.framework.PrintCore 5.5.3 (245.3) <222dade7b33b99708b8c09d1303f93fc> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9007f000 - 0x9043dfea libLAPACK.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x9043e000 - 0x90466ff7 com.apple.shortcut 1 (1.0) <057783867138902b52bc0941fedb74d1> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x90467000 - 0x9047efff com.apple.datadetectors 1.0.1 (66.2) <b4676446cca8a1e4c28ca911026b7ceb> /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/DataDetect ors
    0x90482000 - 0x904d3ff7 com.apple.HIServices 1.7.0 (???) <01b690d1f376e400ac873105533e39eb> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x904d4000 - 0x90553ff5 com.apple.SearchKit 1.2.1 (1.2.1) <3140a605db2abf56b237fa156a08b28b> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x90554000 - 0x90722ff3 com.apple.security 5.0.4 (34102) <55dda7486df4e8e1d61505be16f83a1c> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x90723000 - 0x9072efe7 libCSync.A.dylib ??? (???) <e6aceed359bd228f42bc1246af5919c9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x9072f000 - 0x907dffff edu.mit.Kerberos 6.0.12 (6.0.12) <685cc018c133668d0d3ac6a1cb63cff9> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x907e0000 - 0x907e5fff com.apple.backup.framework 1.0 (1.0) /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x908ce000 - 0x90912feb com.apple.DirectoryService.PasswordServerFramework 3.0.3 (3.0.3) <29109fed9f54cbe3d3faea0603362719> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x90943000 - 0x909faff3 com.apple.QTKit 7.6 (1290) /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x909fb000 - 0x90a3afef libTIFF.dylib ??? (???) <3589442575ac77746ae99ecf724f5f87> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x90a3b000 - 0x90a56ffb libPng.dylib ??? (???) <4780e979d35aa5ec2cea22678836cea5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x90a57000 - 0x90a76ffa libJPEG.dylib ??? (???) <e7eb56555109e23144924cd64aa8daec> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x90a77000 - 0x90a77ff8 com.apple.ApplicationServices 34 (34) <8f910fa65f01d401ad8d04cc933cf887> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x90a78000 - 0x90d52ff3 com.apple.CoreServices.CarbonCore 786.11 (786.11) <f06fe5d92d56ac5aa52d1ba182745924> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90d53000 - 0x90d5cfff com.apple.speech.recognition.framework 3.7.24 (3.7.24) <d3180f9edbd9a5e6f283d6156aa3c602> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x90d5d000 - 0x90d5dffa com.apple.CoreServices 32 (32) <2fcc8f3bd5bbfc000b476cad8e6a3dd2> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x90d5e000 - 0x90d9dfff com.apple.CoreMediaIOServicesPrivate 15.0 (15.0) /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0x90d9e000 - 0x90e45feb com.apple.QD 3.11.54 (???) <b743398c24c38e581a86e91744a2ba6e> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x90e46000 - 0x910c1fe7 com.apple.Foundation 6.5.7 (677.22) <8fe77b5d15ecdae1240b4cb604fc6d0b> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x910ff000 - 0x9110dffd libz.1.dylib ??? (???) <5ddd8539ae2ebfd8e7cc1c57525385c7> /usr/lib/libz.1.dylib
    0x91143000 - 0x9114affe libbsm.dylib ??? (???) <d25c63378a5029648ffd4b4669be31bf> /usr/lib/libbsm.dylib
    0x912ad000 - 0x912c2ffb com.apple.ImageCapture 5.0.1 (5.0.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x912c3000 - 0x912c5ff5 libRadiance.dylib ??? (???) <8a844202fcd65662bb9ab25f08c45a62> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x912c6000 - 0x912d2ff9 com.apple.helpdata 1.0.1 (14.2) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x912d3000 - 0x912d3ffc com.apple.audio.units.AudioUnit 1.5 (1.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x912d4000 - 0x912e1fe7 com.apple.opengl 1.5.9 (1.5.9) <7e5048a2677b41098c84045305f42f7f> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x912e2000 - 0x912e9fe9 libgcc_s.1.dylib ??? (???) <f53c808e87d1184c0f9df63aef53ce0b> /usr/lib/libgcc_s.1.dylib
    0x912ea000 - 0x91302ff7 com.apple.CoreVideo 1.6.0 (20.0) <c0d869876af51283a160cd2224a23abf> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x91303000 - 0x9134dfe1 com.apple.securityinterface 3.0.1 (35183) <f855cb06d2541ce544d9bcdf998b991c> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x9134e000 - 0x914b5ff3 libSystem.B.dylib ??? (???) <d68880dfb1f8becdbdac6928db1510fb> /usr/lib/libSystem.B.dylib
    0x914b6000 - 0x914e7ffb com.apple.quartzfilters 1.5.0 (1.5.0) <22581f8fe9dd2cb261f97a897407ec3e> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x914e8000 - 0x9163aff3 com.apple.audio.toolbox.AudioToolbox 1.5.2 (1.5.2) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x9163b000 - 0x9168afff com.apple.QuickLookUIFramework 1.3.1 (170.9) /System/Library/PrivateFrameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x916f9000 - 0x91711fff com.apple.openscripting 1.2.8 (???) <572c7452d7e740e8948a5ad07a99602b> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x91781000 - 0x9179dfff com.apple.IMFramework 4.0.5 (583) <a1890d82d681840490025bb50bf97cf8> /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x9179e000 - 0x91903fe7 com.apple.JavaScriptCore 5528 (5528.15) <a1edf2b00622f9d833987cb333b432ac> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x91904000 - 0x91909fff com.apple.CommonPanels 1.2.4 (85) <ea0665f57cd267609466ed8b2b20e893> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x9190a000 - 0x91953fef com.apple.Metadata 10.5.2 (398.25) <e0572f20350523116f23000676122a8d> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x91954000 - 0x91954ffe com.apple.quartzframework 1.5 (1.5) <4b8f505e32e4f2d67967a276401f9aaf> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x91955000 - 0x91958fff com.apple.help 1.1 (36) <b507b08e484cb89033e9cf23062d77de> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x91959000 - 0x91977ff3 com.apple.DirectoryService.Framework 3.5.5 (3.5.5) <f8931f64103c8a86b82e9714352f4323> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x91978000 - 0x91a02fe3 com.apple.DesktopServices 1.4.7 (1.4.7) <d16642ba22c32f67be793ebfbe67ca3a> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x91a03000 - 0x91abdfe3 com.apple.CoreServices.OSServices 226.5 (226.5) <2a135d4fb16f4954290f7b72b4111aa3> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x91bc2000 - 0x91bccfeb com.apple.audio.SoundManager 3.9.2 (3.9.2) <0f2ba6e891d3761212cf5a5e6134d683> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x91bcd000 - 0x91bdcffe com.apple.DSObjCWrappers.Framework 1.2.1 (1.2.1) <eac1c7b7c07ed3148c85934b6f656308> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x91bdd000 - 0x91c36ff7 libGLU.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x91c37000 - 0x91c37ffb com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x91c38000 - 0x92436fef com.apple.AppKit 6.5.6 (949.43) <a3a300499bbe4f1dfebf71d752d01916> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x92437000 - 0x9246efff com.apple.SystemConfiguration 1.9.2 (1.9.2) <8b26ebf26a009a098484f1ed01ec499c> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x92474000 - 0x92945f3e libGLProgrammability.dylib ??? (???) <5d283543ac844e7c6fa3440ac56cd265> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x92946000 - 0x9296efff libcups.2.dylib ??? (???) <16bec7c6a004f744804e2281a1b1c094> /usr/lib/libcups.2.dylib
    0x9296f000 - 0x9300ffff com.apple.CoreGraphics 1.407.2 (???) <3a91d1037afde01d1d8acdf9cd1caa14> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x93043000 - 0x93049fff com.apple.print.framework.Print 218.0.2 (220.1) <8bf7ef71216376d12fcd5ec17e43742c> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9304a000 - 0x9308bfe7 libRIP.A.dylib ??? (???) <5d0b5af7992e14de017f9a9c7cb05960> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x9308c000 - 0x930befff com.apple.LDAPFramework 1.4.5 (110) <cc04500cf7b6edccc75bb3fe2973f72c> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x930bf000 - 0x93949fff com.apple.WebCore 5528 (5528.16) <7e28871fe2b59d98edd6e624d850ccb8> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x9394a000 - 0x93951fff com.apple.agl 3.0.9 (AGL-3.0.9) <2f39c480cfcee9358a23d61b20a6aa56> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x93952000 - 0x939acff7 com.apple.CoreText 2.0.4 (???) <f9a90116ae34a2b0d84e87734766fb3a> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x939ad000 - 0x939b4ff7 libCGATS.A.dylib ??? (???) <386dce4b28448fb86e33e06ac466f4d8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x939b5000 - 0x93a52fe4 com.apple.CFNetwork 422.15.2 (422.15.2) <80851410a5592b7c3b149b2ff849bcc1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x93bd4000 - 0x93bd6fff com.apple.CrashReporterSupport 10.5.5 (159) <4ca9b6643fcbafd76424a46d162363eb> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x93bd7000 - 0x93c19fef com.apple.NavigationServices 3.5.2 (163) <91844980804067b07a0b6124310d3f31> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x93c1a000 - 0x93ca1ff7 libsqlite3.0.dylib ??? (???) <6978bbcca4277d6ae9f042beff643f7d> /usr/lib/libsqlite3.0.dylib
    0x93ca2000 - 0x93cb1fff libsasl2.2.dylib ??? (???) <bb7971ca2f609c070f87786a93d1041e> /usr/lib/libsasl2.2.dylib
    0x93cb2000 - 0x93d79ff2 com.apple.vImage 3.0 (3.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x93d7a000 - 0x93e06ff7 com.apple.LaunchServices 290.3 (290.3) <6f9629f4ed1ba3bb313548e6838b2888> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x93efc000 - 0x93f00fff libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0x93f01000 - 0x93f0dffe libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x93f0e000 - 0x93fd9fff com.apple.ColorSync 4.5.1 (4.5.1) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x93fda000 - 0x93fdaff8 com.apple.Cocoa 6.5 (???) <e064f94d969ce25cb7de3cfb980c3249> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93fdb000 - 0x94113ff7 libicucore.A.dylib ??? (???) <18098dcf431603fe47ee027a60006c85> /usr/lib/libicucore.A.dylib
    0x94245000 - 0x943c4fff com.apple.AddressBook.framework 4.1.1 (699) <60ddae72a1df8ddbc5c53df92f372b76> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x943c5000 - 0x943f0fe7 libauto.dylib ??? (???) <42d8422dc23a18071869fdf7b5d8fab5> /usr/lib/libauto.dylib
    0x943f1000 - 0x94401ffc com.apple.LangAnalysis 1.6.4 (1.6.4) <8b7831b5f74a950a56cf2d22a2d436f6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x94402000 - 0x94431fe3 com.apple.AE 402.3 (402.3) <4cb9ef65cf116d6dd424f0ce98c2d015> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x94432000 - 0x94442fff com.apple.speech.synthesis.framework 3.7.1 (3.7.1) <06d8fc0307314f8ffc16f206ad3dbf44> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x94443000 - 0x94461fff libresolv.9.dylib ??? (???) <a8018c42930596593ddf27f7c20fe7af> /usr/lib/libresolv.9.dylib
    0x94462000 - 0x9449cfe7 com.apple.coreui 1.2 (62) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x9449d000 - 0x944c1feb libssl.0.9.7.dylib ??? (???) <c7359b7ab32b5f8574520746e10a41cc> /usr/lib/libssl.0.9.7.dylib
    0x944c2000 - 0x945a2fff libobjc.A.dylib ??? (???) <7b92613fdf804fd9a0a3733a0674c30b> /usr/lib/libobjc.A.dylib
    0x945a3000 - 0x948c8fe2 com.apple.QuickTime 7.6.0 (1290) <bc0920abbbaad03f5513ac7ffbd30633> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x948c9000 - 0x948c9ffe com.apple.MonitorPanelFramework 1.2.0 (1.2.0) <a2b462be6c51187eddf7d097ef0e0a04> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x948ca000 - 0x94cdafef libBLAS.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x94ce0000 - 0x94d09fff com.apple.CoreMediaPrivate 15.0 (15.0) /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x94d0a000 - 0x94d0efff com.apple.OpenDirectory 10.5 (10.5) <e7e4507f5ecd8c8cdcdb2fc0675da0b4> /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/OpenDirect ory
    0x94d0f000 - 0x94df0ff7 libxml2.2.dylib ??? (???) <306036e0070330e35045650e6d9f0d05> /usr/lib/libxml2.2.dylib
    0x94df1000 - 0x94e3fff3 com.apple.datadetectorscore 1.0.2 (52.14) <bd3bfe061091be75ce6a27172b988702> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x94e40000 - 0x94e5dff7 com.apple.QuickLookFramework 1.3.1 (170.9) /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x94e5e000 - 0x94f10ffb libcrypto.0.9.7.dylib ??? (???) <69bc2457aa23f12fa7d052601d48fa29> /usr/lib/libcrypto.0.9.7.dylib
    0x94f11000 - 0x94fe5fef com.apple.WebKit 5528 (5528.16) <24ccae21ccfe5c21c2a78656983324c1> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x94fe6000 - 0x95383fef com.apple.QuartzCore 1.5.7 (1.5.7) <2fed2dd7565c84a0f0c608d41d4d172c> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x95384000 - 0x954b7fff com.apple.CoreFoundation 6.5.5 (476.17) <4a70c8dbb582118e31412c53dc1f407f> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x954b8000 - 0x954eefef libtidy.A.dylib ??? (???) <5351215b54226cc47eb1cd4b011cc2f3> /usr/lib/libtidy.A.dylib
    0x954ef000 - 0x95561fff com.apple.PDFKit 2.1.2 (2.1.2) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x95562000 - 0x95566fff libGIF.dylib ??? (???) <572a32e46e33be1ec041c5ef5b0341ae> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x95567000 - 0x955c4ffb libstdc++.6.dylib ??? (???) <04b812dcec670daa8b7d2852ab14be60> /usr/lib/libstdc++.6.dylib
    0x955c5000 - 0x955dbfff com.apple.DictionaryServices 1.0.0 (1.0.0) <ad0aa0252e3323d182e17f50defe56fc> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x955dc000 - 0x95616ffe com.apple.securityfoundation 3.0.1 (35844) <2fbb6a1177ef98350b8aefc60737ba0e> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x95617000 - 0x956a2fff com.apple.framework.IOKit 1.5.1 (???) <f9f5f0d070e197a832d86751e1d44545> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x956a3000 - 0x956ffff7 com.apple.htmlrendering 68 (1.1.3) <fe87a9dede38db00e6c8949942c6bd4f> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x95700000 - 0x95700ffd com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x95701000 - 0x9572efeb libvDSP.dylib ??? (???) <b232c018ddd040ec4e2c2af632dd497f> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x9572f000 - 0x95740ffe com.apple.CFOpenDirectory 10.5 (10.5) <6a7f55108d77db7384d0e2219d07e9f8> /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/Frameworks /CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x9574e000 - 0x9590aff3 com.apple.QuartzComposer 2.1 (106.13) <40f034e8c8fd31c9081f5283dcf22b78> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x9590b000 - 0x9591efff com.apple.IMUtils 4.0.5 (583) <b54c55fea76255e789f607b78592c468> /System/Library/Frameworks/InstantMessage.framework/Frameworks/IMUtils.framewor k/Versions/A/IMUtils
    0x9591f000 - 0x959b2fff com.apple.ink.framework 101.3 (86) <bf3fa8927b4b8baae92381a976fd2079> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x959b3000 - 0x95cbbfff com.apple.HIToolbox 1.5.4 (???) <3747086ba21ee419708a5cab946c8ba6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x96ca4000 - 0x96ca9fff com.apple.DisplayServicesFW 2.0.2 (2.0.2) <97878a73074e7da4fe31ea010a5d5ae1> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x96cb4000 - 0x96d05feb com.apple.framework.familycontrols 1.0.3 (1.0.3) <52c7ec091f6d3dc99ec42e1e185c38a7> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x96f6f000 - 0x97054ff3 com.apple.CoreData 100.1 (186) <8e28162ef2288692615b52acc01f8b54> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x97055000 - 0x9718dfe7 com.apple.imageKit 1.0.2 (1.0) <2e354566521df8b1e3a78e9aeab5e6b4> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x9718e000 - 0x97190fff com.apple.securityhi 3.0 (30817) <32d1c581312dbe0c408578df99661f96> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x97191000 - 0x97192ffc libffi.dylib ??? (???) <a3b573eb950ca583290f7b2b4c486d09> /usr/lib/libffi.dylib
    0x97193000 - 0x97210feb com.apple.audio.CoreAudio 3.1.1 (3.1.1) <f35477a5e23db0fa43233c37da01ae1c> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x97211000 - 0x97211ffd 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
    0x97212000 - 0x9728ffef libvMisc.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x97290000 - 0x972ceff7 libGLImage.dylib ??? (???) <1123b8a48bcbe9cc7aa8dd8e1a214a66> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x972cf000 - 0x972f3fff libxslt.1.dylib ??? (???) <0a9778d6368ae668826f446878deb99b> /usr/lib/libxslt.1.dylib
    0x972f4000 - 0x97387ff3 com.apple.ApplicationServices.ATS 3.4 (???) <8c51de0ec3deaef416578cd59df38754> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x9742c000 - 0x97572ff7 com.apple.ImageIO.framework 2.0.4 (2.0.4) <6a6623d3d1a7292b5c3763dcd108b55f> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x97573000 - 0x97573ffd com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x97574000 - 0x9757cfff com.apple.DiskArbitration 2.2.1 (2.2.1) <75b0c8d8940a8a27816961dddcac8e0f> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0xfffe8000 - 0xfffebfff libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib
    0xffff0000 - 0xffff1780 libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib

    Process: iChat 329
    Path: /Applications/iChat.app/Contents/MacOS/iChat
    Identifier: com.apple.iChat
    Version: 4.0 (601)
    Build Info: iChat-6010000~1
    Code Type: X86 (Native)
    Parent Process: launchd 119
    Date/Time: 2009-03-21 09:40:01.645 -0700
    OS Version: Mac OS X 10.5.6 (9G55)
    Report Version: 6
    You know he did not
    2:59 PM Sunday; March 22, 2009

  • Cannot text chat with iChat since installing Leopard.

    Since installing leopard, I have been unable to use iChat. I can boot up the application, and see my buddy list as normal. But when I double click on a buddy's icon to start a text chat, I get a completely blank chat box. (i.e. I don't see the buddy's name and icon at the top of my box.) if I type in the text box below and hit enter, I get a prompt that says "one or more buddies have to be invited to the chat." If I right click on a buddy's name, and click on "invite to chat", then ichat crashes and I get the message copied below.
    I have tried reinstalling ichat from my OS 10 upgrade disk, then reinstalling the 10.5.4 combo update - no help. I tried blowing away my preferences for ichat in system preferences then re-entering my data - no help. Also, this problem happens on both my AOL and mac.com profiles, with both AOL and mac buddies.
    The exception type, as you'll see below is EXCBADACCESS (SIGSEGV) and the exception code is KERNINVALIDADDRESS at 0x00000000636f6e94. Please help!
    here's the entire report:
    Process: iChat 923
    Path: /Applications/iChat.app/Contents/MacOS/iChat
    Identifier: com.apple.iChat
    Version: 4.0 (601)
    Build Info: iChat-6010000~1
    Code Type: PPC (Native)
    Parent Process: launchd 116
    Date/Time: 2008-08-21 13:49:51.265 -0500
    OS Version: Mac OS X 10.5.4 (9E17)
    Report Version: 6
    Exception Type: EXCBADACCESS (SIGSEGV)
    Exception Codes: KERNINVALIDADDRESS at 0x00000000636f6e94
    Crashed Thread: 0
    Thread 0 Crashed:
    0 libobjc.A.dylib 0xfffeff18 objcmsgSendrtp + 24
    1 iChatCommonGUI 0x006d8280 -InstantMessageFragmentProvider appendFragmentForMessage:toNode: + 172
    2 iChatCommonGUI 0x006d810c -TranscriptStyleManager appendInstantMessage: + 104
    3 com.apple.iChat 0x0008f0c4 0x1000 + 581828
    4 com.apple.iChat 0x0008e89c 0x1000 + 579740
    5 com.apple.iChat 0x0008e564 0x1000 + 578916
    6 com.apple.iChat 0x0008dbdc 0x1000 + 576476
    7 com.apple.iChat 0x0008d9f0 0x1000 + 575984
    8 com.apple.WebKit 0x94965a98 CallDelegate(objc_object* ()(objc_object, objc_selector*, ...), WebView*, objc_object*, objc_selector*, objc_object*) + 248
    9 com.apple.WebKit 0x9496d89c WebFrameLoaderClient::dispatchDidFinishLoad() + 92
    10 com.apple.WebCore 0x93533950 WebCore::FrameLoader::checkLoadCompleteForThisFrame() + 880
    11 com.apple.WebCore 0x93533594 WebCore::FrameLoader::recursiveCheckLoadComplete() + 420
    12 com.apple.WebCore 0x9379b50c WebCore::FrameLoader::finishedLoading() + 364
    13 com.apple.WebCore 0x9379b314 WebCore::MainResourceLoader::didFinishLoading() + 52
    14 com.apple.WebCore 0x9358b2e4 WebCore::MainResourceLoader::continueAfterContentPolicy(WebCore::PolicyAction, WebCore::ResourceResponse const&) + 1124
    15 com.apple.WebCore 0x9358addc WebCore::MainResourceLoader::continueAfterContentPolicy(WebCore::PolicyAction) + 76
    16 com.apple.WebCore 0x93587e30 WebCore::MainResourceLoader::didReceiveResponse(WebCore::ResourceResponse const&) + 800
    17 com.apple.WebCore 0x93736a10 WebCore::MainResourceLoader::handleDataLoadNow(WebCore::Timer<WebCore::MainReso urceLoader>*) + 640
    18 com.apple.WebCore 0x93763780 WebCore::TimerBase::fireTimers(double, **::Vector<WebCore::TimerBase, 0ul> const&) + 176
    19 com.apple.WebCore 0x9376349c WebCore::TimerBase::sharedTimerFired() + 108
    20 com.apple.WebCore 0x93763408 WebCore::timerFired(__CFRunLoopTimer*, void*) + 72
    21 com.apple.CoreFoundation 0x906539ec CFRunLoopRunSpecific + 2968
    22 com.apple.Foundation 0x9211aa44 -NSRunLoop(NSRunLoop) runMode:beforeDate: + 168
    23 com.apple.iChat 0x0008cbb4 0x1000 + 572340
    24 com.apple.iChat 0x0008ca94 0x1000 + 572052
    25 com.apple.iChat 0x0008c32c 0x1000 + 570156
    26 com.apple.iChat 0x0008bba0 0x1000 + 568224
    27 com.apple.iChat 0x00086b90 0x1000 + 547728
    28 com.apple.iChat 0x0008678c 0x1000 + 546700
    29 com.apple.iChat 0x000844f4 0x1000 + 537844
    30 com.apple.iChat 0x00081224 0x1000 + 524836
    31 com.apple.iChat 0x0008104c 0x1000 + 524364
    32 com.apple.iChat 0x00080e58 0x1000 + 523864
    33 com.apple.AppKit 0x941c90dc -NSApplication sendAction:to:from: + 104
    34 com.apple.AppKit 0x941c9010 -NSControl sendAction:to: + 92
    35 com.apple.AppKit 0x9420aa00 -NSTableView _sendAction:to:row:column: + 292
    36 com.apple.AppKit 0x94208e60 -NSTableView mouseDown: + 6968
    37 com.apple.iChat 0x0005b82c 0x1000 + 370732
    38 com.apple.AppKit 0x941c6060 -NSWindow sendEvent: + 4512
    39 com.apple.AppKit 0x94199404 -NSApplication sendEvent: + 3256
    40 com.apple.iChat 0x0003c2c4 0x1000 + 242372
    41 com.apple.AppKit 0x941066f4 -NSApplication run + 776
    42 com.apple.AppKit 0x940d70d0 NSApplicationMain + 440
    43 com.apple.iChat 0x00003888 0x1000 + 10376
    Thread 1:
    0 libSystem.B.dylib 0x9173f438 machmsgtrap + 8
    1 libSystem.B.dylib 0x9174635c mach_msg + 56
    2 com.apple.CoreFoundation 0x90653568 CFRunLoopRunSpecific + 1812
    3 com.apple.IMUtils 0x96de42f8 -IMRemoteObjectBroadcaster _workerThread + 248
    4 com.apple.Foundation 0x920ecdec _NSThread__main_ + 1004
    5 libSystem.B.dylib 0x91781658 pthreadstart + 316
    Thread 2:
    0 libSystem.B.dylib 0x91745e4c _semwaitsignal + 12
    1 libSystem.B.dylib 0x91782a00 pthread_condwait + 1580
    2 com.apple.viceroy.framework 0x0035d8b0 CameraList_Thread + 336
    3 libSystem.B.dylib 0x91781658 pthreadstart + 316
    Thread 3:
    0 libSystem.B.dylib 0x917a3ae4 select$DARWIN_EXTSN + 12
    1 com.apple.CoreFoundation 0x9065e9b0 __CFSocketManager + 764
    Thread 4:
    0 libSystem.B.dylib 0x91745e4c _semwaitsignal + 12
    1 libSystem.B.dylib 0x91782a00 pthread_condwait + 1580
    2 libGLProgrammability.dylib 0x91b90298 glvmDoWork + 120
    3 libSystem.B.dylib 0x91781658 pthreadstart + 316
    Thread 5:
    0 libSystem.B.dylib 0x9173f438 machmsgtrap + 8
    1 libSystem.B.dylib 0x9174635c mach_msg + 56
    2 com.apple.CoreFoundation 0x90653568 CFRunLoopRunSpecific + 1812
    3 com.apple.CFNetwork 0x900ca988 CFURLCacheWorkerThread(void*) + 292
    4 libSystem.B.dylib 0x91781658 pthreadstart + 316
    Thread 0 crashed with PPC Thread State 32:
    srr0: 0xfffeff18 srr1: 0x0200f030 dar: 0x636f6e94 dsisr: 0x00200000
    r0: 0x006d8284 r1: 0xbfffc960 r2: 0xa00a04c8 r3: 0x969596d4
    r4: 0x006f6af0 r5: 0x00000000 r6: 0x000000ce r7: 0x906908a8
    r8: 0x00000000 r9: 0x01004200 r10: 0xa03dd688 r11: 0xff916af0
    r12: 0x636f6e74 r13: 0x00000001 r14: 0xa00a0478 r15: 0x0000023c
    r16: 0x7ba7bcfe r17: 0x00000001 r18: 0xa06a71b0 r19: 0xa06a71ac
    r20: 0x0025bbb0 r21: 0x16b015e0 r22: 0x16b0fd00 r23: 0x002553f0
    r24: 0x16b11100 r25: 0x007081d4 r26: 0x16b110a0 r27: 0x007081d4
    r28: 0x007081d4 r29: 0x00000000 r30: 0x16b136b0 r31: 0x006d81d4
    cr: 0x44044282 xer: 0x00000000 lr: 0x006d828c ctr: 0x905eb6dc
    vrsave: 0x00000000
    Binary Images:
    0x1000 - 0x236fff com.apple.iChat 4.0 (601) <7ce6cff5737b43b294f2cfd2b4ea91c4> /Applications/iChat.app/Contents/MacOS/iChat
    0x2a4000 - 0x313fff com.apple.Bluetooth 2.1 (2.1f17) <32477d0b0fc65cd391fc641fb7e54d77> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x35b000 - 0x498ff3 com.apple.viceroy.framework 363.2.11 (363.2.11) <54b7d5fea67c843e66023e97de1124db> /System/Library/PrivateFrameworks/VideoConference.framework/Versions/A/VideoCon ference
    0x503000 - 0x547fff com.apple.vmutils 4.1 (104) <ea4bd764588ed4625099564b5e253eb1> /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x568000 - 0x581fff com.apple.frameworks.preferencepanes 12.1 (12.1) <d1d5621f96c38d42dd5e32d4e95e15b9> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
    0x59a000 - 0x5d0ff7 com.apple.remotedesktop.screensharing 1.0 (1.0) <f434e19d046ad902b9021055e3cb94d6> /System/Library/PrivateFrameworks/ScreenSharing.framework/Versions/A/ScreenShar ing
    0x5df000 - 0x5f2ffb com.apple.ScreenSaver 2.1 (2.1) <ecf7e76d09df043b95edf69cada0d779> /System/Library/Frameworks/ScreenSaver.framework/Versions/A/ScreenSaver
    0x601000 - 0x622fff libexpat.1.dylib ??? (???) <e955fbf7296287c4d40694cf7dffd64f> /usr/lib/libexpat.1.dylib
    0x629000 - 0x691fff com.apple.iLifeMediaBrowser 1.0.8 (212) <94aa7507e58cc1a3d1e84d03b01e936a> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x6ce000 - 0x700ffb iChatCommonGUI ??? (???) <df1170a8009235dc501f460da782452f> /System/Library/PrivateFrameworks/iChatCommonGUI.framework/iChatCommonGUI
    0x728000 - 0x72bfff com.apple.BezelServicesFW 1.4.832 (1.4.832) /System/Library/PrivateFrameworks/BezelServices.framework/Versions/A/BezelServi ces
    0x752000 - 0x754fff com.apple.iChat.Styles.Text 4.0 (601) <7d0387fb3619ddf90896ad372104c5e8> /Applications/iChat.app/Contents/PlugIns/Text.transcriptstyle/Contents/MacOS/Te xt
    0x7a2000 - 0x7a7fff com.apple.iChat.Styles.Balloons 4.0 (601) <a975223771c45774c8d9b1faa263e431> /Applications/iChat.app/Contents/PlugIns/Balloons.transcriptstyle/Contents/MacO S/Balloons
    0x7b5000 - 0x7b8fff com.apple.iChat.Styles.Boxes 4.0 (601) <223dbe5e0d1990ebcdbad499c33d4501> /Applications/iChat.app/Contents/PlugIns/Boxes.transcriptstyle/Contents/MacOS/B oxes
    0x7be000 - 0x7c3fff com.apple.iChat.Styles.Compact 4.0 (601) <99c435d770bec1d36152e6c88ca719a1> /Applications/iChat.app/Contents/PlugIns/Compact.transcriptstyle/Contents/MacOS /Compact
    0xe68000 - 0xf62ff3 com.apple.RawCamera.bundle 2.0.8 (2.0.8) <301197bb19c83780749805b978095825> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0xfe2000 - 0xfe8fff libCGXCoreImage.A.dylib ??? (???) <f0ef1c03fbcd8f529485bbebe5fb5ea7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x12f82000 - 0x12f8cfff com.apple.IOFWDVComponents 1.9.5 (1.9.5) <ace13808ef0aecc1907498beaa17cde4> /System/Library/Components/IOFWDVComponents.component/Contents/MacOS/IOFWDVComp onents
    0x12f9d000 - 0x12fa1fff com.apple.audio.AudioIPCPlugIn 1.0.4 (1.0.4) <144c5865c937c9237d0287383db1d376> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x12fa6000 - 0x12fa7ffd com.apple.aoa.halplugin 2.5.7 (2.5.7f1) <39ceaf6e23ae92ba655f0c1a8714f189> /System/Library/Extensions/IOAudioFamily.kext/Contents/PlugIns/AOAHALPlugin.bun dle/Contents/MacOS/AOAHALPlugin
    0x14ae9000 - 0x14af4ffb com.apple.LiveType.component 2.0.2 (2.0.2) /Library/QuickTime/LiveType.component/Contents/MacOS/LiveType
    0x14afa000 - 0x14b38ff7 com.apple.QuickTimeFireWireDV.component 7.5 (861) /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x14b42000 - 0x14b71ffb com.apple.QuickTimeIIDCDigitizer 7.5 (861) <6159938ab7d66497f448f2a4c485b754> /System/Library/QuickTime/QuickTimeIIDCDigitizer.component/Contents/MacOS/Quick TimeIIDCDigitizer
    0x14b7b000 - 0x14bc8ffb com.apple.QuickTimeUSBVDCDigitizer 2.1.6 (2.1.6) /System/Library/QuickTime/QuickTimeUSBVDCDigitizer.component/Contents/MacOS/Qui ckTimeUSBVDCDigitizer
    0x14dcd000 - 0x14f6aff7 com.apple.audio.codecs.Components 1.6.3 (1.6.3) /System/Library/Components/AudioCodecs.component/Contents/MacOS/AudioCodecs
    0x14f8b000 - 0x14fa7fff GLRendererFloat ??? (???) <a16b151dfe35dd65da0ec9a149f5cdba> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
    0x1500f000 - 0x15185ffb GLEngine ??? (???) <e546c359794d516a4ec464c774b1300a> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x151b7000 - 0x1540dff5 com.apple.ATIRadeon9700GLDriver 1.5.28 (5.2.8) <a5b23527a4689e76f7860770d3820d0d> /System/Library/Extensions/ATIRadeon9700GLDriver.bundle/Contents/MacOS/ATIRadeo n9700GLDriver
    0x16aa4000 - 0x16aa6ffd com.apple.AutomatorCMM 1.1 (160) <51b2d0c229997506192e4ee21494a1df> /System/Library/Contextual Menu Items/AutomatorCMM.plugin/Contents/MacOS/AutomatorCMM
    0x16aab000 - 0x16aacffc com.apple.BluetoothMenu 2.1 (2.1f17) /System/Library/Contextual Menu Items/BluetoothContextualMenu.plugin/Contents/MacOS/BluetoothContextualMenu
    0x16ab1000 - 0x16ab6fff com.apple.FolderActionsMenu 1.3.2 (1.3.2) <8769a72b724b3d624c6aa6232fbb120e> /System/Library/Contextual Menu Items/FolderActionsMenu.plugin/Contents/MacOS/FolderActionsMenu
    0x16abc000 - 0x16abeffd +YSIFinderPlugin ??? (1.0) <d03908ac24a37d02b72bf1287aaa7e99> /Library/Contextual Menu Items/YSIFinderPlugin.plugin/Contents/MacOS/YSIFinderPlugin
    0x7f950000 - 0x7f9b8ffb com.apple.LiveType.framework 2.0.2 (2.0.2) /System/Library/PrivateFrameworks/LiveType.framework/Versions/A/LiveType
    0x8fe00000 - 0x8fe30b23 dyld 96.2 (???) <ef2061020a88c4fe1f40b8d9cb1a6101> /usr/lib/dyld
    0x90003000 - 0x90004ff8 com.apple.ApplicationServices 34 (34) <6aa5ee485bb2e656531b3505932b845f> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x90005000 - 0x90014fff com.apple.DSObjCWrappers.Framework 1.3 (1.3) <897487778bd1c0429fcd88c99c293583> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x90015000 - 0x90062fff com.apple.framework.familycontrols 1.0.2 (1.0.2) <b022da52faf828234ebb48845ac7357a> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x90063000 - 0x90094fff com.apple.coreui 1.1 (61) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x900a1000 - 0x900bffff com.apple.QuickLookFramework 1.3 (170.7) /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x900c0000 - 0x90144ffd com.apple.CFNetwork 330.4 (330.4) <6e1a01b50c14cf720e067ea018c4e4ad> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x90145000 - 0x90263ff7 com.apple.audio.toolbox.AudioToolbox 1.5.1 (1.5.1) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x90264000 - 0x9058dfe7 libLAPACK.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x9058e000 - 0x905ddfff com.apple.datadetectorscore 1.0.2 (52.14) <e380d9ecac55e9a7d541c0d26ffc39dc> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x905de000 - 0x905e9ffb libgcc_s.1.dylib ??? (???) <ea47fd375407f162c76d14d64ba246cd> /usr/lib/libgcc_s.1.dylib
    0x905ea000 - 0x9070fffb com.apple.CoreFoundation 6.5.3 (476.14) <56add4656a227fa699f8aa1427b369d9> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x90710000 - 0x90717ffb com.apple.print.framework.Print 218.0.2 (220.1) <c7e0e618d5867ae227403ae385aacd82> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x90718000 - 0x907c8fff edu.mit.Kerberos 6.0.12 (6.0.12) <5cf1a9c1d7e526bb9b084013a1722d08> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x907c9000 - 0x907fefff com.apple.AE 402.2 (402.2) <0b15a08da8ec38b74fb9dd6e579ed25f> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x907ff000 - 0x90812ffb com.apple.speech.synthesis.framework 3.7.1 (3.7.1) <dc8dac074f4d19175c5613b35aa529b3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x90813000 - 0x908adffb com.apple.ApplicationServices.ATS 3.3 (???) <5c97f539ba68e1143929cd89db390d20> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x908ae000 - 0x90997fff libxml2.2.dylib ??? (???) <6bf1a24e68615e0edf843988f5a0a1f4> /usr/lib/libxml2.2.dylib
    0x90998000 - 0x90b7effb com.apple.security 5.0.4 (34102) <9a5739b5b522f963b320fd71581b9cf5> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x90b7f000 - 0x90eddff2 com.apple.QuartzCore 1.5.3 (1.5.3) <c410b1f89e67d41c3d06eac1790b500c> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x90ede000 - 0x90f3efff com.apple.CoreText 2.0.2 (???) <e5940fddbca517f29b8865c9b02ddff0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90f4d000 - 0x90f78ff7 libauto.dylib ??? (???) <b3a3a4b0f09653bd6d58f1847922b533> /usr/lib/libauto.dylib
    0x90f79000 - 0x91008ffb com.apple.DesktopServices 1.4.6 (1.4.6) <3b1ac6c5643f1858e86ec52554c4b408> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x91009000 - 0x91032ffb com.apple.shortcut 1 (1.0) <032016a45147a2f3f191ce70187587c9> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x91033000 - 0x91334ffb com.apple.CoreServices.CarbonCore 786.6 (786.6) <d2ae460a0de15ca950ac723616666507> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x91335000 - 0x91377fff com.apple.quartzfilters 1.5.0 (1.5.0) <3f2dc01a646cd5b5ea55d510583ba4d5> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x91378000 - 0x913b5ffe com.apple.securityfoundation 3.0 (32989) <d629b36fcfea256ec309420b99dccabf> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x913b6000 - 0x913b6fff com.apple.audio.units.AudioUnit 1.5 (1.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x913b7000 - 0x913d6fff libresolv.9.dylib ??? (???) <ea4013600c24f794dff0013de3db4bf4> /usr/lib/libresolv.9.dylib
    0x914e6000 - 0x914f1fff com.apple.speech.recognition.framework 3.7.24 (3.7.24) <ae3dc890a43a9269388301f6b59d3091> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x914f2000 - 0x914f7ff6 libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0x914f8000 - 0x91640ffb libicucore.A.dylib ??? (???) <dd2fd169aa328f6e97a1d700e5846866> /usr/lib/libicucore.A.dylib
    0x91641000 - 0x91688fff com.apple.NavigationServices 3.5.2 (163) <cb063c95a55ba12994a64c7e47f5706a> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x91689000 - 0x9170afff com.apple.print.framework.PrintCore 5.5.3 (245.3) <032f772f8169945c1d1b524d96edcef6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9173e000 - 0x918d7fe3 libSystem.B.dylib ??? (???) <79cf3ef34f92361dc6263d884c723c24> /usr/lib/libSystem.B.dylib
    0x918d8000 - 0x918fcffb libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x918fd000 - 0x91910fff com.apple.LangAnalysis 1.6.4 (1.6.4) <f12db38b92cbf96b024206698434d14d> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91911000 - 0x919cbfff libcrypto.0.9.7.dylib ??? (???) <29883b10f7a6ac2dd91addabf60e0ff8> /usr/lib/libcrypto.0.9.7.dylib
    0x919cc000 - 0x919e8fff com.apple.IMFramework 4.0.5 (582) <7a425a078e842dea6469edccdf596022> /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x919e9000 - 0x919ebffd libRadiance.dylib ??? (???) <3d70fcb7557347829c96c9753074b3f1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x919ec000 - 0x91a36fff com.apple.QuickLookUIFramework 1.3 (170.7) /System/Library/PrivateFrameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x91b6a000 - 0x91f9fffa libGLProgrammability.dylib ??? (???) <f032e07d587794af4d4ba1b7dc7b4fd2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x91fa0000 - 0x9204dfff com.apple.QTKit 7.5 (861) /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x9204e000 - 0x920d8fff libvMisc.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x920d9000 - 0x920e2fff com.apple.DiskArbitration 2.2.1 (2.2.1) <a389b4c2badce39540f24402f7df35e7> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x920e3000 - 0x92328ffb com.apple.Foundation 6.5.5 (677.19) <1667218c075b6e69728c5c2dd9ff6065> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92329000 - 0x9237ffff libGLU.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92380000 - 0x92430fff com.apple.QD 3.11.52 (???) <f33191c288897dd4d2e2c4b87bcc09b4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x92431000 - 0x9243dff3 com.apple.audio.SoundManager 3.9.2 (3.9.2) <79588842bcaf6c747a95b2120304397a> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x92442000 - 0x9248dffb com.apple.Metadata 10.5.2 (398.18) <0899c93992af8d2e36e4dd2ad21ba475> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x9248e000 - 0x9248effa com.apple.CoreServices 32 (32) <42b6dda539f7411606187335d9eae0c5> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x9248f000 - 0x92496fff com.apple.CommonPanels 1.2.4 (85) <0d1256175c5512c911ede094d767acfe> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x92594000 - 0x925daff9 com.apple.securityinterface 3.0 (32532) <82a438eff282dd1dc1f803dfd91b5f38> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x925db000 - 0x92b52ff3 com.apple.CoreGraphics 1.351.32 (???) <9f74f6f37d389945b10af033ae035ee5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x92b53000 - 0x92b6eff3 com.apple.DirectoryService.Framework 3.5.4 (3.5.4) <d69161954145cf745b51ae31e0961077> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x92b6f000 - 0x92b82ffe com.apple.CFOpenDirectory 10.5 (10.5) <41ed29dcd683657b10994df7d7349e0a> /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/Frameworks /CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x92b83000 - 0x92b87ffe libGIF.dylib ??? (???) <d6e2a570359313a39c6783c2ecfee608> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x92b88000 - 0x92ba7fff 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
    0x92ba8000 - 0x92c0affb com.apple.htmlrendering 68 (1.1.3) <e852db1c007de975fae2f0c2769c88ef> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x92c3a000 - 0x92c3affc com.apple.MonitorPanelFramework 1.2.0 (1.2.0) <91aadd6dccda219dd50a6ce06aad5b54> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x92c3b000 - 0x92c7cffb libTIFF.dylib ??? (???) <0d0a3107d26786c3708e6a511d5acec9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x92c7d000 - 0x92d16fc3 libvDSP.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x92d17000 - 0x92d1affb com.apple.securityhi 3.0 (30817) <ad843393cafb2193fd716df88d8136bf> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x92d1b000 - 0x932d5fff libBLAS.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x932d6000 - 0x93420ffb com.apple.ImageIO.framework 2.0.2 (2.0.2) <20c50c4b4d09a4cf69fb8732e3d79081> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x934c3000 - 0x934c3ffe com.apple.quartzframework 1.5 (1.5) <1477ba992c53f43087c7527c4782fd54> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x934c4000 - 0x934cfff9 com.apple.helpdata 1.0 (14) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x934d0000 - 0x93bb1ff3 com.apple.WebCore 5525.18.1 (5525.18.1) <c339884f32c81b029105d8a0243db0ff> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x93bb2000 - 0x93c01ff7 libGLImage.dylib ??? (???) <dba44404ea3684df4f23df5e8e5430c3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x93ee5000 - 0x93eeafff com.apple.OpenDirectory 10.5 (10.5) <6dca8a620bb66310737d421624ebbfcd> /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/OpenDirect ory
    0x93eeb000 - 0x93f70fff libsqlite3.0.dylib ??? (???) <f2a33fe2663eab9c7f4806d2cf05b4ee> /usr/lib/libsqlite3.0.dylib
    0x940bd000 - 0x940bdfff com.apple.Carbon 136 (136) <f8fdb172887f2d6a374aed2d2a13b319> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x940be000 - 0x940bffff libffi.dylib ??? (???) <11b77dbce4aa0f0b66d40014230abd1d> /usr/lib/libffi.dylib
    0x940c0000 - 0x940d0fff libsasl2.2.dylib ??? (???) <18935d5e775962f4728b91189b092d45> /usr/lib/libsasl2.2.dylib
    0x940d1000 - 0x94846fff com.apple.AppKit 6.5.3 (949.33) <1144a07dd55895f89e44adf80cc151d9> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x94887000 - 0x94956fff com.apple.ColorSync 4.5.0 (4.5.0) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x94957000 - 0x94a19fff com.apple.WebKit 5525.18 (5525.18) <465f23fde0c38d87fd0e0103a3393772> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x94a1a000 - 0x94a3aff7 libJPEG.dylib ??? (???) <92341083256fbcd28888a179ebf941ef> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x94a3b000 - 0x94a41ffb com.apple.backup.framework 1.0 (1.0) /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x94a42000 - 0x94a50fff libz.1.dylib ??? (???) <1a70dd3594a8c5ad39d785af5da23237> /usr/lib/libz.1.dylib
    0x94a61000 - 0x94a9afff com.apple.SystemConfiguration 1.9.2 (1.9.2) <1a39075165bf7447fe8be1e93db49346> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x94a9b000 - 0x94a9bff8 com.apple.Cocoa 6.5 (???) <e9a4f1c636d00893db0494c4040176ba> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x94a9c000 - 0x94aa9fff libCSync.A.dylib ??? (???) <78f215768036cfce737f00116252c626> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x958b8000 - 0x958bbfff com.apple.help 1.1 (36) <7106d6e074a3b9835ebf1e6cc6c822ce> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x958bc000 - 0x95943ffb com.apple.audio.CoreAudio 3.1.0 (3.1) <3baa0645ba65ef3c69c975ac989b2caf> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x95944000 - 0x95a68fff com.apple.imageKit 1.0.1 (1.0) <4cf1f88ec52fe945d0d534cf63ab7fce> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x95a69000 - 0x95a71fff libbsm.dylib ??? (???) <c1fca3cbe3b1c21e9b31bc89b920f34c> /usr/lib/libbsm.dylib
    0x95a72000 - 0x95a91fff com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x95a92000 - 0x95b26ff7 com.apple.framework.IOKit 1.5.1 (???) <c1d6fa5eb7372b90ca4fea8910170152> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x95bf6000 - 0x95bfeffb libCGATS.A.dylib ??? (???) <367c4beab293fb4e93202bd1d3339fe6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x95bff000 - 0x95d13ffa com.apple.vImage 3.0 (3.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x95d14000 - 0x95d40fff com.apple.CoreMediaPrivate 9.0 (9.0) <06724239f6a690e4c358b6ca14bfb1a6> /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x95d41000 - 0x95d9dffb com.apple.HIServices 1.7.0 (???) <48d200891cc9dd795ee547d526c6a45b> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x95d9e000 - 0x95e34fff com.apple.LaunchServices 289.2 (289.2) <67191ba4de2d3d14be9b4bbddd4fe0a6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x95e35000 - 0x95fd5ff7 com.apple.QuartzComposer 2.1 (106.5) <c823d8b4d0e6ab03f609a097f8333c50> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x95fdc000 - 0x96046fff com.apple.PDFKit 2.1 (2.1) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x96047000 - 0x96054ffb com.apple.opengl 1.5.6 (1.5.6) <9f2c6a226837dae46ced8b28e195210c> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x96055000 - 0x9606afff com.apple.datadetectors 1.0.1 (66.2) <90711dd7887550dd04f564ec211cf059> /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/DataDetect ors
    0x9606b000 - 0x96082ffb com.apple.ImageCapture 4.0 (5.0.0) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x96083000 - 0x9616afff com.apple.JavaScriptCore 5525.18 (5525.18) <d94ee2a4a7aa244335a4a2a49a5aaeec> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x9616b000 - 0x96192fff libxslt.1.dylib ??? (???) <3700d04090629deddb436aa2d516c56d> /usr/lib/libxslt.1.dylib
    0x96193000 - 0x961abffb com.apple.DictionaryServices 1.0.0 (1.0.0) <fe37191e732eeb66189185cd000a210b> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x961ac000 - 0x961e9fff libRIP.A.dylib ??? (???) <5f21492caab359881ef01076fee5f016> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x961ea000 - 0x961f0ffb com.apple.DisplayServicesFW 2.0 (2.0) <463821f200b3616dad400057957ddf0b> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x961f1000 - 0x9620cffb libPng.dylib ??? (???) <a0a5ce98fa9fe98fe190c99a3dbbdfa0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x9620d000 - 0x96379ff9 com.apple.AddressBook.framework 4.1.1 (695) <c2da7479f17eecd7a1efd7250afb0aef> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x963b7000 - 0x9647cffb com.apple.CoreData 100.1 (186) <9cf54cb19b18e53ee22edb7ababa6e6c> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x9647d000 - 0x967b6feb com.apple.HIToolbox 1.5.3 (???) <1f08f0263f6037c253e6cfbe69cfc5a0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x967b7000 - 0x9683ffff com.apple.ink.framework 101.3 (86) <66a99ad6bc695390a66dd24789e23dcc> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x96840000 - 0x96866fff libcups.2.dylib ??? (???) <faed280b72f625b591ae0506cb142367> /usr/lib/libcups.2.dylib
    0x96867000 - 0x96867ffb com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x968a7000 - 0x96922fff com.apple.SearchKit 1.2.0 (1.2.0) <1b448fbae02460eae76ee1c6883f45d6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x96923000 - 0x96a06feb libobjc.A.dylib ??? (???) <23a407d7dac6090562827e97bac3cb86> /usr/lib/libobjc.A.dylib
    0x96a07000 - 0x96a20ffb com.apple.CoreVideo 1.5.1 (1.5.1) <9b726d9ba75efbaccaed1d34e2f71ea0> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x96a21000 - 0x96a21fff com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x96a22000 - 0x96d4fffb com.apple.QuickTime 7.5.0 (861) <62b9ecae4fb583bf9e989f526f6f8014> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x96d50000 - 0x96d7aff7 libssl.0.9.7.dylib ??? (???) <96a900022cb333091411b0e42eeeb2d6> /usr/lib/libssl.0.9.7.dylib
    0x96d7b000 - 0x96de2ffb libstdc++.6.dylib ??? (???) <a4e9b10268b3ffac26d0296499b24e8e> /usr/lib/libstdc++.6.dylib
    0x96de3000 - 0x96df8fff com.apple.IMUtils 4.0.5 (582) <d932fd56d7cb597ce9a0d72015db1a90> /System/Library/Frameworks/InstantMessage.framework/Frameworks/IMUtils.framewor k/Versions/A/IMUtils
    0x96df9000 - 0x96e09ffb com.apple.agl 3.0.9 (AGL-3.0.9) <ab2f91cfb4e503d2516df44852c35e81> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x96e0a000 - 0x96e4effb com.apple.DirectoryService.PasswordServerFramework 3.0.3 (3.0.3) <990840c12416ac15b853ad7c1686e6f2> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x96e4f000 - 0x96e84ffb com.apple.LDAPFramework 1.4.3 (106) <d9a3a16b2d468683b68f714d11196d7b> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x96e85000 - 0x96f58fff com.apple.CoreServices.OSServices 226.5 (226.5) <50a4f7fe2d6078971f9ef6fc88cc5d2b> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x96f59000 - 0x96f75ffb com.apple.openscripting 1.2.8 (???) <cc6a91ad44b9d013d03b9977a1459bd5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x96f76000 - 0x96fb7fff com.apple.CoreMediaIOServicesPrivate 9.0 (9.0) /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0x96fb8000 - 0x96fbafff com.apple.CrashReporterSupport 10.5.0 (156) <80ad9e5e406c33f861fba5a238bbf8fe> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0xfffec000 - 0xfffeffff libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib
    0xffff8000 - 0xffff9703 libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib

    That version of iChat has not been updated.
    It should be at version 4.0.5
    Hopefully you still have the 10.5.4 Combo .dmg
    Run it again
    10:21 PM Saturday; August 23, 2008

  • Jms chat application

    Hello
    I am writing an chat application using JMS. I choose to use this because I had to integrate this as a part of an enterprise solution. I had a look on the internet and found useful tutorials to get started with the basic JMS chat. Then I have written the basic MDB (ChatMDB.java) which actually does nothing but I have to extend the logic later to do message parsing using the onMessage hence I have just incorporated it in the system. (at the moment the MDB does absolutely nothing). All the JMS topic connection logic is in the JMSChat.java. The main method of the JMSChat accepts text from command line and it works fine at the moment. My ultimate goal is to have it ported on the web hence I have written a servlet (JMSServlet.java) that will call the read/write methods of the JMSChat.java.
    Am I heading in the correct direction? I am having problems deploying the application to the J2EE application server. How do I deploy it? Until then I cant test the new servlet part. Can anyone help?
    Thanks a lot!

    Hello
    Thanks for the reply. The model you have suggested is already been developed and tested but its working fine for the text client. I want to use it over the internet hence I have written a servlet as the frontend that calls the jms methods. This servlet front end is meant to be integrated with the rest of my J2EE application hence I need to deploy it on the J2EE server. I am facing problems doing same. I am unable to figure as to how to deploy the application. Can you please guide me with the same.
    Cheers

  • Adobe startus text chat broken @ connection setup

    Posted my question here, I think I may get some better support here.
    http://stackoverflow.com/questions/3453969/adobe-startus-text-chat-broken-connection-setup
    ^ You can look there for better actionscript formatting. ^
    Called with jquery using
    $("#flashtxtchat").get(0).startTxtChat()
    pretty much a javascript call to startTxtChat() which causes the fail.
    ArgumentError: Error #2126:
    NetConnection object must be
    connected. at
    flash.net::NetConnection/get nearID()
    at textchat/startChat() at
    Function/http://adobe.com/AS3/2006/builtin::apply()
    at
    flash.external::ExternalInterface$/_callIn()
    at ()
    <?xml version="1.0" encoding="UTF-8"?>
    <mx:Application height="1" width="1" verticalScrollPolicy="off" xmlns:mx="http://www.adobe.com/2006/mxml" creationComplete="init()" backgroundColor="#EEEEEE" verticalAlign="middle">
    <mx:Script>
    <![CDATA[
    import flash.events.*;
    import flash.external.*;
    import flash.net.*;
    import flash.system.*;
    import mx.containers.*;
    import mx.controls.*;
    import mx.core.*;
    import mx.events.*;
    import mx.styles.*;
    import mx.utils.*;
    private var netConnection:NetConnection;
    private var sendStream:NetStream;
    private var receiveStream:NetStream;
    private var strangerPeerID:String;
    public function init() : void
    var url:* = FlexGlobals.topLevelApplication.url;
    var serverName:* = URLUtil.getServerName(url);
    if (!serverName.match(/(localhost|127.0.0.1)$/))
    return;
    ExternalInterface.addCallback("startTxtChat", this.startChat);
    ExternalInterface.addCallback("gotStrangerPeerID", this.gotStrangerPeerID);
    ExternalInterface.addCallback("sendMsg", this.sendMsg);
    ExternalInterface.addCallback("stopTxtChat", this.stopChat);
    ExternalInterface.call("flashtxtChat_init");
    return;
    }// end function
    public function startChat() : void
    if (this.netConnection)
    ExternalInterface.call("flashtxtChat_gotNearID", this.netConnection.nearID);
    else
    this.netConnection = new NetConnection();
    this.netConnection.addEventListener(NetStatusEvent.NET_STATUS, this.netConnectionHandler);
    this.netConnection.connect("rtmfp://stratus.rtmfp.net/key1-key2/");
    return;
    }// end function
    public function gotStrangerPeerID(param1:String) : void
    var _loc_3:NetStream = null;
    this.strangerPeerID = param1;
    var _loc_2:int = 0;
    while (_loc_2 < this.sendStream.peerStreams.length)
    _loc_3 = this.sendStream.peerStreams[_loc_2];
    if (_loc_3.farID != this.strangerPeerID)
    _loc_3.close();
    _loc_2++;
    this.receiveStream = new NetStream(this.netConnection, this.strangerPeerID);
    this.receiveStream.play("textchat");
    this.receiveStream.client = this;///temp added by me
    //this.strangerVideo.attachNetStream(this.receiveStream);
    return;
    }// end function
    public function sendMsg(msg: String) : void
    sendStream.send("recvMsg", msg);
    public function recvMsg(msg: String) : void
    ExternalInterface.call("recvMsg", msg);
    public function stopChat() : void
    this.strangerPeerID = null;
    return;
    }// end function
    public function netConnectionHandler(event:NetStatusEvent) : void
    var c:Object;
    var event:* = event;
    switch(event.info.code)
    case "NetConnection.Connect.Success":
    c = new Object();
    c.onPeerConnect = function (param1:NetStream) : Boolean
    if (strangerPeerID == null)
    return true;
    return param1.farID == strangerPeerID;
    };// end function
    this.sendStream = new NetStream(this.netConnection, NetStream.DIRECT_CONNECTIONS);
    this.sendStream.client = c;
    this.sendStream.publish("textchat");
    ExternalInterface.call("flashtxtChat_gotNearID", this.netConnection.nearID);
    break;
    case "NetConnection.Connect.Failed":
    this.netConnection = null;
    ExternalInterface.call("flashCb_errorConnectingToStratus");
    break;
    case "NetConnection.Connect.Closed":
    this.netConnection = null;
    this.sendStream.close();
    this.sendStream = null;
    if (this.receiveStream)
    this.receiveStream.close();
    this.receiveStream = null;
    break;
    default:
    break;
    return;
    }// end function
    ]]>
    </mx:Script>
    </mx:Application>

    in your function startChat(), you say
      if (this.netConnection)
                ExternalInterface.call("flashtxtChat_gotNearID", this.netConnection.nearID);
    if the netConnection is in the process of connecting and startChat() gets called again, then the netConnection will not be null but will also not be connected.  you can only get the nearID if the netConnection is connected.

  • Can text chat, but can't video chat

    Hello-
    My ichat/isight use to work just fine. I haven't changed any settings as far as I know (unless I did something inadvertently) and suddenly now I can continue to text message but I can't get the camera to connect. I send an invitation to video and once the person on the other ends accepts we each get errors saying that the video failed because the other person did not respond.
    Please any help would be greatly appreciated.
    Thanks,
    jessica
    PowerBook G4   Mac OS X (10.3.9)   airport connection

    Ralph - it's late, so I don't have any one to text chat with at the moment. But I thought I would at least trying to connect to one of the test connections again - it failed again. Here is the log from Terminal.
    Last login: Wed Jun 7 21:27:26 on console
    Welcome to Darwin!
    Jessica-Elliotts-Computer:~ Jessica$ /Applications/iChat.app/Contents/MacOS/iChat -errorLogLevel 7
    215406.650364
    VideoConferenceFramework version 188.0 - 07232004.1 - Aug 25 2004
    215406.651536 Checking H263 hardware rules
    215406.652371 Satisfied rule #4 (30:1)
    215406.671016 ### NEW STATE: to: VC_INIT, from: VC_INVALID
    215406.672719 ### NEW STATE: to: VC_IDLE, from: VC_INIT
    215406.673279 UPnP init passed
    215406.673582 NATTraversal created
    215406.673984 Bandwidth based on QT prefs = 1000
    215406.674055 Found 1 cameras:
    215406.674149 iSight - 2857630788217138
    215406.674498 Found 1 cameras:
    215406.674563 iSight - 2857630788217138
    215406.674703 selectCameraByGUID: 2857630788217138 returned 1
    215406.693878 Microphone devices:
    215406.698636 iSight Built-in
    215406.699751 Internal microphone
    215406.700532 Line In
    215406.708678 Microphone devices:
    215406.709975 iSight Built-in
    215406.710823 Internal microphone
    215406.711806 Line In
    215406.713345 Selected mic: iSight
    215406.716149 Microphone devices:
    215406.717539 iSight Built-in
    215406.718869 Internal microphone
    215406.719600 Line In
    215406.722313 Microphone devices:
    215406.723663 iSight Built-in
    215406.724483 Internal microphone
    215406.725134 Line In
    215406.725756 Selected mic: iSight
    215406.738623 UPnP Router Info:
    - manufacturer [Linksys Inc.]
    - friendly name [Residential Gateway Device]
    - model name [WRT54G]
    - model desc [Internet Access Server]
    215406.740757 UPnP: Begin TCPProc
    215406.758325 selectedCamera returned iSight
    215406.759477 selectedCamera returned iSight
    215406.766052 Found 1 cameras:
    215406.767001 iSight - 2857630788217138
    215407.775038 UPnP: TCPProc begin loop
    215430.966226 Microphone: callback thread: STANDARD; EXTENDED timeshare: 0; PRECEDENCE importance: 17
    215430.966726 Microphone: null device thread: STANDARD; EXTENDED timeshare: 0; PRECEDENCE importance: 17
    215430.990526 Microphone devices:
    215430.990601 Camera_IsDV = 0
    215430.991400 iSight Built-in
    215430.991974 Internal microphone
    215430.992028 Line In
    215430.993727 Microphone devices:
    215430.993779 Camera_IsDV = 0
    215430.993885 iSight Built-in
    215430.993986 Internal microphone
    215430.994021 Line In
    215430.994083 Selected mic: iSight
    215431.146759 UPnP Router Info:
    - manufacturer [Linksys Inc.]
    - friendly name [Residential Gateway Device]
    - model name [WRT54G]
    - model desc [Internet Access Server]
    215431.867177 SIPManager init
    215431.956286 SNATMAP Configuration Data: snatmap://snatmap.mac.com:5678
    215431.956386 acquireSNATMAPConfigurationProc: Refresh UPnP status via SIP
    215431.956839 SIPUpdateExternalInfo, force = 0
    215431.957840 Transport(UDP) Thread start...
    215431.980694 Sending SNATMAP heartbeat to 11FAF895:5678
    215432.061850 SNATMAP heartbeat resulted in IP change (from: 0 to: 45FF0198)
    215432.061923 SNATMAP heartbeat resulted in port change (from: 0 to: 5060)
    215433.141778 UPnP address = 69.255.1.152
    215434.340667 UPnP eport 5060 already mapped: retry next
    215435.541711 UPnP eport 5061 already mapped: retry next
    215435.732607 Diffusion prefilter disabled
    215435.734404 Temporal prefilter disabled
    215435.735148 startPreview returned 0
    215435.753634 Updating local frame notification.
    215436.743399 UPnP eport 5062 already mapped: retry next
    215438.971515 UPnP SendSOAPMsg got no TCP response (0)
    215438.971765 NAGetExternalMapping failed with error: -1
    215438.972407 SIPUpdateExternalInfo, force = 0
    215438.972489 SIPUpdateExternalInfo, force = 0
    215438.972660 SIPUpdateExternalInfo, force = 0
    215438.972694 count of local IP's = 2
    215438.972720 LOCAL: ifname=[external], IP=[69.255.1.152], PORT = 5060
    215438.972738 LOCAL: ifname=[en1(IPv6)], IP=[fe80:0005:0000:0000:0211:24ff:fe95:be8e], PORT = 5060
    215438.972771 LOCAL: ifname=[en1], IP=[192.168.1.111], PORT = 5060
    215438.972790 LOCAL: ifname=[en1~], IP=[63.87.254.144], PORT = 5060
    215440.600197 ### NEW STATE: to: VC_SIGNALING, from: VC_IDLE
    215440.600284 [ipAndPortData length] = 120
    215440.600327 Length is valid: YES
    215440.600453 CALLEE: ifname=[en0], IP=[17.202.32.37], wPort = 5060
    215440.600482 CALLEE: ifname=[en0(IPv6)], IP=[fe80:0004:0000:0000:020d:93ff:fe31:0974], wPort = 5060
    215440.600529 initiateConferenceCallUsingRemoteIPAndPortData
    2006-06-07 21:54:40.620 iChat[390] IPAndPortList: <CFArray 0x43468d0 [0xa01c00e0]>{type = mutable-small, count = 1, values = (
    0 : <CFDictionary 0x43e09c0 [0xa01c00e0]>{type = immutable, count = 2, capacity = 2, pairs = (
    0 : <CFString 0x884a143c [0xa01c00e0]>{contents = "ip"} = <CFString 0x473baf0 [0xa01c00e0]>{contents = "17.202.32.37"}
    1 : <CFString 0x884a1450 [0xa01c00e0]>{contents = "port"} = <CFNumber 0x472ddb0 [0xa01c00e0]>{value = +5060, type = kCFNumberSInt32Type}
    215440.702047 Public mapping: 69.255.1.152:16384
    215440.784335 Public mapping: 69.255.1.152:16385
    215440.865201 Public mapping: 69.255.1.152:16386
    215440.943920 Public mapping: 69.255.1.152:16387
    215440.970158 * Caller SDP *
    215440.971111 v=0
    o=Jessica 0 0 IN IP4 %RTP-IP%
    s=Jessica
    c=IN IP4 %RTP-IP%
    b=AS:2147483647
    t=0 0
    a=bandwidthDetection:YES
    m=audio %ARTP-PORT% RTP/AVP 12 3 0
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:1546772002
    m=video %VRTP-PORT% RTP/AVP 34
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO %ARTCP-PORT% VIDEO %VRTCP-PORT%
    a=pogo
    a=rtpID:1210691418
    215440.971235 SIPConnect start...
    215440.971653 TAInviteClientProc Thread start...
    215440.971941 Send to 11CA2025:5060 [INVITE sip:[email protected] SIP/2.0
    Via: SIP/2.0/UDP 69.255.1.152;branch=z9hG4bK760425e872f02772
    Max-Forwards: 70
    To: "iChat User" <sip:[email protected]>
    From: "Jessica [email protected]" <sip:[email protected]>;tag=245967851
    Call-ID: bfd166da-f691-11da-8578-f8cc0bcf13c4@192-168-1-111
    CSeq: 1 INVITE
    Contact: <sip:[email protected]>
    User-Agent: Viceroy 1.1
    Content-Type: application/sdp
    Content-Length: 359
    v=0
    o=Jessica 0 0 IN IP4 69.255.1.152
    s=Jessica
    c=IN IP4 69.255.1.152
    b=AS:2147483647
    t=0 0
    a=bandwidthDetection:YES
    m=audio 16386 RTP/AVP 12 3 0
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:1546772002
    m=video 16384 RTP/AVP 34
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16387 VIDEO 16385
    a=pogo
    a=rtpID:1210691418
    215441.474587 Send to 11CA2025:5060 [INVITE sip:[email protected] SIP/2.0
    Via: SIP/2.0/UDP 69.255.1.152;branch=z9hG4bK760425e872f02772
    Max-Forwards: 70
    To: "iChat User" <sip:[email protected]>
    From: "Jessica [email protected]" <sip:[email protected]>;tag=245967851
    Call-ID: bfd166da-f691-11da-8578-f8cc0bcf13c4@192-168-1-111
    CSeq: 1 INVITE
    Contact: <sip:[email protected]>
    User-Agent: Viceroy 1.1
    Content-Type: application/sdp
    Content-Length: 359
    v=0
    o=Jessica 0 0 IN IP4 69.255.1.152
    s=Jessica
    c=IN IP4 69.255.1.152
    b=AS:2147483647
    t=0 0
    a=bandwidthDetection:YES
    m=audio 16386 RTP/AVP 12 3 0
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:1546772002
    m=video 16384 RTP/AVP 34
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16387 VIDEO 16385
    a=pogo
    a=rtpID:1210691418
    215442.475160 Send to 11CA2025:5060 [INVITE sip:[email protected] SIP/2.0
    Via: SIP/2.0/UDP 69.255.1.152;branch=z9hG4bK760425e872f02772
    Max-Forwards: 70
    To: "iChat User" <sip:[email protected]>
    From: "Jessica [email protected]" <sip:[email protected]>;tag=245967851
    Call-ID: bfd166da-f691-11da-8578-f8cc0bcf13c4@192-168-1-111
    CSeq: 1 INVITE
    Contact: <sip:[email protected]>
    User-Agent: Viceroy 1.1
    Content-Type: application/sdp
    Content-Length: 359
    v=0
    o=Jessica 0 0 IN IP4 69.255.1.152
    s=Jessica
    c=IN IP4 69.255.1.152
    b=AS:2147483647
    t=0 0
    a=bandwidthDetection:YES
    m=audio 16386 RTP/AVP 12 3 0
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:1546772002
    m=video 16384 RTP/AVP 34
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16387 VIDEO 16385
    a=pogo
    a=rtpID:1210691418
    215442.974519 Dialog(CREATED) Match(STATUS) [bfd166da-f691-11da-8578-f8cc0bcf13c4@192-168-1-111]=[bfd166da-f691-11da-8578-f 8cc0bcf13c4@192-168-1-111], [245967851]=[245967851]
    215442.974615 TAInviteClientProc Thread end(800B0017)...
    215442.974916 SIPConnect stop(900A0014)...
    215442.974955 SIPManager connect returned 20
    215442.976040 SIPCloseCall start...
    215442.976087 (SIP.c:1295) Cannot find call ID(2)
    215442.976174 Stop heartbeat
    215442.976191 SIPCloseCall stop(800C0016)...
    215442.976216 ### NEW STATE: to: VC_IDLE, from: VC_SIGNALING
    215442.977021 SIPUpdateExternalInfo, force = 0
    215442.977552 Sending SNATMAP heartbeat to 11FAF895:5678
    215444.152791 UPnP address = 69.255.1.152
    215445.354184 UPnP eport 5060 already mapped: retry next
    215446.555668 UPnP eport 5061 already mapped: retry next
    215447.765639 UPnP eport 5062 already mapped: retry next
    215450.386237 UPnP SendSOAPMsg got no TCP response (0)
    215450.386466 NAGetExternalMapping failed with error: -1
    215450.386514 count of local IP's = 2
    215450.386547 LOCAL: ifname=[external], IP=[69.255.1.152], PORT = 5060
    215450.386566 LOCAL: ifname=[en1(IPv6)], IP=[fe80:0005:0000:0000:0211:24ff:fe95:be8e], PORT = 5060
    215450.386597 LOCAL: ifname=[en1], IP=[192.168.1.111], PORT = 5060
    215450.386617 LOCAL: ifname=[en1~], IP=[63.87.254.144], PORT = 5060
    215450.386670 sendPing: 17.202.32.37:5060
    215450.386749 Sending SNATMAP heartbeat to 11CA2025:5060
    215500.542983 Stopped using preview buffer.
    215500.543287 cancelPreview returned 0
    thanks for all the help.
    jessica

  • Updating Applet in chat application in browser

    iam developing a chat application in browser using
    1.Http connection and no sockets
    2.Using applet iam sending messages to servlet in server and servlet handles the client request
    My problem
    how to update every clients connected to the server.
    (ie i want to pump the data that is recieved from one client to every one)

    If no socket connections is totally necessary then you could accomplish this task with this process using javascript as well as java.
    1. In your html web page that will contain the chat window. Create an html "Form" set the "Name" attribute for it. The chat window will be of input type "TEXTAREA" it will also have to have a "NAME" attribute set for it. Next create a new "Form" set the "Name" attribute.
    In the same new form add another input type of "TEXTFIELD" set the "Name" attribute and the "MAXSIZE" attribute if you want to limit the number of letters the text field will accept. Next in the same form add another input type of "SUBMIT" and add
    your servlet as an attribute.
    2. Construct your servlet in a manner that will receive
    the forms text field data by accessing "getParamater"
    method also create a "Cookie" object. As requests are sent to the servlet append the new text to the cookie object and send the new web page with the old cookie
    out to all sessions.
    3. Set the refresh time for your web page with the chat
    window to a reasonable amount of time.
    4. Add javascript to the web page. In the BODY tag of the html page add the javascript function onLoad="someFunction()". You will also have to add
    someFunction to the HEAD tag of the web page
    by doing something like this.
    <HEAD>
    <SCRIPT Language="javascript">
    function someFunction() {
    document.forms.<form name>.<text area name>.setText(document.cookie.cookieName.getValue())
    </SCRIPT>
    </HEAD>
    There may be some inconsistencies in these instructions,
    but its functionality is sound. Good luck.

  • Voice+video+text chat in a browser

    Hello All
    i plan to Design an app that can support voice + video + text chat on a browser.
    i want the application to be :-
    Let users chat via text
    Lets them talk via voice
    Lets them see each other‘s video
    Please guide on how to go about such a system.
    is there an open source variant available?
    Do I use a third party api like meebo, jabber or other voip /sip based softwares or write my own stuff ?
    regards
    Sanjay

    Hello All
    i plan to Design an app that can support voice + video + text chat on a browser.
    i want the application to be :-
    Let users chat via text
    Lets them talk via voice
    Lets them see each other‘s video
    Please guide on how to go about such a system.
    is there an open source variant available?
    Do I use a third party api like meebo, jabber or other voip /sip based softwares or write my own stuff ?
    regards
    Sanjay

Maybe you are looking for

  • Error in JMS Adapter:

    Receiving the below error, thought of JMS Drivers problems undeployed and re-deployed several times, but still problem persist in XI. Success     MP: Processing local module localejbs/SAP XI JMS Adapter/ConvertMessageToBinary 2010-09-09 11:45:21     

  • Table of Contents pdf export issues

    I create large documents that are exported as pdfs and viewed by users on PCs and Macs. I recently discovered a problem with pdfs created from InDesign, CS4 (viewed on a PC only) where the ToC "hangs up" and will not scroll. The longer the ToC, the l

  • Mapping multiple objects to a same db table

    Can Kodo support mapping of multiple objects to a same table? For example, we have two objects PersAutoPolicy and InsuredOrPrinciple, and we want to map them to a same db table.

  • Multiple report sections

    I need to create a report that has multiple sections. We will be calling this report from a form and we want to allow the user to select which sections (one, some or all) they want included in the report. The form and report will be accessable via th

  • Table RF180 blocked (user id )

    Hello All What is the reason for the error"Table RF180 blocked (userid)and how can we tectify this?