Code View Scroll Bar Jumps + High Processor usage

In Code View, if you click at the bottom of the page -if the vertical scroll bar is present- the scroll bar jumps one or two lines up.
I know about another bug i.e Dw uses 15 to 30% of the processor at all times, I hope it'll get fixed soon or I'll have to find an alternative.
Lemme know if you know of any solutions.

Windows 8 RP Build 8400 -it happened on Windows 7 as well.
Dreamweaver Version 12.0.1 Build 5842 -I guess it's correct, I installed an update in the hopes of having this problem fixed but no luck yet.

Similar Messages

  • Scroll bar jumps around

    I doubt there is a solution... 5 versions in, but I'm scrolling to the bottom of 2000 images -- I let go of the cursor and the scroll bar jumps up to the top near image 100. Ongoing issue. thanks.

    I let go of the cursor and the scroll bar jumps up to the top near image 100. Ongoing issue. thanks.
    When loading files in Bridge it starts to cache and keeps the focus on the selected file. Therefor scrolling without selecting the image below will mean the preview shows the first selected file and when rebuilding the thumbs in the content window it automatically puts the matching thumb in view. This is as designed.
    However when there is no activity at all (importing and caching is done and the activity bar shows no action) it should work as expected. It also does so on my system

  • PCUI HTML viewer Scroll bar

    Hi,
    We have a custom HTML viewer as one of the tab in PCUI application.It conntains a vertical scrollbar within it. That means while accessing the page we have two scroll bar one is browser scroll bar and another is within the tab.We don't want the scroll bar within the tab.
    If we check standard html viewer tabs ( configuration tab in orders, Questionaire tab) inside scroll bar is not present.
    How can we remove the additional scroll bar.
    Thanks in advance,
    Abdul Raheem S

    Sorry for bringing up this old topic.. but I did not find any other solution in the forums for my problem:
    Currently we are using the PCUI HTML viewer to display a seperate BSP Application on a tab page. Everything works perfect, exccept the fact that I always get the user authentication pop-up when accessing the tab where the html viewer is embedded. Strange thing is, that we are using SSO. If the user logon fails I get an error page, but after that when selecting the tab again the bsp application is displayed correctly without authentication.
    Has anyone experienced the same behaviour ? Did i miss something to implement in the BSP ?
    Thanks for the help !
    Rgds,
    Axel

  • How to view scroll bar in filmstrip view in aperture 3.2.2?

    I have aperture 3.2.2 and normally work in filmstrip mode.  In the documentation I notice a scroll bar underneath the filmstrip, allowing you to scroll quickly through the images.  When I open aperture I see no such scroll bar.  Underneath the filmstrip I have keyword controls, but no scroll bar.  I have a couple of arrows that allow me to move one image to left or right, but no scroll bar.  Is there a simple way to be able to have the scroll bar be visible?  Thanks, Ric

    Ok, It now has suddenly appeared.  I switched between the viewing modes several times, and now the scroll bar is appearing.  It took a long time (and many switches) for this to work, but now it works fine.
    Ric

  • Horizontal scroll bar jumps

    Hi
    When you execute the following code , you will see a table , drag or extend the column size of column D such that , you get a horizontal scroll pane
    Now when you click on first,second or third column ( i.e row selection ) no problem
    but if u select the fourth column i.e D , then the horizontal scroller jumps to right
    any clue where this is done , i dont want this effect , is there a way to disable it ?
    Regards
    kmm
    import java.awt.*;
    import java.util.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.table.*;
    import javax.swing.table.*;
    import java.awt.Component.*;
    public class Table
    public static void main(String[] args)
    JFrame frame = new JFrame("Table");
    frame.addWindowListener( new WindowAdapter() {
    public void windowClosing(WindowEvent e)
    Window win = e.getWindow();
    win.setVisible(false);
    win.dispose();
    System.exit(0);
    JTable table = new JTable( 6,4 )
    public TableCellRenderer getCellRenderer(int row, int column) {
    TableColumn tableColumn = getColumnModel().getColumn(column);
    TableCellRenderer renderer = tableColumn.getCellRenderer();
    if (renderer == null) {
    Class c = getColumnClass(column);
    if( c.equals(Object.class) )
    Object o = getValueAt(row,column);
    if( o != null )
    c = getValueAt(row,column).getClass();
    renderer = getDefaultRenderer(c);
    return renderer;
    public TableCellEditor getCellEditor(int row, int column) {
    TableColumn tableColumn = getColumnModel().getColumn(column);
    TableCellEditor editor = tableColumn.getCellEditor();
    if (editor == null) {
    Class c = getColumnClass(column);
    if( c.equals(Object.class) )
    Object o = getValueAt(row,column);
    if( o != null )
    c = getValueAt(row,column).getClass();
    editor = getDefaultEditor(c);
    return editor;
    // Buttons
    table.setValueAt( new JButton("Button"), 0, 0 );
    table.setValueAt( new JButton("Button"), 0, 1 );
    // Combobox
    JComboBox combo = new JComboBox( new String[] {"First", "Second", "Third"} );
    table.setValueAt( combo, 1, 1 );
    // Labels
    table.setValueAt( new JLabel("Label"), 1, 0 );
    JLabel label = new JLabel( "Label", new ImageIcon( table.getClass().getResource("new.gif") ),
    JLabel.LEFT);
    table.setValueAt( label, 1, 2 );
    // Scrollbar
    //table.setValueAt( new JScrollBar(JScrollBar.HORIZONTAL), 2,1 );
    table.setAutoResizeMode(JTable.AUTO_RESIZE_OFF);
    // RadioButtons
    JRadioButton b1 = new JRadioButton( "Group1 Button1" );
    JRadioButton b2 = new JRadioButton( "Group1 Button2" );
    JRadioButton b3 = new JRadioButton( "Group1 Button3" );
    ButtonGroup g1 = new ButtonGroup();
    g1.add( b1 );
    g1.add( b2 );
    g1.add( b3 );
    table.setValueAt( b1, 3, 0 );
    table.setValueAt( b2, 3, 1 );
    table.setValueAt( b3, 3, 2 );
    //checkbox
    JCheckBox c1 = new JCheckBox( "Check box1 " );
    JCheckBox c2 = new JCheckBox( "Check box2" );
    JCheckBox c3 = new JCheckBox( "Check box3" );
    table.setValueAt( c1, 4, 0 );
    table.setValueAt( c2, 4, 1 );
    table.setValueAt( c3,4, 2 );
    table.setDefaultRenderer( JComponent.class, new JComponentCellRenderer() );
    //table.setDefaultEditor( JComponent.class, new JComponentCellEditor() );
    JScrollPane sp = new JScrollPane(table);
    frame.getContentPane().add( sp );
    frame.pack();
    frame.show();
    class JComponentCellRenderer implements TableCellRenderer
    public Component getTableCellRendererComponent(JTable table, Object value,
    boolean isSelected, boolean hasFocus, int row, int column) {
    return (JComponent)value;
    }

    It is done by JTable in changeSelection(..) to turn it off:
    table.setAutoscrolls(false);

  • Table view: scroll bar issue

    Hi guru's,
    I'm having trouble with defining a table view. I'm building a KPI dashboard that should be able to hold the results of many queries. I have one query that will always return a single row. Therefore, I resized the layout of the table view so that it will only display 1 row. However, when deploying the model, I get a vertical scrollbar! The table shows the record from the query and even part of a second (empty) row and I'm able to scroll down even further. I have tried all options, but I can't get rid of the scrollbar.
    Does any of you guys have a solution?
    Best regards,
    Arno

    Hi Prachi,
    thanks for your reply! You are completely right, regarding the flex compiler. We use that one, because we get errors using the Webdynpro compiler. I'll get basis to look into it, because form view is not an option for us (but that's another topic ).
    Best regards,
    Arno

  • High processor usage using xdm-archlinux

    Both xmessage and xclock are running the processor more than needed and continue running after logging in. 
    /var/log/xdm.log keeps running var out of disk space with continuous error messages:
    Warning: select failed; error code 5

    For what I'm using, it is behaving.  I'm not using urxvt.
    This may have something to do with the urxvt: https://bbs.archlinux.org/viewtopic.php?id=50963
    Last edited by nomorewindows (2012-03-17 13:47:31)

  • Mail scroll bar jumps on some emails,

    Each time there is an software update, mail cursor jumps on some emails,
    it stops by performing repair disc permission is.
    but this is annoying each and every time, can any 1 help on this pls.

    Try a Safe Mode boot ...
    Startup your Mac in Safe Mode
    A Safe Mode boot takes longer than a normal boot so be patient.
    Once you are in Safe Mode, click Restart from the Apple () menu.
    Then try email.

  • When I open certain emails the scroll bars at the side and bottom flash and jump back and forth along with the email content

    I recently upgraded to the latest version of Yahoo mail. Ever since then when I open certain emails the scroll bars jump back and forth and flash. This happens when I open my AT&T bill or something from Amazon for instance. A message appears at the bottom such as "Transferring data from mail.yimg.com", or "us.bc.yahoo.com". This doesn't happen when I use Safari.

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    You may have switched on caret browsing.
    *http://kb.mozillazine.org/accessibility.browsewithcaret
    You can press press F7 (on Mac: fn + F7) to toggle caret browsing on/off.
    *Tools > Options > Advanced : General: Accessibility: [ ] "Always use the cursor keys to navigate within pages"
    *http://kb.mozillazine.org/Scrolling_with_arrow_keys_no_longer_works
    *http://kb.mozillazine.org/Accessibility_features_of_Firefox

  • Design View independent of Code View

    Hello,
    When selecting code in a split screen my design view jumps around assuming what I want to look at.  Can anyone share how to make these independent of each other?  Is it even possibile?
    For example if I focus on the bottom of the page and scroll up to the top of my code view section the design view will follow to the top of the page.  Sometimes I would just like to look at my code without the view following me around like my once neglected and now set free from the pound dog.
    Thanks!
    Phil

    Hi thanks for the quick response.  Operating in two different windows is not what I am shooting for.
    This is what you see in Dreamweaver split view (although typically more thought and design has been used in the interface.) Pretend that the grey bar and slightly reddish grey on the right are the scrollbars that act independently of each view in there respected view.  One scrollbar for the design view and one for the code view in a split set up.
    Source View
    <div>code</div>
    <div>code</div>
    <div>code</div>
    Design View
    Top Div
    Middle Div
    Bottom Div
    In the design view I focus the view on the bottom div, the scroll bar is all the way down in the design view.  I touch anything in my code view and it snaps the design view scroll bar back to the top and I am back to looking at the top of the design view.  Can I break this dependancy?  It seems that clicking in the code view refreshes the design view which is the source of frustration.
    Thanks again.
    Phil

  • Itunes store/grid view scrolling stutter in itunes 9.0.2.25 x64bit

    Hi
    Im having an issue when browsing the itunes store and browsing music and apps in grid view, When i scroll the scroll bar jumps and stutters yet coverflow and list view scroll smoothly!
    I have latest drivers installed and my machine is no means slow being a I7 with 6gb ram! and windows 7 64bit.
    Any ideas guys?

    I'm having the same problem but only when i try to create a ringtone? but this has happened for a while and doesn't seem to be consistent with the upgrade. I am getting the error 11556 stating cannot connect to itunes store, but am still able to purchase.

  • SBS 2011 - High CPU usage - Help me Microsoft forums! You're my only hope!

    My company supports a client that has a SBS 2011 server.  For about the past year, we've been fighting a recurring issue with performance on this server.  There are about ten local users and four remote users.  The server's CPU idles at
    about 60%-80% but is usally running when under *any* load from 80%-100%.  If you do anything on the console, it will stay pretty much at 100%.  These are not power users by any means.  The server is utilized for file/printer sharing, Exchange
    2010, and one flat file database application (non-SQL).  SharePoint is not utilized.
    Needless to say, our client is frustrated.  When opening files, using their database application, or doing anything Exchange-related, there is a large amount of lag on the client side.  First, here are the server's specs:
    Make:Dell PowerEdge T420
    OS: SBS 2011 Standard SP1
    CPU: 2 - Intel Xeon E5-2407
    Memory: 32GB
    RAID: RAID 1 - Operating System (C:)/Data Volume (E:) | RAID 5 - Data Volume (D:)
    Here is what we have tried to resolve this to finality:
    * Doubled resources - Initially the server had a single physical processor and 16GB of memory.  While these specs alone should have been fine, and were fine when the server was installed, we had periods of time where the server would just sit all day at
    100% usage.  We doubled the resources and while this seemed like it would fix the issue, we are still seeing abnormally high processor usage.
    * Removed all monitoring tools, antivirus, and backup software - As part of our testing, we removed our monitoring agent (LabTech) and antivirus (GFI Vipre).  Mozy is utilized for an off-site backup so that was disabled.  No dice.
    * Verified updates - We made absolutely sure the server was 100% patched.
    * Malware/Virus/Rootkit checks - We have ran scans checking for any potential issues with security.
    * Ran MBSA and MBCA to fix any issues with the server's configuration.
    There is no single process which is using all of the CPU, or we would simply be able to narrow it down.  Our calls to Microsoft support have yielded no answers.  The last call ended with Microsoft stating that a SBS server should always be running
    at high CPU usage.  Meanwhile, we have many other clients with less-beefy servers, with more users, who have no issues like these.
    So, I'm turning to you all.  I will gladly provide logs, configuration settings, even remote assistance sessions if you all can help shed some light on what might be causing my issues.
    Thank you!

    Some comments/ideas:
    How long was the server running after this screenshot?  I ask because store.exe is only got a 1GB of RAM which is really low - it should grab most of the RAM within a few hours.
    The server was up for about 12 hours.  I believe an adjustment was made before to limit the Exchange memory usage.
    Strange that SearchIndexer (wsearch service) is so high although that may be a startup condition.
    The LT* processes seem to be a 3rd party monitoring tool - no idea why it would ever need that much CPU though (I thought you disabled this?).
    We had, but we cannot go forever without monitoring our client's server.  It has been pulled off in the past and results on performance are pretty much the same.
    The taskmgr process run by amnet_admin has used a lot of total CPU Time.  What is it? (can't see the command line).
    That's the user I was logged in as when I took the screenshot.  Even the task manager seems to eat up the CPU.
    The sqlserver process right above it is also busy - may want to look at the command line and figure out which SQL database that is (SBS has 3 - WSUS, Sharepoint, and SBS monitoring)
    I believe that's the SharePoint database.  They don't currently use their site.  Would you recommend a removal and reinstallation?  I would not completely remove as I know SBS doesn't like you removing parts of the complete package.
    Strange that vds.exe is 10% - that is the interface to the disk management interface IIRC.  Perhaps your monitoring service has gone awry here - definitely lose it.
    I'll see about pulling it off and I'll see if there are any improvements.
    -- Al

  • ICal - long notes disappear/scroll bar problem

    I'm having issues typing in long notes in iCal. When I'm typing in the "Note" field, and I'm typing a lot, at some point my text disappears below the bottom of the pop up box (e.g. the box doesn't keep scrolling down as I type). Then I have to manually click and drag the scroll bar down to reveal what I just typed. But if I start typing again, the scroll bar jumps back up, hiding what I'm typing again. Has anyone else experienced this?

    -> 3) Changed the default Window width to 5 and it's height to 12
    Don't do that. That apparently guarantees the problem you have.
    The Window size should be no larger than will fit on the user's screen, and the user running the lowest screen resolution should be your target. We create forms no larger than will fit on the 800x600 layout. Our forms always use the Real,Pixel coordinate system, and I create forms with the window size set to a maximum of 784x442. Those reduced numbers allow the form to fit within a browser window in web forms. Our forms run under both 6i Client/Server AND Web, and there is a pre-form that adjusts the web form window size a little larger, but that is all.
    Also, when you run your form, that scrollbar you see is there because your window is not maximized. Our forms always maximize the window, and even have a when-window-resized trigger with this:
    <pre><font face = "Lucida Console, Courier New, Courier, Fixed" size = "1" color = "navy">DECLARE
    W0 Window := Find_Window('WINDOW0');
    BEGIN
    If Get_Window_Property(W0,Window_State)<>'MAXIMIZE' then
    Set_Window_Property(W0,Window_State,Maximize);
    End if;
    END;</font></pre>
    The wwr trigger ensures the user never sees the Window0 border -- it is useless unless you are running a form with multiple windows, which we never do.
    So.... Maximize your Window0, and then you will see the behavior I have been describing. Create a stacked canvas with a vertical scrollbar, and it will behave even better.

  • In the viewer going to vertical scrolling bar I get a jump to original position...

    Scenario:
    In the viewer I'm working with the mouse vertical scrolling for searching some scenes, then I go to vertical the scrolling bar of the window to scroll in bigger steps... well, the viewer jumps to the previous position.. so I have to start my searching again.... and every time I go the vertical scrolling bar I get this jump to the original position... Very annoying....

    Do a malware check with some malware scanning programs.<br />
    You need to scan with all programs because each program detects different malware.<br />
    Make sure that you update each program to get the latest version of their databases before doing a scan.<br />
    <br />
    * http://www.malwarebytes.org/mbam.php - Malwarebytes' Anti-Malware
    * http://www.superantispyware.com/ - SuperAntispyware
    * http://www.microsoft.com/windows/products/winfamily/defender/default.mspx - Windows Defender: Home Page
    * http://www.safer-networking.org/en/index.html - Spybot Search & Destroy
    * http://www.lavasoft.com/products/ad_aware_free.php - Ad-Aware Free
    See also:
    * "Spyware on Windows": http://kb.mozillazine.org/Popups_not_blocked

  • Safari crashes and scroll bar disappears after viewing PDF

    Can someone help me with my Safari/PDF problem? When I click to download a PDF file the file opens in a new Safari window. After viewing it, when I close that window and return to the original window, the scroll bar is missing. I then close Safari and get the following crash report:
    Date/Time: 2009-03-06 12:00:07.243 -0800
    OS Version: 10.4.11 (Build 8S165)
    Report Version: 4
    Command: Safari
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Parent: WindowServer [66]
    Version: 3.2.1 (4525.27.1)
    Build Version: 1
    Project Name: WebBrowser
    Source Version: 45252701
    PID: 253
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNINVALIDADDRESS (0x0001) at 0x0c280293
    Thread 0 Crashed:
    0 com.adobe.acrobat.pdfviewer 0x07efcfec dyldstub_pthread_keycreate + 132997704
    1 com.adobe.acrobat.pdfviewer 0x07ef7710 dyldstub_pthread_keycreate + 132974956
    2 com.adobe.acrobat.pdfviewer 0x07f01e60 dyldstub_pthread_keycreate + 133017788
    3 com.adobe.acrobat.pdfviewer 0x07f0218c NP_Shutdown + 20
    4 com.apple.WebKit 0x0043a520 -[WebNetscapePluginPackage(Internal) _unloadWithShutdown:] + 96
    5 com.apple.WebKit 0x0043a4a8 -[WebNetscapePluginPackage wasRemovedFromPluginDatabase:] + 104
    6 com.apple.WebKit 0x0043a2a0 -[WebPluginDatabase(Internal) _removePlugin:] + 256
    7 com.apple.WebKit 0x0043a160 -[WebPluginDatabase close] + 80
    8 com.apple.Safari 0x0003ad80 0x1000 + 236928
    9 com.apple.Safari 0x0003a824 0x1000 + 235556
    10 com.apple.Safari 0x0003a6c0 0x1000 + 235200
    11 com.apple.Safari 0x0003a5dc 0x1000 + 234972
    12 com.apple.Safari 0x000cb148 0x1000 + 827720
    13 com.apple.Foundation 0x90b04e1c nsnotecallback + 180
    14 com.apple.CoreFoundation 0x9f4eeec0 __CFXNotificationPost + 368
    15 com.apple.CoreFoundation 0x9f4e6f20 _CFXNotificationPostNotification + 684
    16 com.apple.Foundation 0x90aef224 -[NSNotificationCenter postNotificationName:object:userInfo:] + 92
    17 com.apple.AppKit 0x925b10e4 -[NSWindow _close] + 100
    18 com.apple.AppKit 0x925b1048 -[NSWindow close] + 36
    19 com.apple.Safari 0x00039f0c 0x1000 + 233228
    20 com.apple.Safari 0x00039e78 0x1000 + 233080
    21 com.apple.Foundation 0x90b0c92c -[NSArray makeObjectsPerformSelector:withObject:] + 264
    22 com.apple.AppKit 0x925b4054 -[NSApplication _deallocHardCore:] + 204
    23 com.apple.AppKit 0x925b2c1c -[NSApplication terminate:] + 520
    24 com.apple.AppKit 0x925b08b4 -[NSApplication sendAction:to:from:] + 108
    25 com.apple.Safari 0x0002c1e4 0x1000 + 176612
    26 com.apple.AppKit 0x9260b094 -[NSMenu performActionForItemAtIndex:] + 392
    27 com.apple.AppKit 0x9260ae18 -[NSCarbonMenuImpl performActionWithHighlightingForItemAtIndex:] + 104
    28 com.apple.AppKit 0x92512150 _NSHandleCarbonMenuEvent + 372
    29 com.apple.AppKit 0x9250fab4 _DPSNextEvent + 1280
    30 com.apple.AppKit 0x9250f3f8 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 116
    31 com.apple.Safari 0x00007f20 0x1000 + 28448
    32 com.apple.AppKit 0x9250b93c -[NSApplication run] + 472
    33 com.apple.AppKit 0x925fc458 NSApplicationMain + 452
    34 com.apple.Safari 0x000b779c 0x1000 + 747420
    35 com.apple.Safari 0x000b74a0 0x1000 + 746656
    Thread 1:
    0 libSystem.B.dylib 0x9002bfc8 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90030aac pthreadcondwait + 480
    2 com.apple.WebCore 0x0104dee0 WebCore::IconDatabase::syncThreadMainLoop() + 320
    3 com.apple.WebCore 0x0100a6a8 WebCore::IconDatabase::iconDatabaseSyncThread() + 424
    4 libSystem.B.dylib 0x9002b908 pthreadbody + 96
    Thread 2:
    0 libSystem.B.dylib 0x9000af48 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000ae9c mach_msg + 60
    2 com.apple.CoreFoundation 0x9f4c79ac __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x9f4c72b0 CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x90b2db7c +[NSURLCache _diskCacheSyncLoop:] + 152
    5 com.apple.Foundation 0x90b054d8 forkThreadForFunction + 108
    6 libSystem.B.dylib 0x9002b908 pthreadbody + 96
    Thread 3:
    0 libSystem.B.dylib 0x9000af48 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000ae9c mach_msg + 60
    2 com.apple.CoreFoundation 0x9f4c79ac __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x9f4c72b0 CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x90b2ca3c +[NSURLConnection(NSURLConnectionInternal) _resourceLoadLoop:] + 264
    5 com.apple.Foundation 0x90b054d8 forkThreadForFunction + 108
    6 libSystem.B.dylib 0x9002b908 pthreadbody + 96
    Thread 4:
    0 libSystem.B.dylib 0x9001f48c select + 12
    1 com.apple.CoreFoundation 0x9f4da240 __CFSocketManager + 472
    2 libSystem.B.dylib 0x9002b908 pthreadbody + 96
    Thread 5:
    0 libSystem.B.dylib 0x9000af48 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000ae9c mach_msg + 60
    2 ...ple.CoreServices.CarbonCore 0x90419d74 SwitchContexts + 96
    3 ...ple.CoreServices.CarbonCore 0x9040f9dc YieldToThread + 372
    4 ...ple.CoreServices.CarbonCore 0x90419cbc SetThreadState + 192
    5 ...ple.CoreServices.CarbonCore 0x90419bd8 SetThreadStateEndCritical + 144
    6 com.adobe.AcrobatPlugin.eBook 0x2bac4aec main + 5780
    7 com.adobe.AcrobatPlugin.eBook 0x2bac4a2c main + 5588
    8 com.adobe.AcrobatPlugin.eBook 0x2bac4994 main + 5436
    9 com.adobe.AcrobatPlugin.eBook 0x2bac4928 main + 5328
    10 com.adobe.AcrobatPlugin.eBook 0x2bac48ac main + 5204
    11 ...ple.CoreServices.CarbonCore 0x90419e18 InvokeThreadEntryUPP + 24
    12 ...ple.CoreServices.CarbonCore 0x90419a38 CooperativeThread + 220
    13 libSystem.B.dylib 0x9002b908 pthreadbody + 96
    Thread 6:
    0 libSystem.B.dylib 0x9002bfc8 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90001810 pthreadmutexlock + 472
    2 com.apple.Foundation 0x90aeadcc -[NSLock lock] + 28
    3 com.adobe.acrobat.pdfviewer 0x07ef94b0 dyldstub_pthread_keycreate + 132982540
    4 com.adobe.acrobat.pdfviewer 0x07efacf0 dyldstub_pthread_keycreate + 132988748
    5 com.apple.Foundation 0x90b054d8 forkThreadForFunction + 108
    6 libSystem.B.dylib 0x9002b908 pthreadbody + 96
    Thread 7:
    0 libSystem.B.dylib 0x9002bfc8 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90001810 pthreadmutexlock + 472
    2 com.apple.Foundation 0x90aeadcc -[NSLock lock] + 28
    3 com.adobe.acrobat.pdfviewer 0x07ef94b0 dyldstub_pthread_keycreate + 132982540
    4 com.adobe.acrobat.pdfviewer 0x07efacf0 dyldstub_pthread_keycreate + 132988748
    5 com.apple.Foundation 0x90b054d8 forkThreadForFunction + 108
    6 libSystem.B.dylib 0x9002b908 pthreadbody + 96
    Thread 8:
    0 libSystem.B.dylib 0x9002bfc8 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90001810 pthreadmutexlock + 472
    2 com.apple.Foundation 0x90aeadcc -[NSLock lock] + 28
    3 com.adobe.acrobat.pdfviewer 0x07ef94b0 dyldstub_pthread_keycreate + 132982540
    4 com.adobe.acrobat.pdfviewer 0x07efacf0 dyldstub_pthread_keycreate + 132988748
    5 com.apple.Foundation 0x90b054d8 forkThreadForFunction + 108
    6 libSystem.B.dylib 0x9002b908 pthreadbody + 96
    Thread 9:
    0 libSystem.B.dylib 0x9002bfc8 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90001810 pthreadmutexlock + 472
    2 com.apple.Foundation 0x90aeadcc -[NSLock lock] + 28
    3 com.adobe.acrobat.pdfviewer 0x07ef94b0 dyldstub_pthread_keycreate + 132982540
    4 com.adobe.acrobat.pdfviewer 0x07efacf0 dyldstub_pthread_keycreate + 132988748
    5 com.apple.Foundation 0x90b054d8 forkThreadForFunction + 108
    6 libSystem.B.dylib 0x9002b908 pthreadbody + 96
    Thread 10:
    0 libSystem.B.dylib 0x9002bfc8 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90001810 pthreadmutexlock + 472
    2 com.apple.Foundation 0x90aeadcc -[NSLock lock] + 28
    3 com.adobe.acrobat.pdfviewer 0x07ef94b0 dyldstub_pthread_keycreate + 132982540
    4 com.adobe.acrobat.pdfviewer 0x07efacf0 dyldstub_pthread_keycreate + 132988748
    5 com.apple.Foundation 0x90b054d8 forkThreadForFunction + 108
    6 libSystem.B.dylib 0x9002b908 pthreadbody + 96
    Thread 11:
    0 libSystem.B.dylib 0x9000af48 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000ae9c mach_msg + 60
    2 com.apple.CoreFoundation 0x9f4c79ac __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x9f4c72b0 CFRunLoopRunSpecific + 268
    4 com.apple.audio.CoreAudio 0x91458524 HALRunLoop::OwnThread(void*) + 264
    5 com.apple.audio.CoreAudio 0x914582c4 CAPThread::Entry(CAPThread*) + 96
    6 libSystem.B.dylib 0x9002b908 pthreadbody + 96
    Thread 0 crashed with PPC Thread State 64:
    srr0: 0x0000000007efcfec srr1: 0x000000000200f030 vrsave: 0x00000000fff00000
    cr: 0x44044242 xer: 0x0000000020000007 lr: 0x0000000007ef7710 ctr: 0x000000009000af40
    r0: 0x0000000007ef7710 r1: 0x00000000bfffd410 r2: 0x0000000007f276c8 r3: 0x0000000001bdd6e0
    r4: 0x0000000000000003 r5: 0x0000000000000030 r6: 0x000000000000002c r7: 0x0000000000000e03
    r8: 0x0000000000000000 r9: 0x0000000000000000 r10: 0x0000000090072e18 r11: 0x00000000a0006a28
    r12: 0x000000009000af40 r13: 0x0000000000000000 r14: 0x0000000000000000 r15: 0x0000000000000000
    r16: 0x0000000000000000 r17: 0x0000000000000000 r18: 0x0000000005776000 r19: 0x0000000001bbf0c0
    r20: 0x00000000a250d304 r21: 0x00000000004da1a0 r22: 0x00000000004da1a0 r23: 0x00000000004ca1a0
    r24: 0x00000000004da1a0 r25: 0x00000000004da1a0 r26: 0x00000000004da1a0 r27: 0x0000000001b11b10
    r28: 0x0000000001bdd6e0 r29: 0x000000000c28024b r30: 0x0000000000000001 r31: 0x0000000000000000
    Binary Images Description:
    0x1000 - 0x1dffff com.apple.Safari 3.2.1 (4525.27.1) /Applications/Safari.app/Contents/MacOS/Safari
    0x405000 - 0x4c3fff com.apple.WebKit 4525.27 (4525.27.1) /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x551000 - 0x63afff com.apple.JavaScriptCore 4525.26 (4525.26.2) /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x690000 - 0x77efff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x1008000 - 0x16dbfff com.apple.WebCore 4525.26 (4525.26.6) /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x1f20000 - 0x1f21fff com.apple.aoa.halplugin 2.5.6 (2.5.6b5) /System/Library/Extensions/IOAudioFamily.kext/Contents/PlugIns/AOAHALPlugin.bun dle/Contents/MacOS/AOAHALPlugin
    0x1f9f000 - 0x1fadfff AdobePersonalization /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Frameworks/AdobePersonalization.framework/AdobePerson alization
    0x5da8000 - 0x5daafff com.apple.textencoding.unicode 2.0 /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x64a2000 - 0x68c5fff com.macromedia.Flash Player.plugin 9.0.151 (1.0.4f60) /Library/Internet Plug-Ins/Flash Player.plugin/Contents/MacOS/Flash Player
    0x7a0c000 - 0x7a45fff com.apple.audio.SoundManager.Components 3.9.1 /System/Library/Components/SoundManagerComponents.component/Contents/MacOS/Soun dManagerComponents
    0x7ef0000 - 0x7f1bfff com.adobe.acrobat.pdfviewer 7.0.9 /Library/Internet Plug-Ins/AdobePDFViewer.plugin/Contents/MacOS/AdobePDFViewer
    0xa37c000 - 0xa396fff com.adobe.asneu.framework asn version 1.6.0f09 (1.0) /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Frameworks/asn.framework/asn
    0xa3f1000 - 0xa42afff com.adobe.selfhealer AdobeSelfHealing version 2.0.5 (2.0.5) /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Frameworks/AdobeSelfHealing.framework/AdobeSelfHealin g
    0xa452000 - 0xa4dafff Onix /Applications/Safari.app/Contents/Frameworks/Onix.Framework/Onix
    0x13557000 - 0x1356efff com.adobe.AcrobatPlugin.DVA 7.0 (7.0.0) /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Plug-ins/DVA.acroplugin/DVA
    0x18017000 - 0x1803bfff com.adobe.AcrobatPlugin.ImageViewer 7.0.0 /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Plug-ins/ImageViewer.acroplugin/ImageViewer
    0x1807e000 - 0x18114fff com.adobe.AcrobatPlugin.JDFProdDef 7.0.5 /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Plug-ins/JDFProdDef.acroplugin/JDFProdDef
    0x181dc000 - 0x1822ffff com.adobe.Preflight Preflight version 7.0.7 (109) (7.0.7 (109)) /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Plug-ins/Preflight.acroplugin/Preflight
    0x182cb000 - 0x1835efff AdobeJP2K /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Frameworks/AdobeJP2K.framework/Versions/A/AdobeJP2K
    0x183ce000 - 0x1847afff AdobePDFPort_HFT /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Frameworks/AdobePDFPortHFT.framework/Versions/A/AdobePDFPortHFT
    0x185d6000 - 0x185fafff AdobeAXE8SharedExpat /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/ AdobeAXE8SharedExpat
    0x18631000 - 0x18656fff AdobeAXE16SharedExpat /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Frameworks/AdobeAXE16SharedExpat.framework/Versions/A /AdobeAXE16SharedExpat
    0x1868d000 - 0x186e2fff AdobeXMP /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
    0x18745000 - 0x187f2fff AdobeAXSLE /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Frameworks/AdobeAXSLE.framework/Versions/A/AdobeAXSLE
    0x188eb000 - 0x18928fff MSL /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Frameworks/MSL.framework/Versions/A/MSL
    0x25000000 - 0x25bb5fff com.adobe.Acrobat.framework Acrobat version 7.0.8 (7.1.0) /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Frameworks/Acrobat.framework/Acrobat
    0x271bd000 - 0x27265fff AdobeACE /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
    0x27318000 - 0x276d7fff AdobeAGM /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
    0x27b6b000 - 0x27ba6fff AdobeARE /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Frameworks/AdobeARE.framework/Versions/A/AdobeARE
    0x27bf0000 - 0x27c17fff AdobeBIB /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
    0x27c55000 - 0x27c7efff AdobeBIBUtils /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Frameworks/AdobeBibUtils.framework/Versions/A/AdobeBI BUtils
    0x27cc6000 - 0x27eebfff AdobeCoolType /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCo olType
    0x2a11a000 - 0x2a157fff com.adobe.AcrobatPlugin.Accessibility 7.0.7 /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Plug-ins/Accessibility.acroplugin/Accessibility
    0x2a1a3000 - 0x2a7fcfff com.adobe.AcrobatPlugin.AcroForm 7.1.0 /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Plug-ins/AcroForm.acroplugin/AcroForm
    0x2b1df000 - 0x2b20efff com.adobe.AcrobatPlugin.Catalog 7.0.0 /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Plug-ins/Catalog.acroplugin/Catalog
    0x2b252000 - 0x2b2bffff com.adobe.AcrobatPlugin.Checkers 7.0.5 /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Plug-ins/Checkers.acroplugin/Checkers
    0x2b3d0000 - 0x2b59afff com.adobe.AcrobatPlugin.Comments 7.1.0 /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Plug-ins/Comments.acroplugin/Comments
    0x2b816000 - 0x2b934fff com.adobe.AcrobatPlugin.DigSig 7.1.0 /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Plug-ins/DigSig.acroplugin/DigSig
    0x2ba67000 - 0x2ba73fff com.adobe.AcrobatPlugin.Distiller 7.0.5 (7.0.7) /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Plug-ins/DistillerPI.acroplugin/DistillerPI
    0x2bac1000 - 0x2bbb4fff com.adobe.AcrobatPlugin.eBook 7.0.7 /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Plug-ins/eBook.acroplugin/eBook
    0x2bd8f000 - 0x2bdacfff com.adobe.AcrobatPlugin.EFS 7.0.5 /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Plug-ins/EFS.acroplugin/EFS
    0x2bdde000 - 0x2bef9fff com.adobe.AcrobatPlugin.EScript 7.1.0 /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Plug-ins/EScript.acroplugin/EScript
    0x2c041000 - 0x2c064fff com.adobe.AcrobatPlugin.EWH 7.0.7 (7.0.8) /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Plug-ins/EWH.acroplugin/EWH
    0x2c078000 - 0x2c079fff com.adobe.AcrobatPlugin.FlattenerView 7.0.0 /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Plug-ins/FlattenerView.acroplugin/FlattenerView
    0x2c07f000 - 0x2c085fff com.adobe.AcrobatPlugin.HLS 7.0.0 /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Plug-ins/HLS.acroplugin/HLS
    0x2c08f000 - 0x2c308fff com.adobe.AcrobatPlugin.HTML2PDF 7.0.5 /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Plug-ins/HTML2PDF.acroplugin/HTML2PDF
    0x2c7b7000 - 0x2c886fff com.adobe.AcrobatPlugin.ImageConversion 7.1.0 /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Plug-ins/ImageConversion.acroplugin/ImageConversion
    0x2c965000 - 0x2c98dfff com.adobe.mdkitadapter MDKitAdapter version 7.0.0 (7.0.5) /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Plug-ins/ImageConversion.acroplugin/Frameworks/MDKitA dapter.framework/MDKitAdapter
    0x2d07d000 - 0x2d080fff com.adobe.AcrobatPlugin.LegalPDF 7.0.5 /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Plug-ins/LegalPDF.acroplugin/LegalPDF
    0x2d088000 - 0x2d2b0fff com.adobe.AcrobatPlugin.MakeAccessible 7.0.5 /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Plug-ins/MakeAccessible.acroplugin/MakeAccessible
    0x2d711000 - 0x2d85efff com.adobe.AcrobatPlugin.Multimedia 7.0.5 /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Plug-ins/Multimedia.acroplugin/Multimedia
    0x2dae1000 - 0x2dba3fff com.adobe.AcrobatPlugin.PaperCapture 7.0.5 /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Plug-ins/PaperCapture.acroplugin/PaperCapture
    0x2dc75000 - 0x2dceafff com.adobe.AcrobatPlugin.PDDom 7.0.7 /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Plug-ins/PDDom.acroplugin/PDDom
    0x2dd9a000 - 0x2de09fff com.adobe.AcrobatPlugin.Template 7.0.0 /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Plug-ins/PictureTasks.acroplugin/PictureTasks
    0x2debe000 - 0x2e262fff com.adobe.AcrobatPlugin.PPKLite 7.1.0 /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Plug-ins/PPKLite.acroplugin/PPKLite
    0x2e841000 - 0x2e880fff com.adobe.AcrobatPlugin.Reflow 7.0.5 /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Plug-ins/Reflow.acroplugin/Reflow
    0x2e8fc000 - 0x2e93bfff com.adobe.AcrobatPlugin.SaveAsRTF 7.0.5 /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Plug-ins/SaveAsRTF.acroplugin/SaveAsRTF
    0x2e997000 - 0x2e9e4fff com.adobe.AcrobatPlugin.SaveAsXML 7.0.0 /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Plug-ins/SaveAsXML.acroplugin/SaveAsXML
    0x2ea95000 - 0x2eacffff com.adobe.AcrobatPlugin.Search 7.0.0 /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Plug-ins/Search.acroplugin/Search
    0x2eb1e000 - 0x2eb30fff com.adobe.AcrobatPlugin.SendMail 7.1.0 /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Plug-ins/SendMail.acroplugin/SendMail
    0x2eb50000 - 0x2ec09fff com.adobe.AcrobatPlugin.SOAP 7.0.5 /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Plug-ins/SOAP.acroplugin/SOAP
    0x2ed14000 - 0x2ed60fff com.adobe.AcrobatPlugin.Spelling 7.0.5 /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Plug-ins/Spelling.acroplugin/Spelling
    0x2eed3000 - 0x2eeedfff com.adobe.AcrobatPlugin.TablePicker 7.0.0 /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Plug-ins/TablePicker.acroplugin/TablePicker
    0x2ef1a000 - 0x2f0f6fff com.adobe.AcrobatPlugin.TouchUp 7.0.5 /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Plug-ins/TouchUp.acroplugin/TouchUp
    0x2f368000 - 0x2f3b1fff com.adobe.AcrobatPlugin.Updater 7.1.0 /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Plug-ins/Updater.acroplugin/Updater
    0x2f4c0000 - 0x2f4e0fff com.adobe.AcrobatPlugin.WebLink 7.0.7 /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Plug-ins/WebLink.acroplugin/WebLink
    0x2f50c000 - 0x2f5eefff com.adobe.AcrobatPlugin.Web2PDF 7.0.0 /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Plug-ins/Web2PDF.acroplugin/Web2PDF
    0x8fe00000 - 0x8fe52fff dyld 46.16 /usr/lib/dyld
    0x90000000 - 0x901bcfff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x90214000 - 0x90219fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x9021b000 - 0x90268fff com.apple.CoreText 1.0.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x903b2000 - 0x90689fff com.apple.CoreServices.CarbonCore 681.19 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x908de000 - 0x908defff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x909f9000 - 0x90a81fff com.apple.DesktopServices 1.3.7 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x90adf000 - 0x90d12fff com.apple.Foundation 6.4.12 (567.42) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x90ec6000 - 0x90f46fff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90fe7000 - 0x90ffffff com.apple.WebServices 1.1.2 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x910d6000 - 0x91100fff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x91111000 - 0x9111ffff libz.1.dylib /usr/lib/libz.1.dylib
    0x91122000 - 0x912ddfff com.apple.security 4.6 (29770) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x913dc000 - 0x913e5fff com.apple.DiskArbitration 2.1.2 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x913ec000 - 0x913f4fff libbsm.dylib /usr/lib/libbsm.dylib
    0x913f8000 - 0x91420fff com.apple.SystemConfiguration 1.8.3 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91433000 - 0x9143efff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x91443000 - 0x914befff com.apple.audio.CoreAudio 3.0.5 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x914fb000 - 0x914fbfff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x915c1000 - 0x915d0fff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x915d9000 - 0x915e6fff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x91630000 - 0x91649fff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x91675000 - 0x91706fff com.apple.print.framework.PrintCore 4.6 (177.13) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x91841000 - 0x9189ffff com.apple.HIServices 1.5.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x918ce000 - 0x918f2fff com.apple.LangAnalysis 1.6.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91906000 - 0x9192bfff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x9199c000 - 0x919b0fff com.apple.speech.synthesis.framework 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x91b4a000 - 0x91b68fff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91c74000 - 0x91c78fff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91c7a000 - 0x91ce4fff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91d08000 - 0x91d0bfff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91e10000 - 0x91e52fff com.apple.LaunchServices 183 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x91f4e000 - 0x91f6dfff com.apple.Accelerate.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91fd9000 - 0x92047fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x92052000 - 0x920e7fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x92507000 - 0x92b3afff com.apple.AppKit 6.4.10 (824.48) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x92f29000 - 0x92f47fff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92f52000 - 0x92facfff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92fca000 - 0x92fcafff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92fcc000 - 0x92fe0fff com.apple.ImageCapture 3.0 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92ff8000 - 0x93008fff com.apple.speech.recognition.framework 3.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x93014000 - 0x93029fff com.apple.securityhi 2.0 (203) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x9303b000 - 0x930c2fff com.apple.ink.framework 101.2 (69) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x930d6000 - 0x930e1fff com.apple.help 1.0.3 (32) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x93133000 - 0x93143fff com.apple.print.framework.Print 5.0 (190.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9314f000 - 0x931b5fff com.apple.htmlrendering 1.1.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x931e6000 - 0x93235fff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x93263000 - 0x93280fff com.apple.audio.SoundManager 3.9 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x93292000 - 0x9329ffff com.apple.CommonPanels 1.2.2 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x933dc000 - 0x9350cfff com.apple.AddressBook.framework 4.0.6 (490) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x93706000 - 0x93712fff com.apple.opengl 1.4.7 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x93717000 - 0x93737fff com.apple.DirectoryService.Framework 3.1 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x9374d000 - 0x9374efff com.apple.ServerControl 10.3.0 /System/Library/PrivateFrameworks/ServerControl.framework/Versions/A/ServerCont rol
    0x9378b000 - 0x9378bfff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93a4e000 - 0x93a6bfff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x93a74000 - 0x93af5fff com.apple.SearchKit 1.0.8 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x9414d000 - 0x941bffff com.apple.CoreData 91 (92.1) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x941f8000 - 0x942bdfff com.apple.audio.toolbox.AudioToolbox 1.4.7 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x94310000 - 0x94310fff com.apple.audio.units.AudioUnit 1.4 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x94312000 - 0x944d2fff com.apple.QuartzCore 1.4.12 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x9451c000 - 0x94559fff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x94561000 - 0x945b1fff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x945e3000 - 0x94604fff com.apple.framework.Admin 1.5.7 /System/Library/PrivateFrameworks/Admin.framework/Admin
    0x94619000 - 0x94619fff com.apple.AFPDefines 3.1.6 /System/Library/PrivateFrameworks/AFPDefines.framework/Versions/A/AFPDefines
    0x9466c000 - 0x946a4fff com.apple.vmutils 4.0.0 (85) /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x946e9000 - 0x94705fff com.apple.securityfoundation 2.2 (27710) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x94719000 - 0x9475dfff com.apple.securityinterface 2.2 (27692) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x94c21000 - 0x94c92fff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x94fcb000 - 0x94fdafff com.apple.DSObjCWrappers.Framework 1.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x94fe2000 - 0x9500ffff com.apple.LDAPFramework 1.4.1 (69.0.1) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x95016000 - 0x95026fff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x9572e000 - 0x95830fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x9588b000 - 0x95952fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x959a1000 - 0x959d0fff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x96326000 - 0x963f8fff com.apple.ColorSync 4.4.11 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x964ac000 - 0x964e4fff com.apple.AE 312.2 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x96500000 - 0x96542fff com.apple.CFNetwork 129.24 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x9675a000 - 0x9680bfff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x96cdb000 - 0x96cf1fff libJapaneseConverter.dylib /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0x96cf3000 - 0x96d13fff libKoreanConverter.dylib /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
    0x96d21000 - 0x96d2ffff libSimplifiedChineseConverter.dylib /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x96d37000 - 0x96d4afff libTraditionalChineseConverter.dylib /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0x97b40000 - 0x97b86fff com.apple.ImageIO.framework 1.5.8 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x97ba8000 - 0x97c5ffff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x97e75000 - 0x97e8ffff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x97f0b000 - 0x97f49fff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x9aec8000 - 0x9aee6fff com.apple.OpenTransport 2.0 /System/Library/PrivateFrameworks/OpenTransport.framework/OpenTransport
    0x9ba38000 - 0x9ba6efff com.apple.Syndication 1.0.7 (55) /System/Library/PrivateFrameworks/Syndication.framework/Versions/A/Syndication
    0x9ba8e000 - 0x9baa0fff com.apple.SyndicationUI 1.0.7 (55) /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
    0x9e3ee000 - 0x9e42dfff com.apple.QuickTimeFireWireDV.component 7.6 (1290) /System/Library/QuickTime/QuickTimeFirewireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x9e436000 - 0x9e443fff com.apple.agl 2.5.6 (AGL-2.5.6) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x9e45b000 - 0x9e78dfff com.apple.QuickTime 7.6.0 (1290) /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x9e875000 - 0x9e8a3fff com.apple.openscripting 1.2.7 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x9e8bd000 - 0x9e8d6fff com.apple.CoreVideo 1.4.2 /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x9e8e6000 - 0x9e9d4fff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x9e9d7000 - 0x9ed02fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x9ed32000 - 0x9f2bafff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x9f2ed000 - 0x9f3d2fff com.apple.vImage 2.4 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x9f3da000 - 0x9f3dafff com.apple.Accelerate 1.2.2 (Accelerate 1.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x9f3dc000 - 0x9f3f1fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x9f3f6000 - 0x9f47afff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x9f4a4000 - 0x9f57efff com.apple.CoreFoundation 6.4.11 (368.35) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x9f5c7000 - 0x9f67efff com.apple.QD 3.10.27 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x9f6bb000 - 0x9fa76fff com.apple.CoreGraphics 1.258.82 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x9fb03000 - 0x9fb15fff libauto.dylib /usr/lib/libauto.dylib
    0x9fb1c000 - 0x9fb8cfff com.apple.framework.IOKit 1.4 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x9fba2000 - 0x9feb0fff com.apple.HIToolbox 1.4.10 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    Model: PowerMac4,2, BootROM 4.3.4f2, 1 processors, PowerPC G4 (2.1), 800 MHz, 512 MB
    Graphics: NVIDIA GeForce2 MX, GeForce2 MX, AGP, 32 MB
    Memory Module: DIMM0/J12, 256 MB, SDRAM, PC133-333
    Memory Module: DIMM1/J13, 256 MB, SDRAM, PC133-333
    Modem: Dash2, UCJ, V.92, 1.0F, APPLE VERSION 2.6.6
    Network Service: Built-in Ethernet, Ethernet, en0
    Parallel ATA Device: Maxtor 4D060H3, 55.9 GB
    Parallel ATA Device: PIONEER DVD-RW DVR-104
    USB Device: Hub in Apple Pro Keyboard, Mitsumi Electric, Up to 12 Mb/sec, 500 mA
    USB Device: iMic USB audio system, Griffin Technology, Inc, Up to 12 Mb/sec, 100 mA
    USB Device: Apple Optical USB Mouse, Mitsumi Electric, Up to 1.5 Mb/sec, 100 mA
    USB Device: Apple Pro Keyboard, Mitsumi Electric, Up to 12 Mb/sec, 250 mA
    Thanks for your time and assistance.

    As hpr3 says, if you just want to view the pdf in Safari it can display them natively.
    If you wanted to continue using Adobe, then Adobe Acrobat 7 isn't compatible with Safari 3+. Download Adobe Reader 9 and use that instead.

Maybe you are looking for

  • Unable to take recovery to end of the log

    I got the below error. When i am trying to take recovery of a database to end of the log.(i.e, without taking the tail log backup). I am posting the details of that error also here. Microsoft .Net framework error Unhandled exception has occurred in a

  • Bug - Subfolder naming issue in Photoshop Elements 10 Organiser

    Upgraded to the latest version of Photoshop Elements and very dissapointed that Adobe have introduced a bug. For European users, Photoshop Organiser 10 creates sub folders in the format yyyy dd mm. Should use the format yyyy mm dd as with previous ve

  • ORA-279 signalled during recovery of standby database

    Hi All, I am preparing standby database after taking hot backup and copying those datafiles to standby, taken controlfile standby controlfile backup from primary mounted the standby database using standby controlfile using startup nomount pfile='/u01

  • Document events for text replacement

    Hello! This is a question about Document events in JTextComponent. Two document events in a row are fired when the user performs a text replacement (some text is selected and the user inserts or pastes new text): first, DocumentListener.removeUpdate

  • CS5 problems - can anyone help?

    Hey there gurus/helpful individuals I work for a small design agency and we recently updated all of our machines to CS5. Whilst we have enjoyed the new features in many of the applications (mainly PS, AI & ID) we have also been frustrated by the spee