Widgets Do Not Function in Browser, Only in Preview Mode.

I created a lightbox and a tabbed section on separate pages, and the wodgets do not function when I test in browser or or open html conversions in a browser. They test fine in preview mode.
Bill
Actually, the problem seems to be Explorer. Works fine in Safari. Frequently have to insert fixes for special problems in IE. Are there any fixes for IE's peculiar problems?
Also works fine in Mozilla FF & Chrome. Mulitple problems in IE with display, and Widgets are completely non-functional.

I am referring to the attached files, which are a Muse site conversion to html. I have had problems in the past emailing web info, so if you want me to ftp the files somewhere, I can do that. These pages have not been published yet.
The two pages in question are in the file. If you open them in IE, the widgets do not function. In the index page, the text in the New & Events area to the right are Lightbox links. In the cottages page, you can see the slide show in the main middle are and the tabs on the right in the shadow box.
The side show works off and on. The lightbox (index) and tabs (cottages) do not function at all. There are no error messages. IE does not indicate working links (no finger).
As I believe you know, IE has problems displaying things that other browsers do not. Dreamweaver templates, for example, include a blockquote instruction for html5 that is needed for IE to display certain items properly. Since the pages will function normally in Safari, Mozilla FF and Google Chrome, I conclude there is a problem with IE.
Hope this helps.
Thanks,
William Gunn

