No frame refreshing when buffered window is called/created

Hi,
i'm programming a java-based game. It uses a JFrame that calls an "accelerated window" ( a buffered window with a Graphics2D Object ) to draw a basketball simulation. The problem is that when the accelerated window is running ( loop ) the refreshing and the listeners of the main window doesn't work properly (note that accelerated window is called by a Game class that extends Thread... ). Why? Thanks
// Class Game is called by a main JFrame...
public class Game extends Thread {
    public Game( ... ){
     court = new Court2D();
     court.setVisible(true);
     court.draw();
public class Court2D extends Canvas {
        public Court2D() {
         container = new JFrame("Court");
         container.addWindowListener( new WindowAdapter() {
              public void windowClosing( WindowEvent e ){
               container.dispose();
         JPanel panel = (JPanel) container.getContentPane();
         panel.setPreferredSize(new Dimension( WIDTH, HEIGHT));
         panel.setLayout(null);
         setBounds(0,0, WIDTH, HEIGHT);
         panel.add(this);
         setIgnoreRepaint(true);
         container.setResizable(false);
         container.setVisible(true);
         requestFocus();
         createBufferStrategy(2);
         strategy = getBufferStrategy();
         draw();
        public void draw() {
                 Graphics2D g = (Graphics2D) strategy.getDrawGraphics();
             ... //draw something...
             g.dispose();
             strategy.show();
}picture: http://backspace.altervista.org/JBM/problem.jpg

Ops I'm sorry. There's a run() method as you can see as follows:
public class Game extends Thread {
    public Game(...){
         //initiate variables...
    public void run() {  // Called by the main window
     if (quarter == 0)
         jumpBall();
     while ( ( quarter <= 4 ) && !(timeout)  ) { // game loop
         while ( ( timer < DURATION ) && !(timeout) ) { // quarter loop
          step(); //Move
          checkfouls();
          timer = timer + 0.1;
              try {
               Thread.sleep( GAMESPEED );
              } catch (Exception e) {}
         minutes = (int) timer / 60;
         seconds = (int) timer % 60;
         quarter++;
         timer = 0;
         restartAction();
         if ( (quarter > 4) && ( statistics.stats[USER].score == statistics.stats[CPU].score ) )
          ot = true;
         else
          ot = false;
// other methods
}Ok, this Thread never stops and the main window never responds to any type of command ( Listeners included ). Is this strange? This Thread sleeps for a second ( or more ) every loop step but nothing happens in the main window...

Similar Messages

  • I can't open mail on Hotmail from Firefox. I can from Safari. I can open the Hotmail account page and it is complete w/ my new messages, but when I go to open them I get this messeage..."Please refresh your browser window. When you access your Windows Liv

    I can't open mail on Hotmail from Firefox. I can from Safari. I can open the Hotmail account page and it is complete w/ my new messages, but when I go to open them I get this messeage..."Please refresh your browser window. When you access your Windows Live Hotmail account from more than one computer, we ask you to sign in again to help keep your account private and secure. " when I sign in again there is no change. in English
    == URL of affected sites ==
    http://http://sn135w.snt135.mail.live.com/default.aspx?n=2087215863
    == User Agent ==
    Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_5_8; en-us) AppleWebKit/531.22.7 (KHTML, like Gecko) Version/4.0.5 Safari/531.22.7

    "Clear the Cache": Firefox > Preferences > Advanced > Network > Offline Storage (Cache): "Clear Now"
    "Remove the Cookies" from sites causing problems: Firefox > Preferences > Privacy > Cookies: "Show Cookies"
    See http://kb.mozillazine.org/Clearing_the_cache and http://kb.mozillazine.org/Cookies

  • Skype freezes when i make a call. Windows 8 Skype ...

    So, This is not the first time ive had this problem with skype. However i solved it here.
    http://community.skype.com/t5/Windows-desktop-client/7-4-Skype-freezes-Computer-on-call/m-p/3972472#...
    But now. Its freezing again when i make a call.
    Heres the thing, however. This problem occured seconds after i got out of a call that i was in for maybe 5 hours with 2 of my friends. When i restarted my client it froze my computer like it did a month prior. Ill link a dxdiag.exe and ive already tried all the steps i was gave last time i had this problem.
    Thanks,
    David.
    Attachments:
    dxdiag2.zip ‏13 KB

    itsSONNY wrote:
    Faulting application name: Skype.exe, version: 6.22.64.107, time stamp: 0x547355e4
    Faulting module name: Skype.exe, version: 6.22.64.107, time stamp: 0x547355e4
    Exception code: 0xc0000005
    Fault offset: 0x0000be6e
    Faulting process id: 0x238
    Faulting application start time: 0x01d00dfab87e1174
    Faulting application path: C:\Program Files (x86)\Skype\Phone\Skype.exe
    Faulting module path: C:\Program Files (x86)\Skype\Phone\Skype.exe
    Report Id: 0015b104-79ee-11e4-8ef9-94de80252187
    Try first to update your AMD Radeon graphic driver:
    http://support.amd.com/en-us/download/desktop?os=Windows%207%20-%2064

  • Opening hotmail: Please refresh your browser window, When you access your Windows Live Hotmail account from more than one computer, we ask you to sign in again to help keep your account private and secure . Refreshed but no change. in Safari no problem

    opening hotmail in firefox: Please refresh your browser window, When you access your Windows Live Hotmail account from more than one computer, we ask you to sign in again to help keep your account private and secure . Refreshed but no change. in Safari no problem

    Go to '''Options '''on Firefox Browser-->'''Advanced'''-->''Click on'' '''Network '''tab-->''Select '''''Settings'''-->''Select '''''Use System Proxy Settings
    '''

  • Unable to evaluate expression because the code is optimized or a native frame is on top of the call stack.

    Hi,
    I am trying to run a long running process, by redirecting to the LongRunningView using the code below. But its throwing exception Can anyone please help
    string strCurrentUrl = SPUtility.OriginalServerRelativeRequestPath;
    strCurrentUrl = strCurrentUrl + "?ListName=" + strListName;
    ////Initiates the Excel Import
    if (ObjdtExcel != null && ObjdtExcel.Rows.Count > 0)
    ExcelImportJob objJob = new ExcelImportJob(strTabName, ObjdtExcel, strFileExt, SPContext.Current.Site.ID, SPContext.Current.Web.ID, strWorkflow, strListName);
    objJob.Title = "Excel Import Job";
    //// Redirect the user to another page when finished.
    objJob.RedirectWhenFinished = false;
    //// Specify if the user can cancel this.
    objJob.UserCanCancel = false;
    //// Specify the refresh rate of the job, here, the page polls every 5 seconds for completion.
    objJob.MillisecondsToWaitForFinish = 15000;
    //// Finally, start the job on a web.
    objJob.Start(SPContext.Current.Web);
    string strUrl = string.Format("{0}?JobId={1}&Source={2}", PROGRESS_PAGE_URL, objJob.JobId, strCurrentUrl);
    SPUtility.Redirect(strUrl, SPRedirectFlags.Default, HttpContext.Current);
    The exception being "Unable to evaluate expression because the code is optimized or a native frame is on top of the call stack."
    Arjun Menon U.K

    Hi Arjun,
    Any update?
    Best regards,
    Patrick
    Patrick Liang
    TechNet Community Support

  • Close popup window and refresh the parent window

    Hello,
    I have a button in a normal report, when clicked opens up an popup window which is a form containing some items and here in this form (i have some editable text items) I make some changes and click on the apply changes button -- this should update the form, close the popup window and should refresh the parent window.
    can anyone please help me out with this issue.
    Thanks,
    Orton

    you have your popup window. When they apply the changes you want it to close the window, right?
    Modify the button (save, apply changes) and give it url redirect to the custom function you create (See below): javascript:saveChanges();
    in the page header, add a new function:
    <script type="text/javascript">
    function saveChanges(){
         doSubmit('SAVE');//this is the line to save the current form on the popup window. (This assumes SAVE is the request value that should udpate the db)
         window.close();//close the popup window
         window.opener.doSubmit('REFRESH');//call doSubmit function on the parent window to cause the page to refresh.
    </script>

  • Frame extended state and window bounds.

    I'm trying to save the bounds of a window when my program exits, so that I can initialize the next session to the same window bounds. It seems well known that calling getBounds() on a maximized window will basically give you your screen dimensions. So this means that if the user exits the program when the window is maximized, the next time they start it up, the window will be set to fill their screen as though it were maximized, but in the restored state. Not good. It also seems well known that there is no clean way to get the restored bounds on a maxmized window. Also not good. I found this forum on the subject:
    http://forum.java.sun.com/thread.jspa?forumID=57&threadID=603605
    Someone suggested restoring the window manually before checking the bounds, but I don't want to do this because the action would be visible to the user, and takes time. Instead I opted for the component listener approach. Here's where my problem comes in:
    It seems that move and resize events happen at inconsistent times. In my component listener, I poll window.getExtendedState() and getBounds() in componentMoved() and componentResized(). When I maximize the window, I get MOVE event that shows getExtendedState() to be NORMAL, but getBounds() to be maximized. When I restore the window, I get a RESIZE event that shows getBounds() to be restored.
    Maybe I'm just confused here, but this doesn't make any sense. Those two values should be consistent-- and I should get the event after everything is DONE, including the extended state flag being properly set. It seems to me that this is bug-like behavior. Am I wrong?
    Furthermore, my problem remains, because if the user exits in the maximized state, the last event will have been a reporting of the maximized window bounds-- so my attempts to remember what the window was before it was maximized will have failed. It really steams me that the API seems to be conspiring to prevent me from getting this simple piece of information.
    So has there been any progress on the front of a clean solution to getting the restored bounds without restoring the window? Surely that information exists somewhere in the JVM. I shouldn't have to do backflips to get it. (Perhaps I should post a feature request).
    How should I get around this?
    P.S.
    Here's a test case:
    import java.awt.event.ComponentEvent;
    import java.awt.event.ComponentListener;
    import javax.swing.JFrame;
    * @author Tim Babb
    public class Main {
        static JFrame frame;
        public static void main(String[] args) {
            frame = new JFrame("Test Case");
            frame.addComponentListener(new ComponentListener(){
                public void componentHidden(ComponentEvent evt){
                    //do nothing
                public void componentMoved(ComponentEvent evt){
                    if (frame.getExtendedState() == frame.NORMAL){
                        System.out.println("Moved: " + frame.getBounds());
                public void componentResized(ComponentEvent evt){
                    if (frame.getExtendedState() == frame.NORMAL){
                        System.out.println("Resized: " + frame.getBounds());
                public void componentShown(ComponentEvent evt){
                    //do nothing
            frame.setVisible(true);
    }

    I am seeing the same thing, it seems that in Windows maximize delivers two events a move and then a resize. The change state event comes in the middle, I am sure there is some good reason.
    I have had a go at writing a NormalBoundsListener that compensates for this. Would be interested to find out if this was Windows specific.
    Hope this helps, if you have a better solution please let me know.
    private class NormalBoundsListener implements ComponentListener {
    private final Rectangle previousNormalBounds = new Rectangle();
    private int previousExtendedState = 0;
    public void componentHidden(ComponentEvent e) {
    // do nothing
    public void componentMoved(ComponentEvent e) {
    storeNormalBounds();
    public void componentResized(ComponentEvent e) {
    storeNormalBounds();
    public void componentShown(ComponentEvent e) {
    storeNormalBounds();
    private void storeNormalBounds() {
    int extendedState = getExtendedState();
    if(extendedState == Frame.NORMAL) {
    previousExtendedState = extendedState;
    previousNormalBounds.setBounds(normalBounds);
    getBounds(normalBounds);
    } else if(extendedState == Frame.MAXIMIZED_BOTH && previousExtendedState == Frame.NORMAL) {
    previousExtendedState = extendedState;
    normalBounds.setBounds(previousNormalBounds);
    }

  • Vimperator and persistent buffers window

    I was wondering if the persistent buffer feature was working for anyone here:
    :buffers[!]
    B
    Show a list of all buffers (=tabs). The special version :buffers! opens the buffer list in a persistent preview window. Call the special version of this command again to close the window.
    When I use :buffers! I achieve the same effect as :buffers
    If you know of any fixes that would be greatly appreciated.
    Thanks

    Hmmm, not quite what I had expected:
    *  resolution  set to fixed
    Thanks for the bug report, but it has been fixed in CVS (removed from the help, as there is no :buffers! anymore).
    So I guess I should open a feature request about it, if I want to keep showtabline=0...

  • Report Viewer refresh event causing window event problems

    I have a winform with a report viewer control and a couple of grids.  When a cell in one of the grids is edited the report gets refreshed (when focus is lost from the cell) this refresh appears to empty the event stack for the whole window.
    For example if I edit the cell then click the ok button the report refreshes and the button click event is lost.
    Also if I edit the cell and click on the report viewer then the grid itself stops firing events outside its control.
    Can anyone explain this behaviour so I can work around it?

    I am handling the celledited event on the grid (janus gridEX control) which fires when the focus is lost from the grid and the user has edited something.
    The event code calls viewer.RefreshReport() which successfully updates the report with the new data (via the common dataset both use as a data source).
    This is all running in a dialog box.
    The problem occurs when the user edits the grid and then immediately clicks the ok button.  The call to RefreshReport seems to stop the button click event firing.
    The second problem occurs when the user edits the cell then clicks on the report viewer to cause the celledited event to fire and the report to refresh.  Everything seems to work fine however if the user tries to edit a cell again the celledited event does not fire anymore unless you click on another row in the grid itself.  This behaviour only happens when clicking on the CR viewer when clicking any other control the behaviour is as expected.
    Whilst the CR viewer may not directly be the problem something is occuring when it is refreshed and I would like to understand what is happenening to cause the strange behaviour.

  • Tableview getting refreshed when changing data in the rows

    Hi Gurus,
    Iu2019m doing a BSP with MVC. The requirement is as below.
    In the main page there is a button u2018Create Orderu2019, to create a sales order, once I click this button, another screen (pop up) comes up and within that I have a Tableview display with the below fields with the data of 20 records.
    Material no
    Quantity
    Delivery Date
    Here user is allowed to choose the quantity and delivery date by selecting each row.(with MULTISELECT option in BSP)
    The issue is after I select first row and change the quantity and date, and if I click on second row, the Tableview gets refreshed to enable the second row to be editable and the changes what I did on the first row are also refreshed.
    So i want the Tableview not to be refreshed when selecting the multiple rows. So that I can keep the changes I make to the quantity and date fields Can you please suggest any method.
    Cheers,
    Srini.

    Hi Srinivas,
    You need to capture the value entered by user in Quantity and date field and update the internal table with these values for the current selected row.
    For ex.
    The tableView code is like:
                          <htmlb:tableView id                  = "material"
                                     headerText          = "<%= otr(Z_SUS/HEADER_TEXT_MATERIALS) %>"
                                     headerVisible       = "true"
                                     design              = "alternating"
                                     onRowSelection      = "MyEventRowSelection"
                                     selectionMode       = "MULTILINEEDIT"
                                     width               = "880"
                                     filter              = "SERVER"
                                     emptyTableText      = "<%= otr(Z_SUS/EMPTYTABLE_MATERIALS) %>"
                                     iterator            = "<%= iterator %>"
                                     table               = "<%= gt_materials %>" />
    In eventhandler OnInputProcessing :
    DATA: lt_fields type tihttpnvp ,
               ls_fields like line of lt_fields.
    call method request->get_form_fields
                changing
                  fields = lt_fields
    Now the internal table lt_fields contains all the editable cell values , just update the internal table of your tableview with these values.
    You can try these threads
    [Thread-I.|Re: Retrieve changes made in tableView]
    [Thread-II|https://forums.sdn.sap.com/click.jspa?searchID=24460585&messageID=5516977]
    Search the forum for more information on this.
    Regards,
    Anubhav

  • Another report of Safari crashing when closing windows

    Hi... I've seen another thread about Safari crashing when closing windows, but it was suggested that I create a new thread for my issue, so my comments aren't confused with those in the existing thread.
    I'm running Safari for Mac (Version 5.0.1 (6533.17.8) on a MacBook Core Duo 2.4 GHz, running Snow Leopard 10.6.2. When I have multiple windows open and I close one or two of them, I get the pinwheel and then Safari quits unexpectedly. I have never observed this to happen if I'm running a single window in Safari and I close it. It only occurs when multiple windows are open. It seems to occur more frequently if I have downloaded any files.
    I'll mention that I also have an iMac Core Duo 20", and I do not observe the same problem.
    Hopefully, someone will be able to suggest something. Here is the crash log:
    Process: Safari [28681]
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Identifier: com.apple.Safari
    Version: 5.0.1 (6533.17.8)
    Build Info: WebBrowser-75331708~1
    Code Type: X86 (Native)
    Parent Process: launchd [214]
    Date/Time: 2010-08-16 10:23:20.623 -0500
    OS Version: Mac OS X 10.6.4 (10F569)
    Report Version: 6
    Interval Since Last Report: 117465 sec
    Crashes Since Last Report: 7
    Per-App Interval Since Last Report: 86908 sec
    Per-App Crashes Since Last Report: 6
    Anonymous UUID: 7D730D98-E83F-474D-AC8E-FF12447447BC
    Exception Type: EXCBADACCESS (SIGSEGV)
    Exception Codes: KERNINVALIDADDRESS at 0x0000000061506d6f
    Crashed Thread: 0 Dispatch queue: com.apple.main-thread
    Application Specific Information:
    objc_msgSend() selector name: release
    Thread 0 Crashed: Dispatch queue: com.apple.main-thread
    0 libobjc.A.dylib 0x984d5eec objc_msgSend + 44
    1 com.apple.Foundation 0x921eda3c __delayedPerformCleanup + 59
    2 com.apple.CoreFoundation 0x953946e2 CFRunLoopTimerInvalidate + 786
    3 com.apple.CoreFoundation 0x9534fabb __CFRunLoopRun + 9003
    4 com.apple.CoreFoundation 0x9534d094 CFRunLoopRunSpecific + 452
    5 com.apple.CoreFoundation 0x9534cec1 CFRunLoopRunInMode + 97
    6 com.apple.HIToolbox 0x98099f9c RunCurrentEventLoopInMode + 392
    7 com.apple.HIToolbox 0x98099d51 ReceiveNextEventCommon + 354
    8 com.apple.HIToolbox 0x98099bd6 BlockUntilNextEventMatchingListInMode + 81
    9 com.apple.AppKit 0x96861a89 _DPSNextEvent + 847
    10 com.apple.AppKit 0x968612ca -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 156
    11 com.apple.Safari 0x0001687a 0x1000 + 88186
    12 com.apple.AppKit 0x9682355b -[NSApplication run] + 821
    13 com.apple.AppKit 0x9681b5ed NSApplicationMain + 574
    14 com.apple.Safari 0x0000adf9 0x1000 + 40441
    Thread 1: Dispatch queue: com.apple.libdispatch-manager
    0 libSystem.B.dylib 0x928288da select$DARWIN_EXTSN$NOCANCEL + 10
    1 libSystem.B.dylib 0x9281414b dispatch_mgrinvoke + 454
    2 libSystem.B.dylib 0x92813519 dispatch_queueinvoke + 163
    3 libSystem.B.dylib 0x928132be dispatch_workerthread2 + 240
    4 libSystem.B.dylib 0x92812d41 pthreadwqthread + 390
    5 libSystem.B.dylib 0x92812b86 start_wqthread + 30
    Thread 2: WebCore: IconDatabase
    0 libSystem.B.dylib 0x9281b066 _semwaitsignal + 10
    1 libSystem.B.dylib 0x9281ad22 pthread_condwait + 1191
    2 libSystem.B.dylib 0x9281c9b8 pthreadcondwait$UNIX2003 + 73
    3 com.apple.WebCore 0x915f682a WebCore::IconDatabase::syncThreadMainLoop() + 266
    4 com.apple.WebCore 0x915f2b1c WebCore::IconDatabase::iconDatabaseSyncThread() + 188
    5 libSystem.B.dylib 0x9281a81d pthreadstart + 345
    6 libSystem.B.dylib 0x9281a6a2 thread_start + 34
    Thread 3: Safari: CertRevocationChecker
    0 libSystem.B.dylib 0x927ed0fa machmsgtrap + 10
    1 libSystem.B.dylib 0x927ed867 mach_msg + 68
    2 com.apple.CoreFoundation 0x9534dfaf __CFRunLoopRun + 2079
    3 com.apple.CoreFoundation 0x9534d094 CFRunLoopRunSpecific + 452
    4 com.apple.CoreFoundation 0x9534cec1 CFRunLoopRunInMode + 97
    5 com.apple.Safari 0x0002f321 0x1000 + 189217
    6 com.apple.Safari 0x0002f06a 0x1000 + 188522
    7 com.apple.Safari 0x0002f003 0x1000 + 188419
    8 libSystem.B.dylib 0x9281a81d pthreadstart + 345
    9 libSystem.B.dylib 0x9281a6a2 thread_start + 34
    Thread 4:
    0 libSystem.B.dylib 0x927ed0fa machmsgtrap + 10
    1 libSystem.B.dylib 0x927ed867 mach_msg + 68
    2 com.apple.CoreFoundation 0x9534dfaf __CFRunLoopRun + 2079
    3 com.apple.CoreFoundation 0x9534d094 CFRunLoopRunSpecific + 452
    4 com.apple.CoreFoundation 0x9534cec1 CFRunLoopRunInMode + 97
    5 com.apple.Foundation 0x9221142c +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 329
    6 com.apple.Foundation 0x921d88d4 -[NSThread main] + 45
    7 com.apple.Foundation 0x921d8884 _NSThread__main_ + 1499
    8 libSystem.B.dylib 0x9281a81d pthreadstart + 345
    9 libSystem.B.dylib 0x9281a6a2 thread_start + 34
    Thread 5: Safari: SafeBrowsingManager
    0 libSystem.B.dylib 0x927ed0fa machmsgtrap + 10
    1 libSystem.B.dylib 0x927ed867 mach_msg + 68
    2 com.apple.CoreFoundation 0x9534dfaf __CFRunLoopRun + 2079
    3 com.apple.CoreFoundation 0x9534d094 CFRunLoopRunSpecific + 452
    4 com.apple.CoreFoundation 0x9534cec1 CFRunLoopRunInMode + 97
    5 com.apple.Safari 0x0002f321 0x1000 + 189217
    6 com.apple.Safari 0x0002f06a 0x1000 + 188522
    7 com.apple.Safari 0x0002f003 0x1000 + 188419
    8 libSystem.B.dylib 0x9281a81d pthreadstart + 345
    9 libSystem.B.dylib 0x9281a6a2 thread_start + 34
    Thread 6: Safari: SnapshotStore
    0 libSystem.B.dylib 0x9281b066 _semwaitsignal + 10
    1 libSystem.B.dylib 0x9281ad22 pthread_condwait + 1191
    2 libSystem.B.dylib 0x9281c9b8 pthreadcondwait$UNIX2003 + 73
    3 com.apple.JavaScriptCore 0x950d4ae1 ***::ThreadCondition::timedWait(***::Mutex&, double) + 81
    4 com.apple.Safari 0x00045185 0x1000 + 278917
    5 com.apple.Safari 0x000450d5 0x1000 + 278741
    6 libSystem.B.dylib 0x9281a81d pthreadstart + 345
    7 libSystem.B.dylib 0x9281a6a2 thread_start + 34
    Thread 7: WebCore: LocalStorage
    0 libSystem.B.dylib 0x9281b066 _semwaitsignal + 10
    1 libSystem.B.dylib 0x9281ad22 pthread_condwait + 1191
    2 libSystem.B.dylib 0x9281c9b8 pthreadcondwait$UNIX2003 + 73
    3 com.apple.JavaScriptCore 0x950d4ae1 ***::ThreadCondition::timedWait(***::Mutex&, double) + 81
    4 libSystem.B.dylib 0x9281a81d pthreadstart + 345
    5 libSystem.B.dylib 0x9281a6a2 thread_start + 34
    Thread 8:
    0 libSystem.B.dylib 0x9280c086 select$DARWIN_EXTSN + 10
    1 com.apple.CoreFoundation 0x9538d80d __CFSocketManager + 1085
    2 libSystem.B.dylib 0x9281a81d pthreadstart + 345
    3 libSystem.B.dylib 0x9281a6a2 thread_start + 34
    Thread 9:
    0 libSystem.B.dylib 0x927ed0fa machmsgtrap + 10
    1 libSystem.B.dylib 0x927ed867 mach_msg + 68
    2 com.apple.CoreFoundation 0x9534dfaf __CFRunLoopRun + 2079
    3 com.apple.CoreFoundation 0x9534d094 CFRunLoopRunSpecific + 452
    4 com.apple.CoreFoundation 0x95352fd4 CFRunLoopRun + 84
    5 com.apple.CoreMedia 0x995ed40e FigThreadGlobalNetworkBufferingRunloop + 149
    6 libSystem.B.dylib 0x9281a81d pthreadstart + 345
    7 libSystem.B.dylib 0x9281a6a2 thread_start + 34
    Thread 10:
    0 libSystem.B.dylib 0x927ed0fa machmsgtrap + 10
    1 libSystem.B.dylib 0x927ed867 mach_msg + 68
    2 com.apple.CoreFoundation 0x9534dfaf __CFRunLoopRun + 2079
    3 com.apple.CoreFoundation 0x9534d094 CFRunLoopRunSpecific + 452
    4 com.apple.CoreFoundation 0x95352fd4 CFRunLoopRun + 84
    5 com.apple.QuickTime 0x94598c52 QTSNetworkThread_RunThread + 117
    6 libSystem.B.dylib 0x9281a81d pthreadstart + 345
    7 libSystem.B.dylib 0x9281a6a2 thread_start + 34
    Thread 11:
    0 libSystem.B.dylib 0x927ed0fa machmsgtrap + 10
    1 libSystem.B.dylib 0x927ed867 mach_msg + 68
    2 com.joesoft.hal 0x1a46d578 HandlePatchThread(void*) + 104
    3 libSystem.B.dylib 0x9281a81d pthreadstart + 345
    4 libSystem.B.dylib 0x9281a6a2 thread_start + 34
    Thread 12:
    0 libSystem.B.dylib 0x9281b066 _semwaitsignal + 10
    1 libSystem.B.dylib 0x9281ad22 pthread_condwait + 1191
    2 libSystem.B.dylib 0x9281c9b8 pthreadcondwait$UNIX2003 + 73
    3 ...dia.FlashPlayer-10.6.plugin 0x21c4433f unregister_ShockwaveFlash + 45695
    4 ...dia.FlashPlayer-10.6.plugin 0x21818884 0x21800000 + 100484
    5 ...dia.FlashPlayer-10.6.plugin 0x21c4443e unregister_ShockwaveFlash + 45950
    6 ...dia.FlashPlayer-10.6.plugin 0x21c44575 unregister_ShockwaveFlash + 46261
    7 libSystem.B.dylib 0x9281a81d pthreadstart + 345
    8 libSystem.B.dylib 0x9281a6a2 thread_start + 34
    Thread 13:
    0 libSystem.B.dylib 0x9281b066 _semwaitsignal + 10
    1 libSystem.B.dylib 0x9281ad22 pthread_condwait + 1191
    2 libSystem.B.dylib 0x9281c9b8 pthreadcondwait$UNIX2003 + 73
    3 ...dia.FlashPlayer-10.6.plugin 0x21c4433f unregister_ShockwaveFlash + 45695
    4 ...dia.FlashPlayer-10.6.plugin 0x21818884 0x21800000 + 100484
    5 ...dia.FlashPlayer-10.6.plugin 0x21c4443e unregister_ShockwaveFlash + 45950
    6 ...dia.FlashPlayer-10.6.plugin 0x21c44575 unregister_ShockwaveFlash + 46261
    7 libSystem.B.dylib 0x9281a81d pthreadstart + 345
    8 libSystem.B.dylib 0x9281a6a2 thread_start + 34
    Thread 14:
    0 libSystem.B.dylib 0x927ed15a semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x9281aca5 pthread_condwait + 1066
    2 libSystem.B.dylib 0x92849848 pthreadcond_timedwait_relativenp + 47
    3 ...dia.FlashPlayer-10.6.plugin 0x21c44301 unregister_ShockwaveFlash + 45633
    4 ...dia.FlashPlayer-10.6.plugin 0x21b34778 0x21800000 + 3360632
    5 ...dia.FlashPlayer-10.6.plugin 0x21c4443e unregister_ShockwaveFlash + 45950
    6 ...dia.FlashPlayer-10.6.plugin 0x21c44575 unregister_ShockwaveFlash + 46261
    7 libSystem.B.dylib 0x9281a81d pthreadstart + 345
    8 libSystem.B.dylib 0x9281a6a2 thread_start + 34
    Thread 15:
    0 libSystem.B.dylib 0x927ed15a semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x9281aca5 pthread_condwait + 1066
    2 libSystem.B.dylib 0x92849848 pthreadcond_timedwait_relativenp + 47
    3 ...dia.FlashPlayer-10.6.plugin 0x21c44301 unregister_ShockwaveFlash + 45633
    4 ...dia.FlashPlayer-10.6.plugin 0x21b346e2 0x21800000 + 3360482
    5 ...dia.FlashPlayer-10.6.plugin 0x21c4443e unregister_ShockwaveFlash + 45950
    6 ...dia.FlashPlayer-10.6.plugin 0x21c44575 unregister_ShockwaveFlash + 46261
    7 libSystem.B.dylib 0x9281a81d pthreadstart + 345
    8 libSystem.B.dylib 0x9281a6a2 thread_start + 34
    Thread 16:
    0 libSystem.B.dylib 0x927ed15a semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x9281aca5 pthread_condwait + 1066
    2 libSystem.B.dylib 0x92849848 pthreadcond_timedwait_relativenp + 47
    3 ...dia.FlashPlayer-10.6.plugin 0x21c44301 unregister_ShockwaveFlash + 45633
    4 ...dia.FlashPlayer-10.6.plugin 0x21b34778 0x21800000 + 3360632
    5 ...dia.FlashPlayer-10.6.plugin 0x21c4443e unregister_ShockwaveFlash + 45950
    6 ...dia.FlashPlayer-10.6.plugin 0x21c44575 unregister_ShockwaveFlash + 46261
    7 libSystem.B.dylib 0x9281a81d pthreadstart + 345
    8 libSystem.B.dylib 0x9281a6a2 thread_start + 34
    Thread 17:
    0 libSystem.B.dylib 0x927ed15a semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x9281aca5 pthread_condwait + 1066
    2 libSystem.B.dylib 0x92849848 pthreadcond_timedwait_relativenp + 47
    3 ...dia.FlashPlayer-10.6.plugin 0x21c44301 unregister_ShockwaveFlash + 45633
    4 ...dia.FlashPlayer-10.6.plugin 0x21b34778 0x21800000 + 3360632
    5 ...dia.FlashPlayer-10.6.plugin 0x21c4443e unregister_ShockwaveFlash + 45950
    6 ...dia.FlashPlayer-10.6.plugin 0x21c44575 unregister_ShockwaveFlash + 46261
    7 libSystem.B.dylib 0x9281a81d pthreadstart + 345
    8 libSystem.B.dylib 0x9281a6a2 thread_start + 34
    Thread 18:
    0 libSystem.B.dylib 0x927ed15a semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x9281aca5 pthread_condwait + 1066
    2 libSystem.B.dylib 0x92849848 pthreadcond_timedwait_relativenp + 47
    3 ...dia.FlashPlayer-10.6.plugin 0x21c44301 unregister_ShockwaveFlash + 45633
    4 ...dia.FlashPlayer-10.6.plugin 0x21b346e2 0x21800000 + 3360482
    5 ...dia.FlashPlayer-10.6.plugin 0x21c4443e unregister_ShockwaveFlash + 45950
    6 ...dia.FlashPlayer-10.6.plugin 0x21c44575 unregister_ShockwaveFlash + 46261
    7 libSystem.B.dylib 0x9281a81d pthreadstart + 345
    8 libSystem.B.dylib 0x9281a6a2 thread_start + 34
    Thread 19:
    0 libSystem.B.dylib 0x927ed15a semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x9281aca5 pthread_condwait + 1066
    2 libSystem.B.dylib 0x92849848 pthreadcond_timedwait_relativenp + 47
    3 ...dia.FlashPlayer-10.6.plugin 0x21c44301 unregister_ShockwaveFlash + 45633
    4 ...dia.FlashPlayer-10.6.plugin 0x21b346e2 0x21800000 + 3360482
    5 ...dia.FlashPlayer-10.6.plugin 0x21c4443e unregister_ShockwaveFlash + 45950
    6 ...dia.FlashPlayer-10.6.plugin 0x21c44575 unregister_ShockwaveFlash + 46261
    7 libSystem.B.dylib 0x9281a81d pthreadstart + 345
    8 libSystem.B.dylib 0x9281a6a2 thread_start + 34
    Thread 20:
    0 libSystem.B.dylib 0x927ed15a semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x9281aca5 pthread_condwait + 1066
    2 libSystem.B.dylib 0x92849848 pthreadcond_timedwait_relativenp + 47
    3 ...dia.FlashPlayer-10.6.plugin 0x21c44301 unregister_ShockwaveFlash + 45633
    4 ...dia.FlashPlayer-10.6.plugin 0x21b34778 0x21800000 + 3360632
    5 ...dia.FlashPlayer-10.6.plugin 0x21c4443e unregister_ShockwaveFlash + 45950
    6 ...dia.FlashPlayer-10.6.plugin 0x21c44575 unregister_ShockwaveFlash + 46261
    7 libSystem.B.dylib 0x9281a81d pthreadstart + 345
    8 libSystem.B.dylib 0x9281a6a2 thread_start + 34
    Thread 21:
    0 libSystem.B.dylib 0x928129d2 _workqkernreturn + 10
    1 libSystem.B.dylib 0x92812f68 pthreadwqthread + 941
    2 libSystem.B.dylib 0x92812b86 start_wqthread + 30
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0x61506d6f ebx: 0x96a8a94c ecx: 0x96feff80 edx: 0x258fbbc0
    edi: 0x04c2830f esi: 0xffcffbdf ebp: 0xbfffe8e8 esp: 0xbfffe8a4
    ss: 0x0000001f efl: 0x00010206 eip: 0x984d5eec cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    cr2: 0x61506d6f
    Binary Images:
    0x1000 - 0x52affb com.apple.Safari 5.0.1 (6533.17.8) <0D5E8737-8EB3-4B04-8E54-CA8D9ED470C4> /Applications/Safari.app/Contents/MacOS/Safari
    0x1491000 - 0x1493fff +com.unsanity.menuextraenabler 1.0.3 (1.0.3) /Library/InputManagers/Menu Extra Enabler/Menu Extra Enabler.bundle/Contents/MacOS/Menu Extra Enabler
    0x165c000 - 0x1666ff7 +com.unsanity.smartcrashreports Smart Crash Reports version 1.5 (1.5) /Library/InputManagers/Smart Crash Reports/Smart Crash Reports.bundle/Contents/MacOS/Smart Crash Reports
    0x12f00000 - 0x132aefe3 com.apple.RawCamera.bundle 3.3.0 (533) <05A38D21-8556-434C-8BAA-850A6EC99B37> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x13a85000 - 0x13a87ffe +com.lemkesoft.GraphicConverterCMI 2.0 (1.7) <486995C6-BD37-1C17-EA3A-B908307AD8AB> /Users/tommyboy/Library/Contextual Menu Items/GraphicConverterCMI2.plugin/Contents/MacOS/GraphicConverterCMI
    0x13c41000 - 0x13c44ff2 +com.macromedia.Flash Player.plugin 10.1.53.64 (10.1.53.64) <4FE0EBB4-DD56-E42E-1792-6466E720365F> /Library/Internet Plug-Ins/Flash Player.plugin/Contents/MacOS/Flash Player
    0x1854d000 - 0x186c0ff7 GLEngine ??? (???) <5EB664AC-6395-A161-ED9D-12219745A887> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x186f2000 - 0x18b58ff7 com.apple.driver.AppleIntelGMAX3100GLDriver 1.6.16 (6.1.6) <289C8984-D6F4-D340-61D6-5AB9BA2762FF> /System/Library/Extensions/AppleIntelGMAX3100GLDriver.bundle/Contents/MacOS/App leIntelGMAX3100GLDriver
    0x18ca9000 - 0x18cccfe7 GLRendererFloat ??? (???) <4F847096-3DBD-AE90-90FF-5AE12E15D3C9> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
    0x195e4000 - 0x195e4ff7 com.apple.JavaPluginCocoa 13.2.0 (13.2.0) <6330F04D-3250-2071-42E4-0ABB54216529> /System/Library/Frameworks/JavaVM.framework/Versions/A/Resources/JavaPluginCoco a.bundle/Contents/MacOS/JavaPluginCocoa
    0x195e9000 - 0x195e9ff7 +com.yazsoft.SDEnhancer ??? (1.0) <265A3874-FE45-D398-4511-7AAE37884D24> /Library/Internet Plug-Ins/SpeedDownload Browser Plugin.plugin/Contents/Resources/SpeedDownloadEnhancer.bundle/Contents/MacOS/Sp eedDownloadEnhancer
    0x1978e000 - 0x1978ffff +uk.co.markallan.clamxav.ScanWithClamXav ??? (1.0) /Users/tommyboy/Library/Contextual Menu Items/ScanWithClamXav.plugin/Contents/MacOS/ScanWithClamXav
    0x197c3000 - 0x19835fff +com.DivXInc.DivXDecoder 6.4.0 (6.4.0) /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x19843000 - 0x198f8fe7 libcrypto.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <0B69B1F5-3440-B0BF-957F-E0ADD49F13CB> /usr/lib/libcrypto.0.9.7.dylib
    0x1993e000 - 0x1994bffb +net.telestream.license 1.0.7.2-GC (1.0.7.2-GC) <3B3ADB81-79F3-6371-31FE-66EF8D8E3100> /Library/Frameworks/TSLicense.framework/Versions/A/TSLicense
    0x1995a000 - 0x1995cff7 com.apple.PDFImporter 2.1 (???) <C78368B0-3712-067C-9467-55932890C979> /System/Library/Components/PDFImporter.component/Contents/MacOS/PDFImporter
    0x19962000 - 0x19966ff3 com.apple.audio.AudioIPCPlugIn 1.1.2 (1.1.2) <5570694E-039D-7970-6083-1C8A7B7C937B> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x19bd5000 - 0x19bd5fff +com.parallels.cmplugin ParallelsCM version 1.0 (1.0) /Library/Contextual Menu Items/ParallelsCM.plugin/Contents/MacOS/ParallelsCM
    0x19bd9000 - 0x19bdaff7 +com.yazsoft.speeddownload.contextualmenu ??? (1.0.2) <32C5928C-3DE3-BFF1-D8E3-97876A95A4DA> /Library/Contextual Menu Items/Speed Download Contextual Menu.plugin/Contents/MacOS/Speed Download Contextual Menu
    0x19dce000 - 0x19ddcfe7 libSimplifiedChineseConverter.dylib 49.0.0 (compatibility 1.0.0) <8F5FA7F7-840D-C5EF-C6E6-E2AF7CE43CD2> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x19de0000 - 0x19df2ff7 libTraditionalChineseConverter.dylib 49.0.0 (compatibility 1.0.0) <026B8702-B0A6-1D90-BBD6-AAAD2E14810D> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0x1a043000 - 0x1a04aff7 com.apple.JavaVM 13.2.0 (13.2.0) <75981DDE-4A7A-EEB6-BAEE-30E9E1DA17C0> /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaVM
    0x1a053000 - 0x1a058ff7 +com.yazsoft.browserplugin 2.1.5 (2.1.5) <C9F8EB14-5273-6D24-CB78-D7E4988D1741> /Library/Internet Plug-Ins/SpeedDownload Browser Plugin.plugin/Contents/MacOS/SpeedDownload Browser Plugin
    0x1a05d000 - 0x1a061ff7 +com.yazsoft.SDSFBundle ??? (1.0) <A2FE447B-7FEA-76FC-EFF9-4EF08FF31B21> /Library/Internet Plug-Ins/SpeedDownload Browser Plugin.plugin/Contents/Resources/SpeedDownloadEnhancer.bundle/Contents/Resource s/SDSFBundle.bundle/Contents/MacOS/SDSFBundle
    0x1a077000 - 0x1a07afff +com.pgp.contextmenu.PGPcontext 9.8.2.3005 (9.8.2.3005) /Library/Contextual Menu Items/PGPcontext.plugin/Contents/MacOS/PGPcontext
    0x1a333000 - 0x1a374fe3 com.apple.audio.SoundManager.Components 3.9.4 (3.9.4) <AD66647C-03A9-EBAF-6FFC-E5A631F4D6BE> /System/Library/Components/SoundManagerComponents.component/Contents/MacOS/Soun dManagerComponents
    0x1a43f000 - 0x1a445ffb com.apple.audio.AppleHDAHALPlugIn 1.8.7 (1.8.7f1) <0FE8B697-6D19-69C6-FA94-E18064ACFAEC> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x1a44a000 - 0x1a472fff +com.joesoft.hal ??? (1.0.1.162) /Library/Audio/Plug-Ins/HAL/Hear.plugin/Contents/MacOS/Hear
    0x1a481000 - 0x1a486fff +com.roxio.ToastItPlugin ToastIt 1.1.2 (build 18) (1.1.2) <271B9402-59DA-B4F5-4554-0356099BD7BB> /Users/tommyboy/Library/Contextual Menu Items/ToastIt.plugin/Contents/MacOS/ToastIt
    0x1d494000 - 0x1d4cbff8 +com.pgp.framework.PGPui 9.8.2.3005 (3.10.2) /Library/Frameworks/PGPui.framework/Versions/A/PGPui
    0x1d8a6000 - 0x1d8d8ffe +com.stuffit.StuffItCM 12.0.1 (12.0.1) /Library/Contextual Menu Items/StuffItCM.plugin/Contents/MacOS/StuffItCM
    0x1dddb000 - 0x1dfbdff3 +com.elgato.mpegsupport EyeTV MPEG Support 1.2 (build 52) (1.2) <35B97927-65D9-4556-1B6A-23CC2834C7FA> /Library/QuickTime/EyeTV MPEG Support.component/Contents/MacOS/EyeTV MPEG Support
    0x1e260000 - 0x1e4e4ff3 +com.elgato.Turbo.component 1.0.2 (759) (1.0.2) <21DBC045-EEB1-87B8-8E81-2F7DBBDD2962> /Library/QuickTime/Elgato Turbo.component/Contents/MacOS/Elgato Turbo
    0x1e560000 - 0x1e634fe3 +Crusher ??? (???) <5B0E8275-B9AD-3423-82AC-B9F45AD62A8B> /Library/QuickTime/Elgato Turbo.component/Contents/Frameworks/Crusher.framework/Versions/A/Crusher
    0x1e896000 - 0x1e9f6fff +CrusherHD ??? (???) <F4C66932-907F-5323-C128-D9A6A4122BD5> /Library/QuickTime/Elgato Turbo.component/Contents/Frameworks/CrusherHD.framework/Versions/A/CrusherHD
    0x1ea6b000 - 0x1ec5ffff +com.elgato.mpegsupport EyeTV MPEG Support 1.1.1 (build 49) (1.1.1) <388141FC-ED2D-5789-848C-711541157242> /Library/QuickTime/Elgato Turbo.component/Contents/Resources/EyeTV MPEG Support.component/Contents/MacOS/EyeTV MPEG Support
    0x1ef00000 - 0x1f0f2fe2 +net.telestream.wmv.import 2.3.3.3 (2.3.3.3) <29274B95-3248-3AB4-A08F-718299D6D8C8> /Library/QuickTime/Flip4Mac WMV Import.component/Contents/MacOS/Flip4Mac WMV Import
    0x1f127000 - 0x1f29ffeb com.apple.QuickTimeStreaming.component 7.6.6 (1742) <673FAFC2-B72B-6594-0599-D1FE314E3B98> /System/Library/QuickTime/QuickTimeStreaming.component/Contents/MacOS/QuickTime Streaming
    0x20000000 - 0x20047feb +com.stuffit.sdk 12.0.1 (12.0.1) <F75CA13B-084B-4B83-AA7A-7B13A7F8CEA0> /Library/Frameworks/StuffIt.framework/Versions/B/StuffIt
    0x21800000 - 0x221cbfd3 +com.macromedia.FlashPlayer-10.6.plugin 10.1.53.64 (10.1.53.64) <28AEE5D0-CE3E-55DB-5AE5-787143EC0F96> /Library/Internet Plug-Ins/Flash Player.plugin/Contents/PlugIns/FlashPlayer-10.6.plugin/Contents/MacOS/FlashPlay er-10.6
    0x235b2000 - 0x2363dfd1 +com.stuffit.stuffitcore 12.0.1 (12.0.1) <B625F52A-4E26-4A51-B15C-3C7CDB49ABB1> /Library/Frameworks/StuffItCore.framework/Versions/A/StuffItCore
    0x24000000 - 0x2419efe5 +com.pgp.framework.PGPclient 9.8.2.3005 (9.8.2.3005) /Library/Frameworks/PGPclient.framework/Versions/A/PGPclient
    0x2425c000 - 0x24464fce +com.pgp.framework.PGP 3.10.2 (3.10.2) /Library/Frameworks/PGP.framework/Versions/A/PGP
    0x70000000 - 0x700caffb com.apple.audio.units.Components 1.6.1 (1.6.1) <AEC44B68-A209-4093-36B0-7B740361249B> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x8fe00000 - 0x8fe4162b dyld 132.1 (???) <A4F6ADCC-6448-37B4-ED6C-ABB2CD06F448> /usr/lib/dyld
    0x90023000 - 0x90091ff7 com.apple.QuickLookUIFramework 2.2 (327.4) <5B6A066B-B867-D3A3-BDEE-3D68FA5385B4> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x900bd000 - 0x90134ff3 com.apple.backup.framework 1.2.2 (1.2.2) <FE4C6311-EA63-15F4-2CF7-04CF7734F434> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x90135000 - 0x9049dff7 com.apple.QuartzCore 1.6.2 (227.22) <4288F0D2-0C87-F054-C372-8764B44DE024> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x904a4000 - 0x905d0fff com.apple.audio.toolbox.AudioToolbox 1.6.3 (1.6.3) <F0D7256E-0914-8E77-E37B-9720430422AB> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x905d1000 - 0x90649fef com.apple.AppleVAFramework 4.9.20 (4.9.20) <D8B544CB-9E32-81C2-59BD-C5DDB66DA621> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x9068c000 - 0x906fbff7 libvMisc.dylib 268.0.1 (compatibility 1.0.0) <2FC2178F-FEF9-6E3F-3289-A6307B1A154C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x906fc000 - 0x90705ff7 com.apple.corelocation 12 (12) <3B96D426-9245-A054-E9D2-6503BA48938A> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
    0x90706000 - 0x908c0fe3 com.apple.ImageIO.framework 3.0.3 (3.0.3) <A93A514B-C1BF-21D0-FB03-CB775DE4FFAA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x908c1000 - 0x908c7ff7 com.apple.DisplayServicesFW 2.2.2 (251) <6E4020F6-4DD0-F137-F226-F396807E3C3B> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x908c8000 - 0x90971ff7 com.apple.CFNetwork 454.9.7 (454.9.7) <B740E1BD-01B7-34C2-2A9A-6DBC68B1EA5B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x90972000 - 0x90993fe7 com.apple.opencl 12.1 (12.1) <DA2AC3FA-ED11-2D10-21E9-7BDF4778B228> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x90994000 - 0x90996ff7 libRadiance.dylib ??? (???) <AB06F616-E3EA-5966-029A-8AA44BBE5B28> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x909e0000 - 0x90c43fef com.apple.security 6.1.1 (37594) <8AE73F5F-936C-80F6-B05B-A50C3082569C> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x90c44000 - 0x90c83ff7 com.apple.ImageCaptureCore 1.0.2 (1.0.2) <18E338B0-D82E-2ADC-FB9E-8909E765C41B> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x90cbd000 - 0x90ccbfe7 libz.1.dylib 1.2.3 (compatibility 1.0.0) <3CE8AA79-F077-F1B0-A039-9103A4A02E92> /usr/lib/libz.1.dylib
    0x90ccc000 - 0x90d3aff7 com.apple.ISSupport 1.9.3 (51) <9BB37FBA-E379-8D12-11C6-B9C5C9683D27> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x90d3b000 - 0x90d4fffb com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <57DD5458-4F24-DA7D-0927-C3321A65D743> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x90d50000 - 0x90e51fe7 libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <B4C5CD68-405D-0F1B-59CA-5193D463D0EF> /usr/lib/libxml2.2.dylib
    0x90e52000 - 0x90e8dfeb libFontRegistry.dylib ??? (???) <A102F61F-25D5-001A-20C3-56304C585072> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x90e8e000 - 0x91094feb com.apple.AddressBook.framework 5.0.2 (870) <3E9D6CF3-6C41-245D-5343-941A185C8384> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x915dc000 - 0x915dffe7 libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
    0x915f0000 - 0x9203bff7 com.apple.WebCore 6533.17 (6533.17.8) <CB22435A-3FAC-EAE2-3CF1-FB9D79635637> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x9203c000 - 0x9213efef com.apple.MeshKitIO 1.1 (49.2) <34322CDD-E67E-318A-F03A-A3DD05201046> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itIO.framework/Versions/A/MeshKitIO
    0x9213f000 - 0x9213fff7 com.apple.Accelerate 1.6 (Accelerate 1.6) <BC501C9F-7C20-961A-B135-0A457667D03C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x92140000 - 0x92155fff com.apple.ImageCapture 6.0 (6.0) <3F31833A-38A9-444E-02B7-17619CA6F2A0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x9216c000 - 0x9217dff7 com.apple.LangAnalysis 1.6.6 (1.6.6) <97511CC7-FE23-5AC3-2EE2-B5479FAEB316> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x9217e000 - 0x921c1ff7 libGLU.dylib ??? (???) <B50572FF-3EAC-FD98-1A01-6B718D98F67F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x921c2000 - 0x92432ffb com.apple.Foundation 6.6.3 (751.29) <E77D3906-99F4-FEF4-FBB0-86FB3C94073E> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92433000 - 0x92442fe7 libxar.1.dylib ??? (???) <382463E5-02FE-8DDD-E061-C7F730B21F10> /usr/lib/libxar.1.dylib
    0x92443000 - 0x924a4fe7 com.apple.CoreText 3.1.0 (???) <1372DABE-F183-DD03-03C2-64B2464A4FD5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x924de000 - 0x92521ff7 com.apple.NavigationServices 3.5.4 (182) <753B8906-06C0-3AE0-3D6A-8FF5AC18ED12> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x925ae000 - 0x926baff7 libGLProgrammability.dylib ??? (???) <23AB2443-1DB3-3BFE-38A6-11F0BE453989> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x926bb000 - 0x926bbff7 com.apple.Carbon 150 (152) <9252D5F2-462D-2C15-80F3-109644D6F704> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x926d0000 - 0x926d1ff7 com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <0EC4EEFF-477E-908E-6F21-ED2C973846A4> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x926d2000 - 0x9278bfe7 libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <16CEF8E8-8C9A-94CD-EF5D-05477844C005> /usr/lib/libsqlite3.dylib
    0x9278c000 - 0x92790ff7 IOSurface ??? (???) <66E11D8E-CF4B-EFD0-37F9-20177C647021> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x92791000 - 0x92795ff7 libGIF.dylib ??? (???) <3ECD4D2C-40FE-E9A0-A2D2-E36D1C00D3A8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x927d7000 - 0x927ebfe7 libbsm.0.dylib ??? (???) <14CB053A-7C47-96DA-E415-0906BA1B78C9> /usr/lib/libbsm.0.dylib
    0x927ec000 - 0x92992feb libSystem.B.dylib 125.2.0 (compatibility 1.0.0) <3441F338-2218-6D36-3F95-3A16FBF6713D> /usr/lib/libSystem.B.dylib
    0x92993000 - 0x92e4cffb com.apple.VideoToolbox 0.484.11 (484.11) <6AB58081-F7C4-46F9-2C05-CFED9E38F0A0> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x92e4d000 - 0x92e6dfe7 libresolv.9.dylib 41.0.0 (compatibility 1.0.0) <751955F3-21FB-A03A-4E92-1F3D4EFB8C5B> /usr/lib/libresolv.9.dylib
    0x92e6e000 - 0x93050fff com.apple.imageKit 2.0.3 (1.0) <BF2ECA4D-FCD8-AD5D-E100-22370F2C7EE0> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x93051000 - 0x930caff7 com.apple.PDFKit 2.5.1 (2.5.1) <CEF13510-F08D-3177-7504-7F8853906DE6> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x930cb000 - 0x930efff7 libJPEG.dylib ??? (???) <5CE96981-6B2A-D15B-4A17-E7BD329095B6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x930f0000 - 0x931a6ffb libFontParser.dylib ??? (???) <067DC1A2-764B-41EA-B07E-4205472749B7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x931a7000 - 0x9320bffb com.apple.htmlrendering 72 (1.1.4) <4D451A35-FAB6-1288-71F6-F24A4B6E2371> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x9320c000 - 0x93622ff7 libBLAS.dylib 219.0.0 (compatibility 1.0.0) <C4FB303A-DB4D-F9E8-181C-129585E59603> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x93623000 - 0x936a3feb com.apple.SearchKit 1.3.0 (1.3.0) <9E18AEA5-F4B4-8BE5-EEA9-818FC4F46FD9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x936a4000 - 0x936d4ff7 com.apple.MeshKit 1.1 (49.2) <ECFBD794-5D36-4405-6184-5568BFF29BF3> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
    0x936d5000 - 0x93726ff7 com.apple.HIServices 1.8.0 (???) <10C85B88-C6AF-91DB-2546-34661BA35AC5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x93763000 - 0x937a9ff7 libauto.dylib ??? (???) <85670A64-3B67-8162-D441-D8E0BE15CA94> /usr/lib/libauto.dylib
    0x937df000 - 0x9383aff7 com.apple.framework.IOKit 2.0 (???) <A013B850-6ECB-594A-CBD6-DB156B11871B> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x9383b000 - 0x93859ff7 com.apple.CoreVideo 1.6.1 (45.4) <E0DF044D-BF31-42CE-B690-FD1FCE07E64A> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x9385a000 - 0x939dcfe7 libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <2314BD12-0821-75BB-F3BC-98D324CFD30A> /usr/lib/libicucore.A.dylib
    0x93a24000 - 0x93a62ff7 com.apple.QuickLookFramework 2.2 (327.4) <88A59C42-A200-FCB6-23EC-E848D0E14963> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x93a63000 - 0x94252557 com.apple.CoreGraphics 1.543.50 (???) <74533178-5C90-0F54-1B06-2E1C5251ED5D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x94253000 - 0x94253ff7 com.apple.CoreServices 44 (44) <AC35D112-5FB9-9C8C-6189-5F5945072375> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x94254000 - 0x942efff7 com.apple.ApplicationServices.ATS 4.3 (???) <7ECA252B-5F67-2816-A4F0-73E1DC833728> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x942f0000 - 0x945e9fef com.apple.QuickTime 7.6.6 (1742) <89720F2A-F33B-FF09-3D81-F9F25A99F3EB> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x945ea000 - 0x94692ffb com.apple.QD 3.35 (???) <B80B64BC-958B-DA9E-50F9-D7E8333CC5A2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x94693000 - 0x9469eff7 com.apple.CrashReporterSupport 10.6.3 (250) <981124CA-6E89-94C5-C7E9-4E0D6CA06F1D> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x9469f000 - 0x946e3fe7 com.apple.Metadata 10.6.3 (507.10) <630494FA-3BB3-EDD3-E10B-8DAAF4831E26> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x9472d000 - 0x9477afeb com.apple.DirectoryService.PasswordServerFramework 6.0 (6.0) <BF66BA5D-BBC8-78A5-DBE2-F9DE3DD1D775> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x9477b000 - 0x947e5fe7 libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
    0x947e6000 - 0x9483efe7 com.apple.datadetectorscore 2.0 (80.7) <A40AA74A-9D13-2A6C-5440-B50905923251> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x9483f000 - 0x94865fff com.apple.DictionaryServices 1.1.1 (1.1.1) <02709230-9B37-C743-6E27-3FCFD18211F8> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x94892000 - 0x948baff7 libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <769EF4B2-C1AD-73D5-AAAD-1564DAEA77AF> /usr/lib/libxslt.1.dylib
    0x948bb000 - 0x949cafe7 com.apple.WebKit 6533.17 (6533.17.8) <7489BF63-4075-335A-93DE-878547A7A4B2> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x949d0000 - 0x949d0ff7 com.apple.quartzframework 1.5 (1.5) <CEB78F00-C5B2-3B3F-BF70-DD6D578719C0> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x949d1000 - 0x94cf1feb com.apple.CoreServices.CarbonCore 861.13 (861.13) <52803668-3669-36BD-57DD-078FBA835081> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x94d0b000 - 0x94d26ff7 libPng.dylib ??? (???) <36A3D75E-5178-4358-7F02-444E276D61AD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x94d27000 - 0x94e6afef com.apple.QTKit 7.6.6 (1742) <98ECA8E3-73F0-D21B-8B7E-8FE651E29A7F> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x94eb3000 - 0x94ebcff7 com.apple.DiskArbitration 2.3 (2.3) <E9C40767-DA6A-6CCB-8B00-2D5706753000> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x94ebd000 - 0x94ebdff7 liblangid.dylib ??? (???) <B99607FC-5646-32C8-2C16-AFB5EA9097C2> /usr/lib/liblangid.dylib
    0x94ef8000 - 0x94ef8ff7 com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <1DEC639C-173D-F808-DE0D-4070CC6F5BC7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x94ef9000 - 0x95025ffb com.apple.MediaToolbox 0.484.11 (484.11) <B93B175A-2039-2FD2-FBE4-22C9F8C9E223> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x95026000 - 0x9505aff7 libssl.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <0B900F26-51C1-7639-346F-24B080AEDAF3> /usr/lib/libssl.0.9.8.dylib
    0x9506e000 - 0x9507eff7 com.apple.DSObjCWrappers.Framework 10.6 (134) <81A0B409-3906-A98F-CA9B-A49E75007495> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x9507f000 - 0x95081ff7 com.apple.securityhi 4.0 (36638) <38D36D4D-C798-6ACE-5FA8-5C001993AD6B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x95082000 - 0x950c2ff3 com.apple.securityinterface 4.0.1 (37214) <BBC88C96-8827-91DC-0CF6-7CB639183395> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x950c3000 - 0x952bafeb com.apple.JavaScriptCore 6533.17 (6533.17.6) <A88FBEE4-D53E-E865-B70E-7C01E75330E4> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x952bb000 - 0x95301ffb com.apple.CoreMediaIOServices 130.0 (1035) <F5E6F93D-6844-9FD7-8769-44503DFD5363> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x95302000 - 0x9530cff7 com.apple.HelpData 2.0.4 (34) <9128FFEB-0F6C-B273-FCF4-D87A20227345> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x9530d000 - 0x95310ffb com.apple.help 1.3.1 (41) <67F1F424-3983-7A2A-EC21-867BE838E90B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x95311000 - 0x9548bfe3 com.apple.CoreFoundation 6.6.3 (550.29) <00373783-3744-F47D-2191-BEEA658F0C3D> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x9553b000 - 0x9554dff7 com.apple.MultitouchSupport.framework 204.13 (204.13) <F91A4E32-01AA-49DB-2205-3DBE1FEFFC43> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x9554e000 - 0x95555ff3 com.apple.print.framework.Print 6.1 (237.1) <97AB70B6-C653-212F-CFD3-E3816D0F5C22> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x95556000 - 0x95560fe7 com.apple.audio.SoundManager 3.9.3 (3.9.3) <5F494955-7290-2D91-DA94-44B590191771> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x95561000 - 0x964b1fe3 com.apple.QuickTimeComponents.component 7.6.6 (1742) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x964b2000 - 0x964b3ff7 com.apple.TrustEvaluationAgent 1.1 (1) <6C04C4C5-667E-2EBE-EB96-5B67BD4B2185> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x964b4000 - 0x9658ffe7 com.apple.DesktopServices 1.5.7 (1.5.7) <A69072AD-C47E-A00D-4A69-6E46A7FB2119> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x9663d000 - 0x96659fe3 com.apple.openscripting 1.3.1 (???) <DA16DE48-59F4-C94B-EBE3-7FAF772211A2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x9665a000 - 0x96737ff7 com.apple.vImage 4.0 (4.0) <64597E4B-F144-DBB3-F428-0EC3D9A1219E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x96738000 - 0x96744ff7 libkxld.dylib ??? (???) <322A4B52-8305-3081-6B74-813C3A87A56D> /usr/lib/system/libkxld.dylib
    0x96745000 - 0x9674bfff com.apple.CommonPanels 1.2.4 (91) <2438AF5D-067B-B9FD-1248-2C9987F360BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x96757000 - 0x967e9fe3 com.apple.print.framework.PrintCore 6.2 (312.5) <7729B4D7-D661-D669-FA7E-510F93F685A6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x967ea000 - 0x967eaff7 com.apple.ApplicationServices 38 (38) <8012B504-3D83-BFBB-DA65-065E061CFE03> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x96819000 - 0x970f9ff7 com.apple.AppKit 6.6.6 (1038.29) <6F28C335-6DC2-AE0E-B79A-F256DBD0BB45> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x970fa000 - 0x9710aff7 libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <C8744EA3-0AB7-CD03-E639-C4F2B910BE5D> /usr/lib/libsasl2.2.dylib
    0x9710b000 - 0x971a8fe3 com.apple.LaunchServices 362.1 (362.1) <885D8567-9E40-0105-20BC-42C7FF657583> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x972d6000 - 0x9770bff7 libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <5E2D2283-57DE-9A49-1DB0-CD027FEFA6C2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x9770c000 - 0x97807ffb com.apple.PubSub 1.0.5 (65.20) <2AD354A5-5F08-82AE-BBDE-873F8C233A0B> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x97808000 - 0x97820ff7 com.apple.CFOpenDirectory 10.6 (10.6) <1537FB4F-C112-5D12-1E5D-3B1002A4038F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x97821000 - 0x9782bffb com.apple.speech.recognition.framework 3.11.1 (3.11.1) <EC0E69C8-A121-70E8-43CF-E6FC4C7779EC> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x9784e000 - 0x97855ff7 com.apple.agl 3.0.12 (AGL-3.0.12) <6877F0D8-0DCF-CB98-5304-913667FF50FA> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x97856000 - 0x9787dff7 com.apple.quartzfilters 1.6.0 (1.6.0) <879A3B93-87A6-88FE-305D-DF1EAED04756> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x9787e000 - 0x979b5ff7 com.apple.CoreAUC 6.04.01 (6.04.01) <B6E035A9-8DA2-82FC-9C2F-F57B9B62BE5F> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x979b6000 - 0x979ecfff libtidy.A.dylib ??? (???) <DDFAB560-3883-A6A2-7BDD-D91730982B48> /usr/lib/libtidy.A.dylib
    0x979ed000 - 0x979edff7 com.apple.Cocoa 6.6 (???) <EA27B428-5904-B00B-397A-185588698BCC> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x979f5000 - 0x97c20ff3 com.apple.QuartzComposer 4.1 (156.16) <578A1842-8B62-00BF-B2E8-4C0AA8E6A938> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x97c21000 - 0x97c5eff7 com.apple.SystemConfiguration 1.10.2 (1.10.2) <398BB007-41FD-1A30-26D8-CB86ED5E467E> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x97c5f000 - 0x97c61fe7 com.apple.ExceptionHandling 1.5 (10) <21F37A49-E63B-121E-D406-1BBC94BEC762> /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    0x97c62000 - 0x97ce4ffb SecurityFoundation ??? (???) <3670AE8B-06DA-C447-EB14-79423DB9C474> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x98065000 - 0x98389fef com.apple.HIToolbox 1.6.3 (???) <0A5F56E2-9AF3-728D-70AE-429522AEAD8A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x9838a000 - 0x983bbff3 libTrueTypeScaler.dylib ??? (???) <7601D717-236D-8F4E-91F5-E69BB2920478> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x983bc000 - 0x984aeff7 libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <D2C86308-F998-C83D-F49B-CD484D4EFE6A> /usr/lib/libcrypto.0.9.8.dylib
    0x984af000 - 0x984b2ff7 libCGXType.A.dylib 543.50.0 (compatibility 64.0.0) <3B49AED9-0DBA-9D21-F9AC-8784363AD762> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x984b3000 - 0x984c0ff7 com.apple.NetFS 3.2.1 (3.2.1) <5E61A00B-FA16-9D99-A064-47BDC5BC9A2B> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x984c1000 - 0x984cfff7 com.apple.opengl 1.6.8 (1.6.8) <EBB7B411-60DD-DB9D-20C0-3E6258762EF0> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x984d0000 - 0x9857dfe7 libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <DF8E4CFA-3719-3415-0BF1-E8C5E561C3B1> /usr/lib/libobjc.A.dylib
    0x9857e000 - 0x985b6ff7 com.apple.LDAPFramework 2.0 (120.1) <001A70A8-3984-8E19-77A8-758893CC128C> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x985ef000 - 0x985feffb SyndicationUI ??? (???) <DFC52859-AA3C-80BE-0B86-AE36C1A50547> /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
    0x985ff000 - 0x98643ff3 com.apple.coreui 2 (114) <29F8F1A4-1C96-6A0F-4CC2-9B85CF83209F> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x98695000 - 0x9875ffef com.apple.CoreServices.OSServices 357 (357) <CF9530AD-F581-B831-09B6-16D9F9283BFA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x98760000 - 0x98794fe7 com.apple.framework.Apple80211 6.2.3 (623.1) <C096EF56-ABA3-A869-65AA-D1837351E1F6> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x98795000 - 0x987a2fe7 libbz2.1.0.dylib 1.0.5 (compatibility 1.0.0) <6008C8AC-8DB1-B38B-52A9-9133533B0DA2> /usr/lib/libbz2.1.0.dylib
    0x987a3000 - 0x987a6ff7 libCoreVMClient.dylib ??? (???) <420D9D10-B00E-202D-AA98-026996AB97DD> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x987a7000 - 0x98855ff3 com.apple.ink.framework 1.3.3 (107) <57B54F6F-CE35-D546-C7EC-DBC5FDC79938> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x98856000 - 0x98861ff7 libCSync.A.dylib 543.50.0 (compatibility 64.0.0) <4FA0CE4A-BDE5-0E3D-37F0-03B41F0C2637> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x98889000 - 0x98939ff3 com.apple.ColorSync 4.6.3 (4.6.3) <AA1076EA-7665-3005-A837-B661260DBE54> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x9893a000 - 0x9897bff7 libRIP.A.dylib 543.50.0 (compatibility 64.0.0) <8BAE1FC1-A478-F151-17C7-2D5DE470AC4F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x98a27000 - 0x98a28ff7 com.apple.audio.units.AudioUnit 1.6.3 (1.6.3) <959DFFAE-A06B-7FF6-B713-B2076893EBBD> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x98a31000 - 0x98a37ff7 libCGXCoreImage.A.dylib 543.50.0 (compatibility 64.0.0) <94F66BA6-A4E8-63A4-1B70-EFAA4C75D668> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x98a38000 - 0x98b66fe7 com.apple.CoreData 102.1 (251) <E6A457F0-A0A3-32CD-6C69-6286E7C0F063> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x98b67000 - 0x98b6cff7 com.apple.OpenDirectory 10.6 (10.6) <92582807-E8F3-3DD9-EB42-4195CFB754A1> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x98b6d000 - 0x98c05fe7 edu.mit.Kerberos 6.5.10 (6.5.10) <8B83AFF3-C074-E47C-4BD0-4546EED0D1BC> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x98d67000 - 0x98da9ff7 libvDSP.dylib 268.0.1 (compatibility 1.0.0) <3F0ED200-741B-4E27-B89F-634B131F5E9E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x98daa000 - 0x98df3fe7 libTIFF.dylib ??? (???) <9CFF48CC-4852-4D06-17AC-3C947C824159> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x98e16000 - 0x98e47ff7 libGLImage.dylib ??? (???) <B45EA17E-03EF-3575-0843-A1205F29E71E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x98e48000 - 0x98e48ff7 com.apple.vecLib 3.6 (vecLib 3.6) <7362077A-890F-3AEF-A8AB-22247B10E106> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x98e49000 - 0x98e4dff7 libGFXShared.dylib ??? (???) <B6028E64-3F3B-C637-DA04-D0CD528F6E1F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x98e4e000 - 0x98f1ffe3 ColorSyncDeprecated.dylib 4.6.0 (compatibility 1.0.0) <8FDB4C40-D453-DA53-2A66-9A53998AB23C> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.f ramework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x98f22000 - 0x98fd2fe3 com.apple.QuickTimeImporters.component 7.6.6 (1742) <76B0E668-214A-AB71-AAB8-E39E7F227C9B> /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x98fd3000 - 0x98ffdff7 com.apple.shortcut 1.1 (1.1) <B0514FA9-7CAE-AD94-93CA-7B2A2C5F7B8A> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x98ffe000 - 0x99009ff7 libGL.dylib ??? (???) <B87E0676-F5EF-8DA3-6DEE-13C43B3832A7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x9907e000 - 0x990ceff7 com.apple.framework.familycontrols 2.0.1 (2010) <B9762E20-543D-13B9-F6BF-E8585F04CA01> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x992b3000 - 0x992ebff7 libcups.2.dylib 2.8.0 (compatibility 2.0.0) <76C02F5C-98FD-BD64-B5FB-C698FB76EA25> /usr/lib/libcups.2.dylib
    0x99448000 - 0x994a2fe7 com.apple.CorePDF 1.3 (1.3) <696ADD5F-C038-A63B-4732-82E4109379D7> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x994a3000 - 0x994c5fef com.apple.DirectoryService.Framework 3.6 (621.3) <05FFDBDB-F16B-8AC0-DB42-986965FCBD95> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x994c6000 - 0x9951cff7 com.apple.MeshKitRuntime 1.1 (49.2) <F1EAE9EC-2DA3-BAFD-0A8C-6A3FFC96D728> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itRuntime.framework/Versions/A/MeshKitRuntime
    0x9951d000 - 0x99598fe7 com.apple.audio.CoreAudio 3.2.2 (3.2.2) <51D0E2DC-B15F-AF6C-70D8-026DDAD4E2A5> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x99599000 - 0x995ccff7 com.apple.AE 496.4 (496.4) <7F34EC47-8429-3077-8158-54F5EA908C66> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x995cd000 - 0x9960aff7 com.apple.CoreMedia 0.484.11 (484.11) <0346F9E5-AEFE-B751-7D85-88D156C01385> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x9967a000 - 0x9976eff7 libiconv.2.dylib 7.0.0 (compatibility 7.0.0) <9EC28185-D26F-533F-90C4-FBAA13A15947> /usr/lib/libiconv.2.dylib
    0x9976f000 - 0x9994aff3 libType1Scaler.dylib ??? (???) <3CCADAB2-FBBF-15C9-C70C-4D26746B309E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libType1Scaler.dylib
    0xba900000 - 0xba916ff7 libJapaneseConverter.dylib 49.0.0 (compatibility 1.0.0) <12C58901-CCF3-4E8E-30CA-92A10CD55DF1> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0xbab00000 - 0xbab21fe7 libKoreanConverter.dylib 49.0.0 (compatibility 1.0.0) <7FFF4AFA-6522-C7D5-760F-A8F13D6EF032> /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
    0xbb100000 - 0xbb103fe7 libLatinSuppConverter.dylib 49.0.0 (compatibility 1.0.0) <D7E95532-C232-C492-6670-49FF18E6DE45> /System/Library/CoreServices/Encodings/libLatinSuppConverter.dylib
    0xffff0000 - 0xffff1fff libSystem.B.dylib ??? (???) <3441F338-2218-6D36-3F95-3A16FBF6713D> /usr/lib/libSystem.B.dylib
    Model: MacBook4,1, BootROM MB41.00C1.B00, 2 processors, Intel Core 2 Duo, 2.4 GHz, 2 GB, SMC 1.31f0
    Graphics: Intel GMA X3100, GMA X3100, Built-In, 144 MB
    Memory Module: global_name
    AirPort: spairportwireless_card_type_airportextreme (0x14E4, 0x88), Broadcom BCM43xx 1.0 (5.10.91.27)
    Bluetooth: Version 2.3.3f8, 2 service, 12 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Network Service: Parallels Shared Networking Adapter, Ethernet, en2
    Network Service: Parallels Host-Only Networking Adapter, Ethernet, en3
    Serial ATA Device: WDC WD5000BEVT-22A0RT0, 465.76 GB
    Parallel ATA Device: MATSHITADVD-R UJ-857E
    USB Device: External USB HDD, 0x0930 (Toshiba Corporation), 0xa001, 0xfd100000
    USB Device: Built-in iSight, 0x05ac (Apple Inc.), 0x8501, 0xfd400000
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac (Apple Inc.), 0x0229, 0x5d200000
    USB Device: IR Receiver, 0x05ac (Apple Inc.), 0x8242, 0x5d100000
    USB Device: Bluetooth USB Host Controller, 0x05ac (Apple Inc.), 0x8205, 0x1a100000
    FireWire Device: 1394 USB COMBO, Generic, Up to 400 Mb/sec

    Hi Bee.
    I think (fingers crossed) that the problem may be resolved. I removed the referenced "unsanty" folders, which apparently were installed by other apps that didn't explicitly say that they were being installed. My current hunches are Stuffit Deluxe 12, or possibly an older version of Weatherbug (ca 2008). But since removing PGP and the Unsanity enablers, I haven't experienced a crash. I've also updated Weatherbug and I've also gotten the most recent update to Stuffit 12 (v12.0.2).
    I'll keep an eye on things, but if the problem is gone, I'm good to go.
    Come to think of it the only difference between my desktop iMac and my MacBook is that I never installed PGP on my desktop. StuffIt Deluxe and WeatherBug are installed on both.
    Thx,
    TRB

  • I lost my ITunes library when my windows laptop had a major glitch. Have recovered about half of it. All of my library is on my Ipad- can pull this music from the IPad when I connect it to the laptop in ITunes? Thanks.

    I lost all of my ITunes library when my windows laptop had a major glitch. I have all of my music on an IPad and IPhone. Can I pull the music from the IPad or IPhone when I connect them in ITunes? Thanks.

    One application that's able to accomplish what you want is called Senuti.
    http://senuti.en.softonic.com/mac.
    I've used it many times to recover music from my iPod to iTunes.

  • Boot camp not recognize keyboard and mouse when installing windows 7 pro 64 bit

    Hi,
    I have some issue when installing windows 7 pro 64 bit using boot camp. after done partitioning the windows drive and when boot to windows installation process, i've got stuck in the first screen when choosing the language. it seems that the keyboard and mouse are not detected.
    i'm using boot camp ver. 5.0.
    does anyone have similar problem with me?

    I have finally successfully installed Windows 7 x64 on MacBook Air 13.3" (2013) thru Bootcamp.
    Problem:  After Windows 7 install thru BootCamp, I got to the first login screen and not input devices (Mouse, keyboard, USB) worked.   I tried to boot into Windows Safemode, but I received the error  "Windows can not complete installation in Safe Mode".
    Cause:  WIndows 7 does not have native USB 3.0 drivers, included on the install images.
    Resolution:  I downloaded the latest device drivers with thru BootCamp and copied them to the USB Flash Drive that had my bootable Windows 7 x64 install on it.  The second option in BootCamp is "Download Support Media".  This does more than just download drivers.  It creates a file called "autoattended.xml".  This is key as it tells Windows during the install process to use the device drivers that you download.  Otherwise, you need to do it manually, which you can't because you have no mouse or keyboard.
    NOTE:  I had no need of a super drive because I had all the files on one USB flash drive.  Therefore, I don't think it matter which side of the MBA the USB drive was plugged in, as other solutions suggested.

  • Heap Error during Windows OCIEnvCreate() call

    During a call to:
    OCIEnvCreate(&m_handles.m_pOCIEnv,
                             OCI_THREADED | OCI_OBJECT,
                             NULL,
                             NULL, NULL, NULL,
                             0, (dvoid **)0);
    A crash occurs which reports the following in the MSVC 2005 debug output window:
    HEAP[AutoTest.EnvironmentPkg.DatabaseConnectionManager.exe]: Invalid Address specified to RtlFreeHeap( 00150000, 0015ED80 )
    Windows has triggered a breakpoint in AutoTest.EnvironmentPkg.DatabaseConnectionManager.exe.
    This may be due to a corruption of the heap, and indicates a bug in AutoTest.EnvironmentPkg.DatabaseConnectionManager.exe or any of the DLLs it has loaded.
    We are using version 10.2.0.3 of the Oracle Basic Lite client on Windows XP, called via SQLAPI++.
    I have verified that the memory we allocate is not being corrupted before this call. Using Compuware's Boundschecker VS add-in, I've verified that the heap error is in a memory range allocated by oraociicus10.dll. Since the OCIEnvCreate call is the first time that oraociicus10.dll allocates memory (i.e. my code doesn't have a chance to trample Oracle's data structures), there's a good chance IMO that it's an internal Oracle problem.
    Boundschecker reports errors such as:
    Pointer Error: When calling LocalFree, pointer 0x03A60A5C is not at the beginning of the block 0x03A60998 (65536) allocated by LocalAlloc.
    These errors are reported in a Debug build; the same kind of error happens during a Release build.
    According to a previous thread, a special release of the OCCI interface DLLs was needed to fix MSVC 2005 compatibility issues like this one. (See Debug in Visual Studio 2005 (vs8) ? )
    I've posted looking for any such release for OCI DLLs, but haven't found any yet ( MSVC 2005 compatible OCI DLLs? )
    My questions:
    1. Could this be a compatibility problem between the OCI DLLs and MSVC 2005? and
    2. If not, what could the problem be?
    Thanks in advance for your help.

    Are you using the oracle thin client ...?? Try using the full client install.
    Is it working with OCI_DEFAULT or OCI_THREADED alone ???
    Please note the following points in WINDOWS Platform.;
    1)Try always a fresh installation for Oracle and VS products.Preferably a clean install of the OS.
    2)If don't want to remove OS , do a clean UNINSTALL (This should include a complete clean up in the Registry and file systems).
    3)Always reboot the system before and after installations and try your code.
    If the above sequences are followed most of the DLL/LIB problem are solved for me.

  • Displaying pdf in browser when using Windows 7 Beta & AR 9

    Early indications are that "Adobe Air" and/or "Acrobat.com" are breaking the display in browser function in Windows 7 Beta when using Adobe Reader 9.
    On a fresh install of Windows 7 Beta, I installed Adobe Reader 9, and as everyone is finding out, you cannot display a pdf in a browser window. Doesn't matter which browser either. IE8, Opera 10a, Mozilla SeaMonkey 1.1.14 had the same result for me. The only workable option was to have the pdf open in a separate window of Adobe Reader itself. Oddly though, on rare occasions I could get a pdf to display in a browser window, but 95% of the time it would not work.
    On another fresh install of Windows 7 Beta, I installed Adobe Reader 9. After installation I opened Adobe Reader and accepted the license agreement, then closed Adobe Reader. Next I uninstalled "Acrobat.com", then uninstalled "Adobe Air" using Programs and Features in Control Panel. So far, I have not had any problem downloading and viewing pdf's in a browser window. Tested with IE8 and Opera 10a. Note that I did not run compatibility mode on Adobe Reader.

    Hi,
    I (April) apologize I have been OOO and have not been able to respond to your replies.  
    Let’s start over. 
    We have an issue where help topics do not display when selected in the TOC or when a link to the topic is clicked within another internal topic. It is in a continous loop in the browser (flickering like it is trying to load). If you right-click on the topic it displays (we are currently using this as the work-around).
    We use Windows 7, IE9 and RH10 for all our projects. (Recently upgraded from RH8 to RH10)
    Turns out the problem is not isolated. I have run across it in at least one other project, which leads me to think it also occurs in others.
    "Does this only occur when the help is called from your software? Is it OK if you double click the start page?"
              No. I it ALSO occurs when launched from the start page. 
    Have you tried deleting the CPD file and reopening Rh and the project?
              Yes, without success.
    Are you using any redirects?    
              Per (Adrienne), “I am not using any redirects. I encounter this issue only in IE. If I paste the .htm into a Firefox browser, the help displays as it should.” 
              I will add that the project also displays incorrectly in Google Chrome.
    Thanks  April

Maybe you are looking for

  • Unable to restart/shutdown after upgrade

    Hi all, I recently upgraded my late 2010 macbook pro to mountain lion. Everything went well and the system is working fine. However, when I try to restart from the apple menu, nothing happens. Clicking  About this Mac, Force Quit, Sleep, Restart...,

  • Windows 7 with CS4 and PSD Icons

    Hi, I have Windows 7 64bit, Photoshop CS4 and Photoshop 7 (for back-up). I know that Photoshop 7 allowed thumbnail previews on PSD's but that was taken out so CS4 is just a custom icon, but Windows 7 doesn't seem to really get what to do with either

  • Problem With Convert to symbol

    I am having a stupid problem with the convert to symbol function in Flash 8 pro. When I import to library and then convert my first symbol, everything works fine. But then when I try to convert another piece of art to a symbol, it becomes the same sy

  • Up date iPhone 4

    I have an iPhone 4 using iOS 7.2.1. Every time I look for updates, it says "This software is up to date". A friend of mine with the same type, has already up graded to iOS 8. Would you help me answering my anxieties?

  • Trying to decide between iphoto & aperture

    Hi gang... I give up. I'm a new D-SLR user, shooting the majority of my pictures in NEF, so I have more info to fix my shooting errors in the computer. I'm comfortable with iPhoto as an organizational tool, posting to iWeb, iMovie etc.. but I like wh