Images and scroll bar in Itunes bright green

Does anyone know how to fix this issue and have the display look normal. A screenshot is below.
Some details: the monitor is set to display 32bit color and the screen reslution isn't the problem.
-Thanks

I recently got iTunes 11, and the scroll bar issue is not in Preferences > General in this version.
I really hate this new itunes. The main issues I'd like to see are the scroll bar to be permanently visible. The second issue is when I have large playlists and I switch between them, the old itunes would always know which place in the playlist was highlighted. This new version always brings me back to the top of the playlist. And this is true also with the main library. When I am going through 4,000+ songs, it makes no sense for there to be no convenient way to save the place in the library I am working on while still allowing me to navigate other parts of the sidebar.
Even though this seems fairly elementary to me, I haven't really had much luck finding other people who are having these issues, and your answer was the closest one I'd found.

Similar Messages

  • JTable can't display column names and scroll bar in JDialog !!

    Dear All ,
    My flow of program is JFrame call JDialog.
    dialogCopy = new dialogCopyBay(frame, "Bay Name Define", true, Integer.parseInt(txtSourceBay.getText()) ,proVsl ,300 ,300);
    dialogCopy.setBounds(0, 0, 300, 300);
    dialogCopy.setVisible(true);        Then,I set the datasource of JTable is from a TableModel.
    It's wild that JTable can diplay the data without column names and scroll bar.
    I have no idea what's going wrong.Cause I follow the Sun Tutorial to code.
    Here with the code of my JDialog.
    Thanks & Best Regards
    package com.whl.panel;
    import com.whl.vslEditor.vslDefine;
    import java.awt.Container;
    import java.awt.Dimension;
    import java.awt.Frame;
    import javax.swing.JDialog;
    import javax.swing.JScrollPane;
    import javax.swing.JTable;
    import javax.swing.table.AbstractTableModel;
    public class dialogCopyBay extends JDialog {
        vslDefine glbVslDefine;
        int lvCnt = -1;
        JTable tableCopyBay;
        int bgnX = 0;
        int bgnY = 30;
        int tableWidth = 100;
        int tableHeight = 100;
        public dialogCopyBay(Frame frame, String title, boolean modal, int sourceBay,
                vslDefine pVslDefine, int ttlWidth, int ttlHeight) {
            super(frame, title, true);
            Container contentPane = getContentPane();
            System.out.println("dialogCopyBay Constructor");
            glbVslDefine = null;
            glbVslDefine = pVslDefine;
            copyBayModel copyBay = new copyBayModel((glbVslDefine.getVslBayStructure().length - 1),sourceBay);
            tableCopyBay = new JTable(copyBay);
            tableCopyBay.setPreferredScrollableViewportSize(new Dimension(tableWidth, tableHeight));
            JScrollPane scrollPane = new JScrollPane(tableCopyBay);
            scrollPane.setViewportView(tableCopyBay) ;
            tableCopyBay.setFillsViewportHeight(true);
            tableCopyBay.setBounds(bgnX, bgnY, tableWidth, tableHeight);
            tableCopyBay.setBounds(10, 10, 100, 200) ;
            contentPane.setLayout(null);
            contentPane.add(scrollPane);
            contentPane.add(tableCopyBay);
        class copyBayModel extends AbstractTableModel {
            String[] columnNames;
            Object[][] dataTarget;
            public copyBayModel(int rowNum ,int pSourceBay) {
                columnNames = new String[]{"Choose", "Bay Name"};
                dataTarget = new Object[rowNum][2];
                for (int i = 0; i <= glbVslDefine.getVslBayStructure().length - 1; i++) {
                    if (pSourceBay != glbVslDefine.getVslBayStructure().getBayName() &&
    glbVslDefine.getVslBayStructure()[i].getIsSuperStructure() == 'N') {
    lvCnt = lvCnt + 1;
    dataTarget[lvCnt][0] = false;
    dataTarget[lvCnt][1] = glbVslDefine.getVslBayStructure()[i].getBayName();
    System.out.println("lvCnt=" + lvCnt + ",BayName=" + glbVslDefine.getVslBayStructure()[i].getBayName());
    public int getRowCount() {
    return dataTarget.length;
    public int getColumnCount() {
    return columnNames.length;
    public String getColumnName(int col) {
    return columnNames[col];
    public Object getValueAt(int rowIndex, int columnIndex) {
    return dataTarget[rowIndex][columnIndex];
    public Class getColumnClass(int c) {
    return getValueAt(0, c).getClass();
    public boolean isCellEditable(int row, int col) {
    if (col == 1) {
    // Bay Name Not Allow To modify
    return false;
    } else {
    return true;
    public void setValueAt(Object value, int row, int col) {
    dataTarget[row][col] = value;
    fireTableCellUpdated(row, col);

    Dear DB ,
    I am not sure what you mean.
    Currently,I don't undestand which code is error.
    And I also saw some example is add JTable and JScrollPane in JDialog.
    Like Below examle in Sun tutorial
    public class ListDialog extends JDialog implements MouseListener, MouseMotionListener{
        private static ListDialog dialog;
        private static String value = "";
        private JList list;
        public static void initialize(Component comp,
                String[] possibleValues,
                String title,
                String labelText) {
            Frame frame = JOptionPane.getFrameForComponent(comp);
            dialog = new ListDialog(frame, possibleValues,
                    title, labelText);
         * Show the initialized dialog. The first argument should
         * be null if you want the dialog to come up in the center
         * of the screen. Otherwise, the argument should be the
         * component on top of which the dialog should appear.
        public static String showDialog(Component comp, String initialValue) {
            if (dialog != null) {
                dialog.setValue(initialValue);
                dialog.setLocationRelativeTo(comp);
                dialog.setVisible(true);
            } else {
                System.err.println("ListDialog requires you to call initialize " + "before calling showDialog.");
            return value;
        private void setValue(String newValue) {
            value = newValue;
            list.setSelectedValue(value, true);
        private ListDialog(Frame frame, Object[] data, String title,
                String labelText) {
            super(frame, title, true);
    //buttons
            JButton cancelButton = new JButton("Cancel");
            final JButton setButton = new JButton("Set");
            cancelButton.addActionListener(new ActionListener() {
                public void actionPerformed(ActionEvent e) {
                    ListDialog.dialog.setVisible(false);
            setButton.addActionListener(new ActionListener() {
                public void actionPerformed(ActionEvent e) {
                    ListDialog.value = (String) (list.getSelectedValue());
                    ListDialog.dialog.setVisible(false);
            getRootPane().setDefaultButton(setButton);
    //main part of the dialog
            list = new JList(data);
            list.setSelectionMode(ListSelectionModel.SINGLE_INTERVAL_SELECTION);
            list.addMouseListener(new MouseAdapter() {
                public void mouseClicked(MouseEvent e) {
                    if (e.getClickCount() == 2) {
                        setButton.doClick();
            JScrollPane listScroller = new JScrollPane(list);
            listScroller.setPreferredSize(new Dimension(250, 80));
    //XXX: Must do the following, too, or else the scroller thinks
    //XXX: it's taller than it is:
            listScroller.setMinimumSize(new Dimension(250, 80));
            listScroller.setAlignmentX(LEFT_ALIGNMENT);
    //Create a container so that we can add a title around
    //the scroll pane. Can't add a title directly to the
    //scroll pane because its background would be white.
    //Lay out the label and scroll pane from top to button.
            JPanel listPane = new JPanel();
            listPane.setLayout(new BoxLayout(listPane, BoxLayout.Y_AXIS));
            JLabel label = new JLabel(labelText);
            label.setLabelFor(list);
            listPane.add(label);
            listPane.add(Box.createRigidArea(new Dimension(0, 5)));
            listPane.add(listScroller);
            listPane.setBorder(BorderFactory.createEmptyBorder(10, 10, 10, 10));
    //Lay out the buttons from left to right.
            JPanel buttonPane = new JPanel();
            buttonPane.setLayout(new BoxLayout(buttonPane, BoxLayout.X_AXIS));
            buttonPane.setBorder(BorderFactory.createEmptyBorder(0, 10, 10, 10));
            buttonPane.add(Box.createHorizontalGlue());
            buttonPane.add(cancelButton);
            buttonPane.add(Box.createRigidArea(new Dimension(10, 0)));
            buttonPane.add(setButton);
    //Put everything together, using the content pane's BorderLayout.
            Container contentPane = getContentPane();
            contentPane.add(listPane, BorderLayout.CENTER);
            contentPane.add(buttonPane, BorderLayout.SOUTH);
            pack();
        public void mouseClicked(MouseEvent e) {
            System.out.println("Mouse Click");
        public void mousePressed(MouseEvent e) {
            throw new UnsupportedOperationException("Not supported yet.");
        public void mouseReleased(MouseEvent e) {
            throw new UnsupportedOperationException("Not supported yet.");
        public void mouseEntered(MouseEvent e) {
            throw new UnsupportedOperationException("Not supported yet.");
        public void mouseExited(MouseEvent e) {
            throw new UnsupportedOperationException("Not supported yet.");
        public void mouseDragged(MouseEvent e) {
            throw new UnsupportedOperationException("Not supported yet.");
        public void mouseMoved(MouseEvent e) {
            throw new UnsupportedOperationException("Not supported yet.");
         * This is here so that you can view ListDialog even if you
         * haven't written the code to include it in a program.
    }

  • Change Height of Web Resource to Get Rid Of Blank and Scroll Bar

    Hi, I am a junior CRM developer. I'm using CRM online.
    I wrote a HTML web resources. In Web Resource Properties, I set the Number of Rows as 20.
    But the problem is: If the form window are maximized, there will be blank under web resource; if the form windows become smaller, there will be a scroll bar on the side.
    I want get rid of blank and scroll bar, automatically change height according to the size of the window.
    I tried checkbox "Automatically expand to use available space", but it didn't work.
    I don't think add CSS to my HTML will work, because CSS in HTML will change the html height, not the container in CRM.
    Thank you in advance.

    You most likely have a malware infection. Run and update the following scanners. (Not all programs detect the same infection.)
    1. [http://www.safer-networking.org/]
    2. [http://www.malwarebytes.org/]
    3. [http://www.spywareterminator.com/]
    4. [http://www.microsoft.com/security/malwareremove/default.aspx]
    If those programs do not do the trick, try to post in the following forum:
    1. [http://www.bleepingcomputer.com[
    Other spyware removal forums can be found in a search.
    Does the issue occur in [[Safe Mode]]?

  • Firefox actualized the new version, but it looks only a black screen and no watch buttons and scroll bars, nothing

    The new version of Firefox dosen't work is only a black screen without buttons and scroll bars. I try re install and uninstall and erase files, but dosen't work.

    Sorry, please disable hardware acceleration as a temporary workaround. This is an incompatibility between Firefox 33 and some older graphics card/chipset drivers. More info: https://support.mozilla.org/questions/1025438

  • Scroll Bars in iTunes broken

    Hi guys
    ok, strange one this. The Scroll bars on the side of the window in itunes, for the playlists, the fields for selecting artists, genre and album have all disappeared. They've just been replaced with White. It still plays music and allows scrolling with the mouse ball, but can't scroll using the point and click method.
    Have restored iTunes from time machine, re-downloaded iTunes, and even copied my iTunes library back from my MacBook to my MacPro, as its working fine on my Macbook
    very strange.
    Can anyone help? I'm now stump!
    R

    Hidden scroll bars that only appear when you mouse over them are the default in Lion. However, you can easily change back to normal scroll bars if you prefer. Go to System Preferences > General and uncheck and check the button to always show scroll bars.

  • Image Gallery & Scroll Bar

    Just exploring flash as a beginner, still.
    I've come across this website:
    http://www.jeremiahshoaf.com/
    I'm a fan of the scrolling portfolio idea the designer has used in the centre of the website's front page.
    Any ideas how this is produced?
    My presumption would be a MovieClip with images various other MovieClips inside (holding images etc) and then a scrollbar controlling how far across the screen the images are shown with actionscript?
    Knowing me I'm wrong, but any ideas would help me out to explore and learn further.
    Thanks for your great advice, as always.
    .. Also, I wondered if this could be produced, and as well as the scrollbar, the ability to add scrolling with the keyboard, left and right keys? Again, only a presumption, but I was thinking this might be simple with actionscript? Simply a piece of code to tell the scrollbar to move to the next MovieClip, if my initial presumption was correct.
    The above is only a small side note for those who feel they can assist - but thanks again for any help you can provide!
    This forum has been a huge help to me, in learning Flash so far.
    Thanks a lot.

    Well first you need a really long MovieClip with some graphics inside on it. That should be simple enough to do. Then you need a scrollbar. Just a rectangle should do for now. On this MovieClip give it a MOUSE_DOWN event listener and on that event use the "startDrag" function to add dragging functionality. Add a MOUSE_UP event listener to the stage and when that happens call "stopDrag" on the scroll bar clip. Then you can have an ENTER_FRAME event that actually updates the scrolling. On this event, check the scrollbar's x position and do some math to figure out the percentage you have scrolled. It might look like this:
    var percent:Number = scrollbar.x / (stage.width - scrollbar.width);
    Then update the main image container by the percent:
    var minPosition:Number = -500;
    bigImage.x = percent * minPosition;
    Hopefully that should be enough info to get you started.

  • Scroll bar on itunes

    the bottom scroll bar on my itunes page, the one that lets you move side to side, is not there on the screen. i tried reinstalling itunes and it is still not there. how can i fix this? thanks.

    It's not your display resolution, it's something they changed a few days ago. Send feedback to apple:
    itunes menu > help > provide itunes feedback
    Here is a thread with more users having the problem and some workarounds.
    http://discussions.apple.com/message.jspa?messageID=11233683#11233683

  • Image display scroll bar

    Hi All,
    I am using two "Image displays" in my IMAQ vision system. One is for the original image and the other is for the image after it has been manipulated. I would like to connect the scroll bars from each display to move as one.  Anyone have any idea how to do this?
    Don

    Here is a present from Santa.  It is in LV 8.0.  Enjoy
    Matthew Fitzsimons
    Certified LabVIEW Architect
    LabVIEW 6.1 ... 2013, LVOOP, GOOP, TestStand, DAQ, and Vison
    Attachments:
    IMAQtrackImages.vi ‏62 KB

  • Firefox Doesn't Load Any Website and Scroll Bar Switches to the Left Side of the Screen??

    First let me say this is a work computer that I am using, so there is plenty of virus protection and firewall. I have always used firefox for all my casual internet browsing and work network needs. I recently updated to the latest version of firefox and that is when I started having problems. Almost any web page I go to wether it is my work intranet home page or a common site such as google mozilla will not finish loading the page. If I hit refresh or try to go to another site it gets wierd and the scroll bar switches to the left side of the screen and the page seems to be stuck loading. At this point almost nothing responds to any mouse clicks except for closing the firefox window. If I go to tools --> options it brings up a blank options window with only the "ok" and "cancel" buttons displayed. Help please, I don't like using IE, but right now that is my only option.
    == User Agent ==
    Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; InfoPath.1; Tablet PC 1.7; .NET CLR 1.0.3705; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)

    There are several reasons why the site may look wrong:
    * ''Bad item stored in the Browser Cache'': Follow the steps at [[How to clear the cache]].
    * ''Bad cookie from the broken site'': Clear cookies from the broken site by following the steps at [[Deleting cookies]].
    * Images are blocked/disabled: see [[Images or animations do not show]]
    * Plug-ins are outdated: check for outdated plugins on the [http://www.mozilla.com/en-US/plugincheck/ plugin check page].
    * Firewall software is blocking some resources on the page: see [[Firewalls]]
    * An extension may be causing the problem: see [[Troubleshooting extensions and themes]]
    For other steps to try, see [[Web sites look wrong]]

  • How do I show scroll bar in itunes list view

    How do I add the scroll bar to Library and other list views in iTunes?
    It is a pain having to use the scroll wheel when I want to quickly scroll to near the bottom of the list.
    Cheers

    How do I add the scroll bar to Library and other list views in iTunes?
    It is a pain having to use the scroll wheel when I want to quickly scroll to near the bottom of the list.
    Cheers

  • Missing a sideways scroll bar on itune so can't click to accept terms

    HELP
    I got an ipod nano for Christmas, downloaded itunes, plugged my ipod in and get as far as the terms and conditions page and the page won't scroll across so that I can click on accept, therefore I can't see what's on my ipod!! On every other page I've got a horizontal scroll bar but not this one.
    Also it's not charging my ipod when plugged in.
    Please help I've tried everything I can think of.
    Much appreciated

    Reset your screen settings to 1280 X 768.
    If you are using a desktop computer make sure you are using a rear port on your computer.

  • Scroll bar in iTunes?

    I have the latest version of itunes installed on my laptop and when I connect a device to sync the scroll bar doesn't seem to be there to allow me to move down the page on the Summary tab - can anyone help?

    I found this answer on http://www.thetechgame.com/Forums/t=4653309/problems-with-itunes-11-scroll-bar-f ix-here.html
    Well I and many other consumers have recently updated to iTunes 11 and found that our scroll bar disappears from view when iTunes is launched and need to manually re-size the window to show the scroll bar. Well after a few minutes of messing about I have encountered a fix what will show the scroll bar.
    Step 1) Close any open iTunes windows.
    Step 2) Find the iTunes.exe wherever you installed it to. (Mine is on my desktop).
    Click to View Content
    Step 3) Right-click iTunes and press properties.
    Step 4) Click on the "Shortcut" tab and change "Run" from normal window to minimized.
    Click to View Content
    Step 5) Open iTunes and use as normal.
    Your scroll bar should now be sorted out and be ready for use once again.

  • Scroll Bar on Itunes disappeared!

    On some pages in Itunes, the bottom scroll bar that lets you scroll sideways disappears. I've always worked around it, but I just got a new Ipod Touch and I need to scroll to the right to be able to "Agree" to the Software Licensing Terms before I can use it. I've tried resizing the window in every way and using the scroll wheel on my mouse, but I can't get over to the button.
    Any help???

    Set your display resolution to 1024x768
    Start > Control Panel > Display > Settings tab

  • Problem in Drill Down feature and Scroll Bar

    Hi All,
    Well I have designed a report on Oracle BI and facing the following issues:
    1. When i opened the report through image/link box(from mypage dashboard or from some other way) and if the data have enough rows and columns to overflow the screen size then there is no scroll bar on the screen so i wouldn't be able to see that data.
    2. When I am clicking on the year(as i made a time hierarchy --> year then quater then month) on the either pivot table or chart view then automatically all corresponding Dashboard Prompts(DP) disappear so i can't filter the data.
    Please help me out in this.
    thanks in advance.
    regards
    mohit

    Regarding 2)
    This is the expected behavior of drill downs. The subsequent reports from the highest level are "system-generated." If you want the prompts, you will have to use the Navigate feature and navigate to a dashboard where you can have your prompts.
    Regarding 1)
    Are you using the Table View or Pivot Table view? If Table View, you can increase the number of rows that are visible by default (change this in the Properties of the Table View.) If you are using a Pivot Table, try this link:
    http://oraclebizint.wordpress.com/2008/01/17/oracle-bi-101332-pagination-in-pivot-tables/

  • 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