Similar Messages

  • Function Module working only in debug mode

    Hi all,
    The following Function Module works only in debug mode. The purpose of this FM is to create a notification and to put it in progress status. If I put a breakpoint before "CALL FUNCTION 'BAPI_ALM_NOTIF_PUTINPROGRESS'" it works. If I execute this FM without putting a breakpoint at that place it creates the notification but doesnt put it in progress status.
    In other words, the last BAPI call doesnot work if I dont put a breakpoint before.
    Can somebody help me to find out where is the problem?
    Thanks,
    Younes
    FUNCTION ZFM_CREATE_NOTIF_IN_PROCESS.
    ""Local interface:
    *"  IMPORTING
    *"     VALUE(NOTIFTYP) TYPE  CHAR2
    *"     VALUE(NOTIFHEADER) TYPE  BAPI2080_NOTHDRI
    *"  EXPORTING
    *"     VALUE(NOTIFNUMBER) TYPE  CHAR12
    *"     VALUE(NOTIFCURSTATUS) TYPE  CHAR40
    DATA: gs_bapi2080_nothdre TYPE bapi2080_nothdre,
          gt_return TYPE TABLE OF bapiret2.
    The notification is created with a temporary number
    CALL FUNCTION 'BAPI_ALM_NOTIF_CREATE'
      EXPORTING
        notif_type         = NOTIFTYP
        notifheader        = NOTIFHEADER
      IMPORTING
        notifheader_export = gs_bapi2080_nothdre
      TABLES
        return             = gt_return.
    READ TABLE gt_return TRANSPORTING NO FIELDS WITH KEY type = 'E'.
    CHECK sy-subrc IS NOT INITIAL.
    *The notication will be saved with a number which isnt temporary
    CALL FUNCTION 'BAPI_ALM_NOTIF_SAVE'
      EXPORTING
        number      = gs_bapi2080_nothdre-notif_no
      IMPORTING
        notifheader = gs_bapi2080_nothdre
      TABLES
        return      = gt_return.
    READ TABLE gt_return TRANSPORTING NO FIELDS WITH KEY type = 'E'.
    CHECK sy-subrc IS NOT INITIAL.
    CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.
    The Notif is already created, it will be put in progress status
    NOTIFNUMBER = gs_bapi2080_nothdre-notif_no.
       CALL FUNCTION 'BAPI_ALM_NOTIF_PUTINPROGRESS'
            EXPORTING
              NUMBER             = NOTIFNUMBER
              LANGU              = SY-LANGU
           IMPORTING
             SYSTEMSTATUS       = NOTIFCURSTATUS
           TABLES
             RETURN             = gt_return.

    Hi Emmanuel,
    Now I get your problem: you want to wait to have the commit finished! The call to BAPI_TRANSACTION_COMMIT has an optional parameter 'WAIT' which is space by default which causes only a commit. When you set this parameter to 'X' it will do a commit work and wait.
    This should solve your problem!
    Regards,
    John.

  • My Apple album discovery widget does not function correctly and I needed a little help from an expert

    Hi,
    I can't get my official iTunes album discovery widget from Apple.com to play audio on my website.  If you hit view, it will take you to the iTunes page, which is very good, but if you press play on my website where I have the widget displayed, the buttons for play and stop move and seem to function, but no audio.  I contacted Apple app software, but they said they are not responsible for their own widgets and to contact the Apple Support Community.  I even put major label acts into the widget and they did not work either and I am thinking this could be a widget that just never worked correctly in the first place.  I think it just needs a tweak to fix it in the code, but I can't figure anymore out. 
    http://widgets.itunes.apple.com/builder/  this is the link to get to Apple's widgets for itunes
    this is my link on the website: http://www.woodshampoo.net/    just scroll down on the music page to check it out
    Thanks,
    missingsock

    Hey missingrock,
    Hope u get round to following this up. I had the same problem and got a quick response from sending message via phg console. They told me to install QuickTime Player and it worked fine for me. That is if your country has an iTunes Music Store.
    Good Luck

  • Email does not function while browsing

    If I am web-browsing, and try to email from an internal link, I get a dialog box that states that there is no associated email program and the operation fails. The only way I can email is to copy the link, go back to my home page email, (Yahoo), and paste it into the address bar. Why is this occurring and how can I get Firefox to recognize the email program?

    You can set Firefox up to use Yahoo mail as Firefox's mail client, for details see [[changing the e-mail program used by Firefox]]

  • Applet not showing in browser/only getting a grey box

    Hell to all....
    I am using a trial version of MS J++ and every time i execute to the browser i dont see my output all i get is a lil grey box on left side with header rules (<hr> tage in HTML) surounding the box. Can anyone help me out???
    if you need my code i will post it.
    Thanks in advance!

    OK ABUSE, check this out
    this is what i'm trying to do....The boss just wants me to connect to our database...and that's it....all i want to do is to see if i can connect to our database....so all the code is suspose to do is say database connected if it did and if it didn't then it should say connection failure...here is the code once again this is the code and that's it....
    import java.awt.*;
    import java.awt.event.*;
    import java.sql.*;
    import java.applet.Applet;
    public class Test extends Applet
    public static final String DB_URL = "jdbc:microsoft:sqlserver://<IP HOST>";
    private Connection conn;
    public void init(){
         try {
              DriverManager.registerDriver(new com.microsoft.jdbc.sqlserver.SQLServerDriver() );
              //Class.forName("com.microsoft.jdbc.sqlserver.SQLServerDriver").newInstance();
              this.conn = DriverManager.getConnection(DB_URL, "user", "pass");
              Statement stmt = conn.createStatement();
         catch (SQLException e){
              System.out.println("Cannot open database connection: " + e.getMessage());
         System.out.println("Connected to database");
    hope you understand what i'm trying to do....

  • Note function on pdfs opened in preview

    When I add notes to pdfs opened in preview, they are placed in the middle of the page and text. Is there a way to move these around so that they don't cover the text?

    Ah, you are right. I left the highlight function on, so preview wasn't allowing me to drag the notes.

  • IPhoto does not appear on desktop, only in Dashboard mode

    Hey guys,
    Has anyone had this problem - the iPhoto window does not appear on the desktop, and can only be seen in Dashboard mode. Once that tiny window in the Dashboard mode is clicked, the program hides.
    I hope to hear from someone soon about this. Thank you!

    Are you using separate desktops with Spaces? If so, try disable it and see if the window shows up. Otherwise you can try trash the com.apple.iphoto.plist file from the home / library / preferences folder
    Regards
    TD

  • Safari not working keeps crashing (only in safe mode does it work)

    I dont understand why my safari doesnt load any more... i keep getting an error box saying that it cant load. below is the message i get from the error log. any ideas i cant even find a fresh install of just safari for my MAC. need help please...
    Process:         Safari [537]
    Path:            /Applications/Safari.app/Contents/MacOS/Safari
    Identifier:      com.apple.Safari
    Version:         7.0 (9537.71)
    Build Info:      WebBrowser-7537071000000000~3
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [230]
    Responsible:     Safari [537]
    User ID:         501
    Date/Time:       2014-01-04 16:43:56.504 -0500
    OS Version:      Mac OS X 10.9.1 (13B42)
    Report Version:  11
    Anonymous UUID:  A15F284E-6912-E503-6035-81DAB4547C78
    Crashed Thread:  12
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x000000010737d400
    External Modification Warnings:
    Thread creation by external task.
    VM Regions Near 0x10737d400:
    -->
        __TEXT                 00000001084b7000-00000001084b8000 [    4K] r-x/rwx SM=COW  /Applications/Safari.app/Contents/MacOS/Safari
    Application Specific Information:
    Process Model:
    Multiple Web Processes
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   com.apple.Safari.framework              0x0000000108510a12 +[BookmarksViewController bottomGradientHeight] + 0
    1   com.apple.Safari.framework              0x0000000108586507 -[BrowserWindowControllerMac windowDidLoad] + 482
    2   com.apple.AppKit                        0x000000010cb9535c -[NSWindowController _windowDidLoad] + 450
    3   com.apple.Safari.framework              0x00000001087b8f8d -[WindowController _windowDidLoad] + 43
    4   com.apple.AppKit                        0x000000010cb7c076 -[NSWindowController window] + 110
    5   com.apple.Safari.framework              0x0000000108586d3a -[BrowserWindowControllerMac showWindow:] + 50
    6   com.apple.AppKit                        0x000000010cc494c5 -[NSDocument showWindows] + 100
    7   com.apple.Safari.framework              0x00000001085550ab -[BrowserDocument showWindows] + 39
    8   com.apple.AppKit                        0x000000010cc48028 -[NSDocumentController openUntitledDocumentAndDisplay:error:] + 458
    9   com.apple.AppKit                        0x000000010cc47e1f -[NSDocumentController newDocument:] + 36
    10  com.apple.Safari.framework              0x00000001084c7441 -[AppController applicationOpenUntitledFile:] + 22
    11  com.apple.AppKit                        0x000000010cb76e90 -[NSApplication _doOpenUntitled] + 447
    12  com.apple.AppKit                        0x000000010ca99f41 __58-[NSApplication(NSAppleEventHandling) _handleAEOpenEvent:]_block_invoke + 254
    13  com.apple.AppKit                        0x000000010ca99cd0 __95-[NSPersistentUIManager restoreAllPersistentStateRegisteringAsReadyWhenDone:completionHandler:]_block_i nvoke538 + 37
    14  com.apple.AppKit                        0x000000010ca99c63 __78-[NSDocumentController(NSInternal) _autoreopenDocumentsWithCompletionHandler:]_block_invoke_2 + 140
    15  com.apple.AppKit                        0x000000010ca9984d -[NSDocumentController(NSInternal) _autoreopenDocumentsWithCompletionHandler:] + 746
    16  com.apple.AppKit                        0x000000010ca91c25 -[NSPersistentUIRestorer finishedRestoringWindowsWithZOrder:completionHandler:] + 1714
    17  com.apple.AppKit                        0x000000010c9060a9 -[NSPersistentUIRestorer restoreStateFromRecords:usingDelegate:completionHandler:] + 2110
    18  com.apple.AppKit                        0x000000010c905749 -[NSPersistentUIManager restoreAllPersistentStateRegisteringAsReadyWhenDone:completionHandler:] + 398
    19  com.apple.AppKit                        0x000000010c904a46 -[NSApplication _reopenWindowsAsNecessaryIncludingRestorableState:registeringAsReady:completion Handler:] + 398
    20  com.apple.AppKit                        0x000000010c904789 -[NSApplication(NSAppleEventHandling) _handleAEOpenEvent:] + 557
    21  com.apple.AppKit                        0x000000010c9041eb -[NSApplication(NSAppleEventHandling) _handleCoreEvent:withReplyEvent:] + 242
    22  com.apple.Foundation                    0x000000010ae68eaa -[NSAppleEventManager dispatchRawAppleEvent:withRawReply:handlerRefCon:] + 294
    23  com.apple.Foundation                    0x000000010ae68d1d _NSAppleEventManagerGenericHandler + 106
    24  com.apple.AE                            0x000000010f932e1f aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned int, unsigned char*) + 381
    25  com.apple.AE                            0x000000010f932c32 dispatchEventAndSendReply(AEDesc const*, AEDesc*) + 31
    26  com.apple.AE                            0x000000010f932b36 aeProcessAppleEvent + 315
    27  com.apple.HIToolbox                     0x000000010e4c15f1 AEProcessAppleEvent + 56
    28  com.apple.AppKit                        0x000000010c9000f6 _DPSNextEvent + 1026
    29  com.apple.AppKit                        0x000000010c8ff8db -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122
    30  com.apple.Safari.framework              0x0000000108519ec0 -[BrowserApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 161
    31  com.apple.AppKit                        0x000000010c8f39cc -[NSApplication run] + 553
    32  com.apple.AppKit                        0x000000010c8de803 NSApplicationMain + 940
    33  com.apple.Safari.framework              0x00000001086ebf3d SafariMain + 267
    34  libdyld.dylib                           0x000000010ef675fd start + 1
    Thread 1:
    0   libsystem_kernel.dylib                  0x000000010f101e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x000000010f20df08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x000000010f210fb9 start_wqthread + 13
    Thread 2:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x000000010f102662 kevent64 + 10
    1   libdispatch.dylib                       0x000000010ef3243d _dispatch_mgr_invoke + 239
    2   libdispatch.dylib                       0x000000010ef32152 _dispatch_mgr_thread + 52
    Thread 3:
    0   libsystem_kernel.dylib                  0x000000010f101e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x000000010f20df08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x000000010f210fb9 start_wqthread + 13
    Thread 4:: WebCore: IconDatabase
    0   libsystem_kernel.dylib                  0x000000010f101716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x000000010f20ec3b _pthread_cond_wait + 727
    2   com.apple.WebCore                       0x0000000112545c0b WebCore::IconDatabase::syncThreadMainLoop() + 507
    3   com.apple.WebCore                       0x000000011254279f WebCore::IconDatabase::iconDatabaseSyncThread() + 303
    4   com.apple.JavaScriptCore                0x0000000108f920af ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib                 0x000000010f20c899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x000000010f20c72a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x000000010f210fc9 thread_start + 13
    Thread 5:
    0   libsystem_kernel.dylib                  0x000000010f101e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x000000010f20df08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x000000010f210fb9 start_wqthread + 13
    Thread 6:
    0   libsystem_kernel.dylib                  0x000000010f101e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x000000010f20df08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x000000010f210fb9 start_wqthread + 13
    Thread 7:
    0   libsystem_kernel.dylib                  0x000000010f101e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x000000010f20df08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x000000010f210fb9 start_wqthread + 13
    Thread 8:
    0   libsystem_kernel.dylib                  0x000000010f101e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x000000010f20df08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x000000010f210fb9 start_wqthread + 13
    Thread 9:
    0   libsystem_kernel.dylib                  0x000000010f101e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x000000010f20df08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x000000010f210fb9 start_wqthread + 13
    Thread 10:: com.apple.CoreAnimation.render-server
    0   libsystem_kernel.dylib                  0x000000010f0fda1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x000000010f0fcd18 mach_msg + 64
    2   com.apple.QuartzCore                    0x000000010a0943b7 CA::Render::Server::server_thread(void*) + 195
    3   com.apple.QuartzCore                    0x000000010a0942ed thread_fun + 25
    4   libsystem_pthread.dylib                 0x000000010f20c899 _pthread_body + 138
    5   libsystem_pthread.dylib                 0x000000010f20c72a _pthread_start + 137
    6   libsystem_pthread.dylib                 0x000000010f210fc9 thread_start + 13
    Thread 11:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x000000010f0fda1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x000000010f0fcd18 mach_msg + 64
    2   com.apple.CoreFoundation                0x000000010ba2f315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x000000010ba2e939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x000000010ba2e275 CFRunLoopRunSpecific + 309
    5   com.apple.Foundation                    0x000000010aeae907 +[NSURLConnection(Loader) _resourceLoadLoop:] + 348
    6   com.apple.Foundation                    0x000000010aeae70b __NSThread__main__ + 1318
    7   libsystem_pthread.dylib                 0x000000010f20c899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x000000010f20c72a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x000000010f210fc9 thread_start + 13
    Thread 12 Crashed:
    0   ???                                     0x000000010a83e598 0 + 4471383448
    Thread 12 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x0000000000000054  rcx: 0x000000010a73e000  rdx: 0x0000000000000054
      rdi: 0x0000000000000000  rsi: 0x000000010a684000  rbp: 0x000000010a73fff0  rsp: 0x000000010a73ff70
       r8: 0x0000000000000000   r9: 0x0000000000000000  r10: 0x0000000000000000  r11: 0x0000000000000000
      r12: 0x000000010737d400  r13: 0x0000000000000000  r14: 0x0000000000000000  r15: 0x000000010a684000
      rip: 0x000000010a83e598  rfl: 0x0000000000010202  cr2: 0x000000010737d400
    Logical CPU:     0
    Error Code:      0x00000004
    Trap Number:     14
    Binary Images:
           0x1084b7000 -        0x1084b7ffd  com.apple.Safari (7.0 - 9537.71) <1FBFDDAA-B0FF-30F5-B819-9175B219593D> /Applications/Safari.app/Contents/MacOS/Safari
           0x1084bd000 -        0x1089c3ff3  com.apple.Safari.framework (9537 - 9537.73.11) <D3F772B3-4AD9-32F1-A0CB-CF307FF1B283> /System/Library/PrivateFrameworks/Safari.framework/Versions/A/Safari
           0x108db0000 -        0x108db1ff7  libSystem.B.dylib (1197.1.1) <BFC0DC97-46C6-3BE0-9983-54A98734897A> /usr/lib/libSystem.B.dylib
           0x108db8000 -        0x108dd6ff7  com.apple.Accounts (113 - 113) <FEB37642-C973-3CD2-B279-142492266A16> /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts
           0x108df5000 -        0x108df6fff  libquit.dylib (161) <12162287-B8C8-36D0-B000-ADC28731FC66> /usr/lib/libquit.dylib
           0x108dfc000 -        0x108e19ff7  com.apple.framework.Apple80211 (9.0 - 900.47) <C897AFE6-DD73-387D-816A-67252A564207> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
           0x108e27000 -        0x108e27fff  com.apple.Carbon (154 - 157) <45A9A40A-78FF-3EA0-8FAB-A4F81052FA55> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
           0x108e2d000 -        0x108e2dfff  com.apple.Cocoa (6.8 - 20) <E90E99D7-A425-3301-A025-D9E0CD11918E> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
           0x108e30000 -        0x108e8eff7  com.apple.corelocation (1486.17 - 1486.24) <9FBB29F0-E000-3190-A96C-9EAA5CCCA2A0> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
           0x108ed1000 -        0x108edbff7  com.apple.CrashReporterSupport (10.9 - 538) <B487466B-3AA1-3854-A808-A61F049FA794> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
           0x108eea000 -        0x108f54ff7  com.apple.framework.IOKit (2.0.1 - 907.1.13) <C1E95F5C-B79B-31BE-9F2A-1B25163C1F16> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
           0x108f89000 -        0x1092ffffa  com.apple.JavaScriptCore (9537 - 9537.73.10) <4A4AE781-6F76-3412-B0E5-67E0BAEE22A2> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
           0x1093f8000 -        0x1095b0ff3  libicucore.A.dylib (511.27) <003B6C21-CBD1-3486-9A1D-030ADF5FA061> /usr/lib/libicucore.A.dylib
           0x10965b000 -        0x109745fff  libsqlite3.dylib (158) <00269BF9-43BE-39E0-9C85-24585B9923C8> /usr/lib/libsqlite3.dylib
           0x10975f000 -        0x109790ff7  libtidy.A.dylib (15.12) <BF757E3C-733A-3B6B-809A-A3949D46466E> /usr/lib/libtidy.A.dylib
           0x1097a6000 -        0x1097b3ff7  libxar.1.dylib (202) <5572AA71-E98D-3FE1-9402-BB4A84E0E71E> /usr/lib/libxar.1.dylib
           0x1097bc000 -        0x1097cafff  com.apple.opengl (9.0.83 - 9.0.83) <AF467644-7B1D-327A-AC47-CECFCAF61990> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
           0x1097d7000 -        0x109818fff  com.apple.PerformanceAnalysis (1.47 - 47) <784ED7B8-FAE4-36CE-8C76-B7D300316C9F> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
           0x10a06d000 -        0x10a209ff7  com.apple.QuartzCore (1.8 - 332.0) <994D1E0A-64B6-398C-B9A2-C362F02DE943> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
           0x10a2e4000 -        0x10a53cff1  com.apple.security (7.0 - 55471) <233831C5-C457-3AD5-AFE7-E3E2DE6929C9> /System/Library/Frameworks/Security.framework/Versions/A/Security
           0x10a68b000 -        0x10a6feffb  com.apple.securityfoundation (6.0 - 55122) <119D1C53-B292-3378-AEE1-A3B1FB02F43F> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
           0x10a742000 -        0x10a770ff7  com.apple.securityinterface (9.0 - 55047) <0346D8A9-2CAA-38F3-A741-5FBA5E9F1E7C> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
           0x10a79f000 -        0x10a802ff7  com.apple.SystemConfiguration (1.13 - 1.13) <F05F4149-981B-380B-8F50-51CE804BBB89> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
           0x10a843000 -        0x10a979ffa  com.apple.WebKit (9537 - 9537.73.11) <5F583526-8D71-30AD-B97C-56EC51E94E85> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
           0x10aa6e000 -        0x10ac5eff5  com.apple.WebKit2 (9537 - 9537.73.11) <FE8D26BB-F8B7-37D6-94A0-D82161541F30> /System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/WebKit2
           0x10ae47000 -        0x10b146fff  com.apple.Foundation (6.9 - 1056) <D608EDFD-9634-3573-9B7E-081C7D085F7A> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
           0x10b387000 -        0x10b534f27  libobjc.A.dylib (551.1) <AD7FD984-271E-30F4-A361-6B20319EC73B> /usr/lib/libobjc.A.dylib
           0x10b558000 -        0x10b5aafff  libc++.1.dylib (120) <4F68DFC5-2077-39A8-A449-CAC5FDEE7BDE> /usr/lib/libc++.1.dylib
           0x10b606000 -        0x10b6c8ff1  com.apple.CoreText (352.0 - 367.15) <E5C70FC8-C861-39B8-A491-595E5B55CFC8> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
           0x10b737000 -        0x10b8a7ff6  com.apple.CFNetwork (673.0.3 - 673.0.3) <42CFC3DB-35C8-3652-AF37-4BCC73D8BDEF> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
           0x10b9b0000 -        0x10b9b0fff  com.apple.ApplicationServices (48 - 48) <3E3F01A8-314D-378F-835E-9CC4F8820031> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
           0x10b9b7000 -        0x10b9b8ff7  libDiagnosticMessagesClient.dylib (100) <4CDB0F7B-C0AF-3424-BC39-495696F0DB1E> /usr/lib/libDiagnosticMessagesClient.dylib
           0x10b9be000 -        0x10bba3ff7  com.apple.CoreFoundation (6.9 - 855.11) <E22C6A1F-8996-349C-905E-96C3BBE07C2F> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
           0x10bd1a000 -        0x10be1ffff  com.apple.ImageIO.framework (3.3.0 - 1038) <2C058216-C6D8-3380-A7EA-92A3F04520C1> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
           0x10be8c000 -        0x10c7a805f  com.apple.CoreGraphics (1.600.0 - 599.7) <7D0FD5A7-A061-39BA-8E00-723825D2C4DD> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
           0x10c8d7000 -        0x10c8d7fff  com.apple.CoreServices (59 - 59) <7A697B5E-F179-30DF-93F2-8B503CEEEFD5> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
           0x10c8dc000 -        0x10d450ff7  com.apple.AppKit (6.9 - 1265) <0E9FC8BF-DA3C-34C5-91CC-12BC922B5F01> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
           0x10dbd9000 -        0x10dc08ff5  com.apple.GSS (4.0 - 2.0) <ED98D992-CC14-39F3-9ABC-8D7F986487CC> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
           0x10dc2e000 -        0x10dc3fff7  libz.1.dylib (53) <42E0C8C6-CA38-3CA4-8619-D24ED5DD492E> /usr/lib/libz.1.dylib
           0x10dc4a000 -        0x10dc4cfff  com.apple.OAuth (25 - 25) <22D42C60-CA67-31D7-A4A4-AFD8F35408D7> /System/Library/PrivateFrameworks/OAuth.framework/Versions/A/OAuth
           0x10dc52000 -        0x10dc8aff7  com.apple.RemoteViewServices (2.0 - 94) <3F34D630-3DDB-3411-BC28-A56A9B55EBDA> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
           0x10dcc9000 -        0x10de1cff7  com.apple.audio.toolbox.AudioToolbox (1.9 - 1.9) <A0B7B007-9BD8-30E2-B644-47856DA29FEE> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
           0x10deb6000 -        0x10deb6ffd  com.apple.audio.units.AudioUnit (1.9 - 1.9) <6E89F3CB-CC41-3728-9F9A-FDFC151E8261> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
           0x10debd000 -        0x10e105fff  com.apple.CoreData (107 - 481) <E5AFBA07-F73E-3B3F-9099-F51224EE8EAD> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
           0x10e22e000 -        0x10e292ff3  com.apple.datadetectorscore (5.0 - 354.0) <9ACF24B8-3268-3134-A5BC-D72C9371A195> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
           0x10e2d6000 -        0x10e406ff7  com.apple.desktopservices (1.8 - 1.8) <09DC9BB8-432F-3C7A-BB08-956A2DDFC2DE> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
           0x10e486000 -        0x10e730ffd  com.apple.HIToolbox (2.1 - 696) <1CFFF37B-C392-3088-B0A4-C08C55B2AF8F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
           0x10e88e000 -        0x10e896ff7  com.apple.speech.recognition.framework (4.2.4 - 4.2.4) <98BBB3E4-6239-3EF1-90B2-84EA0D3B8D61> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
           0x10e8a7000 -        0x10e8e9ff7  libauto.dylib (185.5) <F45C36E8-B606-3886-B5B1-B6745E757CA8> /usr/lib/libauto.dylib
           0x10e901000 -        0x10e9e8ff7  libxml2.2.dylib (26) <A1DADD11-89E5-3DE4-8802-07186225967F> /usr/lib/libxml2.2.dylib
           0x10ea20000 -        0x10eb04fff  com.apple.coreui (2.1 - 231) <432DB40C-6B7E-39C8-9FB5-B95917930056> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
           0x10ebcb000 -        0x10ec1cff3  com.apple.audio.CoreAudio (4.2.0 - 4.2.0) <BF4C2FE3-8BC8-30D1-8347-2A7221268794> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
           0x10ec45000 -        0x10ec4afff  com.apple.DiskArbitration (2.6 - 2.6) <F8A47F61-83D1-3F92-B7A8-A169E0D187C0> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
           0x10ec5a000 -        0x10ec5bfff  liblangid.dylib (117) <9546E641-F730-3AB0-B3CD-E0E2FDD173D9> /usr/lib/liblangid.dylib
           0x10ec60000 -        0x10ec72ff7  com.apple.MultitouchSupport.framework (245.13 - 245.13) <D5E7416D-45AB-3690-86C6-CC4B5FCEA2D2> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
           0x10ec81000 -        0x10ec99ff7  com.apple.GenerationalStorage (2.0 - 160.2) <79629AC7-896F-3302-8AC1-4939020F08C3> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
           0x10ecaf000 -        0x10ecbcfff  com.apple.Sharing (132.2 - 132.2) <F983394A-226D-3244-B511-FA51FDB6ADDA> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
           0x10eccf000 -        0x10ed92ff7  com.apple.backup.framework (1.5.1 - 1.5.1) <FC4E949B-B41A-3F21-8AF8-AEDB13146FEA> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
           0x10ee1a000 -        0x10ee35ff7  libCRFSuite.dylib (34) <FFAE75FA-C54E-398B-AA97-18164CD9789D> /usr/lib/libCRFSuite.dylib
           0x10ee45000 -        0x10ee6eff7  libc++abi.dylib (48) <8C16158F-CBF8-3BD7-BEF4-022704B2A326> /usr/lib/libc++abi.dylib
           0x10ee81000 -        0x10ee85ff7  libcache.dylib (62) <BDC1E65B-72A1-3DA3-A57C-B23159CAAD0B> /usr/lib/system/libcache.dylib
           0x10ee8d000 -        0x10ee97fff  libcommonCrypto.dylib (60049) <8C4F0CA0-389C-3EDC-B155-E62DD2187E1D> /usr/lib/system/libcommonCrypto.dylib
           0x10eea7000 -        0x10eeaefff  libcompiler_rt.dylib (35) <4CD916B2-1B17-362A-B403-EF24A1DAC141> /usr/lib/system/libcompiler_rt.dylib
           0x10eeba000 -        0x10eec1ff3  libcopyfile.dylib (103) <5A881779-D0D6-3029-B371-E3021C2DDA5E> /usr/lib/system/libcopyfile.dylib
           0x10eecf000 -        0x10ef1dfff  libcorecrypto.dylib (161.1) <F3973C28-14B6-3006-BB2B-00DD7F09ABC7> /usr/lib/system/libcorecrypto.dylib
           0x10ef2f000 -        0x10ef49fff  libdispatch.dylib (339.1.9) <46878A5B-4248-3057-962C-6D4A235EEF31> /usr/lib/system/libdispatch.dylib
           0x10ef64000 -        0x10ef67ff7  libdyld.dylib (239.3) <62F4D752-4089-31A8-8B73-B95A68893B3C> /usr/lib/system/libdyld.dylib
           0x10ef70000 -        0x10ef70ff7  libkeymgr.dylib (28) <3AA8D85D-CF00-3BD3-A5A0-E28E1A32A6D8> /usr/lib/system/libkeymgr.dylib
           0x10ef79000 -        0x10ef80ff7  liblaunch.dylib (842.1.4) <FCBF0A02-0B06-3F97-9248-5062A9DEB32C> /usr/lib/system/liblaunch.dylib
           0x10ef8d000 -        0x10ef92fff  libmacho.dylib (845) <1D2910DF-C036-3A82-A3FD-44FF73B5FF9B> /usr/lib/system/libmacho.dylib
           0x10ef9d000 -        0x10ef9fff7  libquarantine.dylib (71) <7A1A2BCB-C03D-3A25-BFA4-3E569B2D2C38> /usr/lib/system/libquarantine.dylib
           0x10efa8000 -        0x10efa9ffb  libremovefile.dylib (33) <3543F917-928E-3DB2-A2F4-7AB73B4970EF> /usr/lib/system/libremovefile.dylib
           0x10efaf000 -        0x10efc0ff7  libsystem_asl.dylib (217.1.4) <655FB343-52CF-3E2F-B14D-BEBF5AAEF94D> /usr/lib/system/libsystem_asl.dylib
           0x10efce000 -        0x10efcfff7  libsystem_blocks.dylib (63) <FB856CD1-2AEA-3907-8E9B-1E54B6827F82> /usr/lib/system/libsystem_blocks.dylib
           0x10efd5000 -        0x10f05eff7  libsystem_c.dylib (997.1.1) <61833FAA-7281-3FF9-937F-686B6F20427C> /usr/lib/system/libsystem_c.dylib
           0x10f08d000 -        0x10f08fff3  libsystem_configuration.dylib (596.12) <C4F633D9-94C8-35D9-BB2D-84C5122533C7> /usr/lib/system/libsystem_configuration.dylib
           0x10f097000 -        0x10f09ffff  libsystem_dnssd.dylib (522.1.11) <270DCF6C-502D-389A-AA9F-DE4624A36FF7> /usr/lib/system/libsystem_dnssd.dylib
           0x10f0ad000 -        0x10f0d4ffb  libsystem_info.dylib (449.1.3) <7D41A156-D285-3849-A2C3-C04ADE797D98> /usr/lib/system/libsystem_info.dylib
           0x10f0ec000 -        0x10f108ff7  libsystem_kernel.dylib (2422.1.72) <D14913DB-47F1-3591-8DAF-D4B4EF5F8818> /usr/lib/system/libsystem_kernel.dylib
           0x10f12b000 -        0x10f15afd2  libsystem_m.dylib (3047.16) <B7F0E2E4-2777-33FC-A787-D6430B630D54> /usr/lib/system/libsystem_m.dylib
           0x10f16b000 -        0x10f186ff7  libsystem_malloc.dylib (23.1.10) <FFE5C472-B23A-318A-85BF-77CDE61900D1> /usr/lib/system/libsystem_malloc.dylib
           0x10f192000 -        0x10f1b9ff7  libsystem_network.dylib (241.3) <8B1E1F1D-A5CC-3BAE-8B1E-ABC84337A364> /usr/lib/system/libsystem_network.dylib
           0x10f1db000 -        0x10f1e4ff3  libsystem_notify.dylib (121) <52571EC3-6894-37E4-946E-064B021ED44E> /usr/lib/system/libsystem_notify.dylib
           0x10f1f2000 -        0x10f1f8ff7  libsystem_platform.dylib (24.1.4) <331BA4A5-55CE-3B95-99EB-44E0C89D7FB8> /usr/lib/system/libsystem_platform.dylib
           0x10f20b000 -        0x10f212ff7  libsystem_pthread.dylib (53.1.4) <AB498556-B555-310E-9041-F67EC9E00E2C> /usr/lib/system/libsystem_pthread.dylib
           0x10f224000 -        0x10f225ff7  libsystem_sandbox.dylib (278.10) <A47E7E11-3C76-318E-B67D-98972B86F094> /usr/lib/system/libsystem_sandbox.dylib
           0x10f22d000 -        0x10f231fff  libsystem_stats.dylib (93.1.26) <B9E26A9E-FBBC-3938-B8B7-6CF7CA8C99AD> /usr/lib/system/libsystem_stats.dylib
           0x10f23e000 -        0x10f23ffff  libunc.dylib (28) <62682455-1862-36FE-8A04-7A6B91256438> /usr/lib/system/libunc.dylib
           0x10f248000 -        0x10f24dff7  libunwind.dylib (35.3) <78DCC358-2FC1-302E-B395-0155B47CB547> /usr/lib/system/libunwind.dylib
           0x10f25a000 -        0x10f27efff  libxpc.dylib (300.1.17) <4554927A-9467-365C-91F1-5A116989DD7F> /usr/lib/system/libxpc.dylib
           0x10f2a2000 -        0x10f2b2fff  libbsm.0.dylib (33) <2CAC00A2-1352-302A-88FA-C567D4D69179> /usr/lib/libbsm.0.dylib
           0x10f2bb000 -        0x10f2bffff  libpam.2.dylib (20) <B93CE8F5-DAA8-30A1-B1F6-F890509513CB> /usr/lib/libpam.2.dylib
           0x10f2c6000 -        0x10f2c6ffd  libOpenScriptingUtil.dylib (157) <19F0E769-0989-3062-9AFB-8976E90E9759> /usr/lib/libOpenScriptingUtil.dylib
           0x10f2d1000 -        0x10f2deff0  libbz2.1.0.dylib (29) <0B98AC35-B138-349C-8063-2B987A75D24C> /usr/lib/libbz2.1.0.dylib
           0x10f2ea000 -        0x10f5d4fff  com.apple.CoreServices.CarbonCore (1077.14 - 1077.14) <B00BEB34-A9F5-381F-99FD-11E405768A9A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
           0x10f656000 -        0x10f6e5fff  com.apple.Metadata (10.7.0 - 800.12.2) <A9F5D471-8732-3F95-A4A2-33864B92A181> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
           0x10f74e000 -        0x10f7c5fff  com.apple.CoreServices.OSServices (600.4 - 600.4) <36B2B009-C35E-3F21-824E-E0D00E7808C7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
           0x10f86f000 -        0x10f8dcfff  com.apple.SearchKit (1.4.0 - 1.4.0) <B9B8D510-A27E-36B0-93E9-17146D9E9045> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
           0x10f925000 -        0x10f980ffb  com.apple.AE (665.5 - 665.5) <BBA230F9-144C-3CAB-A77A-0621719244CD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
           0x10f9b5000 -        0x10fa7efff  com.apple.LaunchServices (572.23 - 572.23) <8D955BDE-2C4C-3DD4-B4D7-2D916174FE1D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
           0x10faf7000 -        0x10fb20fff  com.apple.DictionaryServices (1.2 - 208) <A539A058-BA57-35EE-AA08-D0B0E835127D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
           0x10fb43000 -        0x10fb4afff  com.apple.NetFS (6.0 - 4.0) <8E26C099-CE9D-3819-91A2-64EA929C6137> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
           0x10fb55000 -        0x10fb60fff  libkxld.dylib (2422.1.72) <C88EF3E6-B31F-3E12-BE9B-562D912BA733> /usr/lib/system/libkxld.dylib
           0x10fb68000 -        0x10fb73ff7  com.apple.NetAuth (5.0 - 5.0) <C811E662-9EC3-3B74-808A-A75D624F326B> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
           0x10fb80000 -        0x10fb83fff  com.apple.TCC (1.0 - 1) <32A075D9-47FD-3E71-95BC-BFB0D583F41C> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
           0x10fb8c000 -        0x10fba3fff  com.apple.CFOpenDirectory (10.9 - 173.1.1) <3FB4D5FE-860B-3BDE-BAE2-3531D919EF10> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
           0x10fbc4000 -        0x10fbceff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <2D27B498-BB9C-3D88-B05A-76908A8A26F3> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
           0x10fbdf000 -        0x10fc07ffb  libxslt.1.dylib (13) <C9794936-633C-3F0C-9E71-30190B9B41C1> /usr/lib/libxslt.1.dylib
           0x10fc17000 -        0x10fca3ff7  com.apple.ink.framework (10.9 - 207) <8A50B893-AD03-3826-8555-A54FEAF08F47> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
           0x10fcd6000 -        0x10fd45ff1  com.apple.ApplicationServices.ATS (360 - 363.1) <88976B22-A9B8-3E7B-9AE6-0B8E09A968FC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
           0x10fd76000 -        0x10fdfffff  com.apple.ColorSync (4.9.0 - 4.9.0) <B756B908-9AD1-3F5D-83F9-7A0B068387D2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
           0x10fe4d000 -        0x10fe92ff6  com.apple.HIServices (1.22 - 466) <21807AF8-3BC7-32BB-AB96-7C35CB59D7F6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
           0x10feca000 -        0x10fed9ff8  com.apple.LangAnalysis (1.7.0 - 1.7.0) <8FE131B6-1180-3892-98F5-C9C9B79072D4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
           0x10feea000 -        0x10ff37ff2  com.apple.print.framework.PrintCore (9.0 - 428) <8D8253E3-302F-3DB2-9C5C-572CB974E8B3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
           0x10ff65000 -        0x10ff9eff7  com.apple.QD (3.50 - 298) <C1F20764-DEF0-34CF-B3AB-AB5480D64E66> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
           0x10ffc0000 -        0x10ffc9fff  com.apple.speech.synthesis.framework (4.6.2 - 4.6.2) <0AAE45F0-FC6E-36B6-A6A7-73E6950A74AC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
           0x10ffdd000 -        0x10ffe0ffc  com.apple.IOSurface (91 - 91) <07CA8A59-1E32-3FB6-B506-18DAF58A8CE0> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
           0x10ffe9000 -        0x10ffe9fff  com.apple.Accelerate (1.9 - Accelerate 1.9) <509BB27A-AE62-366D-86D8-0B06D217CF56> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
           0x10fff2000 -        0x1102c6fc7  com.apple.vImage (7.0 - 7.0) <D241DBFA-AC49-31E2-893D-EAAC31890C90> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
           0x110309000 -        0x110309fff  com.apple.Accelerate.vecLib (3.9 - vecLib 3.9) <F8D0CC77-98AC-3B58-9FE6-0C25421827B6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
           0x11030e000 -        0x1103d9fff  libvDSP.dylib (423.32) <3BF732BE-DDE0-38EB-8C54-E4E3C64F77A7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
           0x1103e6000 -        0x110496ff7  libvMisc.dylib (423.32) <049C0735-1808-39B9-943F-76CB8021744F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
           0x1104a5000 -        0x110886ffe  libLAPACK.dylib (1094.5) <7E7A9B8D-1638-3914-BAE0-663B69865986> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
           0x1108ef000 -        0x110a5dff7  libBLAS.dylib (1094.5) <DE93A590-5FA5-32A2-A16C-5D7D7361769F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
           0x110a89000 -        0x110b78fff  libFontParser.dylib (111.1) <835A8253-6AB9-3AAB-9CBF-171440DEC486> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
           0x110bef000 -        0x110c36fff  libFontRegistry.dylib (127) <A77A0480-AA5D-3CC8-8B68-69985CD546DC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
           0x110c61000 -        0x110c85ff7  libJPEG.dylib (1038) <86F349A8-882D-3326-A0B0-63257F68B1A7> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
           0x110c8e000 -        0x110ce7fff  libTIFF.dylib (1038) <5CBFE0C2-9DD8-340B-BA63-A94CE2E476F2> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
           0x110cfc000 -        0x110d17ff7  libPng.dylib (1038) <EF781AF8-C2E6-3179-B8A1-A584783070F1> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
           0x110d27000 -        0x110d2bff7  libGIF.dylib (1038) <C29B4323-1B9E-36B9-96C2-7CEDBAA124F0> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
           0x110d34000 -        0x110e22fff  libJP2.dylib (1038) <6C8179F5-8063-3ED6-A7C2-D5603DECDF28> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
           0x110e50000 -        0x110e52fff  libRadiance.dylib (1038) <55F99274-5074-3C73-BAC5-AF234E71CF38> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
           0x110e56000 -        0x110e9dff7  libcups.2.dylib (372) <348EED62-6C20-35D6-8EFB-E80943965100> /usr/lib/libcups.2.dylib
           0x110eb5000 -        0x110eceff7  com.apple.Kerberos (3.0 - 1) <F108AFEB-198A-3BAF-BCA5-9DFCE55EFF92> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
           0x110eeb000 -        0x110f07fff  libresolv.9.dylib (54) <11C2C826-F1C6-39C6-B4E8-6E0C41D4FA95> /usr/lib/libresolv.9.dylib
           0x110f13000 -        0x111004ff9  libiconv.2.dylib (41) <BB44B115-AC32-3877-A0ED-AEC6232A4563> /usr/lib/libiconv.2.dylib
           0x111014000 -        0x111078ff9  com.apple.Heimdal (4.0 - 2.0) <E7D20A4D-4674-37E1-A949-635FFF7C439A> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
           0x1110a4000 -        0x1110a5fff  com.apple.TrustEvaluationAgent (2.0 - 25) <334A82F4-4AE4-3719-A511-86D0B0723E2B> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
           0x1110b1000 -        0x1110b5ff7  libheimdal-asn1.dylib (323.12) <063A01C2-E547-39D9-BB42-4CC8E64ADE70> /usr/lib/libheimdal-asn1.dylib
           0x1110c2000 -        0x1110ceff7  com.apple.OpenDirectory (10.9 - 173.1.1) <6B78BD7B-5622-38E6-8FC6-86A117E3ACCA> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
           0x1110e5000 -        0x1110eefff  com.apple.CommonAuth (4.0 - 2.0) <1D263127-5F27-3128-996D-7397660D0C6E> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
           0x1110f5000 -        0x11112fff3  com.apple.bom (12.0 - 192) <989690DB-B9CC-3DB5-89AE-B5D33EDC474E> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
           0x111144000 -        0x111169ff7  com.apple.CoreVideo (1.8 - 117.2) <4674339E-26D0-35FA-9958-422832B39B12> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
           0x111189000 -        0x111457ff4  com.apple.CoreImage (9.0.54) <74BB8685-69A9-3A45-8DED-EA26BD39D710> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
           0x111552000 -        0x1115a5fff  com.apple.ScalableUserInterface (1.0 - 1) <CF745298-7373-38D2-B3B1-727D5A569E48> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
           0x1115ca000 -        0x111609fff  libGLU.dylib (9.0.83) <8B457205-513B-3477-AE9C-3AD979D5FE11> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
           0x111619000 -        0x111621ffc  libGFXShared.dylib (9.0.83) <11A621C3-37A0-39CE-A69B-8739021BD79D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
           0x11162a000 -        0x111635fff  libGL.dylib (9.0.83) <984A960A-C159-3AE5-8B40-E2B451F6C712> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
           0x11164b000 -        0x111689ff7  libGLImage.dylib (9.0.83) <C08048A7-03CC-3E40-BCDC-7791D87AC8E4> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
           0x111697000 -        0x111699fff  libCVMSPluginSupport.dylib (9.0.83) <E2AED858-6EEB-36C6-8C06-C3CF649A3CD5> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
           0x1116a5000 -        0x1116a8fff  libCoreVMClient.dylib (58.1) <EBC36C69-C896-3C3D-8589-3E9023E7E56F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
           0x1116b1000 -        0x111ae4ffb  com.apple.vision.FaceCore (3.0.0 - 3.0.0) <F42BFC9C-0B16-35EF-9A07-91B7FDAB7FC5> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
           0x111d00000 -        0x111d4efff  com.apple.opencl (2.3.57 - 2.3.57) <FC03A80D-543A-3448-83FF-D399C3A240D9> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
           0x111d66000 -        0x111d72ff3  com.apple.AppleFSCompression (56 - 1.0) <5652B0D0-EB08-381F-B23A-6DCF96991FB5> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
           0x111d7e000 -        0x111d97ff7  com.apple.Ubiquity (1.3 - 289) <C7F1B734-CE81-334D-BE41-8B20D95A1F9B> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
           0x111daa000 -        0x111ddafff  com.apple.IconServices (25 - 25.17) <4751127E-FBD5-3ED5-8510-08D4E4166EFE> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconService s
           0x111e06000 -        0x111e2bff7  com.apple.ChunkingLibrary (2.0 - 155.1) <B845DC7A-D1EA-31E2-967C-D1FE0C628036> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
           0x111e3e000 -        0x111ebefff  com.apple.CoreSymbolication (3.0 - 141) <B018335C-698B-3F87-AF1C-6115C4FA8954> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
           0x111ede000 -        0x111f36ff7  com.apple.Symbolication (1.4 - 129) <16D42516-7B5E-357C-898A-FAA9EE7642B3> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
           0x111f82000 -        0x111fb1fff  com.apple.DebugSymbols (106 - 106) <E1BDED08-523A-36F4-B2DA-9D5C712F0AC7> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
           0x111fd2000 -        0x112031fff  com.apple.framework.CoreWLAN (4.0 - 400.45.1) <775F9444-8059-30A2-8058-7F7ACD68CCF1> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
           0x112070000 -        0x11209aff7  libpcap.A.dylib (42) <91D3FF51-D6FE-3C05-98C9-1182E0EC3D58> /usr/lib/libpcap.A.dylib
           0x1120ac000 -        0x112112fff  com.apple.framework.CoreWiFi (2.0 - 200.21.1) <5491896D-78C5-30B6-96E9-D8DDECF3BE73> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
           0x112175000 -        0x112179fff  com.apple.CommonPanels (1.2.6 - 96) <6B434AFD-50F8-37C7-9A56-162C17E375B3> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
           0x112184000 -        0x112187fff  com.apple.help (1.3.3 - 46) <AE763646-D07A-3F9A-ACD4-F5CBD734EE36> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
           0x112194000 -        0x1121a6fff  com.apple.ImageCapture (9.0 - 9.0) <BE0B65DA-3031-359B-8BBA-B9803D4ADBF4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
           0x1121c8000 -        0x1121e0ff7  com.apple.openscripting (1.4 - 157) <B3B037D7-1019-31E6-9D17-08E699AF3701> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
           0x1121f3000 -        0x1121f4ff7  com.apple.print.framework.Print (9.0 - 260) <EE00FAE1-DA03-3EC2-8571-562518C46994> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
           0x1121ff000 -        0x112201ff7  com.apple.securityhi (9.0 - 55005) <405E2BC6-2B6F-3B6B-B48E-2FD39214F052> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
           0x11220d000 -        0x1123c8ff6  com.apple.GeoServices (1.0 - 702.14.9) <A3A4D6AC-72B2-39F3-AAE0-9AF3B88C5C8E> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
           0x11251f000 -        0x112529ff7  com.apple.ProtocolBuffer (1 - 182.1.3) <82E68598-A8AA-3AF1-843E-2A64F19472D4> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
           0x11253d000 -        0x11338affb  com.apple.WebCore (9537 - 9537.73.13) <A468175D-078A-3377-A883-0BC5C8A4339F> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
           0x11582b000 -        0x115857fff  com.apple.CoreServicesInternal (184.8 - 184.8) <707E05AE-DDA8-36FD-B0FF-7F15A061B46A> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/CoreServicesIn ternal
           0x1158c9000 -        0x1158d6ff4  com.apple.Librarian (1.2 - 1) <F1A2744D-8536-32C7-8218-9972C6300DAE> /System/Library/PrivateFrameworks/Librarian.framework/Librarian
           0x1158f2000 -        0x1158faff3  libCGCMS.A.dylib (599.7) <92AA4E85-7633-36E2-BAD0-7B1A2E48E75C> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS .A.dylib
           0x116a89000 -        0x116ab1ffb  libRIP.A.dylib (599.7) <6F528EE3-99F8-3871-BD60-1306495C27D5> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A .dylib
           0x116ac1000 -        0x116ac4ffa  libCGXType.A.dylib (599.7) <2FC9C2BC-B5C5-3C27-93F9-51C6C4512E9D> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXTy pe.A.dylib
           0x1184ee000 -        0x11877cfff  com.apple.RawCamera.bundle (5.02 - 725) <4DE37ECB-24CD-38B1-B5AF-1EE911E19B80> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff607d0000 -     0x7fff60803817  dyld (239.3) <D1DFCF3F-0B0C-332A-BCC0-87A851B570FF> /usr/lib/dyld
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 2
        thread_create: 1
        thread_set_state: 0
      Calls made by this process:
        task_for_pid: 0
        thread_create: 0
        thread_set_state: 0
      Calls made by all processes on this machine:
        task_for_pid: 349
        thread_create: 4
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=161.6M resident=83.4M(52%) swapped_out_or_unallocated=78.2M(48%)
    Writable regions: Total=1.1G written=15.4M(1%) resident=18.8M(2%) swapped_out=0K(0%) unallocated=1.1G(98%)
    REGION TYPE                        VIRTUAL
    ===========                        =======
    CG backing stores                     136K
    CG image                              264K
    CG shared images                      180K
    CoreServices                          392K
    Foundation                              4K
    JS JIT generated code                   8K
    JS JIT generated code (reserved)      1.0G        reserved VM address space (unallocated)
    Kernel Alloc Once                       8K
    MALLOC                               50.8M
    MALLOC (admin)                         32K
    Memory Tag 242                         12K
    SQLite page cache                    2560K
    STACK GUARD                          56.0M
    Stack                                13.1M
    VM_ALLOCATE                          16.4M
    WebKit Malloc                        2304K
    __DATA                               23.5M
    __IMAGE                               528K
    __LINKEDIT                           41.9M
    __TEXT                              119.8M
    __UNICODE                             544K
    mapped file                          41.9M
    shared memory                           4K
    ===========                        =======
    TOTAL                                 1.4G
    TOTAL, minus reserved VM space      370.3M
    Model: MacBookAir5,2, BootROM MBA51.00EF.B02, 2 processors, Intel Core i7, 2 GHz, 8 GB, SMC 2.5f9
    Graphics: Intel HD Graphics 4000, Intel HD Graphics 4000, Built-In, 1024 MB
    Memory Module: BANK 0/DIMM0, 4 GB, DDR3, 1600 MHz, 0x80AD, 0x484D5434353153364D465238412D50422020
    Memory Module: BANK 1/DIMM0, 4 GB, DDR3, 1600 MHz, 0x80AD, 0x484D5434353153364D465238412D50422020
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xE9), Broadcom BCM43xx 1.0 (5.106.98.100.22)
    Bluetooth: Version 4.2.0f6 12982, 3 services, 23 devices, 1 incoming serial ports
    Network Service: Wi-Fi, AirPort, en0
    Serial ATA Device: APPLE SSD SM256E, 251 GB
    USB Device: Hub
    USB Device: FaceTime HD Camera (Built-in)
    USB Device: Hub
    USB Device: DataTraveler 2.0
    USB Device: Hub
    USB Device: Internal Memory Card Reader
    USB Device: Apple Internal Keyboard / Trackpad
    USB Device: BRCM20702 Hub
    USB Device: Bluetooth USB Host Controller
    Thunderbolt Bus: MacBook Air, Apple Inc., 23.4

    hello, please start firefox in safemode (by pressing the shift-key while it is launching) & go to ''firefox > options > advanced > general'' & disable hardware acceleration.

  • Audio Not playing in stage only when previewed or edited. Suggestions?

    My audio filies in Captivate 6.0.1.240 no longer play in the stage area. I must preview or edit to listen. Any suggestions?

    Dew,
    Can you verify that include audio is checked on the Project:Publish Settings dialog in the Preferences dialog accessed using the button on the Publish Dialog?
    --Allen

  • Why are photos not appearing complete when in PDf/preview mode for purchasing a photobook?

    Everything appears perfect in the project mode, but when I went to order I got an error message from customer support.  When I check the book in Preview my photos are coming up with scratchy white marks throughout.  Almost all are super hi-res so that shouldn't be the issue.  This is my first time with iPhoto, I usually have used Shutterfly, so am now concerned I just wasted 100 hours!

    What size book? This has been reported doing extra large books - it has been reported to go away when the book size is reduced to large
    Report to Apple - iPhoto menu ==> provide iPhoto feedback
    LN

  • Widgets not functioning correctly on tablet layout

    I've noticed that my new ipad is showing my tablet layout of muse website, but some of the widgets are not functioning correctly. I have tried a few widgets for the tablet layout and it has resulted in problems.
    Please take a look at www.littlesouth.com for an example of the current error.

    Hi
    I tried to check the site in tablet and it works fine.
    Can you please elaborate as which specific widgets are not working ? and are they on home page or any particular page within the site.
    Thanks,
    Sanjit

  • I want to update my software but my disc drive is not functional, are there alternatives?

    I have a Macbook Pro 5,3 that I would like to update, currently my Macbook runs on 10.5.8.
    My main problem is that I can't purchase the update because my disc driver is not functional anymore(my only problem, Macbook otherwise is doing very well).
    I have been to the store and they advised me to call, and now it seems like I need to pay 25,- pounds so I can get help over the phone which is a bit ridiculous to me.
    Besides that, what would be the alternatives for me to install Snow Leopard and hopefully then update to the newest software for my Macbook?
    Thanks!

    Snow Leopard is available from Apple for $20. Since your current optical drive isn't working, you can pick up any number of USB external DVD drives cheap. In the U.S., many are available for under $20.
    Once you have those, install Snow Leopard, and then update it to 10.6.8.

  • IViews Not Functional

    Hi Everyone,
    I'm experiencing an issue with the iview for the forums installation. I have followed the instructions for the installation using the document "Installing the Forums Application in the Portal Environment". Everything is installed but when I do a preview of the iview for any of the pages, it will look back to the Portal homepage. I'm unable to assign roles to the users since the admin console will loop back to the Portal homepage no matter which tab I click on. Any suggestions?

    Hi Connie,
    in EP 7.0 SP15 I had the same problem.
    But only in preview mode, in "real" mode, actually is working fine.
    If you need configurate the forum application, do not use preview mode. Better, create a role with the administration iviews inside, and use this role for edit configuration.
    regards,

  • Dashboard hangs up, widgets show but do not function

    Dashboard suddenly quit responding.  I can get the Widgets windows to show on screen, but the widgets do not work.  Activity Monitor shows is as Not Responding and using essentially 99.9% of CPU.  Any idea what's going on here?

    This procedure will reset your Dashboard configuration to the default.
    Back up all data before proceeding.
    Please triple-click anywhere in the line below on this page to select it:
    defaults delete com.apple.dashboard layer-gadgets && killall Dock
    Copy the selected text to the Clipboard by pressing the key combination command-C.
    Launch the built-in Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    Paste into the Terminal window by pressing the key combination command-V. I've tested these instructions only with the Safari web browser. If you use another browser, you may have to press the return key after pasting.
    Wait for a new line ending in a dollar sign ($) to appear below what you entered. You can then quit Terminal. Test.

  • This only aplies to firefox not explorer. On firefox the home, pgup, pgdn,end & arrow keys do not function

    as I said above the move keys do not function properly only on firefox, this is a new problem

    You may have switched on [http://kb.mozillazine.org/accessibility.browsewithcaret caret browsing].
    You can press press F7 (on Mac: fn + F7) to toggle caret browsing on/off.
    * Tools > Options > Advanced : General: Accessibility: [ ] "Always use the cursor keys to navigate within pages"
    * http://kb.mozillazine.org/Scrolling_with_arrow_keys_no_longer_works
    * http://kb.mozillazine.org/Accessibility_features_of_Firefox

Maybe you are looking for