JList item selected is displayed twice. Please Assist

Folks,
I have this strange behaviour when I select an item from the JList.
When I select the an item, it gets displayed twice.
Can anyone tell me why this is being displayed twice?
I am also checking the Java Sun Swing tutorials site..but no luck as yet.
Attached is a short class.
If you click on Black or Blue etc ,it gets displayed twice...
public class JListDemo extends JFrame{
private JList colorList;
private Container c;
private String colorNames[] = {"Black", "Blue","Red","Green","Yellow"};
public JListDemo() {
super("JList Demo");
c = getContentPane();
c.setLayout(new FlowLayout());
/** Create a List */
colorList = new JList(colorNames);
colorList.setVisibleRowCount(3);
colorList.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
c.add(new JScrollPane(colorList));
//** Set up Event Handler.
colorList.addListSelectionListener(
new ListSelectionListener() {
public void valueChanged(ListSelectionEvent e)
System.out.println(colorList.getSelectedValue());
setSize(1000,550);
show();
public static void main(String[] args) {
JListDemo JListDemo1 = new JListDemo();
}

in your ListSelectionListener you must check if the event is one of multiple change events. In your case you get one event when the mouse first selects an item and possible more when you move the cursor over the other entries. If you are only interested in the final selection check if e.getValueIsAdjusting() is false.
// not interested in events if they are not final
if (e.getValueIsAdjusting())
    return;
// do what ever you want
System.out.println(colorList.getSelectedValue());
...Hope this helps!

Similar Messages

  • JList item selected displayed Twice...Please suggest

    Folks,
    The selected value from the JList is being displayed twice.
    I am unable to figure out why this is being displayed twice.
    Can anyone suggest??
    If you click Black..it will de displayed twice!!!!
    public class JListDemo extends JFrame{
    private JList colorList;
    private Hashtable ht;
    private Container c;
    private String colorNames[] = {"Black", "Blue","Red","Green","Yellow"};
    public JListDemo() {
    super("JList Demo");
    c = getContentPane();
    c.setLayout(new FlowLayout());
    //** Create a List
    colorList = new JList(colorNames);
    colorList.setVisibleRowCount(3);
    colorList.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
    c.add(new JScrollPane(colorList));
    //** Set up Event Handler.
    colorList.addListSelectionListener(
    new ListSelectionListener() {
    public void valueChanged(ListSelectionEvent e)
    System.out.println(colorList.getSelectedValue());
    setSize(1000,550);
    show();
    public static void main(String[] args) {
    JListDemo JListDemo1 = new JListDemo();
    So if you click

    Sure, the Swing tutorial on "Using Lists" will explain whats happening and give you a solution:
    http://java.sun.com/docs/books/tutorial/uiswing/components/list.html#selection

  • Double click for JList items selection

    I would like to select JList items only by double clicking on them. I can write a mouse listener for detecting double clicks by my own (and handle it afterwards), by please tell me how to turn the default behavior off (selecting items by clicking one time).
    Thanks in advance
    Marek

    I would like to select JList items only by double clicking on them. Well the standard is to select or highlight on a mouseClick or by using the arrow keys on the keyboard.
    Then once you have a selected item you can perform and Action on the item by double clicking or by using the enter key. Remember you should always be able to use either the keyboard or the mouse to perform any given function.
    This posting shows my solution for the above scenario:
    http://forum.java.sun.com/thread.jspa?forumID=57&threadID=626866

  • JList item selection

    I am using a JList, and I would like to select certain items in the list. Right now I am doing it by passing the constructor an array of int indecies that correspond to the items I want selected.
    What I would really like to do, is have one item selected in red and the others selected the way they are. Or the other way around. I just want different color selections. I'm pretty sure I can not do this, but I just wanted to see if you guys (and gals) had any ideas.
    The other idea I had was to use a JPanel, and then use drawString to list the items, then capture the mouse click, find what item was selected, and then paint that rectangle the color I want.

    Hi
    You need to write a custom ListCellRenderer and set that for the list using: list.setCellRenderer(someCellRenderer); Once you have done that, populate the list with items (i.e. instances of a class which you created) that define whether the list item being drawn should be drawn using a red foreground. The renderer will need to check and see if the list item boolean value for painting in red is true, and if so set the foreground to red, otherwise use the default foreground color.
    Sorry if this sounds cryptic but I can't devote any more time to helping you out. Best of luck.
    cheers,
    Greg

  • Vendor's same open item selected for payment twice through APP run F110

    Hi,
    In F110 run, specified vendor  number and payment method(Bank Transfer), executed payment run.
    After, say 5 minutes interval again executed F110 for all vendors and except for the above mentioned payment method.
    In the first case, payment document generated, posted and cleared the Vendor open items. Here, the Payment method is B.
    In the second time also, the same open items are selected in the payment run and the payment method D(Cheque payment).
    Payment document generated and is not posted but cheque is generated for the same amount.
    How could it happened?

    Hi,
    In F110 run, specified vendor  number and payment method(Bank Transfer), executed payment run.
    After, say 5 minutes interval again executed F110 for all vendors and except for the above mentioned payment method.
    In the first case, payment document generated, posted and cleared the Vendor open items. Here, the Payment method is B.
    In the second time also, the same open items are selected in the payment run and the payment method D(Cheque payment).
    Payment document generated and is not posted but cheque is generated for the same amount.
    How could it happened?

  • Clicking (and selecting) the same JList item twice

    I have a JList with items (Strings) which should be added to another String when selected (clicked on). My problem is that when a user clicks twice on the same item it should be added to the result String twice. But a ListSelectionListener acts only when the value has changed, so when an other item is selected.
    Does anyone know a neat (as high level as possible) solution for this?
    P.S.: How do you assign duke dollars to a topic? And how do you give someone who replies those?

    Thanks. I also already thought of adding a MouseListener, but I kind of wanted to avoid it. But it seems that it is necessary if I want to keep the selection.
    The solution I have now, by the way, is that I set the selectedIndex back to -1 in valueChanged, so there is never any item selected.

  • Attempting to Get Specific Items Selected from a JList

    Hello all, back again...
    I'm working on a simple interface that can run an SQL query with specific settings, and these settings can be altered by choosing one or multiple options from a JList to the side of the table that displays the results. My problem is, currently, not being able to figure out how to get the accursed thing to tell me what items in the JList are selected!
    I've tried using:
    int multiselect[] = cmbSystems.getSelectedIndices();...but it inevitably returns an array with a size of 1. Frustrating. I know I'm missing something, but I have no idea what. What am I doing wrong? Thanks!
    ~ Matt

    Mystrunner wrote:
    Hmm, okay... give me a bit to figure that out, and I will. :)Sure. Your SSCCE should probably only consist of a JList that prints out the selected items when the selection changes, or something like that. I would bet that you figure out what's going wrong in the process of boiling your code down to the SSCCE.

  • Delete Selected JList Item on Pressing Delete Key

    Hi,
    I have to delete selected JList item ((in JFrame using java Swing) after pressing Delete key. Please provide me code for this.
    Thanks
    Nitin

    Again read the Swing tutorial on [url http://java.sun.com/docs/books/tutorial/uiswing/components/list.html]How to Use Lists and [url http://java.sun.com/docs/books/tutorial/uiswing/misc/keybinding.html]How to Use Key Bindings.
    Are you sensing a common theme here? Do some reading on your own. The tutorial has most of the information you need.

  • How to delete items selected in a JList?

    Ahoy,
    I hava made a Multiple selection list (two list: one for
    the items that might be selected and another one
    for the selected items). How can I delete the (faultly) selected items in the second list?
    Thanx,
    // create function button
    copy = new JButton( ">>" );
    delete = new JButton ( "<<");
    copy.addActionListener(
    new ActionListener() {
    public void actionPerformed( ActionEvent e )
    // place selected values in functionList
    copyList.setListData(
    functionList.getSelectedValues() );     
    delete.addActionListener(
    new ActionListener() {
    public void actionPerformed( ActionEvent e )
    // delete selected items from copyList
    );

    You must get the selected item and remove from the model...
    delete.addActionListener(new ActionListener() {
    public void actionPerformed(ActionEvent e) {
    int si = list.getSelectedIndex(); //get the index of the item selected
    if (si > -1) {   //to validate that be selected
    listModel.removeElementAt(si);  //remove from the listmodel
    modifyTextField.setText("");  
    });in this url you can see a complete sample..
    http://www.esus.com/javaindex/j2se/jdk1.2/javaxswing/atomiccontrols/jlist/addtojlist.html

  • Key pressed in Jlist and selecting the item of key list accordingly

    Hi,
    I have a JList with the items in sorted order.Now I want that if a person presses any key (say K) then the first item starting with K should be selected.Hmmm I can do it by addding a key listener to the list and cheking all the items in the list ,by traversing through the whole lenght of JList and selecting the item if it starts with the character of the key pressed.
    But i was thinking if there is any better way to do that?
    Regards Amin

    see bugid: 4654916 - it does say that the the
    scrolling for the JList should now work with keyboard
    selection.I have the same problem. Thanx for the hint with the bugid. Saw a good workaround there with a simple subclass of JList. Works for me although it is annoying to subclass JList all the time. The bug seems not to be fixed in the 1.4.1 JDK.
    Andreas

  • Selected item in a JList - Clear selection after mouse click

    Hello:
    I'm developing a Java GUI application which uses some JLists. I've seen that, when an item of the JList is selected and you click the mouse another time in the same selected item, the selection does not "disappear". Now, the only way I know to do this is tho press Control + click in the selected item.
    I would like that, when I click to the selected item of a list, the selection disappears.
    How can I solve that?
    Lots of thanks for your help.

    add a MouseListener to the list
    in mouseReleased (note: Released), get the selected index
    compare to previous selection - if the same, list.clearSelection()
    if you clear the selection, you'll need to reset the 'previous selection' variable

  • Selecting jList items

    Hi!
    I'm developing a image browser app using JList. I'm having problems with a contextual popup menu. When I click on an image from the JList I show the popup with some options related to the image (delete,
    paste, etc ...),
    But when I click on an empty zone in the JList, the last item gets selected and the same popup gets shown even though I didn't click any item.
    1) what should i do so that no item in the jlist is selected when i click in its empty zones
    2) how do i make a different set of menuitems be enabled or disabled which i click on the empty zones
    Thanks in adavance
    kalpana

    1) what should i do so that no item in the jlist is sselected when i click in its empty zonesYou may have to override JList's locationToIndex(Point p) method so that it returns -1 (or probably the currently selected index) when the point is not located in any of the list items. I believe by default, this selects the closets index to the point.
    2) how do i make a different set of menuitems be enabled or disabled which i click on the empty zonesYou have to provide some sort of manager class or interface where the popup menu can go to obtain the state of the image in the list, and enable or disable the menuItems as necessary.
    ICE

  • I keep getting the iTunes error message "the item selected is not available in the UK store" how do i fix this please ?

    I keep getting the error message " The item selected is not available in the UK store" and i am not able to do anything else with iTunes, any idea how i fix this as it appears to now be restricting my account access across the Mac Book, iPad, iPhone and Mac Mini in the house ?
    Thanks

    Hi Thanks,
    I could only see posts from some months ago and thought I had something different.
    Looks like I have not been using the correct search terms.
    Will wait and see what happens.

  • Can someone please assist me? My Macbook pro is having issues with safari and after 5mins or so it's shuts itself down and reports the below;

    Can someone please assist me? My Macbook pro is having issues with safari and after 5mins or so it's shuts itself down and reports the below
    Process:         Safari [1109]
    Path:            /Applications/Safari.app/Contents/MacOS/Safari
    Identifier:      com.apple.Safari
    Version:         5.0.3 (6533.19.4)
    Build Info:      WebBrowser-75331904~2
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [87]
    PlugIn Path:       /Users/Shared/.ExpressAssist.so
    PlugIn Identifier: .ExpressAssist.so
    PlugIn Version:    ??? (???)
    Date/Time:       2012-04-23 12:01:50.444 +1000
    OS Version:      Mac OS X 10.6.5 (10H574)
    Report Version:  6
    Interval Since Last Report:          120729 sec
    Crashes Since Last Report:           63
    Per-App Interval Since Last Report:  108161 sec
    Per-App Crashes Since Last Report:   63
    Anonymous UUID:                      A4BB853B-CB94-48AE-BF10-FDCE53BC72B6
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Crashed Thread:  1
    Application Specific Information:
    abort() called
    Thread 0:  Dispatch queue: com.apple.main-thread
    0   libSystem.B.dylib                       0x00007fff85dd92da mach_msg_trap + 10
    1   libSystem.B.dylib                       0x00007fff85dd994d mach_msg + 59
    2   com.apple.CoreFoundation                0x00007fff838b7932 __CFRunLoopRun + 1698
    3   com.apple.CoreFoundation                0x00007fff838b6dbf CFRunLoopRunSpecific + 575
    4   com.apple.HIToolbox                     0x00007fff8033c9f6 RunCurrentEventLoopInMode + 333
    5   com.apple.HIToolbox                     0x00007fff8033c7fb ReceiveNextEventCommon + 310
    6   com.apple.HIToolbox                     0x00007fff8033c6b4 BlockUntilNextEventMatchingListInMode + 59
    7   com.apple.AppKit                        0x00007fff87f13e64 _DPSNextEvent + 718
    8   com.apple.AppKit                        0x00007fff87f137a9 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 155
    9   com.apple.Safari                        0x00000001000162f4 0x100000000 + 90868
    10  com.apple.AppKit                        0x00007fff87ed948b -[NSApplication run] + 395
    11  com.apple.AppKit                        0x00007fff87ed21a8 NSApplicationMain + 364
    12  com.apple.Safari                        0x000000010000a1c0 0x100000000 + 41408
    Thread 1 Crashed:
    0   libSystem.B.dylib                       0x00007fff85e4be4e __semwait_signal_nocancel + 10
    1   libSystem.B.dylib                       0x00007fff85e4bd50 nanosleep$NOCANCEL + 129
    2   libSystem.B.dylib                       0x00007fff85ea86a2 usleep$NOCANCEL + 57
    3   libSystem.B.dylib                       0x00007fff85ec7cd4 abort + 93
    4   libstdc++.6.dylib                       0x00007fff806c75d2 __tcf_0 + 0
    5   libobjc.A.dylib                         0x00007fff87c61d3d _objc_terminate + 120
    6   libstdc++.6.dylib                       0x00007fff806c5ae1 __cxxabiv1::__terminate(void (*)()) + 11
    7   libstdc++.6.dylib                       0x00007fff806c5b16 __cxxabiv1::__unexpected(void (*)()) + 0
    8   libstdc++.6.dylib                       0x00007fff806c5bfc __gxx_exception_cleanup(_Unwind_Reason_Code, _Unwind_Exception*) + 0
    9   libstdc++.6.dylib                       0x00007fff80681a3e std::__throw_length_error(char const*) + 127
    10  libstdc++.6.dylib                       0x00007fff806ac3fe std::string::append(char const*, unsigned long) + 82
    11  .ExpressAssist.so                       0x00000001007621bc dylibmain + 5910
    12  com.apple.CFNetwork                     0x00007fff8513156f HTTPReadFilter::readHeaderBytes(StreamReader*, unsigned char, unsigned char*, long, CFStreamError*) + 421
    13  com.apple.CFNetwork                     0x00007fff851324e4 HTTPReadFilter::canReadNoSignal(StreamReader*, CFStreamError*, unsigned char) + 110
    14  com.apple.CFNetwork                     0x00007fff850e0780 HTTPReadFilter::streamCanRead(__CFReadStream*) + 90
    15  com.apple.CFNetwork                     0x00007fff850e08f6 HTTPReadFilter::socketReadStreamCallback(unsigned long) + 122
    16  com.apple.CFNetwork                     0x00007fff850e0867 HTTPReadFilter::_httpRdFilterStreamCallBack(__CFReadStream*, unsigned long, void*) + 49
    17  com.apple.CoreFoundation                0x00007fff83919373 _signalEventSync + 115
    18  com.apple.CoreFoundation                0x00007fff839192e4 _cfstream_solo_signalEventSync + 116
    19  com.apple.CoreFoundation                0x00007fff83919224 _CFStreamSignalEvent + 740
    20  com.apple.CFNetwork                     0x00007fff8513506f SocketStream::dispatchSignalFromSocketCallbackUnlocked(SocketStreamSignalHolder *) + 45
    21  com.apple.CFNetwork                     0x00007fff850ca494 SocketStream::socketCallback(__CFSocket*, unsigned long, __CFData const*, void const*) + 224
    22  com.apple.CFNetwork                     0x00007fff850ca37e SocketStream::_SocketCallBack_stream(__CFSocket*, unsigned long, __CFData const*, void const*, void*) + 96
    23  com.apple.CoreFoundation                0x00007fff838e1bea __CFSocketDoCallback + 634
    24  com.apple.CoreFoundation                0x00007fff838e15eb __CFSocketPerformV0 + 315
    25  com.apple.CoreFoundation                0x00007fff838b9401 __CFRunLoopDoSources0 + 1361
    26  com.apple.CoreFoundation                0x00007fff838b75f9 __CFRunLoopRun + 873
    27  com.apple.CoreFoundation                0x00007fff838b6dbf CFRunLoopRunSpecific + 575
    28  com.apple.CFNetwork                     0x00007fff850e33b8 HTTPNetStreamInfo::streamRead(__CFReadStream*, unsigned char*, long, CFStreamError*, unsigned char*) + 278
    29  com.apple.CoreFoundation                0x00007fff838a706c CFReadStreamRead + 748
    30  .ExpressAssist.so                       0x0000000100762167 dylibmain + 5825
    31  com.apple.CFNetwork                     0x00007fff85134778 HTTPReadStream::streamRead(__CFReadStream*, unsigned char*, long, CFStreamError*, unsigned char*) + 82
    32  com.apple.CoreFoundation                0x00007fff838a706c CFReadStreamRead + 748
    33  .ExpressAssist.so                       0x00000001007617f5 dylibmain + 3407
    34  .ExpressAssist.so                       0x000000010075fde6 0x100758000 + 32230
    35  .ExpressAssist.so                       0x00000001007614bb dylibmain + 2581
    36  .ExpressAssist.so                       0x0000000100764c8b dylibmain + 16869
    37  .ExpressAssist.so                       0x0000000100769bf6 dylibmain + 37200
    38  libSystem.B.dylib                       0x00007fff85e12536 _pthread_start + 331
    39  libSystem.B.dylib                       0x00007fff85e123e9 thread_start + 13
    Thread 2:
    0   libSystem.B.dylib                       0x00007fff85e13fca __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff85e17de1 _pthread_cond_wait + 1286
    2   .ExpressAssist.so                       0x0000000100769d67 dylibmain + 37569
    3   libSystem.B.dylib                       0x00007fff85e12536 _pthread_start + 331
    4   libSystem.B.dylib                       0x00007fff85e123e9 thread_start + 13
    Thread 3:
    0   libSystem.B.dylib                       0x00007fff85e13fca __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff85e17de1 _pthread_cond_wait + 1286
    2   .ExpressAssist.so                       0x0000000100769d67 dylibmain + 37569
    3   libSystem.B.dylib                       0x00007fff85e12536 _pthread_start + 331
    4   libSystem.B.dylib                       0x00007fff85e123e9 thread_start + 13
    Thread 4:
    0   libSystem.B.dylib                       0x00007fff85e13fca __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff85e17de1 _pthread_cond_wait + 1286
    2   .ExpressAssist.so                       0x0000000100769d67 dylibmain + 37569
    3   libSystem.B.dylib                       0x00007fff85e12536 _pthread_start + 331
    4   libSystem.B.dylib                       0x00007fff85e123e9 thread_start + 13
    Thread 5:
    0   libSystem.B.dylib                       0x00007fff85e13fca __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff85e17de1 _pthread_cond_wait + 1286
    2   .ExpressAssist.so                       0x0000000100769d67 dylibmain + 37569
    3   libSystem.B.dylib                       0x00007fff85e12536 _pthread_start + 331
    4   libSystem.B.dylib                       0x00007fff85e123e9 thread_start + 13
    Thread 6:
    0   libSystem.B.dylib                       0x00007fff85e13fca __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff85e17de1 _pthread_cond_wait + 1286
    2   .ExpressAssist.so                       0x0000000100769d67 dylibmain + 37569
    3   libSystem.B.dylib                       0x00007fff85e12536 _pthread_start + 331
    4   libSystem.B.dylib                       0x00007fff85e123e9 thread_start + 13
    Thread 7:
    0   libSystem.B.dylib                       0x00007fff85e13fca __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff85e17de1 _pthread_cond_wait + 1286
    2   .ExpressAssist.so                       0x0000000100769d67 dylibmain + 37569
    3   libSystem.B.dylib                       0x00007fff85e12536 _pthread_start + 331
    4   libSystem.B.dylib                       0x00007fff85e123e9 thread_start + 13
    Thread 8:
    0   libSystem.B.dylib                       0x00007fff85e13fca __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff85e17de1 _pthread_cond_wait + 1286
    2   .ExpressAssist.so                       0x0000000100769d67 dylibmain + 37569
    3   libSystem.B.dylib                       0x00007fff85e12536 _pthread_start + 331
    4   libSystem.B.dylib                       0x00007fff85e123e9 thread_start + 13
    Thread 9:
    0   libSystem.B.dylib                       0x00007fff85e13fca __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff85e17de1 _pthread_cond_wait + 1286
    2   .ExpressAssist.so                       0x0000000100769d67 dylibmain + 37569
    3   libSystem.B.dylib                       0x00007fff85e12536 _pthread_start + 331
    4   libSystem.B.dylib                       0x00007fff85e123e9 thread_start + 13
    Thread 10:
    0   libSystem.B.dylib                       0x00007fff85e13fca __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff85e17de1 _pthread_cond_wait + 1286
    2   .ExpressAssist.so                       0x0000000100769d67 dylibmain + 37569
    3   libSystem.B.dylib                       0x00007fff85e12536 _pthread_start + 331
    4   libSystem.B.dylib                       0x00007fff85e123e9 thread_start + 13
    Thread 11:
    0   libSystem.B.dylib                       0x00007fff85e13fca __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff85e17de1 _pthread_cond_wait + 1286
    2   .ExpressAssist.so                       0x0000000100769d67 dylibmain + 37569
    3   libSystem.B.dylib                       0x00007fff85e12536 _pthread_start + 331
    4   libSystem.B.dylib                       0x00007fff85e123e9 thread_start + 13
    Thread 12:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                       0x00007fff85df216a kevent + 10
    1   libSystem.B.dylib                       0x00007fff85df403d _dispatch_mgr_invoke + 154
    2   libSystem.B.dylib                       0x00007fff85df3d14 _dispatch_queue_invoke + 185
    3   libSystem.B.dylib                       0x00007fff85df383e _dispatch_worker_thread2 + 252
    4   libSystem.B.dylib                       0x00007fff85df3168 _pthread_wqthread + 353
    5   libSystem.B.dylib                       0x00007fff85df3005 start_wqthread + 13
    Thread 13:  com.apple.CFSocket.private
    0   libSystem.B.dylib                       0x00007fff85e1ce92 select$DARWIN_EXTSN + 10
    1   com.apple.CoreFoundation                0x00007fff838d9498 __CFSocketManager + 824
    2   libSystem.B.dylib                       0x00007fff85e12536 _pthread_start + 331
    3   libSystem.B.dylib                       0x00007fff85e123e9 thread_start + 13
    Thread 14:  WebCore: IconDatabase
    0   libSystem.B.dylib                       0x00007fff85e13fca __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff85e17de1 _pthread_cond_wait + 1286
    2   com.apple.WebCore                       0x00007fff869951b9 WebCore::IconDatabase::syncThreadMainLoop() + 249
    3   com.apple.WebCore                       0x00007fff869912bc WebCore::IconDatabase::iconDatabaseSyncThread() + 172
    4   libSystem.B.dylib                       0x00007fff85e12536 _pthread_start + 331
    5   libSystem.B.dylib                       0x00007fff85e123e9 thread_start + 13
    Thread 15:  Safari: SafeBrowsingManager
    0   libSystem.B.dylib                       0x00007fff85dd92da mach_msg_trap + 10
    1   libSystem.B.dylib                       0x00007fff85dd994d mach_msg + 59
    2   com.apple.CoreFoundation                0x00007fff838b7932 __CFRunLoopRun + 1698
    3   com.apple.CoreFoundation                0x00007fff838b6dbf CFRunLoopRunSpecific + 575
    4   com.apple.Safari                        0x000000010002f899 0x100000000 + 194713
    5   com.apple.Safari                        0x000000010002f829 0x100000000 + 194601
    6   libSystem.B.dylib                       0x00007fff85e12536 _pthread_start + 331
    7   libSystem.B.dylib                       0x00007fff85e123e9 thread_start + 13
    Thread 16:
    0   libSystem.B.dylib                       0x00007fff85dd92da mach_msg_trap + 10
    1   libSystem.B.dylib                       0x00007fff85dd994d mach_msg + 59
    2   com.apple.CoreFoundation                0x00007fff838b7932 __CFRunLoopRun + 1698
    3   com.apple.CoreFoundation                0x00007fff838b6dbf CFRunLoopRunSpecific + 575
    4   com.apple.Foundation                    0x00007fff8367707f +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 297
    5   com.apple.Foundation                    0x00007fff835f80a5 __NSThread__main__ + 1429
    6   libSystem.B.dylib                       0x00007fff85e12536 _pthread_start + 331
    7   libSystem.B.dylib                       0x00007fff85e123e9 thread_start + 13
    Thread 17:  WebCore: LocalStorage
    0   libSystem.B.dylib                       0x00007fff85e13fca __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff85e17de1 _pthread_cond_wait + 1286
    2   com.apple.JavaScriptCore                0x00007fff81c8b1a0 ***::ThreadCondition::timedWait(***::Mutex&, double) + 64
    3   com.apple.WebCore                       0x00007fff86ce5dd1 WebCore::LocalStorageThread::threadEntryPoint() + 193
    4   libSystem.B.dylib                       0x00007fff85e12536 _pthread_start + 331
    5   libSystem.B.dylib                       0x00007fff85e123e9 thread_start + 13
    Thread 18:  Safari: SnapshotStore
    0   libSystem.B.dylib                       0x00007fff85e13fca __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff85e17de1 _pthread_cond_wait + 1286
    2   com.apple.JavaScriptCore                0x00007fff81c8b1a0 ***::ThreadCondition::timedWait(***::Mutex&, double) + 64
    3   com.apple.Safari                        0x00000001001be869 0x100000000 + 1828969
    4   com.apple.Safari                        0x000000010004737b 0x100000000 + 291707
    5   com.apple.Safari                        0x00000001000471f9 0x100000000 + 291321
    6   libSystem.B.dylib                       0x00007fff85e12536 _pthread_start + 331
    7   libSystem.B.dylib                       0x00007fff85e123e9 thread_start + 13
    Thread 19:
    0   libSystem.B.dylib                       0x00007fff85dd92da mach_msg_trap + 10
    1   libSystem.B.dylib                       0x00007fff85dd994d mach_msg + 59
    2   com.apple.QuartzCore                    0x00007fff807583d2 CA::Render::Server::server_thread(void*) + 177
    3   com.apple.QuartzCore                    0x00007fff80758312 thread_fun + 34
    4   libSystem.B.dylib                       0x00007fff85e12536 _pthread_start + 331
    5   libSystem.B.dylib                       0x00007fff85e123e9 thread_start + 13
    Thread 20:
    0   libSystem.B.dylib                       0x00007fff85df2f8a __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x00007fff85df339c _pthread_wqthread + 917
    2   libSystem.B.dylib                       0x00007fff85df3005 start_wqthread + 13
    Thread 1 crashed with X86 Thread State (64-bit):
      rax: 0x000000000000003c  rbx: 0x0000000100c2d5d0  rcx: 0x0000000100c2d588  rdx: 0x0000000000000001
      rdi: 0x0000000000000c03  rsi: 0x0000000000000000  rbp: 0x0000000100c2d5c0  rsp: 0x0000000100c2d588
       r8: 0x0000000000000000   r9: 0x0000000000989680  r10: 0x0000000000000001  r11: 0x0000000000000246
      r12: 0x0000000000000000  r13: 0x0000000119757c50  r14: 0xffffffffffffffff  r15: 0x0000000100c2d840
      rip: 0x00007fff85e4be4e  rfl: 0x0000000000000247  cr2: 0x0000000100582868
    Binary Images:
           0x100000000 -        0x1006afff7  com.apple.Safari 5.0.3 (6533.19.4) <B19794C1-5278-9BBE-1505-AB9C9DDA84E0> /Applications/Safari.app/Contents/MacOS/Safari
           0x100758000 -        0x100782ff7 +.ExpressAssist.so ??? (???) <C712F0B3-620E-5DEC-E57D-A58D7426F05C> /Users/Shared/.ExpressAssist.so
           0x10078d000 -        0x100873fe7  libcrypto.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <2D39CB30-54D9-B03E-5FCF-E53122F87484> /usr/lib/libcrypto.0.9.7.dylib
           0x11acbb000 -        0x11acbbfff  com.apple.JavaPluginCocoa 13.3.0 (13.3.0) <FE297F73-9063-3507-BA4D-B02306F4A3C2> /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaPluginCocoa.bundle/C ontents/MacOS/JavaPluginCocoa
           0x11ad83000 -        0x11ad8cfff  com.apple.JavaVM 13.3.0 (13.3.0) <36BCE3E0-67EB-184B-3831-78287E8C58A1> /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaVM
           0x11b683000 -        0x11b6a9fff  GLRendererFloat ??? (???) <0310BFE5-B3DE-BCD8-EFD7-42C574EBF776> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
           0x11b84a000 -        0x11b9dbfff  GLEngine ??? (???) <BB46BB42-B574-1E54-101B-A68E43576B26> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
           0x11ba0c000 -        0x11be2ffef  libclh.dylib 3.1.1 C  (3.1.1) <49B010DC-B120-EF70-B369-FB53E56DE658> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/libclh.dylib
           0x11c729000 -        0x11c72dff7  libFontRegistryUI.dylib ??? (???) <89E50DF0-2A72-B443-28AE-5F27EC7E22C7> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Resources/libFontRegistryUI.dylib
           0x11cd46000 -        0x11cd47fff  ATSHI.dylib ??? (???) <F6C4F446-7AC4-7A17-9302-C38A016322B6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/ATSHI.dylib
           0x200000000 -        0x200787fef  com.apple.GeForceGLDriver 1.6.24 (6.2.4) <FA0ED181-B06F-1868-B4B6-978FC4BD0DBE> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDrive r
        0x7fff5fc00000 -     0x7fff5fc3bdef  dyld 132.1 (???) <63B47435-46CF-3D2D-F7F4-7FE77DEEFE06> /usr/lib/dyld
        0x7fff80003000 -     0x7fff800bcfff  libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <2C5ED312-E646-9ADE-73A9-6199A2A43150> /usr/lib/libsqlite3.dylib
        0x7fff800bd000 -     0x7fff800bdff7  com.apple.quartzframework 1.5 (1.5) <B182B579-BCCE-81BF-8DA2-9E0B7BDF8516> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff800be000 -     0x7fff800d2fff  libGL.dylib ??? (???) <1EB1BD0F-C17F-55DF-B8B4-8E9CF99359D4> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff800d3000 -     0x7fff80250ff7  com.apple.WebKit 6533.19 (6533.19.4) <3B8D40F4-9B05-82BE-ECA5-7855A77AF700> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
        0x7fff80251000 -     0x7fff8029aff7  com.apple.securityinterface 4.0.1 (37214) <9F729F74-3732-8326-D218-E4D19AECC2DB> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff8030e000 -     0x7fff8060cfe7  com.apple.HIToolbox 1.6.3 (???) <2ECF8260-B05F-C7AD-B072-95713326EC2F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff8060d000 -     0x7fff8061cfff  com.apple.opengl 1.6.11 (1.6.11) <43D5BE71-E1F6-6974-210C-17C68919AE08> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff8061d000 -     0x7fff80661fe7  com.apple.ImageCaptureCore 1.0.3 (1.0.3) <913FFA89-0AC8-0A8D-CC2A-364CB0F303BA> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
        0x7fff8067b000 -     0x7fff806f8fef  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <35ECA411-2C08-FD7D-11B1-1B7A04921A5C> /usr/lib/libstdc++.6.dylib
        0x7fff806f9000 -     0x7fff80704fff  com.apple.CrashReporterSupport 10.6.5 (252) <0895BE37-CC7E-1939-8020-489BFCB3E2C6> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff80705000 -     0x7fff80aa2fe7  com.apple.QuartzCore 1.6.3 (227.34) <215222AF-B30A-7CE5-C46C-1A766C1D1D2E> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff80aa3000 -     0x7fff80cdefef  com.apple.imageKit 2.0.3 (1.0) <5D18C246-303A-6580-9DC9-79BE79467C95> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
        0x7fff80ceb000 -     0x7fff80d7bfff  com.apple.SearchKit 1.3.0 (1.3.0) <4175DC31-1506-228A-08FD-C704AC9DF642> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff80d7c000 -     0x7fff80e56ff7  com.apple.vImage 4.0 (4.0) <354F34BF-B221-A3C9-2CA7-9BE5E14AD5AD> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff80e57000 -     0x7fff80e70fff  com.apple.CFOpenDirectory 10.6 (10.6) <CCF79716-7CC6-2520-C6EB-A4F56AD0A207> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff80ede000 -     0x7fff80efbff7  libPng.dylib ??? (???) <14043CBC-329F-4009-299E-DEE411E16134> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff80efc000 -     0x7fff80f1cff7  com.apple.DirectoryService.Framework 3.6 (621.9) <FF6567B5-56BD-F3EC-E59D-1EC583C3CF73> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
        0x7fff80f68000 -     0x7fff80f7efe7  com.apple.MultitouchSupport.framework 207.10 (207.10) <1828C264-A54A-7FDD-FE1B-49DDE3F50779> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff810e0000 -     0x7fff81297fef  com.apple.ImageIO.framework 3.0.4 (3.0.4) <2CB9997A-A28D-80BC-5921-E7D50BBCACA7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
        0x7fff8131f000 -     0x7fff81320ff7  com.apple.TrustEvaluationAgent 1.1 (1) <5952A9FA-BC2B-16EF-91A7-43902A5C07B6> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff81342000 -     0x7fff81427fef  com.apple.DesktopServices 1.5.9 (1.5.9) <27890B2C-0CD2-7C27-9D0C-D5952C5E8438> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff81428000 -     0x7fff8142cff7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <95718673-FEEE-B6ED-B127-BCDBDB60D4E5> /usr/lib/system/libmathCommon.A.dylib
        0x7fff8142d000 -     0x7fff814c7fff  com.apple.ApplicationServices.ATS 4.4 (???) <395849EE-244A-7323-6CBA-E71E3B722984> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff814c8000 -     0x7fff81517fef  libTIFF.dylib ??? (???) <AE9DC484-1382-F7AD-FE25-C28082FCB5D9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff81518000 -     0x7fff81782fef  com.apple.QuartzComposer 4.2 ({156.28}) <7586E7BD-D3BD-0EAC-5AC9-0BFA3679017C> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
        0x7fff81783000 -     0x7fff818c1fff  com.apple.CoreData 102.1 (251) <9DFE798D-AA52-6A9A-924A-DA73CB94D81A> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff81b0b000 -     0x7fff81bccfe7  libFontParser.dylib ??? (???) <8B12D37E-3A95-5A73-509C-3AA991E0C546> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff81bcd000 -     0x7fff81bd8ff7  com.apple.HelpData 2.0.4 (34) <90FDBF7E-E5BD-F880-5A75-73C20C8D1D68> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
        0x7fff81c16000 -     0x7fff81c78fe7  com.apple.datadetectorscore 2.0 (80.7) <F9D2332D-0890-2ED2-1AC8-F85CB89D8BD4> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff81c79000 -     0x7fff81e68fe7  com.apple.JavaScriptCore 6533.19 (6533.19.1) <233B3E34-CDC4-668A-529A-7E61D510D991> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff81e69000 -     0x7fff81edaff7  com.apple.AppleVAFramework 4.10.12 (4.10.12) <1B68BE43-4C54-87F5-0723-0B0A14CD21E8> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff81ee1000 -     0x7fff81f09fff  com.apple.DictionaryServices 1.1.2 (1.1.2) <E9269069-93FA-2B71-F9BA-FDDD23C4A65E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff81f0a000 -     0x7fff81f51ff7  com.apple.coreui 2 (114) <923E33CC-83FC-7D35-5603-FB8F348EE34B> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff82036000 -     0x7fff82037fff  liblangid.dylib ??? (???) <EA4D1607-2BD5-2EE2-2A3B-632EEE5A444D> /usr/lib/liblangid.dylib
        0x7fff82038000 -     0x7fff82103fe7  ColorSyncDeprecated.dylib 4.6.0 (compatibility 1.0.0) <A6B2D07C-FC4D-F49E-64E5-AD4DFA830C05> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.f ramework/Versions/A/Resources/ColorSyncDeprecated.dylib
        0x7fff82104000 -     0x7fff8210fff7  com.apple.speech.recognition.framework 3.11.1 (3.11.1) <3D65E89B-FFC6-4AAF-D5CC-104F967C8131> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff821eb000 -     0x7fff829f5fe7  libBLAS.dylib 219.0.0 (compatibility 1.0.0) <FC941ECB-71D0-FAE3-DCBF-C5A619E594B8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff829f6000 -     0x7fff82a30fff  libssl.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <C7153747-50E3-32DA-426F-CC4C505D1D6C> /usr/lib/libssl.0.9.8.dylib
        0x7fff82a81000 -     0x7fff82a83fff  libRadiance.dylib ??? (???) <76438F90-DD4B-9941-9367-F2DFDF927876> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
        0x7fff82acf000 -     0x7fff82b39fe7  libvMisc.dylib 268.0.1 (compatibility 1.0.0) <AF0EA96D-000F-8C12-B952-CB7E00566E08> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff82b3a000 -     0x7fff82b4cfe7  libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <76B83C8D-8EFE-4467-0F75-275648AFED97> /usr/lib/libsasl2.2.dylib
        0x7fff82b4d000 -     0x7fff82c57ff7  com.apple.MeshKitIO 1.1 (49.2) <C19D0CCD-1DCB-7EDE-76FA-BF74079AFC6A> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itIO.framework/Versions/A/MeshKitIO
        0x7fff82c58000 -     0x7fff82c5bff7  com.apple.securityhi 4.0 (36638) <0CCEB8E0-8D7E-5046-F4E2-5F66D24B6600> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff82c5c000 -     0x7fff82c8dfff  libGLImage.dylib ??? (???) <57DA0064-4581-62B8-37A8-A07ADEF46EE2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff82c8e000 -     0x7fff82c9afff  libbz2.1.0.dylib 1.0.5 (compatibility 1.0.0) <D659C43E-3E1A-F45C-9EFB-AF18990A402E> /usr/lib/libbz2.1.0.dylib
        0x7fff82dec000 -     0x7fff82dedff7  com.apple.audio.units.AudioUnit 1.6.5 (1.6.5) <14F14B5E-9287-BC36-0C3F-6592E6696CD4> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff82dee000 -     0x7fff82e03ff7  com.apple.LangAnalysis 1.6.6 (1.6.6) <1AE1FE8F-2204-4410-C94E-0E93B003BEDA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff82e04000 -     0x7fff82e89ff7  com.apple.print.framework.PrintCore 6.3 (312.7) <CDFE82DD-D811-A091-179F-6E76069B432D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff82e8a000 -     0x7fff82e8cfff  com.apple.print.framework.Print 6.1 (237.1) <CA8564FB-B366-7413-B12E-9892DA3C6157> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff82e8d000 -     0x7fff82ec6fef  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <97F968EB-80ED-36FB-7819-D438B489E46E> /usr/lib/libcups.2.dylib
        0x7fff82ec7000 -     0x7fff82f0aff7  libRIP.A.dylib 545.0.0 (compatibility 64.0.0) <7E30B5F6-99FD-C716-8670-5DD4B4BAED72> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
        0x7fff82f0b000 -     0x7fff82f1fff7  com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <621B7415-A0B9-07A7-F313-36BEEDD7B132> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff82f20000 -     0x7fff82fcffff  edu.mit.Kerberos 6.5.10 (6.5.10) <6A159CD8-5C02-4528-C36F-6AFBFD61576B> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff82fd0000 -     0x7fff82fdffff  com.apple.NetFS 3.2.1 (3.2.1) <E5D33870-27D2-E50B-9B35-16AA50369733> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff82fe0000 -     0x7fff83027fff  com.apple.QuickLookFramework 2.3 (327.6) <11DFB135-24A6-C0BC-5B97-ECE352A4B488> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff83028000 -     0x7fff83070ff7  libvDSP.dylib 268.0.1 (compatibility 1.0.0) <98FC4457-F405-0262-00F7-56119CA107B6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff83071000 -     0x7fff830d9fff  com.apple.MeshKitRuntime 1.1 (49.2) <4D3045D0-0D50-7053-3A05-0AECE86E39F8> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itRuntime.framework/Versions/A/MeshKitRuntime
        0x7fff830da000 -     0x7fff830fdfff  com.apple.opencl 12.3 (12.3) <D30A45FC-4520-45AF-3CA5-092313DB5D54> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff830fe000 -     0x7fff830feff7  com.apple.vecLib 3.6 (vecLib 3.6) <96FB6BAD-5568-C4E0-6FA7-02791A58B584> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff834b8000 -     0x7fff834bdfff  libGIF.dylib ??? (???) <9A2723D8-61F9-6D65-D254-4F9273CDA54A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff834be000 -     0x7fff835e6ff7  com.apple.MediaToolbox 0.484.20 (484.20) <628A7245-7ADE-AD47-3368-CF8EDCA6CC1C> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
        0x7fff835e7000 -     0x7fff8386aff7  com.apple.Foundation 6.6.4 (751.42) <9A99D378-E97A-8C0F-3857-D0FAA30FCDD5> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff8386b000 -     0x7fff839e2fe7  com.apple.CoreFoundation 6.6.4 (550.42) <770C572A-CF70-168F-F43C-242B9114FCB5> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff839e3000 -     0x7fff83aa0ff7  com.apple.CoreServices.OSServices 357 (357) <6A39BF24-C94A-E90F-1CFE-33420B226818> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff83aa1000 -     0x7fff83c10fe7  com.apple.QTKit 7.6.6 (1756) <250AB242-816D-9F5D-94FB-18BF2AE9AAE7> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff83c11000 -     0x7fff83c93fff  com.apple.QuickLookUIFramework 2.3 (327.6) <9093682A-0E2D-7D27-5F22-C96FD00AE970> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
        0x7fff83c94000 -     0x7fff83ca5fff  com.apple.DSObjCWrappers.Framework 10.6 (134) <3C08225D-517E-2822-6152-F6EB13A4ADF9> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
        0x7fff83ca6000 -     0x7fff84080fff  com.apple.RawCamera.bundle 3.4.1 (546) <F7865FD2-4869-AB19-10AA-EFF1B3BC4178> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff84081000 -     0x7fff8410dfef  SecurityFoundation ??? (???) <84778E7D-B73C-781A-CD71-7EF5E7EA8EF5> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff84131000 -     0x7fff8413efe7  libCSync.A.dylib 545.0.0 (compatibility 64.0.0) <397B9057-5CDF-3B19-4E61-9DFD49369375> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
        0x7fff8413f000 -     0x7fff84188fef  libGLU.dylib ??? (???) <EB4255DD-A9E5-FAD0-52A4-CCB4E792B86F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff84189000 -     0x7fff841e9fe7  com.apple.framework.IOKit 2.0 (???) <D107CB8A-5182-3AC4-35D0-07068A695C05> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff841ea000 -     0x7fff84219ff7  com.apple.quartzfilters 1.6.0 (1.6.0) <9CECB4FC-1CCF-B8A2-B935-5888B21CBEEF> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff8421a000 -     0x7fff84257ff7  libFontRegistry.dylib ??? (???) <8C69F685-3507-1B8F-51AD-6183D5E88979> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff84415000 -     0x7fff8441bfff  libCGXCoreImage.A.dylib 545.0.0 (compatibility 64.0.0) <4EE16374-A094-D542-5BC5-7E846D0CE56E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
        0x7fff8441c000 -     0x7fff84468fff  libauto.dylib ??? (???) <F7221B46-DC4F-3153-CE61-7F52C8C293CF> /usr/lib/libauto.dylib
        0x7fff8448d000 -     0x7fff84b8a06f  com.apple.CoreGraphics 1.545.0 (???) <356D59D6-1DD1-8BFF-F9B3-1CE51D2F1EC7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff84b8b000 -     0x7fff84c08fef  com.apple.backup.framework 1.2.2 (1.2.2) <CD3554D8-DA47-DDBC-910C-B2F1DE3B8CA6> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff84c09000 -     0x7fff84c09ff7  com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <4CCE5D69-F1B3-8FD3-1483-E0271DB2CCF3> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff84c3f000 -     0x7fff84c60fff  libresolv.9.dylib 41.0.0 (compatibility 1.0.0) <9F322F47-0584-CB7D-5B73-9EBD670851CD> /usr/lib/libresolv.9.dylib
        0x7fff84c61000 -     0x7fff84d78fef  libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <B2FB9DA8-6EC9-FFBC-C919-C022B9CBEB73> /usr/lib/libxml2.2.dylib
        0x7fff84d79000 -     0x7fff84d79ff7  com.apple.Cocoa 6.6 (???) <68B0BE46-6E24-C96F-B341-054CF9E8F3B6> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff84d7a000 -     0x7fff84dbbfff  com.apple.SystemConfiguration 1.10.5 (1.10.2) <FB39F09C-57BB-D8CC-348D-93E00C602F7D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff84dbc000 -     0x7fff84dbdfff  com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <5062DACE-FCE7-8E41-F5F6-58821778629C> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
        0x7fff84dbe000 -     0x7fff85000fef  com.apple.AddressBook.framework 5.0.3 (875) <78FDBCC6-8F4C-C4DF-4A60-BB038572B870> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
        0x7fff85033000 -     0x7fff85042fff  libxar.1.dylib ??? (???) <CBAF862A-3C77-6446-56C2-9C4461631AAF> /usr/lib/libxar.1.dylib
        0x7fff85079000 -     0x7fff85094ff7  com.apple.openscripting 1.3.1 (???) <9D50701D-54AC-405B-CC65-026FCB28258B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff85095000 -     0x7fff850c0ff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <87A0B228-B24A-C426-C3FB-B40D7258DD49> /usr/lib/libxslt.1.dylib
        0x7fff850c1000 -     0x7fff85193fe7  com.apple.CFNetwork 454.11.5 (454.11.5) <B3E2BE12-D7AA-5940-632A-1E5E7BF8E6E3> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
        0x7fff85194000 -     0x7fff852adfef  libGLProgrammability.dylib ??? (???) <13E8114C-6E07-A66E-35E6-C185E54840AE> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
        0x7fff852de000 -     0x7fff85393fe7  com.apple.ink.framework 1.3.3 (107) <8C36373C-5473-3A6A-4972-BC29D504250F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff853d3000 -     0x7fff853d8ff7  com.apple.CommonPanels 1.2.4 (91) <4D84803B-BD06-D80E-15AE-EFBE43F93605> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff853d9000 -     0x7fff85457fff  com.apple.CoreText 3.5.0 (???) <4D5C7932-293B-17FF-7309-B580BB1953EA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
        0x7fff8547d000 -     0x7fff854d2fef  com.apple.framework.familycontrols 2.0.1 (2010) <52F3A371-601C-6D1A-566F-DAEA33B134E2> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff854d3000 -     0x7fff85522ff7  com.apple.DirectoryService.PasswordServerFramework 6.0 (6.0) <14FD0978-4BE0-336B-A19E-F388694583EB> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
        0x7fff85523000 -     0x7fff85564ff7  com.apple.CoreMedia 0.484.20 (484.20) <42F3B74A-F886-33A0-40EE-8399B12BD32A> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff8556d000 -     0x7fff8556dff7  com.apple.Carbon 150 (152) <B72D29DB-3787-26D1-E842-7AF12F179A83> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff85576000 -     0x7fff855a8fff  libTrueTypeScaler.dylib ??? (???) <B9ECE1BD-A716-9F65-6466-4444D641F584> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
        0x7fff855a9000 -     0x7fff855bafff  SyndicationUI ??? (???) <91DAD490-897C-E5E9-C30B-161D4F42BF98> /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
        0x7fff855e5000 -     0x7fff856e9fff  com.apple.PubSub 1.0.5 (65.20) <67A088DF-7F4A-DC23-6F96-F9BAA4C238DC> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
        0x7fff856ea000 -     0x7fff856f3ff7  com.apple.DisplayServicesFW 2.3.0 (283) <3D05929C-AB17-B8A4-DC81-87C27C59E664> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
        0x7fff856f4000 -     0x7fff85737fef  libtidy.A.dylib ??? (???) <2F4273D3-418B-668C-F488-7E659D3A8C23> /usr/lib/libtidy.A.dylib
        0x7fff8591c000 -     0x7fff8595dfef  com.apple.QD 3.36 (???) <5DC41E81-32C9-65B2-5528-B33E934D5BB4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff8595e000 -     0x7fff85993fef  com.apple.framework.Apple80211 6.2.3 (623.2) <8C50F34F-2981-0DF8-4423-09556C1628C0> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff85994000 -     0x7fff85dd7fef  libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <0CC61C98-FF51-67B3-F3D8-C5E430C201A9> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff85dd8000 -     0x7fff85f99fff  libSystem.B.dylib 125.2.1 (compatibility 1.0.0) <71E6D4C9-F945-6EC2-998C-D61AD590DAB6> /usr/lib/libSystem.B.dylib
        0x7fff85f9a000 -     0x7fff85fa5fff  com.apple.corelocation 12.1 (12.1) <0B15767B-D752-7DA6-A8BB-5A1C9C39C5C8> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
        0x7fff85fb5000 -     0x7fff85ff0fff  com.apple.AE 496.4 (496.4) <55AAD5CA-7160-7899-1C68-562ED8160DF7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff85ff1000 -     0x7fff85ff4ff7  libCoreVMClient.dylib ??? (???) <B1F41E5B-8B59-DB81-1654-C1F9B11E885F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff85ff5000 -     0x7fff85ff8fff  com.apple.help 1.3.1 (41) <54B79BA2-B71B-268E-8752-5C8EE00E49E4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff861b3000 -     0x7fff86439fef  com.apple.security 6.1.1 (37594) <17CF7858-52D9-9665-3AE8-23F07CC8BEA1> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff8643c000 -     0x7fff86940fe7  com.apple.VideoToolbox 0.484.20 (484.20) <8B6B82D2-350B-E9D3-5433-51453CDA65B4> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
        0x7fff86941000 -     0x7fff86986fff  com.apple.CoreMediaIOServices 133.0 (1158) <53F7A2A6-78CA-6C34-0BB6-471388019799> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices

    You’ve been infected with the “Flashback” malware. See this Apple support document:
    About Flashback malware
    Back up all data, if you haven't already done so.
    Select  ▹ Software Update to install the latest Java update (if Java is already installed) or the Flashback malware removal tool (if Java is not installed under Lion), as well as any other available updates. Installing either of those items should clear the infection in most cases. You must update to the latest version of Mac OS X 10.6 or 10.7 before you can install the Java update.
    The removal tool runs automatically in the background and is then deleted. Don’t look for something to click. If the malware is removed, you’ll be notified.
    After you’ve secured your system — not before — change every Internet password you have, starting with banking passwords, and check all financial accounts for unauthorized transactions.

  • No items selected (see long text)  Message No: MSITEM033

    Hi Sapiens,
    I am trying the command (FS10N) to display the Balance, bal is displayed afterwards and then when I am just clicking the balance for one of the month I am getting the message as follows :
    "No items selected (see long text)"  Message No: MSITEM033
    No line items meeting your selection criteria could be read. This could be for the following reasons:
    1.) No corresponding items have been posted.
    2.) You are not authorized to display this data.
    3.) The items have already been archived.
    Thank You in Advance
    MS

    Hi Madhu,
    Possible symptoms:
    1.  The system does not generate any line items and/or open items.
    2.  The field SKB1-XLGCLR is filled with '/'.
    3.  You transfer G/L account master data to different company codes
         using transaction FS15 (program RFBISA10).  During the direct
         transfer with the "Update File Immediately" option, the system
         issues error message FH 700:
         Field '': Enter ' ' or 'X'
    4.  When you process the batch input session that was created by the
         program RFBISA00 or RFBISA10, the system issues error message 00 349
         "Field SKB1-XLGCLR does not exist in the screen SAPMF02H 0110".
    please see the solution from the attached note 1323960:
    steps 2-6:
    2.  Generate the program RFBISA02 using the program RFBISAG0:
    3   Generate the program RFBISA11 using the program RFBISAG1:
    4.  Generate the program RFBISA52 using the program RFBISAG1:
    5.  Generate the include using the program
         SAPGL_ACCOUNT_MASTER_GENERATE:
    6.  For symptom 1 or 2 only:
    I hope I could be of assistance.
    Kind regards,
    Fernando

Maybe you are looking for

  • Can no longer use my selection tools - help!

    while cutting, copying and pasting, I accidentally clicked on something in the top bar that caused all of the tools that are in the left-hand side (default) of my Photoshop CS 4 workspace (and the picture) to remain a black pointed arrow which is the

  • How do I "freeze" the top row

    How do I freeze the top row so that I can see it even if I scroll down many cells?

  • Arabic batch

    Can any one help me I installed oracle e business suite R12 and Arabic batch I have problem in Arabic batch character 'ال' show as 'لا' and this wrong can any one help me how to solve this problem

  • Replacing colours after an Image Trace

    Hi everyone. I've just used image trace to get a three colour vector of a photograph. I want to replace the three colours in the image with colours from my brand's style guide. At the moment, they're thre shades of a kind of muddy brown. Any ideas ho

  • Is this error software or hardware?  What does it mean?

    Hi, I keep getting this error in the Console - Just before the onscreen video glitches & flashes force me to shutdown my 24" (2008) iMac. "PM kernel: NVDA(OpenGL): Channel exception! exception type = 0x8 = Fifo: Watchdog Timeout Error" My hardware ch