Right click + settings crashes every browser

Recently I've noticed that when I right click on any flash
player thing and try to go to my settings to adjust allowed memory
or something like that, the browser always crashes. I've tried this
in Safari, Firefox, Opera- the same result every time. The same
thing happens if I try to go to the flash player security page.
It's infuriating because I can't adjust my security to allow some
important things to work for me. Does anyone have a solution?
I'm running an intel mac, btw.

Looks to me like it is choking on an old Contextual Menu item. If you did an upgrade install you probably have some old Contextual Menu items lying around that aren't working in Leopard. Try removing all the items in
"/Users/yourname/Library/Contextual Menu Items"
See if that fixes the problem. If it does, go the sites where you got the originals and see if the site has a version that is listed as Leopard compatible and download and install that version. If there is no Leopard version don't use the Contextual Menu item.
If you are still having problems, there are other locations for CMs:
"/Library/Contextual Menu Items"
"/System/Library/Contextual Menu Items"
I don't have any in the /Library/CM folder, and have three from Apple in the /System/Library/CM folder.
Francine
Francine
Schwieder

Similar Messages

  • Copying a table with the right-click menu in schema browser fails to copy comments when string has single quote(s) (ascii chr(39))

    Hi,
    I'm running 32-bit version of SQL Developer v. 3.2.20.09 build 09.87, and I used the built in context menu (right-clicking from the schema browser) today to copy a table.  However, none of the comments copied.  When I dug into the PL/SQL that the menu-item is using, I realized that it fails because it doesn't handle single quotes within the comment string.
    For example, I have a table named WE_ENROLL_SNAPSHOT that I wanted to copy as WE_ENROLL_SNAPSHOT_V1 (within same schema name)
    1. I right-clicked on the object in the schema browser and selected Table > Copy...
    2. In the pop-up Copy window, I entered the new table name "WE_ENROLL_SNAPSHOT_V1" and ticked the box for "Include Data" option.  -- The PL/SQL that the menu-command is using is in the "SQL" tab of this window.  This is what I extracted later for testing the issue after the comments did not copy.
    Result: Table and data copied as-expected, but no column or table comments existed.
    I examined the PL/SQL block that the pop-up window issued, and saw this:
    declare
      l_sql varchar2(32767);
      c_tab_comment varchar2(32767);
      procedure run(p_sql varchar2) as
      begin
         execute immediate p_sql;
      end;
    begin
    run('create table "BI_ETL".WE_ENROLL_SNAPSHOT_V1 as select * from "BI_ETL"."WE_ENROLL_SNAPSHOT" where '||11||' = 11');
    select comments into c_tab_comment from sys.all_TAB_comments where owner = 'BI_ETL' and table_name = 'WE_ENROLL_SNAPSHOT' and comments is not null;
    run('comment on table BI_ETL.WE_ENROLL_SNAPSHOT_V1 is '||''''||c_tab_comment||'''');
    for tc in (select column_name from sys.all_tab_cols where owner = 'BI_ETL' and table_name = 'WE_ENROLL_SNAPSHOT')
        loop
       for c in (select comments from sys.all_col_comments where owner = 'BI_ETL' and table_name = 'WE_ENROLL_SNAPSHOT' and column_name=tc.column_name)
       loop
       run ('comment on column BI_ETL.WE_ENROLL_SNAPSHOT_V1.'||tc.column_name||' is '||''''||c.comments||'''');
    end loop;
    end loop;
    EXCEPTION
      WHEN OTHERS THEN NULL;
    end;
    The string of the table comment on WE_ENROLL_SNAPSHOT is this:
    WBIG table of frozen, point-in-time snapshots of Enrolled Students by Category/term/pidm. "Category" is historically, and commonly, our CENSUS snapshot; but, can also describe other frequencies, or categorizations, such as: End-of-Term (EOT), etc. Note: Prior to this table existing, Census-snapshots were stored in SATURN.SNAPREG_ALL. All FALL and SPRING term records prior-to-and-including Spring 2013 ('201230') have been migrated into this table -- EXCEPT a few select prior to Fall 2004 (200410) records where there are duplicates on term/pidm. NO Summer snapshots existed in SNAPREG_ALL, but were queried and stored retroactively (including terms prior to Spring 2013) for the purpose of future on-going year-over-year analysis and comparison.
    Note the single quotes in the comment: ... ('201230')
    So, in the above PL/SQL line 11 grabs this string into "c_tab_comment", but then line 12 fails because of the single quotes.  It doesn't know how to end the string because the single quotes in the string are not "escaped", and this messes up the concatenation on line 12.  (So, then no other column comments are created either because the block throws an error, and goes to line 22 for the exception and exits.)
    When I modify the above PL/SQL as my own anonymous block like this, it is successful:
    declare
      c_tab_comment VARCHAR2(32767);
    begin
    SELECT REPLACE(comments,chr(39),chr(39)||chr(39)) INTO c_tab_comment FROM sys.all_TAB_comments WHERE owner = 'BI_ETL'   AND table_name = 'WE_ENROLL_SNAPSHOT'  AND comments IS NOT NULL;
    EXECUTE IMMEDIATE 'comment on table BI_ETL.WE_ENROLL_SNAPSHOT_V1 is '''||c_tab_comment||'''';
    for tc in (select column_name from sys.all_tab_cols where owner = 'BI_ETL' and table_name = 'WE_ENROLL_SNAPSHOT')
        loop
       for c in (select REPLACE(comments,chr(39),chr(39)||chr(39)) comments from sys.all_col_comments where owner = 'BI_ETL' and table_name = 'WE_ENROLL_SNAPSHOT' and column_name=tc.column_name)
       loop
       EXECUTE IMMEDIATE 'comment on column BI_ETL.WE_ENROLL_SNAPSHOT_V1.'||tc.column_name||' is '||''''||c.comments||'''';
    end loop;
    end loop;
    EXCEPTION
      WHEN OTHERS THEN NULL;
    end;
    On lines 4 and 8 I wrapped the "comments" from sys.all_tab_comments and sys.all_col_comments with a replace command finding every chr(39) and replacing with chr(39)||chr(39). (On line 8 I also had to alias the wrapped column as "comments" so line 10 would succeed.)
    Is this an issue with SQL Developer? Is there any chance that the menu-items can handle single quotes in comment strings? ... And, of course this makes me wonder which other context menu commands in the tool might have a similar issue.
    Thoughts?
    thanks//jacob

    PaigeT wrote:
    I know about quick drop, but it isn't helpful here. I want to be able to right click on a string or array wire, navigate to the string or array palette, and select the corresponding "Empty?" comparator. In this case, since I do actually know where those functions live, and I'm already using my mouse to right click on the wire, typing ctrl-space to open quick drop and then typing in the function name is actually more work than navigating to it in the palette. It would just be nice to have it on hand in the location I naturally go to look for it the first time. 
    I don't agree with this work flow.  Right hand on mouse, left hand on home keys.  Pressing CTRL + Space is done with the left hands, and then you could assign "ea" to "Empty Array" both of which is accessible with the left hand.  Darren posted a bunch of great shortcuts for the right handed developer.
    https://decibel.ni.com/content/docs/DOC-20453
    This is much faster than waiting for any right click menu navigation, even if it is found in the suggested subpalette.
    Unofficial Forum Rules and Guidelines - Hooovahh - LabVIEW Overlord
    If 10 out of 10 experts in any field say something is bad, you should probably take their opinion seriously.

  • How do I right-click in PlayBook's browser?

    javascript & flash both support right-clicks and several sites that I regularly use have both.  But, I can't seem to figure out how to right-click in the PlayBook browser.  Press and hold brings up a context menu (cut & copy & open in new tab for links), but doesn't call the javascript; Flash does nothing at all.
    Solved!
    Go to Solution.

    Thanks that worked!
    knottyrope wrote:
    Use Shift + F10 key to open right click context menu?

  • How do I reopen the status bar and menu bar, I accidentally unchecked one of them and now they are not accessible by right clicking anywhere on the browser

    If you right click on the top bars in the browser you can check and uncheck what bars appear. I accidentally unchecked something there and now when I right click I cannot get any menu to recheck my menu, status bars so that they are visible. They are currently not visible, I have no way to navigate or change any settings.

    OK, got it fixed, I kept fishing around on this site and found an answer. Depress the Alt key and the menu bar temporarily appears, long enough to restore the bars to be visible.

  • Right click settings broken by recent update

    Right clicking on a flash object/movie and calling up the settings brings up the menu, and that's all.
    You can't click on any of the choices, options, settings, sliders, etc within.
    Any idea what happened?
    Windows 7 Ultimate 64bit
    After right clicking and calling up the settings, it floats there, every item on the settings block acts disabled.
    Tabbing to the items and hitting enter does nothing.
    I have Flashplayer set to ask me for permission before allowing storage/access etc.
    With the choices unable to be clicked, the box sits there uselessly.

    The daemon won't start since it is missing the /var/run/fail2ban dir.
    My solution:
    [root@archlin log]# /usr/bin/fail2ban-server -f
    2011-12-27 10:20:39,334 fail2ban.server : INFO Starting Fail2ban v0.8.4
    2011-12-27 10:20:39,334 fail2ban.server : ERROR Unable to create PID file: [Errno 2] No such file or directory: '/var/run/fail2ban/fail2ban.pid'
    2011-12-27 10:20:39,334 fail2ban.server : ERROR Could not start server: Unable to bind socket /var/run/fail2ban/fail2ban.sock
    2011-12-27 10:20:39,334 fail2ban.server : ERROR Unable to remove PID file: [Errno 2] No such file or directory: '/var/run/fail2ban/fail2ban.pid'
    2011-12-27 10:20:39,334 fail2ban.server : INFO Exiting Fail2ban
    [root@archlin log]# ls -la /var/run/fail2ban/
    ls: cannot access /var/run/fail2ban/: No such file or directory
    [root@archlin log]# mkdir /var/run/fail2ban
    [root@archlin log]# rc.d start fail2ban
    :: Starting fail2ban [DONE]

  • Windows 8 right click explorer crash

    Every time I right click on image it stalls and crashes - I installed whatishang to give me a report but Im not a programmer and I don't know how to read it and I know its a program stalling it but if somebody could please help thanks.
    Hang report for C:\Windows\explorer.exe
    Generated by using WhatIsHang on 7/11/2014 5:32:59 PM
    Web site: http://www.nirsoft.net
    Remarks:
    * The program hangs in a single system call. You can look in the call stack and  stack data to find out which API function cause this hang.
    Strings found in the stack:
    805087~1.JPG
    OleMainThreadWndClass
    Modules found in the stack:
    C:\WINDOWS\system32\KERNELBASE.dll , Microsoft Corporation , Microsoft® Windows® Operating System, Windows NT BASE API Client DLL
    C:\WINDOWS\WinSxS\amd64_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.8428_none_88dcdb0b2fb19957\MSVCR80.dll , Microsoft Corporation , Microsoft® Visual Studio® 2005, Microsoft® C Runtime Library
    C:\Program Files\Common Files\Apple\Internet Services\ShellStreams64.dll , Apple Inc. , iCloud Control Panel, Apple Photostreams UI Shell Extension
    C:\WINDOWS\system32\SHELL32.dll , Microsoft Corporation , Microsoft® Windows® Operating System, Windows Shell Common Dll
    C:\WINDOWS\system32\ole32.dll , Microsoft Corporation , Microsoft® Windows® Operating System, Microsoft OLE for Windows
    C:\WINDOWS\system32\explorerframe.dll , Microsoft Corporation , Microsoft® Windows® Operating System, ExplorerFrame
    C:\WINDOWS\SYSTEM32\SHCORE.dll , Microsoft Corporation , Microsoft® Windows® Operating System, SHCORE
    C:\WINDOWS\SYSTEM32\DUI70.dll , Microsoft Corporation , Microsoft® Windows® Operating System, Windows DirectUI Engine
    C:\WINDOWS\SYSTEM32\DUser.dll , Microsoft Corporation , Microsoft® Windows® Operating System, Windows DirectUser Engine
    C:\WINDOWS\SYSTEM32\UxTheme.dll , Microsoft Corporation , Microsoft® Windows® Operating System, Microsoft UxTheme Library
    C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.9600.17031_none_6242a4b3ecbb55a1\Comctl32.dll , Microsoft Corporation , Microsoft® Windows® Operating System, User Experience Controls Library
    C:\WINDOWS\SYSTEM32\combase.dll , Microsoft Corporation , Microsoft® Windows® Operating System, Microsoft COM for Windows
    C:\WINDOWS\system32\UIRibbon.dll , Microsoft Corporation , Microsoft® Windows® Operating System, Windows Ribbon Framework
    ThreadID: 138940
    Execute Address:
    00007FFCBEF1ABCA  ntdll.dll!NtWaitForSingleObject+0xa
    Call Stack:
    000000001280D890  0034002D00420033
    Stack Data:
    000000001280D138  00007FFCBC3C1148  KERNELBASE.dll!WaitForSingleObjectEx+0x98
    000000001280D140  0000000000000000
    000000001280D148  00007FFCBC3C2EE3  KERNELBASE.dll!CreateEventW+0xa3
    000000001280D150  00008FB5B5131EAF
    000000001280D158  00000000541017BE  MSVCR80.dll!??2@YAPEAX_K@Z+0xe
    000000001280D160  0000000000000000
    000000001280D168  0000000000000000
    000000001280D170  0000000000000048
    000000001280D178  0000000000000001
    000000001280D180  0000000000000000
    000000001280D188  0000000000000000
    000000001280D190  0000000000000000
    000000001280D198  0000000000000000
    000000001280D1A0  0000000000000000
    000000001280D1A8  0000000000000000
    000000001280D1B0  0000000000000000
    000000001280D1B8  0000000000000000
    000000001280D1C0  0000000000000000
    000000001280D1C8  00000000157CEF88
    000000001280D1D0  000000001280D210
    000000001280D1D8  000000018009457C  ShellStreams64.dll+0x9457c
    000000001280D1E0  0000000000000004
    000000001280D1E8  0000000000007959
    000000001280D1F0  0000000000000000
    000000001280D1F8  0000000000002948
    000000001280D200  44E2B9113C5E2B20
    000000001280D208  75E7B5E7059FDDA2
    000000001280D210  0000000000000000
    000000001280D218  0000000000000000
    000000001280D220  0000000000007959
    000000001280D228  00000001800781BB  ShellStreams64.dll+0x781bb
    000000001280D230  00000000157CEF40
    000000001280D238  00000001800DE2C8  ShellStreams64.dll+0xde2c8
    000000001280D240  00000000157C7B50
    000000001280D248  0000000000000000
    000000001280D250  00000001800DB450  ShellStreams64.dll+0xdb450
    000000001280D258  00000000157C7B50
    000000001280D260  0000000000000000
    000000001280D268  0000000000000000
    000000001280D270  0000000000000000
    000000001280D278  0000000000000000
    000000001280D280  0000000000000000
    000000001280D288  0000000000000000
    000000001280D290  0000000000000000
    000000001280D298  0000000000000000
    000000001280D2A0  0000000000000000
    000000001280D2A8  0000000000000000
    000000001280D2B0  0000000000000000
    000000001280D2B8  0000000000000000
    000000001280D2C0  0000000000000000
    000000001280D2C8  0000000000000000
    000000001280D2D0  0000000000000000
    000000001280D2D8  0000000000000000
    000000001280D2E0  0000000000000000
    000000001280D2E8  0000000000000000
    000000001280D2F0  0000000000000000
    000000001280D2F8  0000000000000000
    000000001280D300  0000000000000000
    000000001280D308  0000000000000000
    000000001280D310  0000000000000000
    000000001280D318  0000000000000000
    000000001280D320  0000000000000000
    000000001280D328  0000000000000000
    000000001280D330  0000000000000000
    000000001280D458  00007FFCBC3C1A70  KERNELBASE.dll!BaseFormatObjectAttributes+0x78
    000000001280D498  00007FFCBC3C2EE3  KERNELBASE.dll!CreateEventW+0xa3
    000000001280D528  0000000180077DC8  ShellStreams64.dll+0x77dc8
    000000001280D578  0000000180077C1A  ShellStreams64.dll+0x77c1a
    000000001280D588  00000001801161C0  ShellStreams64.dll+0x1161c0
    000000001280D5A0  00000001801161C0  ShellStreams64.dll+0x1161c0
    000000001280D5D8  000000018001570F  ShellStreams64.dll+0x1570f
    000000001280D618  0000000180015C1B  ShellStreams64.dll+0x15c1b
    000000001280D628  00000001800164B0  ShellStreams64.dll+0x164b0
    000000001280D678  00000001800156B9  ShellStreams64.dll+0x156b9
    000000001280D6A8  0000000180015332  ShellStreams64.dll+0x15332
    000000001280D728  00007FFCBC71DF44  SHELL32.dll!SHGetNameFromIDList+0x628
    000000001280D788  00007FFCBC82C672  SHELL32.dll!SHCreateShellItemArrayFromDataObject+0x732
    000000001280D958  00007FFCBC80CDE5  SHELL32.dll+0x10cde5
    000000001280D9B8  00007FFCBC82B880  SHELL32.dll+0x12b880
    000000001280DB28  00007FFCBCC1C74C  SHELL32.dll+0x51c74c
    000000001280DB60  00007FFCBEE80000  ntdll.dll+0x0
    000000001280DBB0  00007FFCBC8EEBE8  SHELL32.dll+0x1eebe8
    000000001280DC48  00007FFCBE0016AE  ole32.dll!PropVariantCopy+0x322
    000000001280DC58  00007FFCBC701BA9  SHELL32.dll!PifMgr_OpenProperties+0x3b5
    000000001280DC68  00007FFCBC8EF2F8  SHELL32.dll+0x1ef2f8
    000000001280DCA8  00007FFCBC70250B  SHELL32.dll!PifMgr_OpenProperties+0xd17
    000000001280DCB8  00007FFCB36D5134  explorerframe.dll+0x15134
    000000001280DCC0  00007FFCBCF80008  SHELL32.dll+0x880008
    000000001280DCC8  00007FFCBC3C2D40  KERNELBASE.dll!QISearch+0x80
    000000001280DCD8  00007FFCBCC34A4B  SHELL32.dll+0x534a4b
    000000001280DCF8  00007FFCBA801762  SHCORE.dll!IUnknown_QueryService+0x62
    000000001280DD10  00007FFCBCF80008  SHELL32.dll+0x880008
    000000001280DD28  00007FFCBA801762  SHCORE.dll!IUnknown_QueryService+0x62
    000000001280DD40  00007FFCBCF80008  SHELL32.dll+0x880008
    000000001280DD58  00007FFCB36D57A8  explorerframe.dll+0x157a8
    000000001280DD68  00007FFCBCF80008  SHELL32.dll+0x880008
    000000001280DD70  00007FFCBCF7B348  SHELL32.dll+0x87b348
    000000001280DDC8  00007FFCBCF7B348  SHELL32.dll+0x87b348
    000000001280DDD8  00007FFCBC8EF2F8  SHELL32.dll+0x1ef2f8
    000000001280DDF0  00007FFCBCF80008  SHELL32.dll+0x880008
    000000001280DE08  00007FFCBC3C2D40  KERNELBASE.dll!QISearch+0x80
    000000001280DE38  00007FFCBCE34263  SHELL32.dll+0x734263
    000000001280DE68  00007FFCB37246D3  explorerframe.dll+0x646d3
    000000001280DE78  00007FFCBC3C149C  KERNELBASE.dll!SetEvent+0xc
    000000001280DEA8  00007FFCB37245E9  explorerframe.dll+0x645e9
    000000001280DF08  00007FFCBCC17DA3  SHELL32.dll+0x517da3
    000000001280DF28  00007FFCB36ECBC3  explorerframe.dll+0x2cbc3
    000000001280DF58  00007FFCB37E9944  explorerframe.dll+0x129944
    000000001280DF68  00007FFCB370BE92  explorerframe.dll+0x4be92
    000000001280DF88  00007FFCBA6524F9  DUI70.dll!?_ZeroRelease@Value@DirectUI@@AEAAXXZ+0x19
    000000001280DFB8  00007FFCB36E95DB  explorerframe.dll+0x295db
    000000001280DFE8  00007FFCBA6CC272  DUI70.dll!?OnEvent@Element@DirectUI@@UEAAXPEAUEvent@2@@Z+0x92
    000000001280E058  00007FFCB37E59D3  explorerframe.dll+0x1259d3
    000000001280E068  00007FFCBEA11BBC  USER32.dll!ScreenToClient+0x40
    000000001280E088  00007FFCBCC1C581  SHELL32.dll+0x51c581
    000000001280E098  00007FFCB37E5487  explorerframe.dll+0x125487
    000000001280E0C8  00007FFCBCC21185  SHELL32.dll+0x521185
    000000001280E128  00007FFCBCA2820A  SHELL32.dll+0x32820a
    000000001280E148  00007FFCBA6524F9  DUI70.dll!?_ZeroRelease@Value@DirectUI@@AEAAXXZ+0x19
    000000001280E198  00007FFCBEED55A7  ntdll.dll!RtlActivateActivationContextUnsafeFast+0x93
    000000001280E1A8  00007FFCB36FDD38  explorerframe.dll+0x3dd38
    000000001280E1E8  00007FFCB36FD8AE  explorerframe.dll+0x3d8ae
    000000001280E228  00007FFCBC80DFC6  SHELL32.dll!ILSaveToStream+0x5aa
    000000001280E258  00007FFCB36FCAF6  explorerframe.dll+0x3caf6
    000000001280E260  00007FFCBC80DF6C  SHELL32.dll!ILSaveToStream+0x550
    000000001280E278  00007FFCBEA02434  USER32.dll!DispatchMessageW+0x154
    000000001280E308  00007FFCBEA023A3  USER32.dll!DispatchMessageW+0xc3
    000000001280E330  00007FFCBC80DF6C  SHELL32.dll!ILSaveToStream+0x550
    000000001280E338  00007FFCBEA04E83  USER32.dll!CallWindowProcW+0x93
    000000001280E350  00007FFCBC80DF6C  SHELL32.dll!ILSaveToStream+0x550
    000000001280E398  00007FFCB8D7B0E4  DUser.dll!GadgetTransSettingChanged+0xe08
    000000001280E408  00007FFCBEA02434  USER32.dll!DispatchMessageW+0x154
    000000001280E498  00007FFCBEA023A3  USER32.dll!DispatchMessageW+0xc3
    000000001280E4C8  00007FFCBEA03FE2  USER32.dll!OffsetRect+0x182
    000000001280E528  00007FFCBEA0409D  USER32.dll!OffsetRect+0x23d
    000000001280E578  00007FFCBA6CC508  DUI70.dll!?FireEvent@Element@DirectUI@@QEAAXPEAUEvent@2@_N1@Z+0x48
    000000001280E588  00007FFCBEF1C99F  ntdll.dll!KiUserCallbackDispatcher+0x1f
    000000001280E5C0  00007FFCBEA01FEA  USER32.dll!WindowFromPhysicalPoint+0x1a
    000000001280E5C8  00007FFCB8D61F86  DUser.dll+0x1f86
    000000001280E610  00007FFCBEF1AAB0  ntdll.dll!NtdllDialogWndProc_W+0x160
    000000001280E618  00007FFCBEA04B4F  USER32.dll!GetParent+0x30f
    000000001280E688  00007FFCBA656CAE  DUI70.dll!?WindowActiveProp@Element@DirectUI@@SAPEBUPropertyInfo@2@XZ+0x5a
    000000001280E708  00007FFCBEA0458E  USER32.dll!GetWindowLongPtrA+0x30e
    000000001280E728  00007FFCB3742200  explorerframe.dll+0x82200
    000000001280E748  00007FFCBAEC185A  UxTheme.dll+0x185a
    000000001280E750  00007FFCBEA04530  USER32.dll!GetWindowLongPtrA+0x2b0
    000000001280E778  00007FFCB36FCAF6  explorerframe.dll+0x3caf6
    000000001280E788  00007FFCBEA04530  USER32.dll!GetWindowLongPtrA+0x2b0
    000000001280E7D8  00007FFCBA65796B  DUI70.dll!?_FlushLayout@Element@DirectUI@@KAXPEAV12@PEAVDeferCycle@2@@Z+0x2eb
    000000001280E818  00007FFCBA71AB80  DUI70.dll+0xcab80
    000000001280E838  00007FFCBA652865  DUI70.dll!?_SetValue@Element@DirectUI@@IEAAJPEBUPropertyInfo@2@HPEAVValue@2@_N@Z+0x105
    000000001280E840  00007FFCBA71A730  DUI70.dll+0xca730
    000000001280E848  00007FFCBA653877  DUI70.dll!?IsSubclassOf@ClassInfoBase@DirectUI@@UEBA_NPEAUIClassInfo@2@@Z+0x47
    000000001280E858  00007FFCB8D61AB1  DUser.dll+0x1ab1
    000000001280E878  00007FFCBA6564EA  DUI70.dll!NotifyAccessibilityEvent+0xee
    000000001280E888  00007FFCB8D62081  DUser.dll+0x2081
    000000001280E8E8  00007FFCBAEC1895  UxTheme.dll+0x1895
    000000001280E908  00007FFCBA66969C  DUI70.dll!?SetKeyFocus@Element@DirectUI@@UEAAXXZ+0x6c
    000000001280E928  00007FFCBEA04517  USER32.dll!GetWindowLongPtrA+0x297
    000000001280E948  00007FFCB371C8E0  explorerframe.dll+0x5c8e0
    000000001280E968  00007FFCB3709E0A  explorerframe.dll+0x49e0a
    000000001280E998  00007FFCB37824F9  explorerframe.dll+0xc24f9
    000000001280E9C8  00007FFCBEED548F  ntdll.dll!RtlDeactivateActivationContextUnsafeFast+0xc7
    000000001280E9F8  00007FFCBEED55A7  ntdll.dll!RtlActivateActivationContextUnsafeFast+0x93
    000000001280EA10  00007FFCB377526C  explorerframe.dll+0xb526c
    000000001280EA60  00007FFCBA651FA0  DUI70.dll!?StaticWndProc@HWNDElement@DirectUI@@SA_JPEAUHWND__@@I_K_J@Z
    000000001280EA98  00007FFCBA651FEA  DUI70.dll!?StaticWndProc@HWNDElement@DirectUI@@SA_JPEAUHWND__@@I_K_J@Z+0x4a
    000000001280EAB8  00007FFCBA651FA0  DUI70.dll!?StaticWndProc@HWNDElement@DirectUI@@SA_JPEAUHWND__@@I_K_J@Z
    000000001280EAD8  00007FFCBEA02434  USER32.dll!DispatchMessageW+0x154
    000000001280EB08  00007FFCB36EA415  explorerframe.dll+0x2a415
    000000001280EB68  00007FFCBEA023A3  USER32.dll!DispatchMessageW+0xc3
    000000001280EB98  00007FFCBEA04E83  USER32.dll!CallWindowProcW+0x93
    000000001280EBB0  00007FFCBA651FA0  DUI70.dll!?StaticWndProc@HWNDElement@DirectUI@@SA_JPEAUHWND__@@I_K_J@Z
    000000001280EBF8  00007FFCB8D61E66  DUser.dll+0x1e66
    000000001280EC40  00007FFCB8D61DD0  DUser.dll+0x1dd0
    000000001280EC48  00007FFCBEA02434  USER32.dll!DispatchMessageW+0x154
    000000001280ECD8  00007FFCBEA023A3  USER32.dll!DispatchMessageW+0xc3
    000000001280ECE8  00007FFCBA65239D  DUI70.dll!?_DisplayNodeCallback@Element@DirectUI@@SAJPEAUHGADGET__@@PEAXPEAUEventMsg@@@Z+0xed
    000000001280ED08  00007FFCBEA04E83  USER32.dll!CallWindowProcW+0x93
    000000001280ED20  00007FFCB8D61DD0  DUser.dll+0x1dd0
    000000001280ED68  00007FFCB9F81392  Comctl32.dll!DefSubclassProc+0xb2
    000000001280EDB8  00007FFCBE763978  combase.dll+0xa3978
    000000001280EDC0  00007FFCBE763370  combase.dll+0xa3370
    000000001280EDC8  00007FFCBEED548F  ntdll.dll!RtlDeactivateActivationContextUnsafeFast+0xc7
    000000001280EE28  00007FFCB9F81357  Comctl32.dll!DefSubclassProc+0x77
    000000001280EE78  00007FFCB36E7698  explorerframe.dll+0x27698
    000000001280EEB8  00007FFCB9FA3150  Comctl32.dll+0x23150
    000000001280EED8  00007FFCBEA02458  USER32.dll!DispatchMessageW+0x178
    000000001280EF48  00007FFCB36E761A  explorerframe.dll+0x2761a
    000000001280EF68  00007FFCBEA023A3  USER32.dll!DispatchMessageW+0xc3
    000000001280EF88  00007FFCB9F81292  Comctl32.dll!DPA_GetPtr+0x282
    000000001280EF98  00007FFCA3DD148E  UIRibbon.dll!DllMain+0x192
    000000001280EFE8  00007FFCA3DD161B  UIRibbon.dll!DllMain+0x31f
    000000001280EFF8  00007FFCA3DD5860  UIRibbon.dll+0x5860
    000000001280F048  00007FFCB9F81357  Comctl32.dll!DefSubclassProc+0x77
    000000001280F078  00007FFCA3DD16B7  UIRibbon.dll!DllMain+0x3bb
    000000001280F098  00007FFCB36E9592  explorerframe.dll+0x29592
    000000001280F0C8  00007FFCB9F81292  Comctl32.dll!DPA_GetPtr+0x282
    000000001280F118  00007FFCBEA0382A  USER32.dll!MsgWaitForMultipleObjects+0x18a
    000000001280F128  00007FFCBEA15181  USER32.dll!IsGUIThread+0x65

    Hi,
    In addtion to auggy, please use the shellexview to ensure that the ShellStreams64 extension is disabled:
    1. Download ShellExView v1.41 from the following link
    http://www.nirsoft.net/utils/shexview.zip 
    Please Note: The third-party product discussed here is manufactured by a company that is independent of Microsoft. We make no warranty, implied or otherwise, regarding this product's performance
    or reliability.
    2. 
    Extract "shexview.zip" file and open shexview.exe. It will scan the registry for all the shell extensions.
    3. Select all the non-Microsoft extensions in pink by press "Ctrl" in the keyboard.
    4. Click the "Disable Selected Items" on the toolbar and click Yes.
    5. Restart your computer and check if the issue is resolved.
    Hope this could be helpful.
    Kate Li
    TechNet Community Support

  • Right Click / Settings going to new Web Page

    Something weird has started happening on my machine and I'm
    hoping someone can point me to a solution.
    In a Flash Comm Server video Chat application, when you right
    click and select Settings to set your cam/mic etc. My machine is
    now rerouting to one of my bookmarks, specifically a Bank of
    America website. It doesn't open the settings menu any longer.
    Anyone else seen this?

    HI Tora bisu,
    Thank you for your question! Have you tried Safe Mode to check if it caused by an add on?
    If it is hanging there are also these troubleshooting steps: [[Firefox hangs or is not responding - How to fix]]
    Thank you!

  • Flex 2-15: Adobe Flash settings crash every time.

    I have a brand spankin new Flex 2-15, there's one problem.  When I try to go into the Adobe Flash Settings using any browser (Chrome, FireFoxl, or IE) I immediately get a window telling me that Adobe Flash has crashed.  I send off the error report, and try again.  Same result.
    All I really want to do is switch from the built in camera to my external camera. 
    I have done the following to try to troubleshoot this problem:
    1)  Uninstalled Flash from FireFox, rebooted computer, downloaded and installed Flash for Firefox v15.0.0.183.  Tried to enter Flash Settings, Flash crashed.
    2)  Checked for updates to Graphiocs adapter driver.  windows found Intel display adapter v 10.18.10.3907.  Installed that.
     Rebooted computer, tried to enter Flash settings, flash crashed.
    3)  turned off the PepperFlash in Chrome, couldn't access website without having Flash enabled.. (I thought we could at one time have both PetterFlash and separate copy of Flash on Chrome, and we turned off PepperFlash if there were problems.  Guess that's not the case as I can't find a copy of Flash for Chrome any longer.)
    4)  Flash on IE is like Flash on Chrome It's now pre-installed., Tried to enter Flash Settings from IE, and Flash Crashed.
    In short Flash crashes whenever I try to enter Flash settings from any website. updating the graphics controller didn't help and re-installing Flash didn't cbange anything
    Anybody have any suggestions.  This is getting really annoying.
    Thanks Guys
    Dan
    "It's hard to tell when you don't know!" -  Emily Bronco
    Lenovo Flex 2-15
    Intel Core i-5-4210U CPU @1.70GHz
    Intel HD Graphics Family
    6.0 GB memory
    Windows 8.1 64bit
    Touch screen

    Adobe Forums: Illustrator Crashing Mac

  • Right click frequently crash various apps. Help please!!!

    Dear all,
    it's a month that a problem make me crazy. Often when I right click on object, like mails, pictures, link, etc, to open contextual menu (applications like mail, calendar, pages, keynote) the application crash. Usually happens when I open first time mail and right click on a message. Is someone able to read a crash report and help me? If some one would help me i will attach the crash reports in the next post. I really appreciate any help!!!
    Thanks in advance.
    massimo tivan

    Thank you. I give me a hopefulness. This is the last crash report. In the mean time I'll do what you suggested. Thanks a lot.
    Process: Mail [3521]
    Path: /Applications/Mail.app/Contents/MacOS/Mail
    Identifier: com.apple.mail
    Version: 3.5 (930.3)
    Build Info: Mail-9300300~1
    Code Type: X86 (Native)
    Parent Process: launchd [199]
    Date/Time: 2009-04-15 02:28:36.279 +0200
    OS Version: Mac OS X 10.5.6 (9G55)
    Report Version: 6
    Exception Type: EXCBADACCESS (SIGBUS)
    Exception Codes: KERNPROTECTIONFAILURE at 0x0000000000000000
    Crashed Thread: 0
    Thread 0 Crashed:
    0 com.apple.CoreFoundation 0x906b692b CFDictionaryRemoveValue + 43
    1 com.apple.AppKit 0x95625f3a -[NSPasteboard setData:forType:] + 199
    2 com.apple.mail 0x000ff88d 0x1000 + 1042573
    3 com.apple.CoreFoundation 0x90763a3d _invoking__ + 29
    4 com.apple.CoreFoundation 0x90763428 -[NSInvocation invoke] + 136
    5 com.apple.Foundation 0x902f339c __NSThreadPerformPerform + 476
    6 com.apple.CoreFoundation 0x906e45f5 CFRunLoopRunSpecific + 3141
    7 com.apple.CoreFoundation 0x906e4cd8 CFRunLoopRunInMode + 88
    8 com.apple.HIToolbox 0x972332c0 RunCurrentEventLoopInMode + 283
    9 com.apple.HIToolbox 0x97233012 ReceiveNextEventCommon + 175
    10 com.apple.HIToolbox 0x97279f47 IsUserStillTracking(MenuSelectData*, unsigned char*) + 493
    11 com.apple.HIToolbox 0x972630f4 TrackMenuCommon(MenuSelectData&, unsigned char*) + 3860
    12 com.apple.HIToolbox 0x972d1cdb PopUpMenuSelectCore(MenuData*, Point, double, Point, unsigned short, unsigned int, Rect const*, unsigned short, unsigned long, Rect const*, Rect const*, __CFString const*, OpaqueMenuRef**, unsigned short*) + 1845
    13 com.apple.HIToolbox 0x972d1553 _HandlePopUpMenuSelection7 + 627
    14 com.apple.AppKit 0x955f77ff _NSPopUpCarbonMenu3 + 3081
    15 com.apple.AppKit 0x955f6bec _NSPopUpCarbonMenu2 + 155
    16 com.apple.AppKit 0x955f6b4d _NSPopUpCarbonMenu1 + 82
    17 com.apple.AppKit 0x955f6aad -[NSCarbonMenuImpl _popUpContextMenu:withEvent:forView:withFont:] + 237
    18 com.apple.AppKit 0x955f68e6 -[NSMenu _popUpContextMenu:withEvent:forView:withFont:] + 285
    19 com.apple.AppKit 0x955f67c3 -[NSMenu _popUpContextMenu:withEvent:forView:] + 63
    20 com.apple.AppKit 0x955f677e -[NSMenu _popUpMenuWithEvent:forView:] + 52
    21 com.apple.AppKit 0x959c0e29 -[NSView rightMouseDown:] + 103
    22 com.apple.AppKit 0x957c2e12 -[NSControl _rightMouseUpOrDown:] + 526
    23 com.apple.AppKit 0x9547dddd -[NSWindow sendEvent:] + 8511
    24 com.apple.mail 0x0012c2c3 0x1000 + 1225411
    25 com.apple.AppKit 0x95449d49 -[NSApplication sendEvent:] + 2941
    26 com.apple.mail 0x0002f12d 0x1000 + 188717
    27 com.apple.AppKit 0x953a769f -[NSApplication run] + 847
    28 com.apple.AppKit 0x953748a4 NSApplicationMain + 574
    29 com.apple.mail 0x000fb6f2 0x1000 + 1025778
    Thread 1:
    0 libSystem.B.dylib 0x921bf1c6 machmsgtrap + 10
    1 libSystem.B.dylib 0x921c69bc mach_msg + 72
    2 com.unsanity.ape 0x119d7c39 _apeagent + 316
    3 libSystem.B.dylib 0x921f0095 pthreadstart + 321
    4 libSystem.B.dylib 0x921eff52 thread_start + 34
    Thread 2:
    0 libSystem.B.dylib 0x921bf1c6 machmsgtrap + 10
    1 libSystem.B.dylib 0x921c69bc mach_msg + 72
    2 com.apple.CoreFoundation 0x906e40ae CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x906e4cd8 CFRunLoopRunInMode + 88
    4 com.apple.Foundation 0x90326d75 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 213
    5 com.apple.Foundation 0x90332e94 -[NSRunLoop(NSRunLoop) run] + 84
    6 com.apple.MessageFramework 0x003d6f65 -[RSSInterchange _runManager] + 2140
    7 com.apple.Foundation 0x902f27ed -[NSThread main] + 45
    8 com.apple.Foundation 0x902f2394 _NSThread__main_ + 308
    9 libSystem.B.dylib 0x921f0095 pthreadstart + 321
    10 libSystem.B.dylib 0x921eff52 thread_start + 34
    Thread 3:
    0 ??? 0000000000 0 + 0
    Thread 4:
    0 ??? 0000000000 0 + 0
    Thread 5:
    0 libSystem.B.dylib 0x921bf226 semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x921f11ef pthread_condwait + 1244
    2 libSystem.B.dylib 0x921f2a73 pthreadcond_timedwait_relativenp + 47
    3 com.apple.Foundation 0x9033875c -[NSCondition waitUntilDate:] + 236
    4 com.apple.Foundation 0x90338570 -[NSConditionLock lockWhenCondition:beforeDate:] + 144
    5 com.apple.MessageFramework 0x003d8e27 -[InvocationQueue _drainQueue] + 317
    6 com.apple.Foundation 0x902f27ed -[NSThread main] + 45
    7 com.apple.Foundation 0x902f2394 _NSThread__main_ + 308
    8 libSystem.B.dylib 0x921f0095 pthreadstart + 321
    9 libSystem.B.dylib 0x921eff52 thread_start + 34
    Thread 6:
    0 libSystem.B.dylib 0x921c63ae _semwaitsignal + 10
    1 libSystem.B.dylib 0x921f0d0d pthreadcondwait$UNIX2003 + 73
    2 com.apple.QuartzCore 0x90b1cab9 fefragmentthread + 54
    3 libSystem.B.dylib 0x921f0095 pthreadstart + 321
    4 libSystem.B.dylib 0x921eff52 thread_start + 34
    Thread 7:
    0 libSystem.B.dylib 0x921bf226 semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x921f11ef pthread_condwait + 1244
    2 libSystem.B.dylib 0x921f2a73 pthreadcond_timedwait_relativenp + 47
    3 com.apple.Foundation 0x9033875c -[NSCondition waitUntilDate:] + 236
    4 com.apple.Foundation 0x90338570 -[NSConditionLock lockWhenCondition:beforeDate:] + 144
    5 com.apple.MessageFramework 0x003d8e27 -[InvocationQueue _drainQueue] + 317
    6 com.apple.Foundation 0x902f27ed -[NSThread main] + 45
    7 com.apple.Foundation 0x902f2394 _NSThread__main_ + 308
    8 libSystem.B.dylib 0x921f0095 pthreadstart + 321
    9 libSystem.B.dylib 0x921eff52 thread_start + 34
    Thread 8:
    0 libSystem.B.dylib 0x921bf1c6 machmsgtrap + 10
    1 libSystem.B.dylib 0x921c69bc mach_msg + 72
    2 com.apple.CoreFoundation 0x906e40ae CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x906e4cd8 CFRunLoopRunInMode + 88
    4 com.apple.Foundation 0x90326d75 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 213
    5 com.apple.Foundation 0x90332e94 -[NSRunLoop(NSRunLoop) run] + 84
    6 com.apple.MessageFramework 0x002fb659 +[_NSSocket _runIOThread] + 98
    7 com.apple.Foundation 0x902f27ed -[NSThread main] + 45
    8 com.apple.Foundation 0x902f2394 _NSThread__main_ + 308
    9 libSystem.B.dylib 0x921f0095 pthreadstart + 321
    10 libSystem.B.dylib 0x921eff52 thread_start + 34
    Thread 9:
    0 libSystem.B.dylib 0x921bf226 semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x921f11ef pthread_condwait + 1244
    2 libSystem.B.dylib 0x921f2a73 pthreadcond_timedwait_relativenp + 47
    3 com.apple.Foundation 0x9033875c -[NSCondition waitUntilDate:] + 236
    4 com.apple.Foundation 0x90338570 -[NSConditionLock lockWhenCondition:beforeDate:] + 144
    5 com.apple.MessageFramework 0x003d8e27 -[InvocationQueue _drainQueue] + 317
    6 com.apple.Foundation 0x902f27ed -[NSThread main] + 45
    7 com.apple.Foundation 0x902f2394 _NSThread__main_ + 308
    8 libSystem.B.dylib 0x921f0095 pthreadstart + 321
    9 libSystem.B.dylib 0x921eff52 thread_start + 34
    Thread 10:
    0 libSystem.B.dylib 0x921bf226 semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x921f11ef pthread_condwait + 1244
    2 libSystem.B.dylib 0x921f2a73 pthreadcond_timedwait_relativenp + 47
    3 com.apple.Foundation 0x9033875c -[NSCondition waitUntilDate:] + 236
    4 com.apple.Foundation 0x90338570 -[NSConditionLock lockWhenCondition:beforeDate:] + 144
    5 com.apple.MessageFramework 0x003d8e27 -[InvocationQueue _drainQueue] + 317
    6 com.apple.Foundation 0x902f27ed -[NSThread main] + 45
    7 com.apple.Foundation 0x902f2394 _NSThread__main_ + 308
    8 libSystem.B.dylib 0x921f0095 pthreadstart + 321
    9 libSystem.B.dylib 0x921eff52 thread_start + 34
    Thread 11:
    0 libSystem.B.dylib 0x9220e6f2 select$DARWIN_EXTSN + 10
    1 libSystem.B.dylib 0x921f0095 pthreadstart + 321
    2 libSystem.B.dylib 0x921eff52 thread_start + 34
    Thread 12:
    0 libSystem.B.dylib 0x921bf226 semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x921f11ef pthread_condwait + 1244
    2 libSystem.B.dylib 0x921f2a73 pthreadcond_timedwait_relativenp + 47
    3 com.apple.Foundation 0x9033875c -[NSCondition waitUntilDate:] + 236
    4 com.apple.Foundation 0x90338570 -[NSConditionLock lockWhenCondition:beforeDate:] + 144
    5 com.apple.Foundation 0x903384d5 -[NSConditionLock lockWhenCondition:] + 69
    6 com.apple.AppKit 0x95414d90 -[NSUIHeartBeat _heartBeatThread:] + 753
    7 com.apple.Foundation 0x902f27ed -[NSThread main] + 45
    8 com.apple.Foundation 0x902f2394 _NSThread__main_ + 308
    9 libSystem.B.dylib 0x921f0095 pthreadstart + 321
    10 libSystem.B.dylib 0x921eff52 thread_start + 34
    Thread 13:
    0 libSystem.B.dylib 0x921bf1c6 machmsgtrap + 10
    1 libSystem.B.dylib 0x921c69bc mach_msg + 72
    2 com.apple.CoreFoundation 0x906e40ae CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x906e4cd8 CFRunLoopRunInMode + 88
    4 com.apple.audio.CoreAudio 0x936c05dc HALRunLoop::OwnThread(void*) + 160
    5 com.apple.audio.CoreAudio 0x936c0464 CAPThread::Entry(CAPThread*) + 96
    6 libSystem.B.dylib 0x921f0095 pthreadstart + 321
    7 libSystem.B.dylib 0x921eff52 thread_start + 34
    Thread 14:
    0 libSystem.B.dylib 0x921bf1c6 machmsgtrap + 10
    1 libSystem.B.dylib 0x921c69bc mach_msg + 72
    2 com.apple.CoreFoundation 0x906e40ae CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x906e4cd8 CFRunLoopRunInMode + 88
    4 com.apple.CFNetwork 0x937d8ebe CFURLCacheWorkerThread(void*) + 396
    5 libSystem.B.dylib 0x921f0095 pthreadstart + 321
    6 libSystem.B.dylib 0x921eff52 thread_start + 34
    Thread 15:
    0 libSystem.B.dylib 0x921bf1c6 machmsgtrap + 10
    1 libSystem.B.dylib 0x921c69bc mach_msg + 72
    2 com.apple.CoreFoundation 0x906e40ae CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x906e4cd8 CFRunLoopRunInMode + 88
    4 com.apple.Foundation 0x90355d40 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 320
    5 com.apple.Foundation 0x902f27ed -[NSThread main] + 45
    6 com.apple.Foundation 0x902f2394 _NSThread__main_ + 308
    7 libSystem.B.dylib 0x921f0095 pthreadstart + 321
    8 libSystem.B.dylib 0x921eff52 thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0xa00cd4ec ebx: 0x906b690b ecx: 0xa00e2000 edx: 0x00000010
    edi: 0xa075b844 esi: 0x00000000 ebp: 0xbfffe4d8 esp: 0xbfffe490
    ss: 0x0000001f efl: 0x00010283 eip: 0x906b692b cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    cr2: 0x00000000
    Binary Images:
    0x1000 - 0x271ff3 com.apple.mail 3.5 (930.3) <918d5fc75d11e2bad29cc7192e8459d2> /Applications/Mail.app/Contents/MacOS/Mail
    0x2e0000 - 0x537ffb com.apple.MessageFramework 3.5 (930.3) <548c39b875ebdc054eed49e9dd5238f3> /System/Library/Frameworks/Message.framework/Versions/B/Message
    0x68d000 - 0x68ffff com.apple.ExceptionHandling 1.5 (10) /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    0x696000 - 0x6bafe7 com.apple.speech.LatentSemanticMappingFramework 2.6.4 (2.6.4) <623d0f3f1b3fb665dc9cb196c482510a> /System/Library/Frameworks/LatentSemanticMapping.framework/Versions/A/LatentSem anticMapping
    0x119d6000 - 0x119e8fff +com.unsanity.ape 2.5 (2.5) <05296fb55e88a72c8528a373a17f4229> /Library/Frameworks/ApplicationEnhancer.framework/Versions/A/ApplicationEnhance r
    0x119f5000 - 0x11a0fffd +com.unsanity.windowshadex.cocoa 4.2 (???) <84d352b6741f9cc1b759e3a1ca522477> /Users/maxt/Library/Application Enhancers/WindowShade X.ape/Contents/PlugIns/WindowShade X Cocoa.ape/Contents/MacOS/WindowShade X Cocoa
    0x1478e000 - 0x14986fff com.apple.RawCamera.bundle 2.0.13 (435) <083354ccec68bf7c9fc99523a5838f92> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x15e7b000 - 0x15e80ff3 libCGXCoreImage.A.dylib ??? (???) <375e0cdb64b043378dbf637992bbfeb0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x17149000 - 0x1714cfff com.apple.audio.AudioIPCPlugIn 1.0.5 (1.0.5) <e7424df9b53076d04045fb2e0132b2d0> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x17203000 - 0x17204fe1 com.apple.textencoding.unicode 2.2 (2.2) <09ac11c81bf4e673a30cc364868fdc11> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x17211000 - 0x17213ffe com.apple.AutomatorCMM 1.1 (160) <a34090044a8b83b1089d62ca85c51b1d> /System/Library/Contextual Menu Items/AutomatorCMM.plugin/Contents/MacOS/AutomatorCMM
    0x17219000 - 0x1721affd com.apple.BluetoothMenu 2.1.3 (2.1.3f8) /System/Library/Contextual Menu Items/BluetoothContextualMenu.plugin/Contents/MacOS/BluetoothContextualMenu
    0x1721f000 - 0x17221fff com.apple.BezelServicesFW 1.4.925 (1.4.925) /System/Library/PrivateFrameworks/BezelServices.framework/Versions/A/BezelServi ces
    0x17228000 - 0x1722dfff com.apple.FolderActionsMenu 1.3.2 (1.3.2) <9305ccde37dcf5329fd9faea1db1f153> /System/Library/Contextual Menu Items/FolderActionsMenu.plugin/Contents/MacOS/FolderActionsMenu
    0x17234000 - 0x17235ffc +com.babylon.CMPlugin Babylon Contextual Menu 0.1 (0.9.1) <cf16e85617c88b6992eaf38762f86438> /Library/Contextual Menu Items/BabylonCMPlugin.plugin/Contents/MacOS/BabylonCMPlugin
    0x1723a000 - 0x1723bfff +com.vmware.FusionVMDKPlugIn ??? (0.0.1d2) /Library/Contextual Menu Items/FusionVMDKPlugIn.plugin/Contents/MacOS/FusionVMDKPlugIn
    0x1723f000 - 0x1723ffff +com.parallels.cmplugin ParallelsCM version 1.0 (1.0) /Library/Contextual Menu Items/ParallelsCM.plugin/Contents/MacOS/ParallelsCM
    0x17243000 - 0x17244fff +com.fribi.WSContextMenu ??? (2.2) /Library/Contextual Menu Items/WSContextMenu.plugin/Contents/MacOS/WSContextMenu
    0x172ad000 - 0x172cbfff com.apple.Mail.Syncer 3.5 (930.3) <7d8d8ca39b8535b2a585f360617d1a98> /System/Library/Frameworks/Message.framework/Versions/B/Resources/Syncer.syncsc hema/Contents/MacOS/Syncer
    0x172fe000 - 0x17311fff com.apple.syncservices.syncservicesui 4.1 (389.12) <d3c0a867aa64f0e94b3dbb710da880d1> /System/Library/PrivateFrameworks/SyncServicesUI.framework/Versions/A/SyncServi cesUI
    0x173c0000 - 0x173c5fff com.apple.audio.AppleHDAHALPlugIn 1.6.2 (1.6.2a37) /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x17551000 - 0x175befff +com.DivXInc.DivXDecoder 6.6.0 (6.6.0) /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x1762e000 - 0x176a1ff7 com.apple.Bluetooth 2.1.3 (2.1.3f8) <1e2732edbd0f2c1db1ce5ecf06aa8192> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x176ef000 - 0x17721ffc +com.stuffit.StuffItCM 13.0.3 (13.0.3) <836627efb5c9eb791c76265bd5b222a2> /Library/Contextual Menu Items/StuffItCM.plugin/Contents/MacOS/StuffItCM
    0x1773b000 - 0x17783fe3 +com.stuffit.sdk 13.0.3 (13.0.3) <eea4f8830679cddcb99bf6d49a28459a> /Library/Frameworks/StuffIt.framework/Versions/B/StuffIt
    0x177bc000 - 0x1784aff1 +com.stuffit.stuffitcore 13.0.3 (13.0.3) <0e82d419e0e4b50cf3490754d30b6bc3> /Library/Frameworks/StuffItCore.framework/Versions/A/StuffItCore
    0x70000000 - 0x700e6ff2 com.apple.audio.units.Components 1.5.2 (1.5.2) /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x8fe00000 - 0x8fe2db43 dyld 97.1 (???) <100d362e03410f181a34e04e94189ae5> /usr/lib/dyld
    0x90003000 - 0x90106fe7 com.apple.PubSub 1.0.4 (65.6) /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x90107000 - 0x90117ffc com.apple.LangAnalysis 1.6.4 (1.6.4) <bc7eb703ddc37bf85adf93e35efd3947> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x90118000 - 0x90279ff2 com.apple.CalendarStore 3.0.6 (847) /System/Library/Frameworks/CalendarStore.framework/Versions/A/CalendarStore
    0x9027a000 - 0x90298fff libresolv.9.dylib ??? (???) <9ed809256ce8913cddc3269c2e364654> /usr/lib/libresolv.9.dylib
    0x90299000 - 0x902e7ff3 com.apple.datadetectorscore 1.0.2 (52.14) <250c934af0a213e619721c3898b7638a> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x902e8000 - 0x90563fe7 com.apple.Foundation 6.5.7 (677.22) <8fe77b5d15ecdae1240b4cb604fc6d0b> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x90564000 - 0x9057bfff com.apple.datadetectors 1.0.1 (66.2) <bb08bbd97503b1d2a74f4f76848f1c40> /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/DataDetect ors
    0x9057c000 - 0x90587fff com.apple.dotMacLegacy 3.1 (246) <d335114af509bf38a7ead5274a93dfb1> /System/Library/PrivateFrameworks/DotMacLegacy.framework/Versions/A/DotMacLegac y
    0x90588000 - 0x90602ff8 com.apple.print.framework.PrintCore 5.5.3 (245.3) <98633ef67d419c1b02f56556cb4d843d> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x90603000 - 0x90670ffb com.apple.WhitePagesFramework 1.2 (122.0) /System/Library/PrivateFrameworks/WhitePages.framework/Versions/A/WhitePages
    0x90671000 - 0x907a4fff com.apple.CoreFoundation 6.5.5 (476.17) <4a70c8dbb582118e31412c53dc1f407f> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x907a5000 - 0x907c3ff3 com.apple.DirectoryService.Framework 3.5.5 (3.5.5) <f8931f64103c8a86b82e9714352f4323> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x907c4000 - 0x907e3ffa libJPEG.dylib ??? (???) <b822342bcc764c83d4557a8b67fa0c1c> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x907e4000 - 0x9086bff7 libsqlite3.0.dylib ??? (???) <eeedc8bf6881ac9f2c1954b1c8037720> /usr/lib/libsqlite3.0.dylib
    0x9086c000 - 0x90873fff com.apple.agl 3.0.9 (AGL-3.0.9) <2f39c480cfcee9358a23d61b20a6aa56> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x90874000 - 0x908bdfef com.apple.Metadata 10.5.2 (398.25) <e0572f20350523116f23000676122a8d> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x908be000 - 0x9092eff7 com.apple.iLifeMediaBrowser 2.0.2 (321) <096200840dfe3556d984bed9e9e1e4bc> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x9092f000 - 0x90a14ff3 com.apple.CoreData 100.1 (186) <50219bcb005cb15ea999a19391a8d523> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x90a15000 - 0x90a17ff5 libRadiance.dylib ??? (???) <82d606c49f5dc77231f9d0e2be9ed6ab> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x90a18000 - 0x90a27fff libsasl2.2.dylib ??? (???) <bb7971ca2f609c070f87786a93d1041e> /usr/lib/libsasl2.2.dylib
    0x90a28000 - 0x90dc5fef com.apple.QuartzCore 1.5.7 (1.5.7) <2fed2dd7565c84a0f0c608d41d4d172c> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x90dc6000 - 0x90dc9fff com.apple.help 1.1 (36) <1a25a8fbb49a830efb31d5c0a52939cd> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x90dca000 - 0x90dcfffc com.apple.KerberosHelper 1.1 (1.0) <233e4b078097b60560ab9c0490931791> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
    0x90dd0000 - 0x91dabff6 com.apple.QuickTimeComponents.component 7.6 (1290) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x91dac000 - 0x91dc8fff com.apple.IMFramework 4.0.5 (583) <a1890d82d681840490025bb50bf97cf8> /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x91dcc000 - 0x91dccffe com.apple.MonitorPanelFramework 1.2.0 (1.2.0) <1f4c10fcc17187a6f106e0a0be8236b0> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x91dcd000 - 0x91dcdffd com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91dce000 - 0x91e28ff7 com.apple.CoreText 2.0.4 (???) <f9a90116ae34a2b0d84e87734766fb3a> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x91e29000 - 0x91e35ffe libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x91e36000 - 0x91e70ffe com.apple.securityfoundation 3.0.1 (35844) <2fbb6a1177ef98350b8aefc60737ba0e> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x91e71000 - 0x91e78ffe libbsm.dylib ??? (???) <fa7ae5f1a621d9b69e7e18747c9405fb> /usr/lib/libbsm.dylib
    0x91e79000 - 0x91f29fff edu.mit.Kerberos 6.0.12 (6.0.12) <685cc018c133668d0d3ac6a1cb63cff9> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x91f2a000 - 0x91f2affd com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x91f2b000 - 0x91fddffb libcrypto.0.9.7.dylib ??? (???) <75b80bff0d5cfaf10b6b6fe982da3578> /usr/lib/libcrypto.0.9.7.dylib
    0x91fde000 - 0x91fdeffe com.apple.quartzframework 1.5 (1.5) <6865aa0aeaa584b5a54d43f2f21d6c08> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x91fdf000 - 0x91fe5fff com.apple.print.framework.Print 218.0.2 (220.1) <6c2ddea45d9cdff9a9be0666a13e2dd4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x91fe6000 - 0x91fe6fff com.apple.Carbon 136 (136) <4177916bbf70e0ddc446f94001d54c95> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x91fe7000 - 0x920b2fff com.apple.ColorSync 4.5.1 (4.5.1) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x920b3000 - 0x920c6fff com.apple.IMUtils 4.0.5 (583) <b54c55fea76255e789f607b78592c468> /System/Library/Frameworks/InstantMessage.framework/Frameworks/IMUtils.framewor k/Versions/A/IMUtils
    0x920c7000 - 0x920ebfff libxslt.1.dylib ??? (???) <0a9778d6368ae668826f446878deb99b> /usr/lib/libxslt.1.dylib
    0x920ec000 - 0x920f4fff com.apple.DiskArbitration 2.2.1 (2.2.1) <2664eeb3a4d0c95a21c089892a0ae8d0> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x920f5000 - 0x92129fef com.apple.bom 9.0.1 (136.1.1) <e1f64b0dae30d560a1204c69c14751a0> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x9212a000 - 0x921bdff3 com.apple.ApplicationServices.ATS 3.4 (???) <8c51de0ec3deaef416578cd59df38754> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x921be000 - 0x92325ff3 libSystem.B.dylib ??? (???) <d68880dfb1f8becdbdac6928db1510fb> /usr/lib/libSystem.B.dylib
    0x92326000 - 0x92328fff com.apple.securityhi 3.0 (30817) <40562b85d99118354c974e76c32fa6fb> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x92329000 - 0x92346ff7 com.apple.QuickLookFramework 1.3.1 (170.9) /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x925b0000 - 0x92616ffb com.apple.ISSupport 1.7 (38.2) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x92617000 - 0x9261efe9 libgcc_s.1.dylib ??? (???) <e280ddf3f5fb3049e674edcb109f389a> /usr/lib/libgcc_s.1.dylib
    0x9261f000 - 0x92623ffd com.apple.AOSNotification 1.0.0 (68.10) <38239776860eed3c5265d4ae3c21dd73> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
    0x92624000 - 0x92624ffa com.apple.CoreServices 32 (32) <373d6a888f9204641f313bc6070ae065> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x926ef000 - 0x926efffc com.apple.audio.units.AudioUnit 1.5 (1.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x926f0000 - 0x92f7afff com.apple.WebCore 5528 (5528.16) <7e28871fe2b59d98edd6e624d850ccb8> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x92f7b000 - 0x92f7cffc libffi.dylib ??? (???) <eaf10b99a3fbc4920b175809407466c0> /usr/lib/libffi.dylib
    0x92f7d000 - 0x930fcfff com.apple.AddressBook.framework 4.1.1 (699) <60ddae72a1df8ddbc5c53df92f372b76> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x930fd000 - 0x9317afef libvMisc.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x9317b000 - 0x931ccfeb com.apple.framework.familycontrols 1.0.3 (1.0.3) <52c7ec091f6d3dc99ec42e1e185c38a7> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x931cd000 - 0x931e5fff com.apple.openscripting 1.2.8 (???) <0129d2f750f5ddcb92f4acf8a3541952> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x931e6000 - 0x9329dff3 com.apple.QTKit 7.6 (1290) /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x9329e000 - 0x93358fe3 com.apple.CoreServices.OSServices 226.5 (226.5) <ef9945b1304495f3e8085c935f1b81e3> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x93359000 - 0x93395fff com.apple.DAVKit 3.0.6 (653) /System/Library/PrivateFrameworks/DAVKit.framework/Versions/A/DAVKit
    0x93396000 - 0x933cdfff com.apple.SystemConfiguration 1.9.2 (1.9.2) <eab546255ac099b9616df999c9359d0e> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x933ce000 - 0x93412feb com.apple.DirectoryService.PasswordServerFramework 3.0.3 (3.0.3) <29109fed9f54cbe3d3faea0603362719> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x93413000 - 0x93417fff libGIF.dylib ??? (???) <7714ae24eb64b48fa719fb99bcbe34f3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x93418000 - 0x934a4ff7 com.apple.LaunchServices 290.3 (290.3) <6f9629f4ed1ba3bb313548e6838b2888> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x934a8000 - 0x934b9ffe com.apple.CFOpenDirectory 10.5 (10.5) <4f1fe76bbb063b97eb78057f6be30d66> /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/Frameworks /CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x934ba000 - 0x934befff libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0x934bf000 - 0x934cbff9 com.apple.helpdata 1.0.1 (14.2) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x934cc000 - 0x935c0ff4 libiconv.2.dylib ??? (???) <96ff4c6f84c4a1623cb78287371cdd3f> /usr/lib/libiconv.2.dylib
    0x935c1000 - 0x936a2fff com.apple.syncservices 3.1 (389.12) <e0c2241379300f52b12b479e53797016> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
    0x936a3000 - 0x93720feb com.apple.audio.CoreAudio 3.1.1 (3.1.1) <f35477a5e23db0fa43233c37da01ae1c> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x93721000 - 0x9372dfff libbz2.1.0.dylib ??? (???) <2cb0ddb158412de1b659b531bd895a11> /usr/lib/libbz2.1.0.dylib
    0x9372e000 - 0x9376dfef libTIFF.dylib ??? (???) <d4bcc9b9c508e53849d2d46bb6900922> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x9376e000 - 0x9377dffe com.apple.DSObjCWrappers.Framework 1.3 (1.3) <182986b74247b459b2a67a47071bdc6b> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x9377e000 - 0x93796ff7 com.apple.CoreVideo 1.6.0 (20.0) <c0d869876af51283a160cd2224a23abf> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x93797000 - 0x937d5ff7 libGLImage.dylib ??? (???) <1123b8a48bcbe9cc7aa8dd8e1a214a66> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x937d6000 - 0x93873fe4 com.apple.CFNetwork 422.15.2 (422.15.2) <80851410a5592b7c3b149b2ff849bcc1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x93874000 - 0x939d9fe7 com.apple.JavaScriptCore 5528 (5528.15) <a1edf2b00622f9d833987cb333b432ac> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x939da000 - 0x93ba8ff3 com.apple.security 5.0.4 (34102) <55dda7486df4e8e1d61505be16f83a1c> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x93ba9000 - 0x93bdaffb com.apple.quartzfilters 1.5.0 (1.5.0) <92b4f39479fdcabae0d8f53febd22fad> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x93bdb000 - 0x93eb5ff3 com.apple.CoreServices.CarbonCore 786.11 (786.11) <f06fe5d92d56ac5aa52d1ba182745924> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x93eb6000 - 0x93ee8ff7 com.apple.DotMacSyncManager 1.2.3 (305) <76f2a03fbb91d701cd8c1d1dde21b531> /System/Library/PrivateFrameworks/DotMacSyncManager.framework/Versions/A/DotMac SyncManager
    0x93ee9000 - 0x93ef7ffd libz.1.dylib ??? (???) <a98b3b221a72b54faf73ded3dd7000e5> /usr/lib/libz.1.dylib
    0x93ef8000 - 0x93efdfff com.apple.CommonPanels 1.2.4 (85) <c135f02edd6b2e2864311e0b9d08a98d> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x93efe000 - 0x93efeff8 com.apple.Cocoa 6.5 (???) <a1bc9247cf65c20f1a44d0973cbe649c> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93eff000 - 0x93f04fff com.apple.backup.framework 1.0 (1.0) /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x93f05000 - 0x93f30fe7 libauto.dylib ??? (???) <2e44c523b851e8e25f05d13a48070a58> /usr/lib/libauto.dylib
    0x93f31000 - 0x93fbcfff com.apple.framework.IOKit 1.5.1 (???) <f9f5f0d070e197a832d86751e1d44545> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x93fbd000 - 0x93fc8fe7 libCSync.A.dylib ??? (???) <e6aceed359bd228f42bc1246af5919c9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x93fc9000 - 0x93ffbfff com.apple.LDAPFramework 1.4.5 (110) <8e2d9ff6233cf44cb67533625840c2af> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x93ffc000 - 0x94005fff com.apple.speech.recognition.framework 3.7.24 (3.7.24) <da2d8411921a3fd8bc898dc753b7f3ee> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x94006000 - 0x943c4fea libLAPACK.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x943cf000 - 0x943cfffd com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x943d0000 - 0x94411fe7 libRIP.A.dylib ??? (???) <5d0b5af7992e14de017f9a9c7cb05960> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x94412000 - 0x94558ff7 com.apple.ImageIO.framework 2.0.4 (2.0.4) <b407f06ff9b6893899e2e399cb65c953> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x94559000 - 0x94620ff2 com.apple.vImage 3.0 (3.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x94621000 - 0x94759fe7 com.apple.imageKit 1.0.2 (1.0) <2e354566521df8b1e3a78e9aeab5e6b4> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x9475a000 - 0x948dafef com.apple.CoreAUC 3.02.0 (3.02.0) <e9c0220542fac5c62ef3b79aa791252f> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x948db000 - 0x948e5feb com.apple.audio.SoundManager 3.9.2 (3.9.2) <df077a8048afc3075c6f2d9e7780e78e> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x948e6000 - 0x94a38ff3 com.apple.audio.toolbox.AudioToolbox 1.5.2 (1.5.2) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x94a39000 - 0x94aabfff com.apple.PDFKit 2.1.2 (2.1.2) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x94aac000 - 0x94ab1fff com.apple.DisplayServicesFW 2.0.2 (2.0.2) <97878a73074e7da4fe31ea010a5d5ae1> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x94ab2000 - 0x94adafff libcups.2.dylib ??? (???) <16bec7c6a004f744804e2281a1b1c094> /usr/lib/libcups.2.dylib
    0x94adb000 - 0x94bbbfff libobjc.A.dylib ??? (???) <400e943f9e8a678eea22a1d1205490ee> /usr/lib/libobjc.A.dylib
    0x94bbc000 - 0x94c0dff7 com.apple.HIServices 1.7.0 (???) <01b690d1f376e400ac873105533e39eb> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x94c0e000 - 0x94cb1ff3 com.apple.QuickTimeImporters.component 7.6 (1290) /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x94cb2000 - 0x94cf4fef com.apple.NavigationServices 3.5.2 (163) <72cdc9d21f6690837870923e7b8ca358> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x94cf5000 - 0x94d9cfeb com.apple.QD 3.11.54 (???) <c31150b40fcc27c195de40f0ae138666> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x94d9d000 - 0x94dfaffb libstdc++.6.dylib ??? (???) <f75e5133d72769de5ce6c06153fc65f6> /usr/lib/libstdc++.6.dylib
    0x94dfb000 - 0x94e35fe7 com.apple.coreui 1.2 (62) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x94e36000 - 0x94e75fff com.apple.CoreMediaIOServicesPrivate 15.0 (15.0) /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0x94e76000 - 0x94ec5fff com.apple.QuickLookUIFramework 1.3.1 (170.9) /System/Library/PrivateFrameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x94ec6000 - 0x94ef3feb libvDSP.dylib ??? (???) <4daafed78a471133ec30b3ae634b6d3e> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x94ef9000 - 0x94f52ff7 libGLU.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x94f53000 - 0x9510fff3 com.apple.QuartzComposer 2.1 (106.13) <40f034e8c8fd31c9081f5283dcf22b78> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x95110000 - 0x95110ffb com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x95111000 - 0x95127fff com.apple.DictionaryServices 1.0.0 (1.0.0) <7d20b8d1fb238c3e71d0fa6fda18c4f7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x95158000 - 0x9515cfff com.apple.OpenDirectory 10.5 (10.5) <46ccc9f47cedee69d1c65838c8e4f642> /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/OpenDirect ory
    0x9515d000 - 0x95185ff7 com.apple.shortcut 1 (1.0) <35cd17d0179ca839c5fb08694f3dc5ef> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x95186000 - 0x951d0fe1 com.apple.securityinterface 3.0.1 (35183) <f855cb06d2541ce544d9bcdf998b991c> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x951d1000 - 0x952b2ff7 libxml2.2.dylib ??? (???) <306036e0070330e35045650e6d9f0d05> /usr/lib/libxml2.2.dylib
    0x952b3000 - 0x952e2fe3 com.apple.AE 402.3 (402.3) <4cb9ef65cf116d6dd424f0ce98c2d015> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x952e3000 - 0x9536dfe3 com.apple.DesktopServices 1.4.7 (1.4.7) <c3591383780dd12594c37dbde59958b6> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x9536e000 - 0x95b6cfef com.apple.AppKit 6.5.6 (949.43) <a3a300499bbe4f1dfebf71d752d01916> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x95b6d000 - 0x95c41fef com.apple.WebKit 5528 (5528.16) <24ccae21ccfe5c21c2a78656983324c1> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x95c42000 - 0x95cd5fff com.apple.ink.framework 101.3 (86) <d4c85b5cafa8027fff042b84a8be71dc> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x95cd6000 - 0x95cfffff com.apple.CoreMediaPrivate 15.0 (15.0) /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x95d00000 - 0x961d1f3e libGLProgrammability.dylib ??? (???) <5d283543ac844e7c6fa3440ac56cd265> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x961d2000 - 0x961f6feb libssl.0.9.7.dylib ??? (???) <d04156c610530ca44979c899834fc24d> /usr/lib/libssl.0.9.7.dylib
    0x961f7000 - 0x96207fff com.apple.speech.synthesis.framework 3.7.1 (3.7.1) <273d96ff861dc68be659c07ef56f599a> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x96208000 - 0x96215fe7 com.apple.opengl 1.5.9 (1.5.9) <7e5048a2677b41098c84045305f42f7f> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x96216000 - 0x9621dff7 libCGATS.A.dylib ??? (???) <386dce4b28448fb86e33e06ac466f4d8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x9621e000 - 0x96356ff7 libicucore.A.dylib ??? (???) <18098dcf431603fe47ee027a60006c85> /usr/lib/libicucore.A.dylib
    0x96357000 - 0x96357ff8 com.apple.ApplicationServices 34 (34) <ee7bdf593da050bb30c7a1fc446eb8a6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x96358000 - 0x9667dfe2 com.apple.QuickTime 7.6.0 (1290) <bc0920abbbaad03f5513ac7ffbd30633> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x9667e000 - 0x966fdff5 com.apple.SearchKit 1.2.1 (1.2.1) <f28f8dd0f155a6453411a0c9b5702764> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x966fe000 - 0x96734fef libtidy.A.dylib ??? (???) <5351215b54226cc47eb1cd4b011cc2f3> /usr/lib/libtidy.A.dylib
    0x96735000 - 0x96dd5fff com.apple.CoreGraphics 1.407.2 (???) <3a91d1037afde01d1d8acdf9cd1caa14> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x96dd6000 - 0x96df1ffb libPng.dylib ??? (???) <0d6b991afc831ea06f2958e5933d33dd> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x96df2000 - 0x97202fef libBLAS.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x97203000 - 0x9750bfff com.apple.HIToolbox 1.5.4 (???) <3747086ba21ee419708a5cab946c8ba6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x9750c000 - 0x97568ff7 com.apple.htmlrendering 68 (1.1.3) <1c5c0c417891b920dfe139385fc6c155> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x97569000 - 0x9757effb com.apple.ImageCapture 5.0.1 (5.0.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0xfffe8000 - 0xfffebfff libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib
    0xffff0000 - 0xffff1780 libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib

  • AVG causes adobe flash player to crash every browser I use

    As my thread subject says, when I have the free version of AVG installed it causes adobe flash to crash any web browser I use. I have tried reinstalling everything and ran registry cleaners and nothing I do seems to fix it. If I uninstall AVG, adobe flash no longer crashes my browsers. But as soon as I put AVG back on, bam - the problem is back. Also if I uninstall adobe flash while AVG is installed, I can view any website just fine. Does anyone have any idea what this problem may be? Any help as to how to fix this will be appreciated.

    Ok, Stay in IE and we'll get it cleaned up. Go to Control Panel>Add Remove and find Adobe Download Manager and Remove it. Then just close Add/Remove and close Control Panel. Go back to Tools>Manage Add ons and do this:
    Safe Search, if it is Enabled , with the mouse, hi light it, go down where it says Enabled/Disabled and click on DISABLE.
    Do the same thing with Adobe DLM, Windows Messenger, Windows Live Sign in Helper.
    Make note of anything that IS enabled. It should only be Shockwave Flash Object, you want that ENABLED
    Click ok
    Then I want you to go to www.sunmicrosystems and download and install Java, you will see on the top left side a coffee cup (steaming:-) and the word JAVA, click on that and follow the instructions.
    After that reboot your computer and post back if any problem.
         WATCH THAT YOU DON'T PICK UP ANY TOOLBARS FROM THE JAVA DOWNLOAD, CHECK CAREFULLY
    While you are doing that, I'm going to have a coffee:-)
    Message was edited by: eidnolb  add comment

  • When i right click to customize my browser, 'customize' only shows up in gray and i cannot click it. Help?

    When i click and it shows the options for 'menu bar' or 'tabs on top' the customize button is grey and unclickable. Whats going on? And better yet, how the heck do i fix it?

    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.com/kb/Safe+Mode

  • Unclickable right-click settings menu - Mac OS X

    Hi all,
    When using Air 3+, on Mac OS X, the settings menu is unclickable. This happens when you load SWF flash content into <mx:HTML.
    The example below demonstrates the bug.
    <?xml version="1.0" encoding="utf-8"?>
    <s:WindowedApplication xmlns:fx="http://ns.adobe.com/mxml/2009"
            xmlns:s="library://ns.adobe.com/flex/spark"
            xmlns:mx="library://ns.adobe.com/flex/mx">
    <fx:Declarations>
      <!-- Place non-visual elements (e.g., services, value objects) here -->
    </fx:Declarations>
    <mx:HTML width="100%" height="100%" location="http://www.testwebcam.com/webcam.swf" />
    </s:WindowedApplication>
    Thanks in advance.

    Thanks Chris.
    We experience a similar problem but in our case it works on AIR 2.6 (Flash player 10.3) and on AIR 3 (Flash player 11) it doesn't.
    Any ideas?
    Thanks!
    Chipset Model: Intel HD Graphics
      Type: GPU
      Bus: Built-In
      VRAM (Total): 288 MB
      Vendor: Intel (0x8086)
      Device ID: 0x0046
      Revision ID: 0x0018
      gMux Version: 1.9.21
      Chipset Model: NVIDIA GeForce GT 330M
      Type: GPU
      Bus: PCIe
      PCIe Lane Width: x16
      VRAM (Total): 512 MB
      Vendor: NVIDIA (0x10de)
      Device ID: 0x0a29
      Revision ID: 0x00a2
      ROM Revision: 3560
      gMux Version: 1.9.21
      Displays:
    Color LCD:
      Resolution: 1440 x 900
      Pixel Depth: 32-Bit Color (ARGB8888)
      Main Display: Yes
      Mirror: Off
      Online: Yes
      Built-In: Yes
    SyncMaster:
      Resolution: 1280 x 1024 @ 60 Hz
      Pixel Depth: 32-Bit Color (ARGB8888)
      Mirror: Off
      Online: Yes
      Rotation: Supported
      Adapter Type: Mini DisplayPort To VGA Adapter
      Adapter Firmware Version:  1.03

  • I cannot right click without the browser freezing for at least 3-5 seconds. I disabled add-ons and reset firefox - same issue.

    I can't right click anywhere in the browser without the browser freezing for at least 3-5 seconds.
    I disabled all the add-ons.
    I reset firefox.
    issue is still there.

    Create a new profile as a test to check if your current profile is causing the problems.
    See "Basic Troubleshooting: Make a new profile":
    *https://support.mozilla.org/kb/Basic+Troubleshooting#w_8-make-a-new-profile
    There may be extensions and plugins installed by default in a new profile, so check that in "Tools > Add-ons > Extensions & Plugins" in case there are still problems.
    If the new profile works then you can transfer some files from the old profile to that new profile, but be careful not to copy corrupted files.
    See:
    *http://kb.mozillazine.org/Transferring_data_to_a_new_profile_-_Firefox

  • Right-click, drop-down menus in Firefox 15 cause entire Mac OS 10.7.4 system to hang, forcing manual reboot.

    I bought a new MacBook Pro.
    I am running Mac OS 10.7.4 with Firefox 15. Every time I right click or try to use a drop-down menu in Firefox, it causes the entire system to hang, forcing a manual reboot.
    No crash reports are available as the Firefox does not actually crash.
    I have tried
    1.) Starting Firefox in safe mode
    2.) Disabling all the add-ons
    3.) Resetting Firefox
    4.) Removing and re-installing Firefox
    5.) Disabling hardware acceleration
    The problem still occurs.
    This is critical a critical issue as I have been using Firefox's Zotero plugin to write my PhD dissertation which is about 50% complete and now I cannot use Firefox or the Zotero plugin and have about 800 references I do not want to have to manually re-enter!! Also it is preventing me from continuing work on the dissertation as I am unable to insert references, and I have submit this thing by March!!!!

    Ok, further developments. Still can't get Firefox to work; it makes Lion hang and I have to force a reboot. I tried using terminal to open FF's profile manager, delete my old profile and make a new one. Same problem.
    I tried making a new user account in Mac OS, and doing another fresh install of Firefox. It worked! I was able to use drop down menus and right click without crashing the system!
    However, as soon as I installed the Zotero plugin... the same issue started occurring again.
    Dear programmers, please help me. It will literally take me weeks of work to re-do all of my citations using a different software or manually. There must be a way to fix this problem!

  • Why can't I open links in a new tab with a right click anymore? And why has the toolbar removed the refresh button?

    Several basic functions seem to be have vanished from Firefox. I can no longer open links in new tabs with a right click, and the refresh browser button (and back/forward navigation buttons, etc) do not appear in with consistency anymore. How do I get these basic navigational tools back? (most recent updates are installed)
    == This happened ==
    Not sure how often
    == 7 July 2010

    * Make sure that you have the "Navigation Toolbar" and the "Bookmarks Toolbar" visible: "View > Toolbars"
    * If items are missing then see if you can find them in the "View > Toolbars > Customize" window
    * If you see the item in the Customize window then drag it back from the Customize window to one of the toolbars.
    * If, in "View > Toolbars > Customize", you do not see that item then click the "Restore Default Set" button
    See also [[Back and forward or other toolbar buttons are missing]] and [[Navigation Toolbar items]]
    See http://kb.mozillazine.org/Toolbar_customization

Maybe you are looking for

  • Sound File into AIFF file, 8 Bits, 8 Khz.

    Write a small program that takes any sound file and converts it to: AIFF file, 8-bit, and 8-kHz, and a single channel. Explain each step plese.

  • Very simple question, i just need accurate instructions.

    I want to download the : sun java workshop 1.0 1.Sent me the url where I'll find the program. 2.Tell me what I have to do when I get there and first of all, the exact link which I must use. 3.Infor me, if there is any pdf or word file which I have to

  • BPEL with Oracle E-business suite 11.5.10

    Hi, We are in the process of testing BPEL with Oracle E-Business suite 11.5.10. What is the best document for configuring these two components. Thanks Giri

  • Printing Basics Question

    I'm trying to figure out the basics of printing in SGD and was hoping someone could shed a bit more light on it for me. First off, I have printing working. I have Windows 2003 App Servers, fronted by a SGD on Solaris 10 and Solaris 10 clients using w

  • Purity rules to control side effects

    I've read that: 1. When called from a SELECT of a parallelized DML statement, the function cannot modify any database tables. 2. When called from a DML statement, the function cannot query or modify any database tables modified by that statement. And