What can I use as Microsoft office

What can I use that is similar to Microsoft office for iPad?

There are a number of apps that are compatible with Office documents. As Simon said, Apple makes iOS versions of their own iWork apps (Pages, Keynote, Numbers) that can be purchased separately. There are also 3rd party combined suites that cost less than the separate Apple apps. Ones often recommended include Documents 2 Go,  Quickoffice and Office2 HD.
If you want access to the actual Microsoft Office applications and can accept needing a network connection whenever you want to use the apps, a server-based solution such as CloudOn might be an option for you.
You'll find a number of other threads on the subject if you want to look for additional information and opinions.
Regards.

Similar Messages

  • Just upgraded to Lion, how can i use my microsoft office especially excel.  I'm getting messages that it's no longer supported.  This is a BIG problem.  Help, please.

    Just upgraded to Lion, how can I use my microsoft office especially excel.  I'm getting messages that it's no longer supported.  This is a BIG problem.  Help, please.

    Apple has made a serious error not advising people when the Lion upgrade occurs that their present software may/will not be compatible and advise the user of such before and allow a opt out.
    All you can do (besides upgrading all your software) is backup your data off the machine (not to TimeMachine) and disconnect all drives.
    Hold c boot off the 10.6 disk and erase your makers hard drive on the far left, (that's the entire drive of everything)
    Partition tab: Option: GUID, format OS X extended and click apply so you get a new GUID (replacing the Lion one or trouble occurs later)
    Quit and install 10.6, then go through setup and use the same name as before, then update to 10.6.8
    Then c boot off the 10.6 disk again and use Disk Utility to Repair the disk the 10.6.8 update messed up.
    Then install all your programs again from fresh sources and lastly your user files in the same main user folders as before (music, pictures, documents etc.)
    Done as described will get you back just like it was before as close as possible, make SURE to use the same username or else your iTunes and other files get all messed up. Password and drive name can be different though if you wish.
    Note: if you've upgraded from 10.5 to 10.6, then you don't get the free iLife as it's not on the 10.6.3 white disks, only on the disks that came with your machine. So that will have to be purchased and reinstalled or use Pacifist to extract it from the 10.5 disks.
    This handy site can advise you what software doesn't work with the Lion.
    http://roaringapps.com/apps:table

  • What can i use instead of microsoft word that has the same capabilities for school work etc

    what can i use instead of microsft word that has the same capabilities so i can do school work etc.

    You could use LibreOffice which is a free open source Office clone. The only downside is that by default it ddoesn't save in Office formats, you have to specifically choose that option. GoogleDocs is another free Office like product.

  • How do I get rid of the Microsoft Setup Assistant loop? I migrated my software/documents from another laptop so don't have the disk to reinstall. Please help! Can't open any Microsoft Office software, like Word, and stuck in a loop?

    I migrated my software/documents from another laptop so don't have the disk to reinstall. Please help! Can't open any Microsoft Office software, like Word (for 2008), and stuck in a loop?
    Whenever I select Word Microsoft Setup Assistant appears, asks for feedback, then after selecting okay (both on saying yes or no to feedback) goes on to a registration page. When I click on this it says I've already registered so I just click okay, and then move on to a update page. After this, if I click on Word, the process repeats itself.
    As I said, I don't have the disk to reinstall, and can't find the Office Settings to delete as many pages have suggested I should try. Safe Boot restarting also hasn't worked... Really stuck and need Word very soon for work.
    If you can help, that would be great, and feel free to ask any questions about the situation as I'm not an expert here.
    Cheers,
    Jack

    First, export your contact from iCloud.com and save them on your computer in a safe spot some where (like you desktop).  Use this to help you do this: http://support.apple.com/kb/PH3606
    Next, on both of your devices, go to Settings > iCloud and turn on contacts and select Merge. Then turn off contacts and select 'Delete form my [device]' when prompted.
    Now go back to iCloud.com and select a contact (yes they will all be messed up again) and select Command+A on a Mac or Control+A on a PC to select all of the contacts.  Tap the delete key on your keyboard (or right click /control click a contact and select delete).
    You iPhone, iPad and iCloud.com should not be empty for contacts.
    Go back to Settings > iCloud on both devices and turn on contacts again (you should not see merge this time).
    Next, go back to iCloud.com and import your contacts (those exported .vcards).  You can either drag and drop them into the empty contacts list in your web browser, or you can use the gear icon to import.
    You cleaned up contacts should import correctly into iCloud.com and sync to both of your devices.
    Good luck.

  • How to use ActiveX Microsoft Office Excel Chart?

    Does anyone know how to use "ActiveX Microsoft Office Excel Chart" from CVI 7.0? I tried with following code but it did not draw anything.
    HRESULT MakeChartInExcelActivexCtrl(void)
    HRESULT error = 0;
    char szErrMsg[256];
    // Create a new chart with its own worksheet
    // ExcelRpt_ChartNew(workbookHandle,-1,&chartsheetHandle);
    SetWaitCursor (1);
    // Open new Range for Worksheet
    error = CA_VariantSetCString (&MyCellRangeV, EXCEL_ARRAY_OF_CELLS);
    error = Excel_WorksheetRange (ExcelWorksheetHandle, NULL, MyCellRangeV, CA_DEFAULT_VAL, &ExcelRangeHandle);
    CA_VariantClear(&MyCellRangeV);
    if (error<0)
    CA_GetAutomationErrorString(error, szErrMsg, sizeof(szErrMsg) );
    goto Error;
    error = Excel_GetProperty (excelChart, NULL, Excel_WindowActiveChart, CAVT_OBJHANDLE, &ExcelChartHandle);
    if (error<0)
    CA_GetAutomationErrorString(error, szErrMsg, sizeof(szErrMsg) );
    goto Error;
    // Create a XY scatter chart using the data we wrote to the worksheet as its data source.
    error = ExcelRpt_ChartWizard(ExcelChartHandle, ExcelWorksheetHandle, EXCEL_ARRAY_OF_CELLS,
    ExRConst_GalleryXYScatter, ExRConst_Columns, 0, 0, 0, 0, "Filtered Data Chart", "",
    "Weather Data", NULL);
    if (error<0)
    CA_GetAutomationErrorString(error, szErrMsg, sizeof(szErrMsg) );
    goto Error;
    // Change the plot lines to not display markers and smooth out
    // the plot lines. This is one of the plot styles available in Excel.
    error = ExcelRpt_SetChartAttribute (ExcelChartHandle, ER_CH_ATTR_CHART_TYPE, ExRConst_XYScatterSmoothNoMarkers);
    if (error<0)
    CA_GetAutomationErrorString(status, szErrMsg, sizeof(szErrMsg) );
    goto Error;
    Error:
    SetWaitCursor (0);
    CA_VariantClear(&MyCellRangeV);
    CA_VariantClear(&MyVariant);
    ClearObjHandle (&ExcelRangeHandle);
    ClearObjHandle (&ExcelChartHandle);
    ClearObjHandle (&ExcelChartObjHandle);
    ClearObjHandle (&ExcelChartsHandle);
    if (error < 0)
    ReportAppAutomationError (error);
    return 0;
    Attachments:
    excelActivexCtrl.zip ‏4692 KB

    I use C:\Program Files\National Instruments\CVI90\toolslib\activex\excel\excelreport.fp to  build/modify excel report.there is very detail configuration in this function moudule , hope it can help you 
    Sonic
    Diffrent Strokes for Different Folks

  • How can i convert New Microsoft Office Word Document to adobe

    how can i convert New Microsoft Office Word Document to adobe

    Hi itchigo,
    You can use Microsoft Word's inbuilt feature of converting the doc to pdf by simply selecting Save As> 'pdf doc format' from the drop down.
    Please refer: http://office.microsoft.com/en-001/word-help/save-as-pdf-HA010354239.aspx#BM11
    Adobe Reader does not have the capability of converting docs to pdf or vice versa. It can only be used to read pdf files.
    Regards,
    Rave

  • Why Can't I Get Microsoft Office 2008 For Mac to Work On My iMac Running 10.8?

    I have two Macs; an early 2009 iMac and a late 2009 MacBook.  I upgraded both to OS X 10.8 this week.  The MacBook runs Microsoft Office apps without any problem.  The iMac, however, would give me errors whenever I would try to open any Office app.  I removed Office from my iMac and attempted to reinstall. But what I got was an error message that said "The operation coudn't be completed. (com.apple.installer.pagecontroller error -1.)  Couldn't open "Office Installer.mpkg"."  Why is my MacBook running Office just fine and the iMac having all sorts of trouble?  What can I do to get Office reinstalled on the iMac?

    Here are the error logs generated by both the Microsoft software, and the one generated by the iMac.  I don't know how to interpret it, but perhaps someone can look at it and see the problem right away...
    (ERROR REPORT GENERATED BY THE MICROSOFT SOFTWARE)
    Microsoft Error Reporting log version: 2.0
    Error Signature:
    Exception: EXC_BAD_ACCESS
    Date/Time: 2012-08-04 22:05:00 +0000
    Application Name: Microsoft Word
    Application Bundle ID: com.microsoft.Word
    Application Signature: MSWD
    Application Version: 12.3.3.120411
    Crashed Module Name: unknown
    Crashed Module Version: unknown
    Crashed Module Offset: unknown
    Blame Module Name: unknown
    Blame Module Version: unknown
    Blame Module Offset: unknown
    Application LCID: 1033
    Extra app info: Reg=en Loc=0x0409
    Thread 0:
    #  1  0x07206b06 in  ( + 0x00000000)
    #  2  0x07129642 in  ( + 0x00000000)
    #  3  0x07128f27 in  ( + 0x00000000)
    #  4  0x07125201 in  ( + 0x00000000)
    #  5  0x016634ef in  ( + 0x00000000)
    #  6  0x01663a8d in  ( + 0x00000000)
    #  7  0x01663e56 in  ( + 0x00000000)
    #  8  0x01664384 in  ( + 0x00000000)
    #  9  0x016643fa in  ( + 0x00000000)
    # 10  0x01664434 in  ( + 0x00000000)
    # 11  0x00681667 in  ( + 0x00000000)
    # 12  0x00af1d7a in  ( + 0x00000000)
    # 13  0x00afa6db in  ( + 0x00000000)
    # 14  0x025f2e4c in  ( + 0x00000000)
    # 15  0x00adfd50 in  ( + 0x00000000)
    # 16  0x00002182 in  ( + 0x00000000)
    # 17  0x000020a9 in  ( + 0x00000000)
    X86 Thread State:
    eax: 0x000c018c  ebx: 0x00000000  ecx: 0xbfffe99c  edx:0x07206b06
    edi: 0x07173db8  esi: 0x07173db8  ebp: 0xbfffe9b8  esp:0xbfffe99c
      ss: 0x00000023  eip: 0x07206b06   cs: 0x0000000b   ds:0x00000023
      es: 0x00000023   fs: 0x00000000   gs: 0x0000000f  eflags:0x00000286
    Thread 1:
    #  1  0x072079ae in  ( + 0x00000000)
    #  2  0x070527fd in  ( + 0x00000000)
    X86 Thread State:
    eax: 0x0000016b  ebx: 0xb0102700  ecx: 0xb01025ac  edx:0x072079ae
    edi: 0x00000000  esi: 0x070528f5  ebp: 0xb0102718  esp:0xb01025ac
      ss: 0x00000023  eip: 0x072079ae   cs: 0x0000000b   ds:0x00000023
      es: 0x00000023   fs: 0x00000023   gs: 0x0000000f  eflags:0x00000246
    Thread 2:
    #  1  0x072048e6 in  ( + 0x00000000)
    #  2  0x071526ce in  ( + 0x00000000)
    #  3  0x01e4bd7d in  ( + 0x00000000)
    #  4  0x01e4b3e5 in  ( + 0x00000000)
    #  5  0x01e4b46c in  ( + 0x00000000)
    #  6  0x01e4bf25 in  ( + 0x00000000)
    #  7  0x070c1557 in  ( + 0x00000000)
    #  8  0x070abcee in  ( + 0x00000000)
    X86 Thread State:
    eax: 0xffffffa6  ebx: 0x00000000  ecx: 0xb0288a9c  edx:0x072048e6
    edi: 0x00000014  esi: 0x75e1f6c1  ebp: 0xb0288ae8  esp:0xb0288a9c
      ss: 0x00000023  eip: 0x072048e6   cs: 0x0000000b   ds:0x00000023
      es: 0x00000023   fs: 0x00000023   gs: 0x0000000f  eflags:0x00000246
    Loaded modules:
    Operating System Information
    Operating System: Mac OS X 10.8 (Build 12A269)
    CPU: Intel Core Duo, Number: 2, Speed: 2147 MHz
    gestaltPhysicalRAMSize err = 0, result = 2047 MB
    gestaltSystemVersion err = 0, result = 0x1080
    Screen: 1680 x 1050, depth = 32, ltbr = 0, 0, 1050, 1680
    Microsoft Application Information:
    Error Reporting UUID: AE830338-F1FE-4B5D-8F91-C46927E3C876
    Time from launch: 0 hours, 0 minutes, 34 seconds
    Total errors on this client: 10
    (ERROR REPORT THE MAC CREATED)
    Process:         Microsoft Error Reporting [300]
    Path:            /Library/Application Support/Microsoft/*/Microsoft Error Reporting.app/Contents/MacOS/Microsoft Error Reporting
    Identifier:      com.microsoft.error_reporting
    Version:         2.2.0 (2.2.0)
    Build Info:      Unknown-80409~0
    Code Type:       X86 (Native)
    Parent Process:  ??? [1]
    User ID:         501
    Date/Time:       2012-08-04 17:59:22.725 -0400
    OS Version:      Mac OS X 10.8 (12A269)
    Report Version:  10
    Interval Since Last Report:          48744 sec
    Crashes Since Last Report:           24
    Per-App Interval Since Last Report:  2254 sec
    Per-App Crashes Since Last Report:   6
    Anonymous UUID:                      463F1D8A-75A6-4480-BF05-004AF60D1FD6
    Crashed Thread:  2
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000000
    VM Regions Near 0:
    --> __PAGEZERO             0000000000000000-0000000000001000 [    4K] ---/--- SM=NUL  /Library/Application Support/Microsoft/*/Microsoft Error Reporting.app/Contents/MacOS/Microsoft Error Reporting
        __TEXT                 0000000000001000-0000000000063000 [  392K] r-x/rwx SM=COW  /Library/Application Support/Microsoft/*/Microsoft Error Reporting.app/Contents/MacOS/Microsoft Error Reporting
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   com.microsoft.error_reporting           0x0000e74d 0x1000 + 55117
    1   com.microsoft.error_reporting           0x0000ea64 0x1000 + 55908
    2   com.microsoft.error_reporting           0x0000ebf3 0x1000 + 56307
    3   com.microsoft.error_reporting           0x0000fa8a 0x1000 + 60042
    4   com.microsoft.error_reporting           0x000053ff 0x1000 + 17407
    5   com.microsoft.error_reporting           0x00004d83 0x1000 + 15747
    6   com.microsoft.error_reporting           0x00003c19 0x1000 + 11289
    7   com.apple.Foundation                    0x00476d92 __57-[NSNotificationCenter addObserver:selector:name:object:]_block_invoke_0 + 49
    8   com.apple.CoreFoundation                0x00187481 ___CFXNotificationPost_block_invoke_0 + 257
    9   com.apple.CoreFoundation                0x000d2b5a _CFXNotificationPost + 2794
    10  com.apple.Foundation                    0x0045f8c8 -[NSNotificationCenter postNotificationName:object:userInfo:] + 92
    11  com.apple.AppKit                        0x00dea0ce -[NSApplication _postDidFinishNotification] + 367
    12  com.apple.AppKit                        0x00de9d88 -[NSApplication _sendFinishLaunchingNotification] + 249
    13  com.apple.AppKit                        0x00de6cef -[NSApplication(NSAppleEventHandling) _handleAEOpenEvent:] + 751
    14  com.apple.AppKit                        0x00de6804 -[NSApplication(NSAppleEventHandling) _handleCoreEvent:withReplyEvent:] + 378
    15  libobjc.A.dylib                         0x0336f628 -[NSObject performSelector:withObject:withObject:] + 77
    16  com.apple.Foundation                    0x0047a37a __76-[NSAppleEventManager setEventHandler:andSelector:forEventClass:andEventID:]_block_invoke_0 + 121
    17  com.apple.Foundation                    0x00479ed1 -[NSAppleEventManager dispatchRawAppleEvent:withRawReply:handlerRefCon:] + 430
    18  com.apple.Foundation                    0x00479cce _NSAppleEventManagerGenericHandler + 173
    19  com.apple.AE                            0x045c15b3 aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned long, unsigned char*) + 331
    20  com.apple.AE                            0x04597dde dispatchEventAndSendReply(AEDesc const*, AEDesc*) + 44
    21  com.apple.AE                            0x04597c9d aeProcessAppleEvent + 318
    22  com.apple.HIToolbox                     0x025c9394 AEProcessAppleEvent + 100
    23  com.apple.AppKit                        0x00de2dfd _DPSNextEvent + 1655
    24  com.apple.AppKit                        0x00de228c -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 119
    25  com.apple.AppKit                        0x00dd86dc -[NSApplication run] + 855
    26  com.apple.AppKit                        0x00d7b8e6 NSApplicationMain + 1053
    27  com.microsoft.error_reporting           0x00002ce4 0x1000 + 7396
    28  com.microsoft.error_reporting           0x0000234a 0x1000 + 4938
    29  com.microsoft.error_reporting           0x00002271 0x1000 + 4721
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x03d339ae kevent + 10
    1   libdispatch.dylib                       0x03b7ecc5 _dispatch_mgr_invoke + 993
    2   libdispatch.dylib                       0x03b7e7fd _dispatch_mgr_thread + 53
    Thread 2 Crashed:
    Thread 2 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0x00000000  ecx: 0x00000000  edx: 0x03d307d2
      edi: 0x00000000  esi: 0x00000000  ebp: 0x00000000  esp: 0xb0288e70
       ss: 0x00000023  efl: 0x00010286  eip: 0x00000000   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000023   gs: 0x0000000f
      cr2: 0x00000000
    Logical CPU: 0
    Binary Images:
        0x1000 -    0x62ff0 +com.microsoft.error_reporting (2.2.0 - 2.2.0) <6D0CA87E-B1C8-412E-98C1-9046325CAAC8> /Library/Application Support/Microsoft/*/Microsoft Error Reporting.app/Contents/MacOS/Microsoft Error Reporting
       0x7b000 -    0x7bfff  com.apple.Cocoa (6.7 - 19) <354094F0-F36B-36F9-BF5F-FD60590FBEB9> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
       0x7e000 -    0x7efff  com.apple.Carbon (154 - 155) <604ADD9D-5835-3294-842E-3A4AEBCCB548> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
       0x81000 -    0x81fff  com.apple.CoreServices (57 - 57) <956C6C6D-A5DD-314F-9C57-4A61D41F30CE> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
       0x8a000 -   0x271ffb  com.apple.CoreFoundation (6.8 - 744) <A2BB4949-264A-302B-897E-713860894FE6> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
      0x39e000 -   0x3ecffb  com.apple.SystemConfiguration (1.12 - 1.12) <F3C87D17-D5F3-39D3-B6F1-1DF3DBECCBDE> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
      0x413000 -   0x730fff  com.apple.Foundation (6.8 - 945) <B6F00754-C3F7-3E33-B708-CCEA2AA3E969> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
      0x8b3000 -   0xb70ff3  com.apple.security (7.0 - 55163.44) <798A1E51-3030-35BD-B5E6-4B6F65469357> /System/Library/Frameworks/Security.framework/Versions/A/Security
      0xc7f000 -  0x1838fff  com.apple.AppKit (6.8 - 1187) <5E13B150-4096-3B61-9DC0-6ABA48F6515B> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x1d51000 -  0x1d5fff7  libz.1.dylib (43) <245F1B61-2276-3BBB-9891-99934116D833> /usr/lib/libz.1.dylib
    0x1d65000 -  0x1d7efff  com.apple.Kerberos (2.0 - 1) <9BDE8F4D-DBC3-34D1-852C-898D3655A611> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x1d96000 -  0x1dfaff3  libstdc++.6.dylib (56) <F8FA490A-8F3C-3645-ABF5-78926CE9C62C> /usr/lib/libstdc++.6.dylib
    0x1e58000 -  0x1e58fff  libSystem.B.dylib (169.3) <81C58EAB-0E76-3EAB-BDFD-C5A6FE95536F> /usr/lib/libSystem.B.dylib
    0x1e5f000 -  0x205fffb  com.apple.CoreData (106 - 407.5) <B4386286-5C67-3134-A5BD-852447DA696E> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x2104000 -  0x2146ff7  com.apple.RemoteViewServices (2.0 - 80.3) <EE36AF6C-E574-3F48-9AC3-E8C8295739FF> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
    0x216e000 -  0x216efff  com.apple.ApplicationServices (45 - 45) <677C4ACC-9D12-366F-8A87-B898AC806DD9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x2176000 -  0x22cdff7  com.apple.audio.toolbox.AudioToolbox (1.8 - 1.8) <6856CA9B-BF08-341B-AEE9-91CC258D4534> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x234b000 -  0x234bffd  com.apple.audio.units.AudioUnit (1.8 - 1.8) <B688A998-93B5-3D9B-BAE4-E49947AA82B4> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x2351000 -  0x23b5fff  com.apple.datadetectorscore (4.0 - 269.1) <4D155F09-1A60-325A-BCAC-1B858C2C051B> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x23e2000 -  0x24fdff3  com.apple.desktopservices (1.7.0 - 1.7.0) <62495AB3-8FD5-39D0-A881-07BA77139EAA> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x2566000 -  0x2948ff7  com.apple.HIToolbox (2.0 - 624) <04C20B6A-FE3D-396E-BCAF-AC4DBAB3747E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x2aab000 -  0x2c23ff5  com.apple.QuartzCore (1.8 - 304.0) <0B0EC55A-9084-3E28-9A84-1813CE3FAA9B> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x2cbf000 -  0x2cc9fff  com.apple.speech.recognition.framework (4.1.5 - 4.1.5) <B855E8B4-2EE3-3BFF-8547-98A0F084F9AF> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x2cd2000 -  0x2d14ff7  libauto.dylib (185.1) <B2B5B639-6778-352A-828D-FD8B64A3E8B3> /usr/lib/libauto.dylib
    0x2d29000 -  0x2ee5ffd  libicucore.A.dylib (491.11.1) <DB04A8FD-9BBE-3CBC-869F-8FA855FB43D2> /usr/lib/libicucore.A.dylib
    0x2f74000 -  0x305dff7  libxml2.2.dylib (22.3) <015A4FA6-5BB9-3F95-AFB8-B9281E22685B> /usr/lib/libxml2.2.dylib
    0x308b000 -  0x313eff7  com.apple.coreui (2.0 - 181) <4F071012-F857-367D-B0B8-EAD088A05740> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x3194000 -  0x31f1fff  com.apple.audio.CoreAudio (4.1.0 - 4.1.0) <9549B81F-4425-34EE-802B-F462068DC0C5> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x3213000 -  0x321bfff  com.apple.DiskArbitration (2.5 - 2.5) <E49427B0-5317-3DFD-B12E-117402BB19CB> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x3225000 -  0x3226fff  liblangid.dylib (116) <E13CC8C5-5034-320A-A210-41A2BDE4F846> /usr/lib/liblangid.dylib
    0x322a000 -  0x323dff9  com.apple.MultitouchSupport.framework (235.27 - 235.27) <75D9C0FD-6A40-3A9E-8861-C74DBE137CF3> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x324b000 -  0x32b2ff7  com.apple.framework.IOKit (2.0 - 755.9.7) <CB976A7C-2601-3054-BC41-C3AD6896327C> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x32dc000 -  0x32ddfff  libDiagnosticMessagesClient.dylib (7) <B2BC685E-C129-3F6B-9222-AF3CF4F186AC> /usr/lib/libDiagnosticMessagesClient.dylib
    0x32e2000 -  0x3306fff  com.apple.PerformanceAnalysis (1.16 - 16) <18DE0F9F-1264-394D-AC56-6B2A1771DFBE> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
    0x331b000 -  0x3332fff  com.apple.GenerationalStorage (1.1 - 132.1) <4E0F0C47-7796-3152-A77D-F6456287498A> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
    0x333b000 -  0x3349fff  com.apple.opengl (1.8.5 - 1.8.5) <AA14FBC0-8AF3-3CCB-A390-C8F9AE81E1E9> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x3351000 -  0x345e15f  libobjc.A.dylib (532) <9663A040-F232-3E2A-8318-AA40B940AF6F> /usr/lib/libobjc.A.dylib
    0x347b000 -  0x3529ff3  com.apple.CoreText (260.0 - 275.14) <3CC31B7F-5560-364A-ADFC-31861C3C2328> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x357e000 -  0x368bffb  com.apple.ImageIO.framework (3.2.0 - 843) <4BFEFB05-3EE3-36A7-891D-CE03D1DF8125> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x36dc000 -  0x37b0ff7  com.apple.backup.framework (1.4 - 1.4) <12123FB8-B42D-38B0-8463-6BA375C3C643> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x381d000 -  0x3969ffb  com.apple.CFNetwork (596.0.1 - 596.0.1) <0EC65BE8-5775-37C8-B6C7-8BC7CAECB222> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x3a13000 -  0x3a30fff  libCRFSuite.dylib (33) <C9D72D0C-871A-39A2-8AFB-682D11AE7D0D> /usr/lib/libCRFSuite.dylib
    0x3a3a000 -  0x3a3dffb  com.apple.TCC (1.0 - 1) <C1B2A1EB-9EA2-3340-8611-F788C87A951F> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x3a43000 -  0x3aa5fff  libc++.1.dylib (65.1) <C0CFF9FF-5D52-3EAE-B921-6AE1DA00A135> /usr/lib/libc++.1.dylib
    0x3af7000 -  0x3b19ff3  libc++abi.dylib (24.2) <4C064BFE-B8B4-35CA-AB3C-F6A47D47A0F2> /usr/lib/libc++abi.dylib
    0x3b43000 -  0x3b47ffe  libcache.dylib (57) <834FDCA7-FE3B-33CC-A12A-E11E202477EC> /usr/lib/system/libcache.dylib
    0x3b4c000 -  0x3b57fff  libcommonCrypto.dylib (60026) <A6C6EDB8-7E69-3827-81F3-9A74D0935461> /usr/lib/system/libcommonCrypto.dylib
    0x3b62000 -  0x3b65ff7  libcompiler_rt.dylib (30) <CE5DBDB4-0124-3E2B-9105-989DF98DD108> /usr/lib/system/libcompiler_rt.dylib
    0x3b6c000 -  0x3b74fff  libcopyfile.dylib (89) <4963541B-0254-371B-B29A-B6806888949B> /usr/lib/system/libcopyfile.dylib
    0x3b7a000 -  0x3b8cff7  libdispatch.dylib (228.18) <833C83BE-278C-353E-AC6D-9B85FAC50A1D> /usr/lib/system/libdispatch.dylib
    0x3b9c000 -  0x3b9dfff  libdnsinfo.dylib (453.16) <6441AEC9-3916-3BF6-BE54-9C25E2BE61E1> /usr/lib/system/libdnsinfo.dylib
    0x3ba2000 -  0x3ba4fff  libdyld.dylib (210.2.3) <05D6FF2A-F09B-309D-95F7-7AF10259C707> /usr/lib/system/libdyld.dylib
    0x3baa000 -  0x3baafff  libkeymgr.dylib (25) <D5E93F7F-9315-3AD6-92C7-941F7B54C490> /usr/lib/system/libkeymgr.dylib
    0x3bae000 -  0x3bb5fff  liblaunch.dylib (442.21) <349330F8-1BBF-3B78-AFB2-4F32413CE971> /usr/lib/system/liblaunch.dylib
    0x3bbd000 -  0x3bc1ff7  libmacho.dylib (829) <5280A013-4F74-3F74-BE0C-7F612C49F1DC> /usr/lib/system/libmacho.dylib
    0x3bc6000 -  0x3bc7fff  libquarantine.dylib (52) <D526310F-DC77-37EA-8F5F-83928EFA3262> /usr/lib/system/libquarantine.dylib
    0x3bcc000 -  0x3bcdfff  libremovefile.dylib (23.1) <98622D14-DAAB-3AD8-A5D9-C322BF572A98> /usr/lib/system/libremovefile.dylib
    0x3bd3000 -  0x3bd3fff  libsystem_blocks.dylib (59) <3A743C5D-CFA5-37D8-80A8-B6795A9DB04F> /usr/lib/system/libsystem_blocks.dylib
    0x3bd7000 -  0x3c94ffb  libsystem_c.dylib (825.24) <7D90CAC5-EC98-35F8-A52E-81B54F0C7DCC> /usr/lib/system/libsystem_c.dylib
    0x3cd0000 -  0x3cd7fff  libsystem_dnssd.dylib (379.27) <4B3700EA-F14D-3994-BAAB-79BBD33D7305> /usr/lib/system/libsystem_dnssd.dylib
    0x3cdd000 -  0x3d09ff7  libsystem_info.dylib (406.17) <AA5611DB-A944-3072-B6BE-ACAB08689547> /usr/lib/system/libsystem_info.dylib
    0x3d1e000 -  0x3d38ffc  libsystem_kernel.dylib (2050.7.9) <81E269C6-0F96-3075-9589-D35657D23CDD> /usr/lib/system/libsystem_kernel.dylib
    0x3d49000 -  0x3d76ffe  libsystem_m.dylib (3022.6) <9975D9C3-3B71-38E3-AA21-C5C5F9D9C431> /usr/lib/system/libsystem_m.dylib
    0x3d80000 -  0x3d8eff3  libsystem_network.dylib (77.10) <7FBF5A15-97BA-3721-943E-E77F0C40DBE1> /usr/lib/system/libsystem_network.dylib
    0x3d9a000 -  0x3da4fff  libsystem_notify.dylib (98.5) <7EEE9475-18F8-3099-B0ED-23A3E528ABE0> /usr/lib/system/libsystem_notify.dylib
    0x3dad000 -  0x3daefff  libsystem_sandbox.dylib (220) <4E42390B-25EC-3530-AF01-337E430C16EB> /usr/lib/system/libsystem_sandbox.dylib
    0x3db3000 -  0x3db4ffd  libunc.dylib (25) <58599CBF-E262-3CEA-AFE1-35560E0177DC> /usr/lib/system/libunc.dylib
    0x3dba000 -  0x3dc1ffb  libunwind.dylib (35.1) <E1E8D8B3-3C78-3AB1-B398-C180DC6DCF05> /usr/lib/system/libunwind.dylib
    0x3dc8000 -  0x3de5fff  libxpc.dylib (140.37) <F61095FA-B2CF-3CD8-9088-9D9FC18B38BC> /usr/lib/system/libxpc.dylib
    0x3df8000 -  0x3e44fff  libcorecrypto.dylib (106) <FAAD1A30-0D84-3A17-AC40-288EF0F529AA> /usr/lib/system/libcorecrypto.dylib
    0x3e51000 -  0x3e63fff  libbsm.0.dylib (32) <DADD385E-FE53-3458-94FB-E316A6345108> /usr/lib/libbsm.0.dylib
    0x3e6b000 -  0x3f63ff2  libsqlite3.dylib (138) <AA00F27E-B72D-31DE-8EE4-985227CC9912> /usr/lib/libsqlite3.dylib
    0x3f75000 -  0x3f83fff  libxar.1.dylib (105) <343E4A3B-1D04-34A3-94C2-8C7C9A8F736B> /usr/lib/libxar.1.dylib
    0x3f8b000 -  0x3f8effc  libpam.2.dylib (20) <FCF74195-A99E-3B07-8E49-688D4A6F1E18> /usr/lib/libpam.2.dylib
    0x3f93000 -  0x3f93ffd  libOpenScriptingUtil.dylib (148) <6B34E8E4-EE31-3E2B-AEB3-8714C3102AED> /usr/lib/libOpenScriptingUtil.dylib
    0x3f97000 -  0x3fa3ff8  libbz2.1.0.dylib (29) <7031A4C0-784A-3EAA-93DF-EA1F26CC9264> /usr/lib/libbz2.1.0.dylib
    0x3fa9000 -  0x42aefff  com.apple.CoreServices.CarbonCore (1037 - 1037) <92494ADA-2ED1-3141-81B9-23F2C27E779C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x4322000 -  0x439effb  com.apple.Metadata (10.7.0 - 707.1) <E18350AD-CAA9-3323-BDE9-63A688792C6C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x43e1000 -  0x4479ff7  com.apple.CoreServices.OSServices (557 - 557) <219C11A8-8446-336E-B518-F52D1571420F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x44cf000 -  0x4554ff7  com.apple.SearchKit (1.4.0 - 1.4.0) <454E950F-291C-3E95-8F35-05CA0AD6B327> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x458f000 -  0x45e8ff7  com.apple.AE (645 - 645) <D4919967-EF16-36BA-9E8A-DA110DE8BB4A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x460e000 -  0x46b8ff7  com.apple.LaunchServices (539 - 539) <4C026504-5420-35D7-912E-A584C6F9FFC6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x4702000 -  0x4733ff7  com.apple.DictionaryServices (1.2 - 184) <9199E88F-2477-3596-9F56-B8E317A7164D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x4752000 -  0x4759ff3  com.apple.NetFS (5.0 - 4.0) <1F7041F2-4E97-368C-8F5D-24153D81BBDB> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x4760000 -  0x476cffc  libkxld.dylib (2050.7.9) <D2892FF5-C00D-3493-8945-5C36733FE9A3> /usr/lib/system/libkxld.dylib
    0x4771000 -  0x477dff7  com.apple.NetAuth (4.0 - 4.0) <4983C4B8-9D95-3C4D-897E-07743326487E> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x4788000 -  0x479efff  com.apple.CFOpenDirectory (10.8 - 151.10) <56C3F276-BD1F-3031-8CF9-8F4F481A534E> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x47b5000 -  0x47defff  libxslt.1.dylib (11.3) <0DE17DAA-66FF-3195-AADB-347BEB5E2EFA> /usr/lib/libxslt.1.dylib
    0x47ea000 -  0x47f3ffd  com.apple.audio.SoundManager (4.0 - 4.0) <ABC5FE40-B222-36EB-9905-5C8C4BFD8C87> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x47fb000 -  0x481fff2  com.apple.framework.familycontrols (4.0 - 400) <A313D83E-5A03-3174-A213-1F7D379040D1> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x4833000 -  0x48cafff  com.apple.ink.framework (1.4 - 110) <C01F2572-E7E4-3A6C-B4F2-2F97B4AD43D5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x48f4000 -  0x4d36ff3  com.apple.CoreGraphics (1.600.0 - 322) <2E04AAAD-8403-3819-BD6C-9836D42F58B1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x4dc7000 -  0x4e3cff7  com.apple.ApplicationServices.ATS (332 - 341) <472F564A-BD46-30C3-92F5-87273A512910> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x4e64000 -  0x4f22ff3  com.apple.ColorSync (4.8.0 - 4.8.0) <EFEDCB37-4F20-3CEC-A185-5D2976E11BAC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x4f60000 -  0x4fb6ff3  com.apple.HIServices (1.20 - 416) <B23E2C58-A6A5-32B6-811C-0F0551E14483> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x4fe8000 -  0x4ff8ff2  com.apple.LangAnalysis (1.7.0 - 1.7.0) <875363E7-6D02-3229-A9DD-E5A5568A7D61> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x5005000 -  0x50a5ff7  com.apple.QD (3.42 - 285) <1B8307C6-AFA8-312E-BA5B-679070EF2CA1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x50d2000 -  0x50e7fff  com.apple.speech.synthesis.framework (4.1.10 - 4.1.10) <20E394D6-D9BA-3C1D-993A-533B60EF3B63> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x50f7000 -  0x50fbfff  com.apple.IOSurface (86.0.2 - 86.0.2) <BDF93CE4-9F14-3747-9CD5-FFE71D488BDA> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x5103000 -  0x5103fff  com.apple.Accelerate (1.8 - Accelerate 1.8) <4EC0548E-3A3F-310D-A366-47B51D5B6398> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x5106000 -  0x5204ff7  libFontParser.dylib (84.5) <B3006327-7B2D-3966-A56A-BD85F1D71641> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x5252000 -  0x52a0ffb  libFontRegistry.dylib (100) <3B8350C2-4D8F-38C4-A22E-2F855D7E83D1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x52c2000 -  0x544bff7  com.apple.vImage (6.0 - 6.0) <1D1F67FE-4F75-3689-BEF6-4A46C8039E70> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x5469000 -  0x5469fff  com.apple.Accelerate.vecLib (3.8 - vecLib 3.8) <908B8D40-3FB5-3047-B482-3DF95025ECFC> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x546c000 -  0x54d4fe7  libvDSP.dylib (380.6) <55780308-4DCA-3B10-9703-EAFC3E13A3FA> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x54de000 -  0x5570ffb  libvMisc.dylib (380.6) <6DA3A03F-20BE-300D-A664-B50A7B4E4B1A> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x557a000 -  0x5932ffa  libLAPACK.dylib (1073.3) <0F813868-D84F-365D-8A7B-67FDA169F19C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x598a000 -  0x5ac5ff7  libBLAS.dylib (1073.3) <804B5AF7-2646-31D1-8875-FCCF158476D4> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x5aee000 -  0x5b12fff  libJPEG.dylib (843) <04383F74-067F-3E98-882F-21F5B9578984> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x5b1a000 -  0x5b69ff6  libTIFF.dylib (843) <AA81BA16-8026-35DA-8193-2C8715ACD435> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x5b75000 -  0x5b91ff7  libPng.dylib (843) <43C3DD20-4BB2-3429-A40A-7FF9BC50E5FB> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x5b99000 -  0x5b9dffc  libGIF.dylib (843) <355B672B-D07D-36FE-B6B9-142406ACFBA2> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x5ba2000 -  0x5cadff7  libJP2.dylib (843) <D8FE1E1C-D4DC-3465-95C4-AEADD6C2611C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x5cd3000 -  0x5cd5ffb  libRadiance.dylib (843) <6C2B92DB-A537-3618-9E68-F006DF427D2F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
    0x5cd9000 -  0x5d1aff7  libcups.2.dylib (327) <F46F8703-FEAE-3442-87CB-45C8BF98BEE5> /usr/lib/libcups.2.dylib
    0x5d2a000 -  0x5d5dff3  com.apple.GSS (3.0 - 2.0) <B1D719C1-B000-3BE3-B747-329D608585DD> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x5d78000 -  0x5d95ff7  libresolv.9.dylib (51) <B9742A2A-DF15-3F6E-8FCE-778A58214B3A> /usr/lib/libresolv.9.dylib
    0x5da0000 -  0x5e91ffc  libiconv.2.dylib (34) <B096A9B7-83A6-31B3-8D2F-87D91910BF4C> /usr/lib/libiconv.2.dylib
    0x5e9f000 -  0x5f0effb  com.apple.Heimdal (3.0 - 2.0) <1ABF438B-30E6-3165-968C-E2EA1A9DF1FD> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x5f31000 -  0x5f32ffd  com.apple.TrustEvaluationAgent (2.0 - 23) <E42347C0-2D3C-36A4-9200-757FFA61B388> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x5f37000 -  0x5f3bfff  com.apple.OpenDirectory (10.8 - 151.10) <A1858D81-086F-3BF5-87E3-9B70409FFDF6> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x5f44000 -  0x5f4dff9  com.apple.CommonAuth (3.0 - 2.0) <A1A6CC3D-AA88-3519-A305-9B5D76C5D63B> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x5f54000 -  0x5f93ff7  com.apple.bom (12.0 - 192) <0637E52C-D151-37B3-904F-8656B2FD44DD> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x5fa5000 -  0x5fcaff7  com.apple.CoreVideo (1.8 - 99.0) <7A90C337-4493-3393-9C56-75EB52112D75> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x5fe2000 -  0x6273ffb  com.apple.CoreImage (8.0.17 - 1.0.1) <CE54EC11-1C41-3857-B82D-F8B7D1798F42> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
    0x6306000 -  0x635dff7  com.apple.ScalableUserInterface (1.0 - 1) <2B5E454B-BC49-3E85-B54D-1950397C448C> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
    0x6376000 -  0x63bafff  libGLU.dylib (8.5) <E4F932FD-A644-354D-8D4E-F337C93AAFC1> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x63c8000 -  0x63cefff  libGFXShared.dylib (8.5) <D2D214E8-A243-3FFD-BA70-D695FF5BD040> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x63d4000 -  0x63e1fff  libGL.dylib (8.5) <930067EA-F131-336E-BE31-49DD7F6DFB81> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x63f2000 -  0x642dfe7  libGLImage.dylib (8.5) <E5F2D8DE-3053-361A-982B-9BB2AE73E324> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x6435000 -  0x6437fff  libCVMSPluginSupport.dylib (8.5) <9043B315-4E68-3262-A310-76E64F0409C9> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
    0x643c000 -  0x643fffd  libCoreVMClient.dylib (24.4) <C54E8FD0-61EC-3DC8-8631-54288AC66AC8> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x6445000 -  0x6451ffd  com.apple.CrashReporterSupport (10.8 - 411) <62036837-CFEC-37FD-AEB1-040EF573C2B3> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x645e000 -  0x64a3ff5  com.apple.opencl (2.1.17 - 2.1.17) <921C1549-637A-33D7-A891-834FB9F582C7> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x64b4000 -  0x68d1ff3  FaceCoreLight (2.0.1) <3EF03B25-C361-31A6-8704-3FBFFBD0E10B> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
    0x6ae2000 -  0x6aefff7  com.apple.AppleFSCompression (49 - 1.0) <166AA1F8-E50A-3533-A3B5-8737C5118CC3> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0x6af7000 -  0x6b15ffb  com.apple.Ubiquity (1.2 - 234.2) <BEFF43DE-CF72-3E66-90C8-CAECAFD5F3ED> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
    0x6b28000 -  0x6b32ffc  com.apple.bsd.ServiceManagement (2.0 - 2.0) <D3112172-D3A7-3C9A-825D-5630D47327D1> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
    0x6b3b000 -  0x6b5bff7  com.apple.ChunkingLibrary (2.0 - 132) <172C3F7F-CB49-323F-932F-35340999979E> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
    0x6b66000 -  0x6b66fff  com.apple.vecLib (3.8 - vecLib 3.8) <83160DD1-5614-3E34-80EB-97041016EF1F> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x6b69000 -  0x6be3ff7  com.apple.securityfoundation (6.0 - 55115.4) <A959B2F5-9D9D-3C93-A62A-7399594CF238> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x6c13000 -  0x6c1bfff  com.apple.CommerceCore (1.0 - 26) <AF0D1990-8CBF-3AB4-99DF-8B7AE14FB0D5> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x6c24000 -  0x6cbefff  com.apple.CoreSymbolication (3.0 - 87) <6A27BBE5-6EF0-3D5D-A485-2145826B9796> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x6d04000 -  0x6d5efff  com.apple.Symbolication (1.3 - 93) <684ECF0D-D416-3DF8-8B5B-3902953853A8> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x6d89000 -  0x6dbfffb  com.apple.DebugSymbols (98 - 98) <9A9ADA0A-E487-3C8F-9998-286EE04C235A> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x6ddb000 -  0x6ddffff  com.apple.CommonPanels (1.2.5 - 94) <6B3E7E53-7708-3DA2-8C50-59C2B4735DE1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x6de7000 -  0x6deafff  com.apple.help (1.3.2 - 42) <AD7EB1F0-A068-3A2C-9D59-38E59CEC0D96> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x6df0000 -  0x6e4bfff  com.apple.htmlrendering (77 - 1.1.4) <5C0C669F-AE07-3983-B38F-EB829B5CE609> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x6e72000 -  0x6e87fff  com.apple.ImageCapture (8.0 - 8.0) <B8BD421F-D5A9-3FB4-8E89-AD5CFC0D4030> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x6ea0000 -  0x6ee5ff7  com.apple.NavigationServices (3.7 - 200) <F6531764-6E43-3AF3-ACDD-8A5551EF016A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x6f0d000 -  0x6f2afff  com.apple.openscripting (1.3.5 - 148) <3460338D-B686-3C33-B322-DC8391668F8A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x6f3b000 -  0x6f3dfff  com.apple.securityhi (4.0 - 55002) <62E3AE75-61CB-341E-B2A0-CFC985A2BF7F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x7500000 -  0x7518ff7  com.apple.OpenTransport (10.6.0 - 10.6.0) <CDC4C81F-8441-3F12-86FC-EBB1B5ED7B3B> /System/Library/PrivateFrameworks/OpenTransport.framework/OpenTransport
    0x752b000 -  0x7558ffb  com.apple.CoreServicesInternal (153 - 153) <DB105788-CCF5-3678-88C5-65A7267DC581> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/CoreServicesIn ternal
    0x75bc000 -  0x75c9ffb  com.apple.Librarian (1.1 - 1) <C8D82AA3-AE5E-3B6D-A8D1-847856057186> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
    0x75da000 -  0x75e4fff  libCSync.A.dylib (322) <CD2707A0-48EB-30C5-8431-460663D44A91> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x64b00000 - 0x64b06fff  com.apple.print.framework.Print (8.0 - 258) <12AEAD24-6924-3923-9E4A-C5D21231E639> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x8fef1000 - 0x8ff23e57  dyld (210.2.3) <23516BE4-29BE-350C-91C9-F36E7999F0F1> /usr/lib/dyld
    0xfa100000 - 0xfa166fff  com.apple.print.framework.PrintCore (8.0 - 387) <84DFC4F0-3186-3C59-9EBD-9EF2C3561A43> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 2
        thread_create: 0
        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: 319
        thread_create: 0
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=105.1M resident=63.3M(60%) swapped_out_or_unallocated=41.8M(40%)
    Writable regions: Total=51.3M written=3272K(6%) resident=6140K(12%) swapped_out=0K(0%) unallocated=45.3M(88%)
    REGION TYPE                      VIRTUAL
    ===========                      =======
    CG shared images                     96K
    CoreServices                       1092K
    MALLOC                             21.7M
    MALLOC guard page                    48K
    Mach message                          4K
    Memory tag=242                       12K
    Stack                              65.0M
    VM_ALLOCATE                        16.0M
    __DATA                             5236K
    __IMAGE                             528K
    __IMPORT                              8K
    __LINKEDIT                         21.8M
    __OBJC                             1644K
    __PAGEZERO                            4K
    __TEXT                             83.3M
    __UNICODE                           544K
    mapped file                        28.0M
    shared memory                       308K
    ===========                      =======
    TOTAL                             245.2M
    Model: iMac9,1, BootROM IM91.008D.B08, 2 processors, Intel Core 2 Duo, 2.66 GHz, 4 GB, SMC 1.44f0
    Graphics: NVIDIA GeForce 9400, NVIDIA GeForce 9400, PCI, 256 MB
    Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1067 MHz, 0x802C, 0x31364A53463235363634485A2D3147314631
    Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1067 MHz, 0x802C, 0x31364A53463235363634485A2D3147314631
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x8E), Broadcom BCM43xx 1.0 (5.106.98.81.20)
    Bluetooth: Version 4.0.9f8 10405, 2 service, 18 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: Hitachi HDT721032SLA380, 320.07 GB
    Serial ATA Device: HL-DT-ST DVDRW  GA11N
    USB Device: Built-in iSight, apple_vendor_id, 0x8502, 0x24400000 / 3
    USB Device: USB2.0 Hub, 0x05e3  (Genesys Logic, Inc.), 0x0608, 0x24300000 / 2
    USB Device: My Passport 071A, 0x1058  (Western Digital Technologies, Inc.), 0x071a, 0x24340000 / 5
    USB Device: Keyboard Hub, apple_vendor_id, 0x1006, 0x24330000 / 4
    USB Device: Apple Keyboard, apple_vendor_id, 0x0220, 0x24332000 / 6
    USB Device: Apple Optical USB Mouse, apple_vendor_id, 0x0304, 0x06200000 / 3
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x06100000 / 2
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8215, 0x06110000 / 6
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0x04500000 / 2

  • How can I change the Microsoft Office Click to Run from drive letter 'Q' to something else?

    How can I change the Microsoft Office Click to Run from drive letter 'Q' to something else?
    We have a legacy app that used drive letter 'Q' already, now the newer machines are coming in with 'Q' preassigned to Microsoft Office Click to Run, and it is causing problems.  There has to be a way to change the drive letter assignment to some
    other letter besides 'Q' 

    Hi,
    Office that is delivered by Click-to-Run is installed on the Q drive, this cannot be changed.
    To work around this problem, uninstall the Click-to-Run version of Office and then install with the traditional MSI-based installation.
    To switch to using an MSI-based Office edition, you can learn something useful from this link below:
    http://office.microsoft.com/en-us/excel-help/click-to-run-switch-to-using-an-msi-based-office-edition-HA101850538.aspx
    Regards,
    Melon Chen
    TechNet Community Support

  • Apple replaced my hard drive (1tb seagate) and now I can't access my Microsoft office because the license was compromised. is this fixable? or will we be adding this to the list of lawsuits..

    apple replaced my hard drive (1tb seagate) and now I can't access my Microsoft office because the license was compromised. is this fixable? or will we be adding this to the list of lawsuits..

    You can reinstall MS using your install disk(s) and the original registration key(s).
    As for your threat, you might want to read the Software License Agreement as well as the Hardware warranty. They are available here:
    http://www.apple.com/legal/sla/
    Here is an excerpt from the SLA:
    8. Disclaimer of Warranties. YOU EXPRESSLY ACKNOWLEDGE AND AGREE THAT, TO THE EXTENT PERMITTED BY APPLICABLE LAW, USE OF THE APPLE SOFTWARE AND ANY SERVICES PERFORMED BY OR THROUGH THE APPLE SOFTWARE (COLLECTIVELY “SERVICES”) IS AT YOUR SOLE RISK AND THAT THE ENTIRE RISK AS TO SATISFACTORY QUALITY, PERFORMANCE, ACCURACY AND EFFORT IS WITH YOU. EXCEPT FOR THE LIMITED WARRANTY ON MEDIA SET FORTH ABOVE AND TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, THE APPLE SOFTWARE AND SERVICES ARE PROVIDED “AS IS” AND “AS AVAILABLE”, WITH ALL FAULTS AND WITHOUT WARRANTY OF ANY KIND, AND APPLE AND APPLE'S LICENSORS (COLLECTIVELY REFERRED TO AS “APPLE” FOR THE PURPOSES OF SECTIONS 8 and 9) HEREBY DISCLAIM ALL WARRANTIES AND CONDITIONS WITH RESPECT TO THE APPLE SOFTWARE AND SERVICES, EITHER EXPRESS, IMPLIED OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES AND/OR CONDITIONS OF MERCHANTABILITY, OF SATISFACTORY QUALITY, OF FITNESS FOR A PARTICULAR PURPOSE, OF ACCURACY, OF QUIET ENJOYMENT, AND NON-INFRINGEMENT OF THIRD PARTY RIGHTS. APPLE DOES NOT WARRANT AGAINST INTERFERENCE WITH YOUR ENJOYMENT OF THE APPLE SOFTWARE AND SERVICES, THAT THE FUNCTIONS CONTAINED IN, OR SERVICES PERFORMED OR PROVIDED BY, THE APPLE SOFTWARE WILL MEET YOUR REQUIREMENTS, THAT THE OPERATION OF THE APPLE SOFTWARE OR SERVICES WILL BE UNINTERRUPTED OR ERROR- FREE, THAT ANY SERVICES WILL CONTINUE TO BE MADE AVAILABLE, THAT THE APPLE SOFTWARE OR SERVICES WILL BE COMPATIBLE OR WORK WITH ANY THIRD PARTY SOFTWARE, APPLICATIONS OR THIRD PARTY SERVICES, OR THAT DEFECTS IN THE APPLE SOFTWARE OR SERVICES WILL BE CORRECTED. INSTALLATION OF THIS SOFTWARE MAY AFFECT THE USABILITY OF THIRD PARTY SOFTWARE, APPLICATIONS OR THIRD PARTY SERVICES. YOU FURTHER ACKNOWLEDGE THAT THE APPLE SOFTWARE AND SERVICES ARE NOT INTENDED OR SUITABLE FOR USE IN SITUATIONS OR ENVIRONMENTS WHERE THE FAILURE OR TIME DELAYS OF, OR ERRORS OR INACCURACIES IN THE CONTENT, DATA OR INFORMATION PROVIDED BY, THE APPLE SOFTWARE OR SERVICES COULD LEAD TO DEATH, PERSONAL INJURY, OR SEVERE PHYSICAL OR ENVIRONMENTAL DAMAGE, INCLUDING WITHOUT LIMITATION THE OPERATION OF NUCLEAR FACILITIES, AIRCRAFT NAVIGATION OR COMMUNICATION SYSTEMS, AIR TRAFFIC CONTROL, LIFE SUPPORT OR WEAPONS SYSTEMS. NO ORAL OR WRITTEN INFORMATION OR ADVICE GIVEN BY APPLE OR AN APPLE AUTHORIZED REPRESENTATIVE SHALL CREATE A WARRANTY. SHOULD THE APPLE SOFTWARE OR SERVICES PROVE DEFECTIVE, YOU ASSUME THE ENTIRE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF IMPLIED WARRANTIES OR LIMITATIONS ON APPLICABLE STATUTORY RIGHTS OF A CONSUMER, SO THE ABOVE EXCLUSION AND LIMITATIONS MAY NOT APPLY TO YOU.
    9. Limitation of Liability. TO THE EXTENT NOT PROHIBITED BY APPLICABLE LAW, IN NO EVENT SHALL APPLE BE LIABLE FOR PERSONAL INJURY, OR ANY INCIDENTAL, SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES WHATSOEVER, INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF PROFITS, LOSS OF DATA, BUSINESS INTERRUPTION OR ANY OTHER COMMERCIAL DAMAGES OR LOSSES, ARISING OUT OF OR RELATED TO YOUR USE OR INABILITY TO USE THE APPLE SOFTWARE AND SERVICES OR ANY THIRD PARTY SOFTWARE OR APPLICATIONS IN CONJUNCTION WITH THE APPLE SOFTWARE, HOWEVER CAUSED, REGARDLESS OF THE THEORY OF LIABILITY (CONTRACT, TORT OR OTHERWISE) AND EVEN IF APPLE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME JURISDICTIONS DO NOT ALLOW THE LIMITATION OF LIABILITY FOR PERSONAL INJURY, OR OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS LIMITATION MAY NOT APPLY TO YOU. In no event shall Apple's total liability to you for all damages (other than as may be required by applicable law in cases involving personal injury) exceed the amount of fifty dollars ($50.00). The foregoing limitations will apply even if the above stated remedy fails of its essential purpose.

  • Kisight:- If I Don't Have or Want to Use My iSight What Can I Use ?

    kisight:- If I Don't Have or Want to Use My iSight What Can I Use ?
    Or What Cameras are available for Macs ?
    This question used to come up for Macs that did not have Internal Cameras and the User did not have an External iSight.
    Since the advent of Intel Mac and the Internal iSight and OS 10.4.9 (late Tiger) the question has broadened from "What can I use with iChat ?" to "What cameras can I use with My Mac ?" and from there into the current Question this User Tip plans to answer.
    On the whole it is a case of matching a camera for the type of application you are going to use it most with.
    A web cam can be used in iMovie to create Email or Video Blogs although Camcorders do a better job. Camcorders can be used as web cams.
    Camera Types
    These fall into three main categories that themselves have subsets.
    Your choice is going to be influenced by the Applications you want to use it with.
    1) Firewire Cameras (Plug an Play)
    a) The iSight (External) made by Apple and several other similar cameras have mostly disappeared off the market. (Although iSights seem to be still doing well on Ebay - See Version and Mounts).
    b) Firewire Camcorders. These vary as to which apps that work with dues to the different Signal outputs they can do.
    Apple Article TA26556 Highlights some that have issues due to their proprietary DV Format.
    2) USB 1.1 able Cameras. (Not Plug and Play)
    This includes most cameras pre Vista (more on that later)
    Most of these will need a suitable Mac Driver either from the Manufacturer or from one of two Generic sources (macam and IOXeperts). Some manufacturers will include a Mac Driver on the CD that comes with the camera some will supply it as a download from their Site.
    It is worth while saying at this point that iChat will also need this reasonably cheap iUSBCam Utility as well.
    This Utility was originally designed for getting the External iSight to work on computers less than the G3/600Mghz spec for iChat. Then it included the ability to get USB cameras to work with iChat.
    You will need one of these three options listed so far if you are OS 10.4.8 or below or have only USB 1.1 ports/sockets on your Mac.
    3) USB 2.0 Cameras. (Plug and Play in most cases)
    a) Those that are UVC (USB Video Class) Compliant (Also listed as Vista Certified)
    Apple added a UVC driver to the OS at 10.4.9 but your Mac also has to have an USB 2.0 port that you can plug such a camera into (Some keyboard ports are not USB 2.0). This means that the camera is Plug and Play although it may not have all the features it has on a PC
    b) Those that are USB 2.0 but are not Vista Certified/UVC compliant. (You are going to need Mac Drivers again)
    This site about Apple Compatible cameras may be of some help.
    A Note on quality of Pictures.
    Firewire cameras of either sort are best with Camcorders being the best of all. (Generally more pixels delivered faster to your Computer)
    The Newer USB 2.0 cameras are tending to exceed the 640 X 480 pixels that earlier USB1.1 cameras use with some currently giving 1.3Mp resolutions. It should be noted though that not all applications will use this format.
    Look closely at the maximum Frame rate (fps) a camera can produce. You may not get it is every applications but something that starts with a max of 15fps is going to give you no leeway.
    Applications
    You may get some more insight into what to go for by asking in one of these forums:-
    iSight Discussions,
    iChat AV Discussions for iChat 3 and iChat 2 and Earlier,
    iChat and iChat Sharing (in Leopard)
    and iMovie Discussions
    Please Note:- some of these are Category Links and you have to select a forum within the list at the top of the linked page.
    <hr>
    Versions and Mounts Which Version Am I Buying ?
    First off I will not say so much on Buying a second hand External iSight other than making sure you use a reputable Selling site or an Individual Seller so that you have recourse if the device turns out to be faulty. Try and get to see the camera working if you can, preferably seeing it plugged in and working or by iChat and seeing the Pic it produces (Get the person to show you live Screen shots (or Screen Share in Leopard/iChat 4) of System Preferences > Sound > Input as the iSight will be listed)
    What I will list here is info about the different versions.
    There were three versions before the External iSight was discontinued. There is little outward differences as the main change is the mounts that are included with each version. They all function the same way.
    The versions are distinguished by letters (Revision A, B or C) in addition to the base part number and an added slash (M8817LL/).The Last model included different mounts for Laptops, Desktop Stand, Magnetic mount and one for a Flat Panel iMac (the Lampshade one). See pictures in this PDF on page 6.
    Apple no Longer sell the External iSight or the Apple M9314G/B iSight Accessory Kit either but you may find it at other places as well if the mount you want/need does not come with the camera. Pics of Box and Contents
    It appears that individual iSight mounts and other items can be purchased though this iSight Service FAQ page
    Remember the youngest External iSight is likely to be at least 4 years old. Current anecdotal information suggests the cost of an Apple Repair to a faulty External iSight exceeds the cost of a USB Replacement (Or the value in real terms, of the camera itself - although higher prices seem to be quoted on Ebay and Amazon)
    First Draft
    10:08 PM Sunday; May 17, 2009
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"

    Thanks Nubz
    I will review further an correct myself.
    The last reads the way I meant as in physically getting to see it.
    I am not sure you are reading it the same way.
    As a consequence your suggestion seems a bit ambiguous to my mind.
    Thanks for the input. I will read a digest context a bit more and see if I can rephrase.
    8:12 PM Thursday; May 21, 2009
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"

  • What can I use my Droid Charge for, after I upgrade to the new Samsung Galaxy S2 for VZW on Sept 8?

    what can I use my Droid Charge for, after I upgrade to the new Samsung Galaxy S2 for Verizon on September 8?
    I guess it can run fine on Wi-Fi and become a media player.... or is there a market for 1-month-old Droid Charge phones?
    How much trade-in value can I get from VZW or BestBuy or Amazon?
    Thanks!

    http://www.droid-life.com/2011/08/03/leaked-verizon-roadmap-reveals-potential-launch-dates-for-stratosphere-vigor-bionic-and-more/
    DROID Bionic:  (9/8 launch) – You already know everything about this device, don’t you?
    Samsung Stratosphere:  (9/8 launch) – 4G LTE device running Android 2.3
    HTC Vigor:  (10/6 launch) – Will replace the HTC Thunderbolt
    LG Revolution 2:  (10/20 launch) – Will replace the original Revolution
    Samsung Galaxy Tab P8 (November launch) – Could be the 8.9″ Galaxy Tab?
    Samsung Illusion:  (9/29 launch) – 3G smartphone running Android 2.3
    Samsung Plato:  (January launch) – whatever it is, it was pushed to 2012
    HTC Bliss:  (9/29 launch) – Lower end Android 2.3 device; the chick phone?
    Motorola XOOM 4G LTE:  (9/8 launch) – Assuming this is the date that the 4G LTE upgrade starts. Also when the 4G LTE version will be in stores.

  • What can I use for a low battery warning on a Mac Book OSX10.8?

    What can I use for a low battery warning on a Mac Book OSX10.8?

    What you should see above all your windows when your battery gets to low.

  • HT204382 what can I use to view flv files on my Mac with Lion?

    What can I use to view flv files on my mac running lion? I have tried several free ones like VLC & they play 4-5 seconds & quit?

    http://perian.org allows playback of Flash formats via QuickTime Player.

  • What can i use now instead of iweb?

    I know Apple did away with iweb some time ago, but what can I use now to create a simple website using mac templates?

    Apple have not 'Done away with iWeb' as you put it.  They are no longer supporting it and no longer upgrading it, but this DOES NOT mean that you can't still use it to create websites with.
    Apple stopped supporting it sometime ago now, but it is an application like any other that you have and if you have it on your Mac, then you can still use it - it works with both Lion and Mountain Lion and if you want it you can still get it, but you'll have to purchase it from Amazon as part of either the iLife 11 or iLife 09 boxed set.
    If you really want to use other software, which you don't need to take a look at RapidWeaver, Sandvox, Freeway Express and Pro 6, Flux 4 and Quick n' Easy Website Builder.  Most, if not all of these have free month long trials where you can download and try before you buy.
    As well as these, you have other options such as the online web site builders such as http://www.wix.com or http://www.weebly.com, or the CMS's (Content Management Systems) that you can install directly on your host/server and include http://drupal.org and http://joomla.org amongst others.
    Rage software are also producing their own version of iWeb called EasyWeb - however, all first reports would seem to suggest that you won't be able to purchase this software on its own when it is released - it will initially be tied to Rage web hosting, so you would need to purchase this first to be able to use EasyWeb.
    However, if you still have iWeb then use it for as long as it works and don't look elsewhere.  Just because iWeb is no longer sold or supported by Apple does not mean that you can't still use it - you most certainly can.

  • What can I use instead of adobe flash 9?

    What can I use instead of Adobe Flash 9 on iPad mini?

    There are a number of apps in teh app store that provide "translation" type services for flash content (iSwifter, Puffin are a couple, there may be more). Basically these apps take the flash video content and route it to a third server that converts it to a different format and then routes to your device. Reveiws are mixed and they may not work with all flash content.
    Alternately, you might check to see if the specific sites youare visiting have their own apps.

Maybe you are looking for