How to auto update JTable during runtime

Can anyone tell me how to dynamically update a JTable during execution, what i mean isin the I want the table to automatically add new rows as i enter new data.
if I pass the object array reference of the TableModel to a method, then add more objects to the array and the revalidate the JTable will it work, or how do I do it ? Thanks

Your table model should extend AbstractTableModel. And when (for example) it adds a row to whatever data structure is supporting the model, it should call fireTableRowsInserted... you can find out more about those methods in the API documentation. You don't need to revalidate or invalidate or validate the JTable, at least I don't have that in my code anywhere.

Similar Messages

  • How to bind a JTable in runtime.

    Hello Guys,
    Anyone know tell me how to bind a JTable adf Swing at Runtime?
    In other words, I want to create the bindings when the application to be running.
    Thanks in advanced.

    Try the static createAttributeListBinding() methods in JUTableBinding.
    Sascha

  • How to Auto Update an air app created in flash cs5

    i have an application that needs to check auto update everytime it starts. but i have only found how to do it in fleash builder. sin ce im working in flash professional cs5 I DONT KNOW WHAT TO DO
    any heads up?

    The same techniques work in Flash/ActionScript. See http://help.adobe.com/en_US/air/build/WS5b3ccc516d4fbf351e63e3d118666ade46-7ff2.html. Although some of the examples are written in MXML, the relevant code is all ActionScript.

  • How to (auto)-update Adobe CS4

    A few days ago, Adobe CS4 was installed on my new Dell XPS computer (Windows 7).
    Since then, there was no autoupdate of any of CS programs.   I tried to update manually (Help>updagte) from CS 4.
    I got the error (see the attachment).   I got the same error when I tried to manually update of Acrobat.
    Please help me how to go around this problem  Thanks. In

    hummer777 wrote:
    BTW, I now realized that I got to download MANUALLY tons of updated files.
    I am now tired of downloading further.
    I  decided to wait until Adobe fixes the autoupdating issue.
    I'm sorry, I should have said you only need to download the essential updates like Photoshop 11.0.1 and Acrobat etc.
    You may have a long wait for the auto updater to be fixed

  • How to auto update date column without using trigger

    Hi,
    How to write below MYSQL query in Oracle 10g :
    CREATE TABLE example_timestamp (
    Id number(10) NOT NULL PRIMARY KEY,
    Data VARCHAR(100),
         Date_time TIMESTAMP DEFAULT current_timestamp on update current_timestamp
    I need to auto update the Date_Time column without using trigger when ever i update a record.
    Example shown below is from MYSQL. I want to perform the below steps in ORACLE to auto update Date_Time column.
    mysql> INSERT INTO example_timestamp (data)
    VALUES ('The time of creation is:');
    mysql> SELECT * FROM example_timestamp;
    | id | data | Date_Time |
    | 1 | The time of creation is: | 2012-06-28 12:37:22 |
    mysql> UPDATE example_timestamp
    SET data='The current timestamp is: '
    WHERE id=1;
    mysql> SELECT * FROM example_timestamp;
    | id | data | Date_Time |
    | 1 | The current timestamp is: | 2012-06-28 12:38:55 |
    Regards,
    Yogesh.

    Is there no functionality in oracle to auto update date column without using trigger??
    I dont want to update the date column in UPDATE statement.
    The date column should automatically get updated when ever i execute an Update statement.

  • How to auto update LOV in Crystal Parameter inherent from SAP MDX query

    Hi,
    I'm using SAP BW MDX as my data source. How do I auto update the LOV in the parameters such that LOVs are always updated from the source.
    I am using Crystal Report 2008.
    Thank you.
    Rose

    Hi
    Please refer to BusinessObjects XI Integration for SAP Solutions User's Guide from [here|http://help.sap.com/businessobject/product_guides/boexir31/en/xi3-1_bip_sap_user_en.pdf]
    Hope this helps!!!
    Regards
    Sourashree

  • How to disable close button during runtime

    Hi everybody.,
    Please help me how to disable the close button at top of the window during runtime. I dont want the user to use that button to close. I have used button called Exit in that form but sometimes users closing by clicking that button.
    I am using Oracle form 10g R1.
    Thanks in Advance,

    Hi,
    Thanks Mr. Arif Khadas for your quick reply.
    While running the form, in window there will be two close button, one is in form and another one is in Internet Explorer. By making changes on the property what you said above this will hide only the form's close button. I want to hide the internet explorer close button also.
    Thanks in advance.

  • How to disable UI element during runtime

    Hi!
    Can someone show me how to access the properties of ui elements during runtime?
    eg. in the method  WDDOINIT i want to enable/disable the GroupBox "Group"
    how to?
    thanks

    >
    Abhimanyu Lagishetti wrote:
    > ideal way is the one i specified,
    >
    > other way is you have to change it in WDDOMODIFYVIEW
    >
    > to get any UI element this is the code
    >
    > view->get_element( '<ID of the UI element>' ). which return the corresponding UI element reference
    >
    > the UI element classes start with CL_WD_*.
    >
    > for example: inputfield CL_WD_INPUT_FIELD
    > data: lr_input type ref to cl_wd_input_field.
    > lr_input ?= view->get_element( '<ID of the UI element>' ).
    > lr_input->set_enable( abap_true ).
    >
    > Abhi
    I would like to stress that this NOT the SAP recommended way of controlling the properties on UI elements - the first solution you were give would be the recommended approach.  The direct UI coding access should be used as a last resort when working with dynamically generated UI elements.  Otherwise you should always try and set the UI element properties via context binding. This makes your application more accessible to customizing/personalization, makes it easier to maintain over time and provides the best performance.

  • HT1338 how do i update to java runtime environment? Sun JavaVM (Virtual Machine)

    I need to update/install Java Runtime in order to update my Brother Printer. How do I install this program?

    See Using Java in Mac OS X.

  • How to auto update a section on all pages.

    Hi,
    I have a section on the right hand side of a website I'm developing containing txt and it's controlled by CSS which also appears on all the other pages, so what I want to be able to do is when I add a new bit of text to it on one page it will auto update with the new txt on all the other pages to save me copying and pasting the same bit of txt on all the pages.
    Hope that made sense and hope someone can help.
    Thanks

    You can use Dreamweaver Templates or use serverside include.   (SSI)
    Using the template function within Dreamweaver is a good way to go if it's a small site . .
    For larger sites then serverside includes would be more practical and earlier for maintenance purposes.
    Templates:
    You create a master template page, you declare which areas will be the same for every page, (non-editable regions)  and then declare an area that will change on every page (the content area) , these are editable regions.
    Once you create the template and save it, you are then able to create 'child' pages from this template  - as many as you like  :-)  If you every need to make a change to the menu or the footer or the header, change it in the master template, save it and the changes will flow through to the child pages created from the template.
    Using DW Templates:
    http://www.adobe.com/devnet/dreamweaver/templates.html
    http://www.adobe.com/devnet/dreamweaver/articles/dw_templates.html
    The other option is to use Server Side Includes (SSI)
    A bit more about SSIs here:
    http://help.adobe.com/en_US/Dreamweaver/10.0_Using/WSc78c5058ca073340dcda9110b1f 693f21-7b6ca.html
    http://bignosebird.com/ssi.shtml
    One major difference between using Templates and SSI?
    When you make a change to a template page, you will need to re-upload all the pages to the server that were changed - may become very tedious if it is a very large site.
    With using SSI, you make a change to one file and only have to upload the one file and all pages on the server will be update accordingly.
    When to use Templates, Library Items & SSIs -
    http://www.adobe.com/devnet/dreamweaver/articles/ssi_lbi_template.html
    Nadia
    Adobe® Community Expert : Dreamweaver
    Unique CSS Templates | Tutorials | SEO Articles
    http://www.DreamweaverResources.com
    Web Design & Development
    http://www.perrelink.com.au
    http://twitter.com/nadiap

  • How stop auto update before you insert the ipod

    This seems to be a real quandary. sometimes you want to insert your ipod without the whole updating thing taking over you ipod. but I don't think you can change that setting unless the ipod in plugged into computer, and if setting is auto update it just starts. any ideas appreciated. thanks.

    thanks Niel, but before I proceed, what exactly happens when you do that, does the ipod not do the auto update? and you can access or update manually?
    also, anyway to stop the updating once it starts? thanks

  • How to delete RFC destination during runtime

    Hi Experts,
    I need to delete the RFC destination (created via SM59) during runtime. Which API can I use to do so?
    Thanks & Best Regards, Johnney.

    Do delete different type of RFC destination at runtime , you can use these FM on the basis of its type:
    1. To Read Type of RFC Destination use
                    RFC_READ_DESTINATION_TYPE
    2. To Delete RFC Destination
                   RFC_MODIFY_ARFC_PARAMETERS
                   RFC_MODIFY_HTTP_DEST_TO_EXT
                   RFC_MODIFY_HTTP_DEST_TO_R3
                   RFC_MODIFY_L_DESTINATION                - Read Documentation
                   RFC_MODIFY_R3_DESTINATION             - Read Documentation
                   RFC_MODIFY_TCPIP_DESTINATION        - Read Documentation
    Regds.
    Suman

  • Auto updater failed during update to PS 13.0.2 error U44M2P7

    PS CS 6 crashes after running auto updater for the MBP Retina Support update. What can I do to fix this?

    I tried this as well and the installation process fails with the same error code.
    This the crash report that is generated:
    Process:         Adobe Photoshop CS6 [10318]
    Path:            /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/MacOS/Adobe Photoshop CS6
    Identifier:      com.adobe.Photoshop
    Version:         13.0.0 (20120315.r.428)
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [185]
    User ID:         501
    Date/Time:       2012-12-11 06:55:29.847 -0500
    OS Version:      Mac OS X 10.8.2 (12C3006)
    Report Version:  10
    Interval Since Last Report:          304648 sec
    Crashes Since Last Report:           6
    Per-App Interval Since Last Report:  33 sec
    Per-App Crashes Since Last Report:   5
    Anonymous UUID:                      8408623C-FBA0-416F-821B-DC1EB02FD34F
    Crashed Thread:  9
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    abort() called
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_c.dylib                       0x00007fff8e78ac9c OSAtomicCompareAndSwap64Barrier$VARIANT$mp + 8
    1   libsystem_c.dylib                       0x00007fff8e7a1d54 pthread_mutex_lock + 463
    2   com.adobe.Photoshop                     0x000000010005f438 0x100000000 + 390200
    3   com.adobe.Photoshop                     0x000000010024e070 0x100000000 + 2416752
    4   com.adobe.Photoshop                     0x000000010104d3c7 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 8352359
    5   com.adobe.Photoshop                     0x000000010104d5a9 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 8352841
    6   com.adobe.Photoshop                     0x000000010104d73b AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 8353243
    7   com.adobe.Photoshop                     0x0000000101044ea9 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 8318281
    8   com.adobe.Photoshop                     0x0000000101948c4e AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 17771246
    9   com.adobe.Photoshop                     0x0000000100bbb245 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 3559653
    10  com.adobe.Photoshop                     0x0000000100c51f73 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 4177427
    11  com.adobe.Photoshop                     0x00000001007b045b boost::system::system_error::what() const + 1998427
    12  com.adobe.Photoshop                     0x00000001007b0999 boost::system::system_error::what() const + 1999769
    13  com.adobe.Photoshop                     0x000000010054b24c 0x100000000 + 5550668
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff875b0d16 kevent + 10
    1   libdispatch.dylib                       0x00007fff89f74dea _dispatch_mgr_invoke + 883
    2   libdispatch.dylib                       0x00007fff89f749ee _dispatch_mgr_thread + 54
    Thread 2:
    0   libsystem_kernel.dylib                  0x00007fff875b00fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8e7a0f89 _pthread_cond_wait + 869
    2   MultiProcessor Support                  0x000000010cf050f3 main + 8403
    3   MultiProcessor Support                  0x000000010cf051b0 main + 8592
    4   MultiProcessor Support                  0x000000010cf21f50 main + 126768
    5   libsystem_c.dylib                       0x00007fff8e79c742 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff8e789181 thread_start + 13
    Thread 3:
    0   libsystem_kernel.dylib                  0x00007fff875b00fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8e7a0f89 _pthread_cond_wait + 869
    2   MultiProcessor Support                  0x000000010cf050f3 main + 8403
    3   MultiProcessor Support                  0x000000010cf051b0 main + 8592
    4   MultiProcessor Support                  0x000000010cf21f50 main + 126768
    5   libsystem_c.dylib                       0x00007fff8e79c742 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff8e789181 thread_start + 13
    Thread 4:
    0   libsystem_kernel.dylib                  0x00007fff875b00fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8e7a0f89 _pthread_cond_wait + 869
    2   MultiProcessor Support                  0x000000010cf050f3 main + 8403
    3   MultiProcessor Support                  0x000000010cf051b0 main + 8592
    4   MultiProcessor Support                  0x000000010cf21f50 main + 126768
    5   libsystem_c.dylib                       0x00007fff8e79c742 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff8e789181 thread_start + 13
    Thread 5:
    0   libsystem_kernel.dylib                  0x00007fff875b00fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8e7a0f89 _pthread_cond_wait + 869
    2   MultiProcessor Support                  0x000000010cf050f3 main + 8403
    3   MultiProcessor Support                  0x000000010cf051b0 main + 8592
    4   MultiProcessor Support                  0x000000010cf21f50 main + 126768
    5   libsystem_c.dylib                       0x00007fff8e79c742 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff8e789181 thread_start + 13
    Thread 6:
    0   libsystem_kernel.dylib                  0x00007fff875b00fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8e7a0f89 _pthread_cond_wait + 869
    2   MultiProcessor Support                  0x000000010cf050f3 main + 8403
    3   MultiProcessor Support                  0x000000010cf051b0 main + 8592
    4   MultiProcessor Support                  0x000000010cf21f50 main + 126768
    5   libsystem_c.dylib                       0x00007fff8e79c742 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff8e789181 thread_start + 13
    Thread 7:
    0   libsystem_kernel.dylib                  0x00007fff875b00fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8e7a0f89 _pthread_cond_wait + 869
    2   MultiProcessor Support                  0x000000010cf050f3 main + 8403
    3   MultiProcessor Support                  0x000000010cf051b0 main + 8592
    4   MultiProcessor Support                  0x000000010cf21f50 main + 126768
    5   libsystem_c.dylib                       0x00007fff8e79c742 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff8e789181 thread_start + 13
    Thread 8:
    0   libsystem_kernel.dylib                  0x00007fff875b00fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8e7a0f89 _pthread_cond_wait + 869
    2   MultiProcessor Support                  0x000000010cf050f3 main + 8403
    3   MultiProcessor Support                  0x000000010cf051b0 main + 8592
    4   MultiProcessor Support                  0x000000010cf21f50 main + 126768
    5   libsystem_c.dylib                       0x00007fff8e79c742 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff8e789181 thread_start + 13
    Thread 9 Crashed:
    0   libsystem_kernel.dylib                  0x00007fff875b0212 __pthread_kill + 10
    1   libsystem_c.dylib                       0x00007fff8e79daf4 pthread_kill + 90
    2   libsystem_c.dylib                       0x00007fff8e7e1dce abort + 143
    3   com.adobe.Photoshop                     0x00000001007affda boost::system::system_error::what() const + 1997274
    4   libc++abi.dylib                         0x00007fff893203f5 safe_handler_caller(void (*)()) + 8
    5   libc++abi.dylib                         0x00007fff89320450 std::terminate() + 16
    6   libc++abi.dylib                         0x00007fff89321647 __cxa_rethrow + 85
    7   com.adobe.Photoshop                     0x00000001007afea8 boost::system::system_error::what() const + 1996968
    8   libstdc++.6.dylib                       0x00007fff83fd4527 std::terminate() + 18
    9   com.adobe.Photoshop                     0x00000001019582e3 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 17834371
    10  libsystem_c.dylib                       0x00007fff8e79c742 _pthread_start + 327
    11  libsystem_c.dylib                       0x00007fff8e789181 thread_start + 13
    Thread 10:: com.apple.appkit-heartbeat
    0   libsystem_kernel.dylib                  0x00007fff875b0386 __semwait_signal + 10
    1   libsystem_c.dylib                       0x00007fff8e826800 nanosleep + 163
    2   libsystem_c.dylib                       0x00007fff8e826717 usleep + 54
    3   com.apple.AppKit                        0x00007fff8685e958 -[NSUIHeartBeat _heartBeatThread:] + 543
    4   com.apple.Foundation                    0x00007fff8c1a7612 __NSThread__main__ + 1345
    5   libsystem_c.dylib                       0x00007fff8e79c742 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff8e789181 thread_start + 13
    Thread 11:
    0   libsystem_kernel.dylib                  0x00007fff875b06d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8e79eeec _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8e79ecb3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8e789171 start_wqthread + 13
    Thread 9 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x0000000000000006  rcx: 0x0000000111a80db8  rdx: 0x0000000000000000
      rdi: 0x0000000000007203  rsi: 0x0000000000000006  rbp: 0x0000000111a80de0  rsp: 0x0000000111a80db8
       r8: 0x00007fff7446e278   r9: 0x000000005100043e  r10: 0x0000000020000000  r11: 0x0000000000000206
      r12: 0x0000000000007203  r13: 0x0000000000000000  r14: 0x0000000111a81000  r15: 0x0000000106c74570
      rip: 0x00007fff875b0212  rfl: 0x0000000000000206  cr2: 0x00007fff74467fe8
    Logical CPU: 0
    Binary Images:
           0x100000000 -        0x10333cfff +com.adobe.Photoshop (13.0.0 - 20120315.r.428) <6A87A703-3170-CA73-8C77-35C282C4E264> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/MacOS/Adobe Photoshop CS6
           0x1039bf000 -        0x1039ebff7 +libtbb.dylib (0) <57655978-A378-BE1E-7905-7D7F951AD6F7> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/libtbb.dylib
           0x103a02000 -        0x103a10ff3 +libtbbmalloc.dylib (0) <CB038B96-2999-5EB1-E26A-7720A7A8F8CD> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/libtbbmalloc.dylib
           0x103a24000 -        0x103a2bfff  org.twain.dsm (1.9.4 - 1.9.4) <80EC0952-6137-3CA6-813F-D753856A13CE> /System/Library/Frameworks/TWAIN.framework/Versions/A/TWAIN
           0x103a33000 -        0x103a4dff7 +com.adobe.ahclientframework (1.7.0.56 - 1.7.0.56) <C1C5DE5C-39AB-0871-49A6-FA3449D39B8A> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/ahclient.framework/Versions/A/ahclient
           0x103a56000 -        0x103a5bfff  com.apple.agl (3.2.1 - AGL-3.2.1) <1A57AE22-37F6-3A2E-8098-183B280EEEA9> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
           0x103a62000 -        0x103c70fff +com.adobe.owl (AdobeOwl version 4.0.93 - 4.0.93) <CB035C4D-044D-4004-C887-814F944E62ED> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
           0x103cb1000 -        0x1040f7ff7 +com.adobe.MPS (AdobeMPS 5.8.0.19463 - 5.8.0.19463) <8A4BA3B2-6F6A-3958-ABDE-C3E8F21373B0> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
           0x104173000 -        0x1044ccff7 +com.adobe.AGM (AdobeAGM 4.26.17.19243 - 4.26.17.19243) <E96C804B-158B-D4A2-9A64-482F9ADC29D0> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
           0x104535000 -        0x104896fef +com.adobe.CoolType (AdobeCoolType 5.10.31.19243 - 5.10.31.19243) <8BFF14FB-AA14-1CBF-C2A3-715363B5A841> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
           0x1048e3000 -        0x10490bff7 +com.adobe.BIBUtils (AdobeBIBUtils 1.1.01 - 1.1.01) <9BDD08A8-2DD8-A570-7A7B-EDAA7097D61B> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
           0x104912000 -        0x10493efff +com.adobe.AXE8SharedExpat (AdobeAXE8SharedExpat 3.7.101.18636 - 3.7.101.18636) <488DF1F7-A643-5168-706A-498A0322A87E> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8SharedExpa t
           0x104961000 -        0x104aaeff7 +com.winsoft.wrservices (WRServices 5.0.0 - 5.0.0) <FFA48E0A-A17C-A04F-AE20-6815EB944DEA> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices
           0x104b22000 -        0x104b91fef +com.adobe.AIF (AdobeAIF 3.0.00 - 3.0.00) <924155A9-D00E-B862-C490-5099BA70B978> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/aif_core.framework/Versions/A/aif_core
           0x104bb8000 -        0x104c11fff +com.adobe.AIF (AdobeAIF 3.0.00 - 3.0.00) <BC353D4E-1AE2-3FB5-D3EE-81A09C0C4328> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/data_flow.framework/Versions/A/data_flow
           0x104cb1000 -        0x104d38ff7 +com.adobe.AIF (AdobeAIF 3.0.00 - 3.0.00) <5FCA15B4-F721-09C3-B412-1F86D9D7DE9E> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/image_flow.framework/Versions/A/image_flow
           0x104d9d000 -        0x104db8ff7 +com.adobe.AIF (AdobeAIF 3.0.00 - 3.0.00) <BB7B342A-8CBC-4B73-58A2-9B062F590EBC> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/image_runtime.framework/Versions/A/image_runtime
           0x104dd2000 -        0x10500ffff +com.adobe.AIF (AdobeAIF 3.0.00 - 3.0.00) <6839CFB1-74EE-B205-7D82-ABC5428E0810> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/aif_ogl.framework/Versions/A/aif_ogl
           0x10510e000 -        0x105287fff +com.adobe.ACE (AdobeACE 2.19.18.19243 - 2.19.18.19243) <7F28B188-1D1B-20C9-BBB9-B74FCC12ECAD> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
           0x10529a000 -        0x1052b9fff +com.adobe.BIB (AdobeBIB 1.2.02.19243 - 1.2.02.19243) <B7D7EE28-D604-2989-B099-62AEF4885C21> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
           0x1052c0000 -        0x1053a4fe7 +com.adobe.amtlib (amtlib 6.0.0.75 - 6.0.0.75) <07A3E1E1-55C3-BA5B-A0B0-60250809ED61> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib
           0x1053b5000 -        0x10547afff +com.adobe.JP2K (2.0.0 - 2.0.0.18562) <B14B096C-AA23-BA8F-E3AE-8DB102F9D161> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeJP2K.framework/Versions/A/AdobeJP2K
           0x1054c7000 -        0x1054cbff7 +com.adobe.ape.shim (3.3.8.19346 - 3.3.8.19346) <13D5CEF7-6090-CD66-8DA0-190771950F76> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/adbeape.framework/Versions/A/adbeape
           0x1054d1000 -        0x10554ffff +com.adobe.FileInfo.framework (Adobe XMP FileInfo 5 . 3 . 0 . 0 -i 3 - 66.145433) <5C63613F-6BDE-1C29-D3FD-9D292F9ADB12> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/FileInfo.framework/Versions/A/FileInfo
           0x105560000 -        0x1055c0ff7 +com.adobe.AdobeXMPCore (Adobe XMP Core 5.3 -c 11 - 66.145661) <B475CD07-1024-560D-5BFE-2A6FCE63925C> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
           0x1055ca000 -        0x105b22fef +com.nvidia.cg (2.2.0006 - 0) /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/Cg.framework/Cg
           0x10617f000 -        0x1061edfef +com.adobe.headlights.LogSessionFramework (2.1.2.1652) <25E6F475-1522-419C-2169-547FCF2FD97F> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/LogSession.framework/Versions/A/LogSession
           0x106241000 -        0x106266ffe +adobepdfsettings (1) <56E7F033-6032-2EC2-250E-43F1EBD123B1> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/adobepdfsettings.framework/Versions/A/adobepdfsettings
           0x1062a1000 -        0x1062a5ff7 +com.adobe.AdobeCrashReporter (6.0 - 6.0.20120201) <A6B1F3BD-5DB0-FEE5-708A-B54E5CA80481> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCrashReporter
           0x1062ab000 -        0x10645bfef +com.adobe.PlugPlug (3.0.0.383 - 3.0.0.383) <908DBB12-D2AC-1844-BD2A-F1C483424917> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/PlugPlug.framework/Versions/A/PlugPlug
           0x106512000 -        0x106532fff +com.adobe.AIF (AdobeAIF 3.0.00 - 3.0.00) <DC3301F2-FC6E-70C7-3927-B0DD024210D6> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/aif_ocl.framework/Versions/A/aif_ocl
           0x10654c000 -        0x106609fff +com.adobe.AdobeExtendScript (ExtendScript 4.2.12.18602 - 4.2.12.18602) <0957DFA6-0593-CE4B-8638-00F32113B07B> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeExtendScript.framework/Versions/A/AdobeExtendScript
           0x106653000 -        0x106701fef +com.adobe.AdobeScCore (ScCore 4.2.12.18602 - 4.2.12.18602) <9CEE95E5-2FC6-5E58-02A4-138EA6F8D894> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeScCore.framework/Versions/A/AdobeScCore
           0x10673e000 -        0x106838fe7 +com.adobe.AXEDOMCore (AdobeAXEDOMCore 3.7.101.18636 - 3.7.101.18636) <C7652AF2-56D7-8AF8-A207-0BDEDDFF0BEC> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeAXEDOMCore.framework/Versions/A/AdobeAXEDOMCore
           0x1068dc000 -        0x106b25fe7 +com.adobe.linguistic.LinguisticManager (6.0.0 - 17206) <301AAE8E-BA78-230E-9500-FCCA204B49CB> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeLinguistic
           0x106dc8000 -        0x106dcaff7  com.apple.textencoding.unicode (2.5 - 2.5) <0518078E-C652-3CFC-A3FB-903C600CE831> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
           0x107ce4000 -        0x107cf3ff7  libSimplifiedChineseConverter.dylib (61) <A2B475FF-667F-3B7B-A6E9-8768347F2BD6> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
           0x107cf7000 -        0x107cf8ff7  libCyrillicConverter.dylib (61) <D06971D7-9F16-3FE6-81E8-33E0FE4D6586> /System/Library/CoreServices/Encodings/libCyrillicConverter.dylib
           0x107f9c000 -        0x107fb8ff7  libJapaneseConverter.dylib (61) <D0F762C2-5372-3AA2-BBA4-066B8E4B1F8E> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
           0x107fbd000 -        0x107fdefff  libKoreanConverter.dylib (61) <7A601BB8-19DF-3DDC-9C50-3A798290F377> /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
           0x107fe2000 -        0x107ff4ff7  libTraditionalChineseConverter.dylib (61) <DDAFF75C-0714-34F4-818F-8B439AC7BBCA> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
           0x1094f8000 -        0x1094f8fff +Enable Async IO (???) <F56F1FB2-9CF1-19A8-0D14-885A652B19B7> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Required/Plug-Ins/Extensions/Enable Async IO.plugin/Contents/MacOS/Enable Async IO
           0x1097e7000 -        0x1097eafff +FastCore (???) <29AAF151-6CC4-28C5-68B8-0F6600A20435> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Required/Plug-Ins/Extensions/FastCore.plugin/Contents/MacOS/FastCore
           0x10ce3d000 -        0x10ce83fe7 +com.adobe.pip (6.0.0.1654) <3576D8F9-E2F9-6EB8-6684-C2FE6B0A3731> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobePIP.framework/AdobePIP
           0x10cec0000 -        0x10cf45fff +MultiProcessor Support (???) <467BB668-E9DD-60F4-CAAD-768A98174734> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Required/Plug-Ins/Extensions/MultiProcessor Support.plugin/Contents/MacOS/MultiProcessor Support
           0x10f900000 -        0x10f96cfff +MMXCore (???) <B9B6C7FB-CE56-8F6F-664E-DFCBBC5E3ADE> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Required/Plug-Ins/Extensions/MMXCore.plugin/Contents/MacOS/MMXCore
        0x7fff66424000 -     0x7fff6645893f  dyld (210.2.3) <A40597AA-5529-3337-8C09-D8A014EB1578> /usr/lib/dyld
        0x7fff82b16000 -     0x7fff82b59ff7  com.apple.bom (12.0 - 192) <0BF1F2D2-3648-36B7-BE4B-551A0173209B> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
        0x7fff82b5a000 -     0x7fff82bdbfff  com.apple.Metadata (10.7.0 - 707.3) <A45D75C1-B311-39F0-AF4A-63FCCC098C1D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framewor k/Versions/A/Metadata
        0x7fff82c2c000 -     0x7fff82c94fff  libvDSP.dylib (380.6) <CD4C5EEB-9E63-30C4-8103-7A5EAEA0BE60> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvDSP.dylib
        0x7fff82ca7000 -     0x7fff82cc4fff  com.apple.openscripting (1.3.6 - 148.2) <33B87CFB-CACC-3EBC-893D-38AECB94FB8A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework /Versions/A/OpenScripting
        0x7fff82d4f000 -     0x7fff82d6eff7  com.apple.ChunkingLibrary (2.0 - 133.2) <D2A746DE-002A-3C6C-961E-BE94E71DB835> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary
        0x7fff82d6f000 -     0x7fff82da9fff  com.apple.GSS (3.0 - 2.0) <0BDF8090-5EF4-3759-94DE-8521D74188AA> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff82daa000 -     0x7fff82db8fff  com.apple.Librarian (1.1 - 1) <1635162F-239A-341E-83C7-710C55E254AF> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
        0x7fff82db9000 -     0x7fff82dbcfff  libRadiance.dylib (845) <E8956A35-494E-3014-8B86-362D32576116> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
        0x7fff82dbd000 -     0x7fff82dccff7  libxar.1.dylib (105) <370ED355-E516-311E-BAFD-D80633A84BE1> /usr/lib/libxar.1.dylib
        0x7fff82dcd000 -     0x7fff831c6ff7  com.apple.MediaToolbox (1.0 - 926.62) <83BBE53E-29FE-3874-9991-B6D009EADCC5> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
        0x7fff831c7000 -     0x7fff831d2ff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <C12962D5-85FB-349E-AA56-64F4F487F219> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
        0x7fff831d3000 -     0x7fff83209fff  libsystem_info.dylib (406.17) <4FFCA242-7F04-365F-87A6-D4EFB89503C1> /usr/lib/system/libsystem_info.dylib
        0x7fff8320a000 -     0x7fff8320afff  com.apple.Accelerate.vecLib (3.8 - vecLib 3.8) <B5A18EE8-DF81-38DD-ACAF-7076B2A26225> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/vecLib
        0x7fff8320b000 -     0x7fff8322aff7  libresolv.9.dylib (51) <0882DC2D-A892-31FF-AD8C-0BB518C48B23> /usr/lib/libresolv.9.dylib
        0x7fff8327f000 -     0x7fff8328afff  libsystem_notify.dylib (98.5) <C49275CC-835A-3207-AFBA-8C01374927B6> /usr/lib/system/libsystem_notify.dylib
        0x7fff8337d000 -     0x7fff833daff7  com.apple.AE (645.3 - 645.3) <FF867ACA-8628-3E5A-8FA0-AF429B42C5D7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Vers ions/A/AE
        0x7fff833db000 -     0x7fff833e7fff  libCSync.A.dylib (328.0.4) <D49C5371-6BCC-32F6-9013-BFF2E924B790> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libCSync.A.dylib
        0x7fff833e8000 -     0x7fff833fbff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <2F2694E9-A7BC-33C7-B4CF-8EC907DF0FEB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalys is.framework/Versions/A/LangAnalysis
        0x7fff83446000 -     0x7fff834c6ff7  com.apple.ApplicationServices.ATS (332 - 341.1) <BD83B039-AB25-3E3E-9975-A67DAE66988B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/ATS
        0x7fff834c7000 -     0x7fff834d5ff7  libsystem_network.dylib (77.10) <0D99F24E-56FE-380F-B81B-4A4C630EE587> /usr/lib/system/libsystem_network.dylib
        0x7fff834d6000 -     0x7fff834fefff  libJPEG.dylib (845) <A32618D7-FB91-3EE2-A105-5407B2F3F8D8> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff834ff000 -     0x7fff83e8f1f7  com.apple.CoreGraphics (1.600.0 - 328.0.4) <9A1324EF-C9CB-30E4-AE9F-0AEF69052FAE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/CoreGraphics
        0x7fff83e90000 -     0x7fff83e98ff7  libsystem_dnssd.dylib (379.34) <F0AE5B8E-C7CC-3393-927F-B65DB04016AA> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff83f7b000 -     0x7fff83f92fff  com.apple.CFOpenDirectory (10.8 - 151.10) <FFBBA538-00B5-334E-BA5B-C8AD6CDCDA14> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory. framework/Versions/A/CFOpenDirectory
        0x7fff83f93000 -     0x7fff83ffcfff  libstdc++.6.dylib (56) <EAA2B53E-EADE-39CF-A0EF-FB9D4940672A> /usr/lib/libstdc++.6.dylib
        0x7fff83ffd000 -     0x7fff84003ff7  libunwind.dylib (35.1) <21703D36-2DAB-3D8B-8442-EAAB23C060D3> /usr/lib/system/libunwind.dylib
        0x7fff84004000 -     0x7fff84032fff  com.apple.CoreServicesInternal (154.2 - 154.2) <3E6196E6-F3B4-316F-9E1F-13B6B9694C7E> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesI nternal
        0x7fff84033000 -     0x7fff840a1fff  com.apple.framework.IOKit (2.0.1 - 755.20.4) <F2E5AC1B-F03D-3916-B239-7B421579DFA5> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff840a9000 -     0x7fff840f4ff7  com.apple.CoreMedia (1.0 - 926.62) <CFBD094F-DA9C-3498-9D50-BC754B56F00A> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff840f5000 -     0x7fff841baff7  com.apple.coreui (2.0 - 181.1) <83D2C92D-6842-3C9D-9289-39D5B4554C3A> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff841c7000 -     0x7fff841c7fff  com.apple.Carbon (154 - 155) <372716D2-6FA1-3611-8501-3DD1D4A6E8C8> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff841c8000 -     0x7fff842cafff  libcrypto.0.9.8.dylib (47) <74F165AD-4572-3B26-B0E2-A97477FE59D0> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff842cb000 -     0x7fff842d1fff  libGFXShared.dylib (8.6.1) <CF55E720-1B9E-3E24-A1DA-7FA8B261CD8E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
        0x7fff84be6000 -     0x7fff84be9fff  com.apple.AppleSystemInfo (2.0 - 2) <BC221376-361F-3F85-B284-DC251D3BB442> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo
        0x7fff84bea000 -     0x7fff84ce8fff  com.apple.QuickLookUIFramework (4.0 - 555.4) <58EC2F30-0959-3586-A1DD-BDCAF589D2D3> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/V ersions/A/QuickLookUI
        0x7fff84ce9000 -     0x7fff84d15ff7  libRIP.A.dylib (328.0.4) <9DFF2DC8-9877-3546-A760-929CD974E30A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libRIP.A.dylib
        0x7fff84d16000 -     0x7fff84d2cfff  com.apple.MultitouchSupport.framework (235.29 - 235.29) <617EC8F1-BCE7-3553-86DD-F857866E1257> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSuppor t
        0x7fff84d2d000 -     0x7fff84d31fff  libGIF.dylib (845) <2690CE83-E934-3EF8-A30A-996EDADCE3E4> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff84d32000 -     0x7fff84d34ff7  com.apple.print.framework.Print (8.0 - 258) <34666CC2-B86D-3313-B3B6-A9977AD593DA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Version s/A/Print
        0x7fff84d35000 -     0x7fff84d8cff7  com.apple.AppleVAFramework (5.0.18 - 5.0.18) <B75949DD-AC27-3848-8221-00D70D14C7E0> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff84dd5000 -     0x7fff84e26ff7  com.apple.SystemConfiguration (1.12.2 - 1.12.2) <E095637C-457F-3D8F-AE32-A032F9D5A46C> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
        0x7fff84e60000 -     0x7fff850bbff7  com.apple.QuartzComposer (5.1 - 284) <D9CDC9ED-9F03-30F0-80DF-BA189A054AC9> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framewor k/Versions/A/QuartzComposer
        0x7fff850bc000 -     0x7fff8538cfff  com.apple.security (7.0 - 55179.1) <639641EF-8156-3190-890C-1053658E044A> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff8538e000 -     0x7fff85392ff7  com.apple.TCC (1.0 - 1) <F2F3B753-FC73-3543-8BBE-859FDBB4D6A6> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
        0x7fff85393000 -     0x7fff85393fff  libkeymgr.dylib (25) <CC9E3394-BE16-397F-926B-E579B60EE429> /usr/lib/system/libkeymgr.dylib
        0x7fff85394000 -     0x7fff855c9ff7  com.apple.CoreData (106.1 - 407.7) <24E0A6B4-9ECA-3D12-B26A-72B9DCF09768> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff85723000 -     0x7fff85735ff7  libz.1.dylib (43) <2A1551E8-A272-3DE5-B692-955974FE1416> /usr/lib/libz.1.dylib
        0x7fff85736000 -     0x7fff85850fff  com.apple.coreavchd (5.6.0 - 5600.4.16) <0CF2ABE5-B088-3B5D-9C04-47AE708ADAE3> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
        0x7fff85851000 -     0x7fff85c8dfff  com.apple.VideoToolbox (1.0 - 926.62) <7D749558-08B6-3F86-A20E-05ECDACE6F17> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
        0x7fff85c8e000 -     0x7fff85ce5ff7  com.apple.ScalableUserInterface (1.0 - 1) <F1D43DFB-1796-361B-AD4B-39F1EED3BE19> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableUserInterfa ce.framework/Versions/A/ScalableUserInterface
        0x7fff85ed2000 -     0x7fff86176fff  com.apple.CoreImage (8.2.2 - 1.0.1) <930B0B23-DD84-3B0C-B5A9-C09B7068A6F0> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage.framework /Versions/A/CoreImage
        0x7fff862b0000 -     0x7fff862ffff7  libcorecrypto.dylib (106.2) <CE0C29A3-C420-339B-ADAA-52F4683233CC> /usr/lib/system/libcorecrypto.dylib
        0x7fff86300000 -     0x7fff863bdff7  com.apple.ColorSync (4.8.0 - 4.8.0) <6CE333AE-EDDB-3768-9598-9DB38041DC55> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/ColorSync
        0x7fff863be000 -     0x7fff863d1ff7  libbsm.0.dylib (32) <F497D3CE-40D9-3551-84B4-3D5E39600737> /usr/lib/libbsm.0.dylib
        0x7fff863d2000 -     0x7fff864c7fff  libiconv.2.dylib (34) <FEE8B996-EB44-37FA-B96E-D379664DEFE1> /usr/lib/libiconv.2.dylib
        0x7fff864c8000 -     0x7fff8651efff  com.apple.HIServices (1.20 - 417) <A1129272-FEC8-350B-BA26-5A97F23C413D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices .framework/Versions/A/HIServices
        0x7fff8651f000 -     0x7fff86523fff  libpam.2.dylib (20) <C8F45864-5B58-3237-87E1-2C258A1D73B8> /usr/lib/libpam.2.dylib
        0x7fff86524000 -     0x7fff87151ff7  com.apple.AppKit (6.8 - 1187.34) <1FF64844-EB62-3F96-AED7-6525B7CCEC23> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff87152000 -     0x7fff87158fff  libmacho.dylib (829) <BF332AD9-E89F-387E-92A4-6E1AB74BD4D9> /usr/lib/system/libmacho.dylib
        0x7fff87212000 -     0x7fff8725eff7  libauto.dylib (185.1) <73CDC482-16E3-3FC7-9BB4-FBA2DA44DBC2> /usr/lib/libauto.dylib
        0x7fff8738d000 -     0x7fff873aefff  com.apple.Ubiquity (1.2 - 243.10) <F97D3A33-2C8B-3CFF-AF75-A74866D42853> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
        0x7fff873af000 -     0x7fff873b8fff  com.apple.CommerceCore (1.0 - 26) <997CD214-BC78-3C61-A1B8-813EA1CB9997> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCor e.framework/Versions/A/CommerceCore
        0x7fff873e4000 -     0x7fff874e1fff  libsqlite3.dylib (138.1) <ADE9CB98-D77D-300C-A32A-556B7440769F> /usr/lib/libsqlite3.dylib
        0x7fff874e2000 -     0x7fff87513ff7  com.apple.DictionaryServices (1.2 - 184.4) <054F2D6F-9CFF-3EF1-9778-25C551B616C1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryService s.framework/Versions/A/DictionaryServices
        0x7fff87597000 -     0x7fff8759dfff  com.apple.DiskArbitration (2.5.1 - 2.5.1) <C0EC9C24-F5F4-3378-84DE-EA1073DA760E> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff8759e000 -     0x7fff875b9ff7  libsystem_kernel.dylib (2050.20.9) <EC0A9F5B-C9F5-336B-A7DD-49A718042F39> /usr/lib/system/libsystem_kernel.dylib
        0x7fff8782f000 -     0x7fff879a0ff7  com.apple.QTKit (7.7.1 - 2599.13) <5B24A892-ED69-3C01-8B00-DF3AD81A20D4> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff879a4000 -     0x7fff87b2afff  libBLAS.dylib (1073.4) <C102C0F6-8CB6-3B49-BA6B-2EB61F0B2784> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libBLAS.dylib
        0x7fff87b69000 -     0x7fff87b78ff7  com.apple.opengl (1.8.6 - 1.8.6) <720CC06C-0D01-37AE-BB3D-D7F0242B262A> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff88b8e000 -     0x7fff88c1ffff  com.apple.CorePDF (2.0 - 2) <EB5660B1-0D79-34F3-B242-B559AE0A5B4A> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff88cad000 -     0x7fff88d07fff  com.apple.print.framework.PrintCore (8.1 - 387.1) <1FA17B75-33E6-35BD-9198-35F92E37B248> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore. framework/Versions/A/PrintCore
        0x7fff88d4a000 -     0x7fff88d4affd  com.apple.audio.units.AudioUnit (1.8 - 1.8) <29E2C990-3617-3FA2-BDD7-DB7DF493E443> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff88d53000 -     0x7fff88dacfff  com.apple.ImageCaptureCore (5.0.1 - 5.0.1) <2CC27836-1E1E-3633-B15C-A3BA1734D092> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore
        0x7fff88dad000 -     0x7fff88e7fff7  com.apple.CoreText (260.0 - 275.16) <5BFC1D67-6A6F-38BC-9D90-9C712684EDAC> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
        0x7fff88f67000 -     0x7fff88f93fff  com.apple.quartzfilters (1.8.0 - 1.7.0) <B8DE45D7-1827-3379-A478-1A574A1D11D9> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework /Versions/A/QuartzFilters
        0x7fff88fad000 -     0x7fff88fbbfff  libcommonCrypto.dylib (60027) <DA98AE56-BC3F-3AD0-9660-8CC79E4AECE6> /usr/lib/system/libcommonCrypto.dylib
        0x7fff88fbc000 -     0x7fff88ff2fff  com.apple.DebugSymbols (98 - 98) <14E788B1-4EB2-3FD7-934B-849534DFC198> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
        0x7fff88ff3000 -     0x7fff88ff8fff  libcache.dylib (57) <65187C6E-3FBF-3EB8-A1AA-389445E2984D> /usr/lib/system/libcache.dylib
        0x7fff8909b000 -     0x7fff890eaff7  libFontRegistry.dylib (100) <2E03D7DA-9B8F-31BB-8FB5-3D3B6272127F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontRegistry.dylib
        0x7fff890eb000 -     0x7fff89185fff  libvMisc.dylib (380.6) <714336EA-1C0E-3735-B31C-19DFDAAF6221> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvMisc.dylib
        0x7fff89186000 -     0x7fff89187ff7  libremovefile.dylib (23.1) <DBBFAF35-AC78-3856-92F6-6E4FD9DF14A2> /usr/lib/system/libremovefile.dylib
        0x7fff89188000 -     0x7fff891affff  com.apple.framework.familycontrols (4.1 - 410) <AE49B2AB-7D2B-3D52-8E21-60EBEA1A38E6> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
        0x7fff89210000 -     0x7fff8921dff7  com.apple.NetAuth (4.0 - 4.0) <F5BC7D7D-AF28-3C83-A674-DADA48FF7810> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff8921e000 -     0x7fff89220fff  libquarantine.dylib (52) <4BE2E642-A14F-340A-B482-5BD2AEFD9C24> /usr/lib/system/libquarantine.dylib
        0x7fff89221000 -     0x7fff89225fff  com.apple.IOSurface (86.0.3 - 86.0.3) <C121DE83-ED12-3DC1-BDB3-4FCB29AB0571> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff8931f000 -     0x7fff89344ff7  libc++abi.dylib (24.4) <E7BD9363-1D25-3551-A68A-2E2FF6ABECD7> /usr/lib/libc++abi.dylib
        0x7fff89345000 -     0x7fff89346fff  libsystem_blocks.dylib (59) <D92DCBC3-541C-37BD-AADE-ACC75A0C59C8> /usr/lib/system/libsystem_blocks.dylib
        0x7fff8934a000 -     0x7fff893fbfff  com.apple.LaunchServices (539.7 - 539.7) <DA7C602E-5E01-31B8-925D-B45360CA089F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.fr amework/Versions/A/LaunchServices
        0x7fff893fc000 -     0x7fff89404fff  liblaunch.dylib (442.26.2) <2F71CAF8-6524-329E-AC56-C506658B4C0C> /usr/lib/system/liblaunch.dylib
        0x7fff89405000 -     0x7fff89411fff  com.apple.CrashReporterSupport (10.8.2 - 415) <55783BF9-125E-3F9C-A412-6A095ECD9353> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporter Support
        0x7fff89457000 -     0x7fff894f4ff7  com.apple.PDFKit (2.7.2 - 2.7.2) <DE5BE2EF-2570-3792-B1C3-AAD45765F533> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framework/Versio ns/A/PDFKit
        0x7fff894f5000 -     0x7fff8960eff7  com.apple.ImageIO.framework (3.2.0 - 845) <553B9828-A7D9-3AE4-A214-1C33417545FD> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
        0x7fff8979a000 -     0x7fff897c6fff  com.apple.framework.Apple80211 (8.3 - 830.18) <F2CABF84-E0B1-3F8D-9EC5-526121A007F3> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff897c7000 -     0x7fff89f6ffff  com.apple.CoreAUC (6.16.00 - 6.16.00) <B0B4B5B8-6F8F-3221-9128-313E3B8C695D> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
        0x7fff89f70000 -     0x7fff89f85ff7  libdispatch.dylib (228.23) <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
        0x7fff89f86000 -     0x7fff89fdcff7  com.apple.opencl (2.1.21 - 2.1.21) <E2E3C6D8-208D-3926-B051-77FDD8F0BE2D> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff8a006000 -     0x7fff8a01dfff  com.apple.GenerationalStorage (1.1 - 132.2) <3F5C87BD-D866-3732-8CB9-D23ED9784D6E> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalSt orage
        0x7fff8a050000 -     0x7fff8a2d4ff7  com.apple.RawCamera.bundle (4.02 - 672) <03BC689F-CE3F-351D-AAD4-3D6C5E81F34C> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff8a2d5000 -     0x7fff8a2d8ff7  libdyld.dylib (210.2.3) <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
        0x7fff8a6de000 -     0x7fff8a6f8fff  com.apple.CoreMediaAuthoring (2.1 - 914) <CFA664F9-D5A7-3281-A12F-3ED8A98FD8C1> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreMediaAuthor ing
        0x7fff8a6f9000 -     0x7fff8aaf0fff  libLAPACK.dylib (1073.4) <D632EC8B-2BA0-3853-800A-20DA00A1091C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libLAPACK.dylib
        0x7fff8ab43000 -     0x7fff8abb0fff  com.apple.datadetectorscore (4.0 - 269.1) <C94C372B-3821-3A46-A8C2-091AB1CFF7F4> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCor e
        0x7fff8abb1000 -     0x7fff8abb6fff  com.apple.OpenDirectory (10.8 - 151.10) <CF44120B-9B01-32DD-852E-C9C0E1243FC0> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff8acad000 -     0x7fff8acadfff  libOpenScriptingUtil.dylib (148.2) <B8061D13-C1B2-38D5-A723-9A98D64E67AC> /usr/lib/libOpenScriptingUtil.dylib
        0x7fff8ad3e000 -     0x7fff8b06eff7  com.apple.HIToolbox (2.0 - 625) <317F75F7-4B0F-35F5-89A7-F20BA60AC944> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox
        0x7fff8b0c8000 -     0x7fff8b0eaff7  libxpc.dylib (140.41) <FAC04D8B-680E-325F-8F0C-DD69859D0E01> /usr/lib/system/libxpc.dylib
        0x7fff8b18e000 -     0x7fff8b1d2fff  libcups.2.dylib (327) <9B3F3321-D2BC-3195-BF20-4008FC52A390> /usr/lib/libcups.2.dylib
        0x7fff8b4d3000 -     0x7fff8b4e0fff  com.apple.AppleFSCompression (49 - 1.0) <5508344A-2A7E-3122-9562-6F363910A80E> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompress ion
        0x7fff8b4f2000 -     0x7fff8b4f2fff  com.apple.Cocoa (6.7 - 19) <1F77945C-F37A-3171-B22E-F7AB0FCBB4D4> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff8b502000 -     0x7fff8b56aff7  libc++.1.dylib (65.1) <20E31B90-19B9-3C2A-A9EB-474E08F9FE05> /usr/lib/libc++.1.dylib
        0x7fff8b56b000 -     0x7fff8b57ffff  com.apple.speech.synthesis.framework (4.1.12 - 4.1.12) <94EDF2AB-809C-3D15-BED5-7AD45B2A7C16> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynt hesis.framework/Versions/A/SpeechSynthesis
        0x7fff8b793000 -     0x7fff8b794ff7  libdnsinfo.dylib (453.18) <E7595861-ECF9-336E-9901-BED2620FAA80> /usr/lib/system/libdnsinfo.dylib
        0x7fff8b7de000 -     0x7fff8b87cff7  com.apple.ink.framework (10.8.2 - 150) <84B9825C-3822-375F-BE58-A753444FBDE2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/ A/Ink
        0x7fff8b87d000 -     0x7fff8b99592f  libobjc.A.dylib (532.2) <90D31928-F48D-3E37-874F-220A51FD9E37> /usr/lib/libobjc.A.dylib
        0x7fff8b996000 -     0x7fff8b9f2fff  com.apple.QuickLookFramework (4.0 - 555.4) <B34DB61C-15F0-3CF8-98A4-152C2F54DF8D> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff8b9f3000 -     0x7fff8ba1dff7  com.apple.CoreVideo (1.8 - 99.3) <C424838A-889C-39E5-8108-FD05C93D26A0> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff8ba1e000 -     0x7fff8ba29ff7  com.apple.DisplayServicesFW (2.7.2 - 357) <00CB0283-408E-3F37-8138-B108EE6DDE83> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices
        0x7fff8ba2a000 -

  • How to auto update AIR runtime when installing with native installer?

    Hi, we recently changed our app to a native installer for both Windows and OS X.
    It seemed that when we distributed a .air file the install process would upgrade the installed version of the AIR runtime (if necessary) before installing our application.
    Now it seems that if AIR is installed with an old version (say 2.5) and the native installer app is installed (requiring AIR 3.0) an error message appears that says "Sorry, an error has occurred. The application could not be installed because the installer file is damaged. Try obtaining a new installer file from the application author".
    My question is how can we have our native installer bring the user's version of the AIR runtime to the minimum required (3.0) or the latest version (3.6)?
    The error message displayed to the user does not provide meaningful info.
    Thank you so much for your help with this!

    Hi Chris, thank you for the response. I've spent quite a bit of time browsing the forum and you're sort of a celebrity to me ;-)
    The "installer damaged" error message is happening on the first install of our application with older version of the AIR runtime.  The app is using the nativeapplicatoinupdater ( http://code.google.com/p/nativeapplicationupdater/ ) project for updates (which is working great once the app is installed).
    I performed a few tests on OS X (10.8.2) this evening and here are my results.
    AIR 1.5: app install dialog with option to download AIR 3.6 is shown. INSTALL OK
    AIR 2.04.: app install dialog with option to download AIR 3.6 IS NOT shown. INSTALL FAILS
    AIR 2.5.: app install dialog with option to download AIR 3.6 IS NOT shown. INSTALL FAILS
    AIR 2.6: app install dialog with option to download AIR 3.6 is shown. INSTALL OK
    AIR 2.7: app install dialog with option to download AIR 3.6 is shown. APP INSTALL OK
    So it seems the problem is with AIR 2.04 and 2.5. I uninstalled and reinstalled the AIR runtime for each test. I can consistently reproduce the failed install with 2.04 and 2.5. The same DMG file was used in each test.  I have seen similar error messages on Windows 7 when AIR 2.5 was installed, though I didn't get a chance to look at the log to confirm it's the same migration error.
    The failed installs seem to drop out because of: "failed while validating native package: Error: invalid migration signature".
    Tomorrow I can create a version without the migration certificate to see if it can be successfully installed on 2.04 and 2.5. It's "interesting" that the other versions of the runtime do not fail on this condition.
    Here are details from the log:
    Here is the log with AIR 1.5 (install Adobe AIR 3.6 (required) is checked and displayed: INSTALL OK
    Feb 28 22:43:22 collings-4.local mds[36]: (/)(Warning) IndexQuery in bool preIterate_FSI(SISearchCtx_FSI *):Throttling inefficient file system query
    Feb 28 22:43:23 collings-4.local Finder[371]: CFPropertyListCreateFromXMLData(): Old-style plist parser: missing semicolon in dictionary on line 1. Parsing will be abandoned. Break on _CFPropertyListMissingSemicolon to debug.
    Feb 28 22:43:24 collings-4.local Dock[368]: no information back from LS about running process
    Feb 28 22:43:25 collings-4.local Install [APP_NAME][5921]: Bootstrapper begin with version (null) on Mac x86
    Feb 28 22:43:25 collings-4.local Install [APP_NAME][5921]: Installed runtime (1.5.3.9130) located at /Library/Frameworks/Adobe AIR.framework
    Feb 28 22:43:25 collings-4.local Install [APP_NAME][5921]: Begin runtime download from http://airdownload.adobe.com/air/3/nai/macos10.8/x86/installer
    Feb 28 22:43:25 collings-4.local Install [APP_NAME][5921]: Download destination is /var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/T/installer
    Feb 28 22:43:36 collings-4.local Install [APP_NAME][5921]: Download success
    Feb 28 22:43:36 collings-4.local Install [APP_NAME][5921]: Begin signature download from http://airdownload.adobe.com/air/3/nai/macos10.8/x86/installer.p7
    Feb 28 22:43:36 collings-4.local Install [APP_NAME][5921]: Download destination is /var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/T/installer.p7
    Feb 28 22:43:36 collings-4.local Install [APP_NAME][5921]: Download success
    Feb 28 22:43:36 collings-4.local Install [APP_NAME][5921]: Begin crl download from http://crl.adobe.com/prodSvce.crl
    Feb 28 22:43:36 collings-4.local Install [APP_NAME][5921]: Download destination is /var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/T/prodSvce.crl
    Feb 28 22:43:36 collings-4.local Install [APP_NAME][5921]: Download success
    Feb 28 22:43:36 collings-4.local Install [APP_NAME][5921]: Begin crl download from http://crl.adobe.com/cds.crl
    Feb 28 22:43:36 collings-4.local Install [APP_NAME][5921]: Download destination is /var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/T/cds.crl
    Feb 28 22:43:36 collings-4.local Install [APP_NAME][5921]: Download success
    Feb 28 22:43:36 collings-4.local Install [APP_NAME][5921]: Begin cert chain validation
    Feb 28 22:43:36 collings-4.local Install [APP_NAME][5921]: Cert chain validation succeeded
    Feb 28 22:43:36 collings-4.local Install [APP_NAME][5921]: Detached signature verified
    Feb 28 22:43:36 collings-4.local Install [APP_NAME][5921]: Launching subprocess with commandline "AIR Runtime Installer" -x1 /Volumes/Install [APP_NAME]/Install [APP_NAME].app/Contents/Resources/[APP_NAME]
    Feb 28 22:43:44 collings-4.local Adobe AIR Installer[5928]: Runtime Installer begin with version 3.6.0.5970 on Mac OS 10.8.2 x86
    Feb 28 22:43:44 collings-4.local Adobe AIR Installer[5928]: Commandline is: -x1 "/Volumes/Install [APP_NAME]/Install [APP_NAME].app/Contents/Resources/[APP_NAME]"
    Feb 28 22:43:44 collings-4.local Adobe AIR Installer[5928]: Installed runtime (1.5.3.9130) located at /Library/Frameworks/Adobe AIR.framework
    Feb 28 22:43:44 collings-4.local Adobe AIR Installer[5928]: Invoking Application Installer for combined install
    Feb 28 22:43:44 collings-4.local Adobe AIR Installer[5928]: Launching subprocess with commandline /var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/T/airyBgifj/Adobe AIR Installer.app/Contents/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer -runtime "/var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/T/airyBgifj/Adobe AIR Installer.app/Contents/Frameworks" -withRuntime -url "/Volumes/Install [APP_NAME]/Install [APP_NAME].app/Contents/Resources/[APP_NAME]"
    Feb 28 22:43:44 collings-4.local Adobe AIR Application Installer[5930]: Application Installer begin with version 3.6.0.5970 on Mac OS 10.8.2 x86
    Feb 28 22:43:44 collings-4.local Adobe AIR Application Installer[5930]: Commandline is: -runtime "/var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/T/airyBgifj/Adobe AIR Installer.app/Contents/Frameworks" -withRuntime -url "/Volumes/Install [APP_NAME]/Install [APP_NAME].app/Contents/Resources/[APP_NAME]"
    Feb 28 22:43:44 collings-4.local Adobe AIR Application Installer[5930]: Installed runtime (1.5.3.9130) located at /Library/Frameworks/Adobe AIR.framework
    Feb 28 22:43:46 collings-4.local Adobe AIR Application Installer[5930]: Validating app in folder /Volumes/Install [APP_NAME]/Install [APP_NAME].app/Contents/Resources/[APP_NAME]/Contents/Resources
    Feb 28 22:43:55 collings-4.local Adobe AIR Application Installer[5930]: Application signature verified
    Feb 28 22:43:55 collings-4.local Adobe AIR Application Installer[5930]: Unpackaging/validation complete
    Feb 28 22:43:55 collings-4.local Adobe AIR Application Installer[5930]: No app located for appID 'com.[APP_NAME].[APP_NAME]' and pubID ''
    Feb 28 22:43:58 collings-4.local Finder[371]: CFPropertyListCreateFromXMLData(): Old-style plist parser: missing semicolon in dictionary on line 1. Parsing will be abandoned. Break on _CFPropertyListMissingSemicolon to debug.
    Feb 28 22:43:59 collings-4.local Adobe AIR Application Installer[5930]: Launching subprocess with commandline /var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/T/airyBgifj/Adobe AIR Installer.app/Contents/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer -runtime "/var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/T/airyBgifj/Adobe AIR Installer.app/Contents/Frameworks" -silent -logToStdout -withRuntime -url -location /Applications -desktopShortcut -programMenu "/Volumes/Install [APP_NAME]/Install [APP_NAME].app/Contents/Resources/[APP_NAME]"
    Feb 28 22:43:59 collings-4.local Adobe AIR Application Installer[5930]: Relaunching with elevation
    Feb 28 22:44:03 collings-4.local auditd[5934]: Auditing enabled
    Feb 28 22:44:03 collings-4.local auditd[5934]: Got low space trigger
    Feb 28 22:44:03 collings-4.local auditd[5934]: auditd_read_dirs(): all audit log directories over soft limit
    Feb 28 22:44:04 collings-4.local auditd[5934]: renamed /var/audit/20130301084246.not_terminated to /var/audit/20130301084246.20130301084403
    Feb 28 22:44:04 collings-4.local auditd[5934]: New audit file is /var/audit/20130301084403.not_terminated
    Feb 28 22:44:04 collings-4.local _securityagent[5938]: audit warning: allsoft
    Feb 28 22:44:04 collings-4.local _securityagent[5941]: audit warning: closefile /var/audit/20130301084246.20130301084403
    Feb 28 22:44:04 collings-4.local _securityagent[5940]: audit warning: soft /var/audit
    Feb 28 22:44:04 collings-4.local authorizationhost[5935]: in pam_sm_authenticate(): Got user: [USER_NAME]
    Feb 28 22:44:04 collings-4.local authorizationhost[5935]: in pam_sm_authenticate(): Got ruser: (null)
    Feb 28 22:44:04 collings-4.local authorizationhost[5935]: in pam_sm_authenticate(): Got service: authorization
    Feb 28 22:44:04 collings-4.local authorizationhost[5935]: in od_principal_for_user(): No authentication authority returned
    Feb 28 22:44:04 collings-4.local authorizationhost[5935]: in od_principal_for_user(): failed: 7
    Feb 28 22:44:04 collings-4.local authorizationhost[5935]: in pam_sm_authenticate(): Failed to determine Kerberos principal name.
    Feb 28 22:44:04 collings-4.local authorizationhost[5935]: in pam_sm_authenticate(): Done cleanup3
    Feb 28 22:44:04 collings-4.local authorizationhost[5935]: in pam_sm_authenticate(): Kerberos 5 refuses you
    Feb 28 22:44:04 collings-4.local authorizationhost[5935]: in pam_sm_authenticate(): pam_sm_authenticate: ntlm
    Feb 28 22:44:04 collings-4.local authorizationhost[5935]: in pam_sm_acct_mgmt(): OpenDirectory - Membership cache TTL set to 1800.
    Feb 28 22:44:04 collings-4.local authorizationhost[5935]: in od_record_check_pwpolicy(): retval: 0
    Feb 28 22:44:04 collings-4.local authorizationhost[5935]: in od_record_attribute_create_cfstring(): returned 2 attributes for dsAttrTypeStandard:AuthenticationAuthority
    Feb 28 22:44:04 collings-4.local authorizationhost[5935]: in pam_sm_setcred(): Establishing credentials
    Feb 28 22:44:04 collings-4.local authorizationhost[5935]: in pam_sm_setcred(): Got user: [USER_NAME]
    Feb 28 22:44:04 collings-4.local authorizationhost[5935]: in pam_sm_setcred(): Context initialised
    Feb 28 22:44:04 collings-4.local authorizationhost[5935]: in pam_sm_setcred(): Got euid, egid: 0 0
    Feb 28 22:44:04 collings-4.local authorizationhost[5935]: in pam_sm_setcred(): Done getpwnam()
    Feb 28 22:44:04 collings-4.local authorizationhost[5935]: in pam_sm_setcred(): Done setegid() & seteuid()
    Feb 28 22:44:04 collings-4.local authorizationhost[5935]: in pam_sm_setcred(): pam_sm_setcred: krb5 user [USER_NAME] doesn't have a principal
    Feb 28 22:44:04 collings-4.local authorizationhost[5935]: in pam_sm_setcred(): Done cleanup3
    Feb 28 22:44:04 collings-4.local authorizationhost[5935]: in pam_sm_setcred(): Done seteuid() & setegid()
    Feb 28 22:44:04 collings-4.local authorizationhost[5935]: in pam_sm_setcred(): Done cleanup4
    Feb 28 22:44:04 collings-4.local authorizationhost[5935]: in pam_sm_setcred(): pam_sm_setcred: ntlm
    Feb 28 22:44:04 collings-4.local authorizationhost[5935]: in pam_sm_setcred(): pam_sm_setcred: no domain found skipping
    Feb 28 22:44:04 collings-4.local com.apple.SecurityServer[27]: UID 501 authenticated as user [USER_NAME] (UID 501) for right 'system.privilege.admin'
    Feb 28 22:44:04 collings-4.local com.apple.SecurityServer[27]: Succeeded authorizing right 'system.privilege.admin' by client '/private/var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/T/airyBgifj/Adobe AIR Installer.app/Contents/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app' [5930] for authorization created by '/private/var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/T/airyBgifj/Adobe AIR Installer.app/Contents/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app' [5930] (13,0)
    Feb 28 22:44:04 collings-4.local coreservicesd[67]: Application App:"Adobe AIR Application Installer" [ 0x0/0x41a41a]  @ 0x0x7fe548ca9570 tried to be brought forward, but isn't in fPermittedFrontASNs ( ( ASN:0x0-0x41b41b:) ), so denying.
    Feb 28 22:44:04 collings-4.local WindowServer[116]: [cps/setfront] Failed setting the front application to Adobe AIR Application Installer, psn 0x0-0x41a41a, securitySessionID=0x186a4, err=-13066
    Feb 28 22:44:04 collings-4.local com.apple.SecurityServer[27]: Succeeded authorizing right 'system.privilege.admin' by client '/usr/libexec/security_authtrampoline' [5942] for authorization created by '/private/var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/T/airyBgifj/Adobe AIR Installer.app/Contents/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app' [5930] (3,0)
    Feb 28 22:44:04 collings-4.local authexec[5942]: executing /var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/T/airyBgifj/Adobe AIR Installer.app/Contents/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer
    Feb 28 22:44:04 collings-4.local Adobe AIR Application Installer[5942]: Application Installer begin with version 3.6.0.5970 on Mac OS 10.8.2 x86
    Feb 28 22:44:04 collings-4.local Adobe AIR Application Installer[5942]: Commandline is: -runtime "/var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/T/airyBgifj/Adobe AIR Installer.app/Contents/Frameworks" -silent -logToStdout -withRuntime -url -location /Applications -desktopShortcut -programMenu "/Volumes/Install [APP_NAME]/Install [APP_NAME].app/Contents/Resources/[APP_NAME]"
    Feb 28 22:44:04 collings-4.local Adobe AIR Application Installer[5942]: Installed runtime (1.5.3.9130) located at /Library/Frameworks/Adobe AIR.framework
    Feb 28 22:44:05 collings-4.local Adobe AIR Application Installer[5942]: Validating app in folder /Volumes/Install [APP_NAME]/Install [APP_NAME].app/Contents/Resources/[APP_NAME]/Contents/Resources
    Feb 28 22:44:12 collings-4.local Adobe AIR Application Installer[5942]: Application signature verified
    Feb 28 22:44:12 collings-4.local Adobe AIR Application Installer[5942]: Unpackaging/validation complete
    Feb 28 22:44:12 collings-4.local Adobe AIR Application Installer[5942]: No app located for appID 'com.[APP_NAME].[APP_NAME]' and pubID ''
    Feb 28 22:44:12 collings-4.local Adobe AIR Application Installer[5942]: Launching subprocess with commandline /bin/chmod -fRP +rw "/Users/Shared/Library/Application Support/Adobe"
    Feb 28 22:44:12 collings-4.local Adobe AIR Application Installer[5942]: Launching subprocess with commandline /usr/sbin/chown -hfRP [USER_NAME] "/Users/[USER_NAME]/Library/Application Support/Adobe"
    Feb 28 22:44:12 collings-4.local Adobe AIR Application Installer[5942]: Launching subprocess with commandline /bin/chmod -fRP +rw "/Users/[USER_NAME]/Library/Application Support/Adobe"
    Feb 28 22:44:12 collings-4.local Adobe AIR Application Installer[5942]: Launching subprocess with commandline /usr/sbin/chown -hfRP [USER_NAME] "/Users/[USER_NAME]/Library/Preferences/Macromedia/Flash Player/www.macromedia.com/bin"
    Feb 28 22:44:12 collings-4.local Adobe AIR Application Installer[5942]: Starting silent combined runtime update and app install.
               Updating runtime from version 1.5.3.9130 to version 3.6.0.5970.
               Installing app com.[APP_NAME].[APP_NAME] version 1.3.7 to /Applications  using the source file at /Volumes/Install [APP_NAME]/Install [APP_NAME].app/Contents/Resources/[APP_NAME]
    Feb 28 22:44:22 collings-4 kernel[0]: Sandbox: sandboxd(5950) deny mach-lookup com.apple.coresymbolicationd
    Feb 28 22:44:22 collings-4.local sandboxd[5950] ([5920]): mdworker(5920) deny file-read-data /Users/[USER_NAME]/Library/Preferences/Macromedia/Flash Player/www.macromedia.com/bin/fpupdatepl (pre-ls-info fstype:hfs fsflag:480D000 flags:240000005E diag:0 uti:com.apple.application-file plugin:/Library/Spotlight/Application.mdimporter - find suspect file using: sudo mdutil -t 15941757)
    Feb 28 22:44:52 collings-4.local Adobe AIR Application Installer[5942]: Registering /Applications/Utilities/Adobe AIR Application Installer.app/Contents/Info.plist
    Feb 28 22:44:52 collings-4.local Adobe AIR Application Installer[5942]: Launching subprocess with commandline /usr/sbin/chown -hfRP root:wheel "/Library/Frameworks/Adobe AIR.framework"
    Feb 28 22:44:52 collings-4.local Adobe AIR Application Installer[5942]: Subprocess chown succeeded
    Feb 28 22:44:52 collings-4.local Adobe AIR Application Installer[5942]: Launching subprocess with commandline /usr/sbin/chown -hfRP root:wheel "/Applications/Utilities/Adobe AIR Application Installer.app"
    Feb 28 22:44:52 collings-4.local Adobe AIR Application Installer[5942]: Subprocess chown succeeded
    Feb 28 22:44:52 collings-4.local Adobe AIR Application Installer[5942]: Launching subprocess with commandline /usr/sbin/chown -hfRP root:wheel "/Applications/Utilities/Adobe AIR Uninstaller.app"
    Feb 28 22:44:52 collings-4.local Adobe AIR Application Installer[5942]: Subprocess chown succeeded
    Feb 28 22:44:53 collings-4.local mdworker[5920]: CFPropertyListCreateFromXMLData(): Old-style plist parser: missing semicolon in dictionary on line 1. Parsing will be abandoned. Break on _CFPropertyListMissingSemicolon to debug.
    Feb 28 22:44:53 collings-4.local Adobe AIR Application Installer[5942]: Launching subprocess with commandline /usr/sbin/chown -hfRP root:wheel /Applications/[APP_NAME].app
    Feb 28 22:44:53 collings-4.local Adobe AIR Application Installer[5942]: Subprocess chown succeeded
    Feb 28 22:44:53 collings-4.local Adobe AIR Application Installer[5942]: Launching subprocess with commandline /bin/chmod -R ugo+rx /Applications/[APP_NAME].app
    Feb 28 22:44:53 collings-4.local Adobe AIR Application Installer[5942]: Subprocess chmod succeeded
    Feb 28 22:44:53 collings-4.local Adobe AIR Application Installer[5942]: Application Installer end with exit code 0
    Feb 28 22:44:53 collings-4.local Adobe AIR Application Installer[5930]: Elevated install completed
    Feb 28 22:44:54 collings-4.local Adobe AIR Application Installer[5930]: Launching subprocess with commandline /Applications/[APP_NAME].app
    Feb 28 22:44:54 collings-4.local Dock[368]: no information back from LS about running process
    Feb 28 22:44:54 collings-4.local Adobe AIR Application Installer[5930]: Application Installer end with exit code 0
    Feb 28 22:44:54 collings-4.local Adobe AIR Installer[5928]: Subprocess app installer failed (-1)
    Feb 28 22:44:54 collings-4.local Adobe AIR Installer[5928]: Runtime Installer end with exit code 7
    Feb 28 22:44:54 collings-4.local Install [APP_NAME][5921]: Subprocess Runtime Installer failed (7)
    Feb 28 22:44:54 collings-4.local Install [APP_NAME][5921]: Bootstrapper end with exit code 7
    Feb 28 22:44:54 collings-4 com.apple.launchd.peruser.501[353] ([0x0-0x416416].com.[APP_NAME].[APP_NAME].installer[5921]): Exited with code: 7
    Here is the log with AIR 2.0.4 (the dialog to install the app and option to download 3.6 is not displayed): INSTALL FAILED
    Feb 28 21:34:11 collings-4.local Install [APP_NAME][4367]: Bootstrapper begin with version (null) on Mac x86
    Feb 28 21:34:11 collings-4.local Install [APP_NAME][4367]: Installed runtime (2.0.4.13090) located at /Library/Frameworks/Adobe AIR.framework
    Feb 28 21:34:11 collings-4.local Install [APP_NAME][4367]: Launching subprocess with commandline "AIR Application Installer" /Volumes/Install [APP_NAME]/Install [APP_NAME].app/Contents/Resources/[APP_NAME]
    Feb 28 21:34:11 collings-4.local Adobe AIR Application Installer[4369]: Starting app install of file:///Volumes/Install%20[APP_NAME]/Install%20[APP_NAME].app/Contents/Resources/[APP_NAM E]
    Feb 28 21:34:11 collings-4.local Adobe AIR Application Installer[4369]: UI SWF load is complete
    Feb 28 21:34:12 collings-4.local Adobe AIR Application Installer[4369]: UI initialized
    Feb 28 21:34:12 collings-4.local Adobe AIR Application Installer[4369]: Detected native app installer
    Feb 28 21:34:12 collings-4.local Adobe AIR Application Installer[4369]: style being loaded from stylesNative.swf
    Feb 28 21:34:12 collings-4.local Adobe AIR Application Installer[4369]: beginning UI styling
    Feb 28 21:34:12 collings-4.local Adobe AIR Application Installer[4369]: UI styling complete
    Feb 28 21:34:12 collings-4.local Adobe AIR Application Installer[4369]: Validating the native package at file:///Volumes/Install%20[APP_NAME]/Install%20[APP_NAME].app/Contents/Resources/[APP_NAM E]
    Feb 28 21:34:20 collings-4.local Adobe AIR Application Installer[4369]: failed while validating native package: Error: invalid migration signature
    Here is the log with AIR 2.5 (the dialog to install the app and option to download 3.6 is not displayed): INSTALL FAILED
    Feb 28 21:37:38 collings-4.local Install [APP_NAME][4428]: Bootstrapper begin with version (null) on Mac x86
    Feb 28 21:37:38 collings-4.local Install [APP_NAME][4428]: Installed runtime (2.5.0.16600) located at /Library/Frameworks/Adobe AIR.framework
    Feb 28 21:37:38 collings-4.local Install [APP_NAME][4428]: Launching subprocess with commandline "AIR Application Installer" /Volumes/Install [APP_NAME]/Install [APP_NAME].app/Contents/Resources/[APP_NAME]
    Feb 28 21:37:39 collings-4.local Adobe AIR Application Installer[4430]: Application Installer begin with version 2.5.0.16600 on Mac OS 10.8.2 x86
    Feb 28 21:37:39 collings-4.local Adobe AIR Application Installer[4430]: Commandline is: "/Volumes/Install [APP_NAME]/Install [APP_NAME].app/Contents/Resources/[APP_NAME]"
    Feb 28 21:37:39 collings-4.local Adobe AIR Application Installer[4430]: Installed runtime (2.5.0.16600) located at /Library/Frameworks/Adobe AIR.framework
    Feb 28 21:37:40 collings-4.local Adobe AIR Application Installer[4430]: Validating app in folder /Volumes/Install [APP_NAME]/Install [APP_NAME].app/Contents/Resources/[APP_NAME]/Contents/Resources
    Feb 28 21:37:47 collings-4.local Adobe AIR Application Installer[4430]: Migration signature validation failed
    Feb 28 21:37:47 collings-4.local Adobe AIR Application Installer[4430]: Got an unexpected fatal error while validating native package: Error: invalid migration signature
    Feb 28 21:37:50 collings-4.local Adobe AIR Application Installer[4430]: Application Installer end with exit code 7
    Feb 28 21:37:50 collings-4.local Install [APP_NAME][4428]: Subprocess Application Installer failed (7)
    Feb 28 21:37:50 collings-4.local Install [APP_NAME][4428]: Bootstrapper end with exit code 7
    Feb 28 21:37:50 collings-4 com.apple.launchd.peruser.501[353] ([0x0-0x28d28d].com.[APP_NAME].[APP_NAME].installer[4428]): Exited with code: 7
    Here is the log with AIR 2.6 (the dialog to install the app and option to download 3.6 is displayed): INSTALL OK
    Feb 28 22:19:39 collings-4.local Install [APP_NAME][5321]: Installed runtime (2.6.0.19140) located at /Library/Frameworks/Adobe AIR.framework
    Feb 28 22:19:39 collings-4.local Adobe AIR Application Installer[5323]: Application Installer begin with version 2.6.0.19140 on Mac OS 10.8.2 x86
    Feb 28 22:19:39 collings-4.local Adobe AIR Application Installer[5323]: Commandline is: "/Volumes/Install [APP_NAME]/Install [APP_NAME].app/Contents/Resources/[APP_NAME]"
    Feb 28 22:19:39 collings-4.local Adobe AIR Application Installer[5323]: Installed runtime (2.6.0.19140) located at /Library/Frameworks/Adobe AIR.framework
    Feb 28 22:19:40 collings-4.local Adobe AIR Application Installer[5323]: Validating app in folder /Volumes/Install [APP_NAME]/Install [APP_NAME].app/Contents/Resources/[APP_NAME]/Contents/Resources
    Feb 28 22:19:48 collings-4.local Adobe AIR Application Installer[5323]: Application signature verified
    Feb 28 22:19:48 collings-4.local Adobe AIR Application Installer[5323]: Unpackaging/validation complete
    Feb 28 22:19:48 collings-4.local Adobe AIR Application Installer[5323]: Application has unknown namespace http://ns.adobe.com/air/application/3.1. Attempting immediate runtime update
    Feb 28 22:19:48 collings-4.local Adobe AIR Application Installer[5323]: Begin runtime update download from http://airdownload.adobe.com/air/3/macos/x86/add/3.1/update
    Feb 28 22:19:48 collings-4.local Adobe AIR Application Installer[5323]: Download destination is /Users/[USER_NAME]/Library/Application Support/Adobe/AIR/Updater/Update
    Feb 28 22:19:48 collings-4.local Adobe AIR Application Installer[5323]: Unpackaging http://airdownload.adobe.com/air/3/macos/x86/add/3.1/update to /Users/[USER_NAME]/Library/Application Support/Adobe/AIR/Updater/Update
    Feb 28 22:20:12 collings-4.local Adobe AIR Application Installer[5323]: Unpackaging complete
    Feb 28 22:20:12 collings-4.local Adobe AIR Application Installer[5323]: Download success
    Feb 28 22:20:12 collings-4.local Adobe AIR Application Installer[5323]: Successfully downloaded immediate update. Invoking downloaded installer
    Feb 28 22:20:13 collings-4.local Adobe AIR Application Installer[5323]: Launching subprocess with commandline /Users/[USER_NAME]/Library/Application Support/Adobe/AIR/Updater/Update/updater -x1 -deleteInput /private/var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/0/TemporaryItems/FlashTmp0
    Feb 28 22:20:13 collings-4.local Adobe AIR Application Installer[5323]: Application Installer end with exit code 0
    Feb 28 22:20:20 collings-4.local Adobe AIR Installer[5330]: Runtime Installer begin with version 3.6.0.5970 on Mac OS 10.8.2 x86
    Feb 28 22:20:20 collings-4.local Adobe AIR Installer[5330]: Commandline is: -x1 -deleteInput /private/var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/0/TemporaryItems/FlashTmp0
    Feb 28 22:20:20 collings-4.local Adobe AIR Installer[5330]: Installed runtime (2.6.0.19140) located at /Library/Frameworks/Adobe AIR.framework
    Feb 28 22:20:20 collings-4.local Adobe AIR Installer[5330]: Invoking Application Installer for combined install
    Feb 28 22:20:20 collings-4.local Adobe AIR Installer[5330]: Launching subprocess with commandline /var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/T/air9paHcd/Adobe AIR Installer.app/Contents/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer -runtime "/var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/T/air9paHcd/Adobe AIR Installer.app/Contents/Frameworks" -withRuntime -deleteInput -url /private/var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/0/TemporaryItems/FlashTmp0
    Feb 28 22:20:20 collings-4.local Adobe AIR Application Installer[5331]: Application Installer begin with version 3.6.0.5970 on Mac OS 10.8.2 x86
    Feb 28 22:20:20 collings-4.local Adobe AIR Application Installer[5331]: Commandline is: -runtime "/var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/T/air9paHcd/Adobe AIR Installer.app/Contents/Frameworks" -withRuntime -deleteInput -url /private/var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/0/TemporaryItems/FlashTmp0
    Feb 28 22:20:20 collings-4.local Adobe AIR Application Installer[5331]: Installed runtime (2.6.0.19140) located at /Library/Frameworks/Adobe AIR.framework
    Feb 28 22:20:22 collings-4.local Adobe AIR Application Installer[5331]: Validating app in folder /private/var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/0/TemporaryItems/FlashTmp0/Content s/Resources
    Feb 28 22:20:30 collings-4.local Adobe AIR Application Installer[5331]: Application signature verified
    Feb 28 22:20:30 collings-4.local Adobe AIR Application Installer[5331]: Unpackaging/validation complete
    Feb 28 22:20:30 collings-4.local Adobe AIR Application Installer[5331]: No app located for appID 'com.[APP_NAME].[APP_NAME]' and pubID ''
    Feb 28 22:20:33 collings-4.local Adobe AIR Application Installer[5331]: Launching subprocess with commandline /var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/T/air9paHcd/Adobe AIR Installer.app/Contents/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer -runtime "/var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/T/air9paHcd/Adobe AIR Installer.app/Contents/Frameworks" -silent -logToStdout -withRuntime -url -location /Applications -desktopShortcut -programMenu /private/var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/0/TemporaryItems/FlashTmp0
    Feb 28 22:20:33 collings-4.local Adobe AIR Application Installer[5331]: Relaunching with elevation
    Feb 28 22:20:39 collings-4.local com.apple.SecurityServer[27]: Succeeded authorizing right 'system.privilege.admin' by client '/private/var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/T/air9paHcd/Adobe AIR Installer.app/Contents/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app' [5331] for authorization created by '/private/var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/T/air9paHcd/Adobe AIR Installer.app/Contents/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app' [5331] (13,0)
    Feb 28 22:20:39 collings-4.local coreservicesd[67]: Application App:"Adobe AIR Application Installer" [ 0x0/0x382382]  @ 0x0x7fe549928a40 tried to be brought forward, but isn't in fPermittedFrontASNs ( ( ASN:0x0-0x383383:) ), so denying.
    Feb 28 22:20:39 collings-4.local WindowServer[116]: [cps/setfront] Failed setting the front application to Adobe AIR Application Installer, psn 0x0-0x382382, securitySessionID=0x186a4, err=-13066
    Feb 28 22:20:39 collings-4.local com.apple.SecurityServer[27]: Succeeded authorizing right 'system.privilege.admin' by client '/usr/libexec/security_authtrampoline' [5342] for authorization created by '/private/var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/T/air9paHcd/Adobe AIR Installer.app/Contents/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app' [5331] (3,0)
    Feb 28 22:20:39 collings-4.local authexec[5342]: executing /var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/T/air9paHcd/Adobe AIR Installer.app/Contents/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer
    Feb 28 22:20:39 collings-4.local Adobe AIR Application Installer[5342]: Application Installer begin with version 3.6.0.5970 on Mac OS 10.8.2 x86
    Feb 28 22:20:39 collings-4.local Adobe AIR Application Installer[5342]: Commandline is: -runtime "/var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/T/air9paHcd/Adobe AIR Installer.app/Contents/Frameworks" -silent -logToStdout -withRuntime -url -location /Applications -desktopShortcut -programMenu /private/var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/0/TemporaryItems/FlashTmp0
    Feb 28 22:20:39 collings-4.local Adobe AIR Application Installer[5342]: Installed runtime (2.6.0.19140) located at /Library/Frameworks/Adobe AIR.framework
    Feb 28 22:20:40 collings-4.local Adobe AIR Application Installer[5342]: Validating app in folder /private/var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/0/TemporaryItems/FlashTmp0/Content s/Resources
    Feb 28 22:20:48 collings-4.local Adobe AIR Application Installer[5342]: Application signature verified
    Feb 28 22:20:48 collings-4.local Adobe AIR Application Installer[5342]: Unpackaging/validation complete
    Feb 28 22:20:48 collings-4.local Adobe AIR Application Installer[5342]: No app located for appID 'com.[APP_NAME].[APP_NAME]' and pubID ''
    Feb 28 22:20:48 collings-4.local Adobe AIR Application Installer[5342]: Launching subprocess with commandline /bin/chmod -fRP +rw "/Users/Shared/Library/Application Support/Adobe"
    Feb 28 22:20:48 collings-4.local Adobe AIR Application Installer[5342]: Launching subprocess with commandline /usr/sbin/chown -hfRP [USER_NAME] "/Users/[USER_NAME]/Library/Application Support/Adobe"
    Feb 28 22:20:48 collings-4.local Adobe AIR Application Installer[5342]: Launching subprocess with commandline /bin/chmod -fRP +rw "/Users/[USER_NAME]/Library/Application Support/Adobe"
    Feb 28 22:20:48 collings-4.local Adobe AIR Application Installer[5342]: Launching subprocess with commandline /usr/sbin/chown -hfRP [USER_NAME] "/Users/[USER_NAME]/Library/Preferences/Macromedia/Flash Player/www.macromedia.com/bin"
    Feb 28 22:20:48 collings-4.local Adobe AIR Application Installer[5342]: Starting silent combined runtime update and app install.
    Feb 28 22:21:32 collings-4.local Adobe AIR Application Installer[5342]: Registering /Applications/Utilities/Adobe AIR Application Installer.app/Contents/Info.plist
    Feb 28 22:21:32 collings-4.local Adobe AIR Application Installer[5342]: Launching subprocess with commandline /usr/sbin/chown -hfRP root:wheel "/Library/Frameworks/Adobe AIR.framework"
    Feb 28 22:21:32 collings-4.local Adobe AIR Application Installer[5342]: Subprocess chown succeeded
    Feb 28 22:21:32 collings-4.local Adobe AIR Application Installer[5342]: Launching subprocess with commandline /usr/sbin/chown -hfRP root:wheel "/Applications/Utilities/Adobe AIR Application Installer.app"
    Feb 28 22:21:32 collings-4.local Adobe AIR Application Installer[5342]: Subprocess chown succeeded
    Feb 28 22:21:32 collings-4.local Adobe AIR Application Installer[5342]: Launching subprocess with commandline /usr/sbin/chown -hfRP root:wheel "/Applications/Utilities/Adobe AIR Uninstaller.app"
    Feb 28 22:21:32 collings-4.local Adobe AIR Application Installer[5342]: Subprocess chown succeeded
    Feb 28 22:21:33 collings-4.local Adobe AIR Application Installer[5342]: Launching subprocess with commandline /usr/sbin/chown -hfRP root:wheel /Applications/[APP_NAME].app
    Feb 28 22:21:33 collings-4.local Adobe AIR Application Installer[5342]: Subprocess chown succeeded
    Feb 28 22:21:33 collings-4.local Adobe AIR Application Installer[5342]: Launching subprocess with commandline /bin/chmod -R ugo+rx /Applications/[APP_NAME].app
    Feb 28 22:21:33 collings-4.local Adobe AIR Application Installer[5342]: Subprocess chmod succeeded
    Feb 28 22:21:34 collings-4.local Adobe AIR Application Installer[5342]: Application Installer end with exit code 0
    Feb 28 22:21:34 collings-4.local Adobe AIR Application Installer[5331]: Elevated install completed
    Feb 28 22:21:34 collings-4.local Adobe AIR Application Installer[5331]: Launching subprocess with commandline /Applications/[APP_NAME].app
    Feb 28 22:21:35 collings-4.local Adobe AIR Application Installer[5331]: Application Installer end with exit code 0
    Feb 28 22:21:35 collings-4.local Adobe AIR Installer[5330]: Subprocess app installer succeeded
    Feb 28 22:21:35 collings-4.local Adobe AIR Installer[5330]: Runtime Installer end with exit code 0
    Here is the log with AIR 2.7 (the dialog to install the app and option to download 3.6 is displayed): INSTALL OK
    Feb 28 22:30:27 collings-4.local Install [APP_NAME][5591]: Installed runtime (2.7.1.19610) located at /Library/Frameworks/Adobe AIR.framework
    Feb 28 22:30:28 collings-4.local Adobe AIR Application Installer[5593]: Application Installer begin with version 2.7.1.19610 on Mac OS 10.8.2 x86
    Feb 28 22:30:28 collings-4.local Adobe AIR Application Installer[5593]: Commandline is: "/Volumes/Install [APP_NAME]/Install [APP_NAME].app/Contents/Resources/[APP_NAME]"
    Feb 28 22:30:28 collings-4.local Adobe AIR Application Installer[5593]: Installed runtime (2.7.1.19610) located at /Library/Frameworks/Adobe AIR.framework
    Feb 28 22:30:28 collings-4.local Adobe AIR Application Installer[5593]: Validating app in folder /Volumes/Install [APP_NAME]/Install [APP_NAME].app/Contents/Resources/[APP_NAME]/Contents/Resources
    Feb 28 22:30:37 collings-4.local Adobe AIR Application Installer[5593]: Application signature verified
    Feb 28 22:30:37 collings-4.local Adobe AIR Application Installer[5593]: Unpackaging/validation complete
    Feb 28 22:30:37 collings-4.local Adobe AIR Application Installer[5593]: Application has unknown namespace http://ns.adobe.com/air/application/3.1. Attempting immediate runtime update
    Feb 28 22:30:37 collings-4.local Adobe AIR Application Installer[5593]: Begin runtime update download from http://airdownload.adobe.com/air/3/macos/x86/add/3.1/update
    Feb 28 22:30:37 collings-4.local Adobe AIR Application Installer[5593]: Download destination is /Users/[USER_NAME]/Library/Application Support/Adobe/AIR/Updater/Update
    Feb 28 22:30:37 collings-4.local Adobe AIR Application Installer[5593]: Unpackaging http://airdownload.adobe.com/air/3/macos/x86/add/3.1/update to /Users/[USER_NAME]/Library/Application Support/Adobe/AIR/Updater/Update
    Feb 28 22:31:04 collings-4.local Adobe AIR Application Installer[5593]: Unpackaging complete
    Feb 28 22:31:04 collings-4.local Adobe AIR Application Installer[5593]: Download success
    Feb 28 22:31:04 collings-4.local Adobe AIR Application Installer[5593]: Successfully downloaded immediate update. Invoking downloaded installer
    Feb 28 22:31:04 collings-4.local Adobe AIR Application Installer[5593]: Launching subprocess with commandline /Users/[USER_NAME]/Library/Application Support/Adobe/AIR/Updater/Update/updater -x1 -deleteInput /private/var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/0/TemporaryItems/FlashTmp0
    Feb 28 22:31:04 collings-4.local Adobe AIR Application Installer[5593]: Application Installer end with exit code 0
    Feb 28 22:31:11 collings-4.local Adobe AIR Installer[5604]: Runtime Installer begin with version 3.6.0.5970 on Mac OS 10.8.2 x86
    Feb 28 22:31:11 collings-4.local Adobe AIR Installer[5604]: Commandline is: -x1 -deleteInput /private/var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/0/TemporaryItems/FlashTmp0
    Feb 28 22:31:11 collings-4.local Adobe AIR Installer[5604]: Installed runtime (2.7.1.19610) located at /Library/Frameworks/Adobe AIR.framework
    Feb 28 22:31:11 collings-4.local Adobe AIR Installer[5604]: Invoking Application Installer for combined install
    Feb 28 22:31:11 collings-4.local Adobe AIR Installer[5604]: Launching subprocess with commandline /var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/T/airyCunbe/Adobe AIR Installer.app/Contents/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer -runtime "/var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/T/airyCunbe/Adobe AIR Installer.app/Contents/Frameworks" -withRuntime -deleteInput -url /private/var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/0/TemporaryItems/FlashTmp0
    Feb 28 22:31:12 collings-4.local Adobe AIR Application Installer[5605]: Application Installer begin with version 3.6.0.5970 on Mac OS 10.8.2 x86
    Feb 28 22:31:12 collings-4.local Adobe AIR Application Installer[5605]: Commandline is: -runtime "/var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/T/airyCunbe/Adobe AIR Installer.app/Contents/Frameworks" -withRuntime -deleteInput -url /private/var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/0/TemporaryItems/FlashTmp0
    Feb 28 22:31:12 collings-4.local Adobe AIR Application Installer[5605]: Installed runtime (2.7.1.19610) located at /Library/Frameworks/Adobe AIR.framework
    Feb 28 22:31:13 collings-4.local Adobe AIR Application Installer[5605]: Validating app in folder /private/var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/0/TemporaryItems/FlashTmp0/Content s/Resources
    Feb 28 22:31:23 collings-4.local Adobe AIR Application Installer[5605]: Application signature verified
    Feb 28 22:31:23 collings-4.local Adobe AIR Application Installer[5605]: Unpackaging/validation complete
    Feb 28 22:31:23 collings-4.local Adobe AIR Application Installer[5605]: No app located for appID 'com.[APP_NAME].[APP_NAME]' and pubID ''
    Feb 28 22:31:28 collings-4.local Adobe AIR Application Installer[5605]: Launching subprocess with commandline /var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/T/airyCunbe/Adobe AIR Installer.app/Contents/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer -runtime "/var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/T/airyCunbe/Adobe AIR Installer.app/Contents/Frameworks" -silent -logToStdout -withRuntime -url -location /Applications -desktopShortcut -programMenu /private/var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/0/TemporaryItems/FlashTmp0
    Feb 28 22:31:28 collings-4.local Adobe AIR Application Installer[5605]: Relaunching with elevation
    Feb 28 22:31:33 collings-4.local com.apple.SecurityServer[27]: Succeeded authorizing right 'system.privilege.admin' by client '/private/var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/T/airyCunbe/Adobe AIR Installer.app/Contents/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app' [5605] for authorization created by '/private/var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/T/airyCunbe/Adobe AIR Installer.app/Contents/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app' [5605] (13,0)
    Feb 28 22:31:33 collings-4.local coreservicesd[67]: Application App:"Adobe AIR Application Installer" [ 0x0/0x3c53c5]  @ 0x0x7fe548e920f0 tried to be brought forward, but isn't in fPermittedFrontASNs ( ( ASN:0x0-0x3c63c6:) ), so denying.
    Feb 28 22:31:33 collings-4.local WindowServer[116]: [cps/setfront] Failed setting the front application to Adobe AIR Application Installer, psn 0x0-0x3c53c5, securitySessionID=0x186a4, err=-13066
    Feb 28 22:31:33 collings-4.local com.apple.SecurityServer[27]: Succeeded authorizing right 'system.privilege.admin' by client '/usr/libexec/security_authtrampoline' [5617] for authorization created by '/private/var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/T/airyCunbe/Adobe AIR Installer.app/Contents/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app' [5605] (3,0)
    Feb 28 22:31:33 collings-4.local authexec[5617]: executing /var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/T/airyCunbe/Adobe AIR Installer.app/Contents/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app/Contents/MacOS/Adobe AIR Application Installer
    Feb 28 22:31:33 collings-4.local Adobe AIR Application Installer[5617]: Application Installer begin with version 3.6.0.5970 on Mac OS 10.8.2 x86
    Feb 28 22:31:33 collings-4.local Adobe AIR Application Installer[5617]: Commandline is: -runtime "/var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/T/airyCunbe/Adobe AIR Installer.app/Contents/Frameworks" -silent -logToStdout -withRuntime -url -location /Applications -desktopShortcut -programMenu /private/var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/0/TemporaryItems/FlashTmp0
    Feb 28 22:31:33 collings-4.local Adobe AIR Application Installer[5617]: Installed runtime (2.7.1.19610) located at /Library/Frameworks/Adobe AIR.framework
    Feb 28 22:31:34 collings-4.local Adobe AIR Application Installer[5617]: Validating app in folder /private/var/folders/r3/sysmrw8s4f1f18wvfk79zwrw0000gn/0/TemporaryItems/FlashTmp0/Content s/Resources
    Feb 28 22:31:41 collings-4.local Adobe AIR Application Installer[5617]: Application signature verified
    Feb 28 22:31:41 collings-4.local Adobe AIR Application Installer[5617]: Unpackaging/validation complete
    Feb 28 22:31:41 collings-4.local Adobe AIR Application Installer[5617]: No app located for appID 'com.[APP_NAME].[APP_NAME]' and pubID ''
    Feb 28 22:31:41 collings-4.local Adobe AIR Application Installer[5617]: Launching subprocess with commandline /bin/chmod -fRP +rw "/Users/Shared/Library/Application Support/Adobe"
    Feb 28 22:31:41 collings-4.local Adobe AIR Application Installer[5617]: Launching subprocess with commandline /usr/sbin/chown -hfRP [USER_NAME] "/Users/[USER_NAME]/Library/Application Support/Adobe"
    Feb 28 22:31:41 collings-4.local Adobe AIR Application Installer[5617]: Launching subprocess with commandline /bin/chmod -fRP +rw "/Users/[USER_NAME]/Library/Application Support/Adobe"
    Feb 28 22:31:41 collings-4.local Adobe AIR Application Installer[5617]: Launching subprocess with commandline /usr/sbin/chown -hfRP [USER_NAME] "/Users/[USER_NAME]/Library/Preferences/Macromedia/Flash Player/www.macromedia.com/bin"
    Feb 28 22:31:41 collings-4.local Adobe AIR Application Installer[5617]: Starting silent combined runtime update and app install.
    Feb 28 22:32:18 collings-4.local Adobe AIR Application Installer[5617]: Registering /Applications/Utilities/Adobe AIR Application Installer.app/Contents/Info.plist
    Feb 28 22:32:19 collings-4.local Adobe AIR Application Installer[5617]: Launching subprocess with commandline /usr/sbin/chown -hfRP root:wheel "/Library/Frameworks/Adobe AIR.framework"
    Feb 28 22:32:19 collings-4.local Adobe AIR Application Installer[5617]: Subprocess chown succeeded
    Feb 28 22:32:19 collings-4.local Adobe AIR Application Installer[5617]: Launching subprocess with commandline /usr/sbin/chown -hfRP root:wheel "/Applications/Utilities/Adobe AIR Application Installer.app"
    Feb 28 22:32:19 collings-4.local Adobe AIR Application Installer[5617]: Subprocess chown succeeded
    Feb 28 22:32:19 collings-4.local Adobe AIR Application Installer[5617]: Launching subprocess with commandline /usr/sbin/chown -hfRP root:wheel "/Applications/Utilities/Adobe AIR Uninstaller.app"
    Feb 28 22:32:19 collings-4.local Adobe AIR Application Installer[5617]: Subprocess chown succeeded
    Feb 28 22:32:19 collings-4.local Adobe AIR Application Installer[5617]: Launching subprocess with commandline /usr/sbin/chown -hfRP root:wheel /Applications/[APP_NAME].app
    Feb 28 22:32:19 collings-4.local Adobe AIR Application Installer[5617]: Subprocess chown succeeded
    Feb 28 22:32:19 collings-4.local Adobe AIR Application Installer[5617]: Launching subprocess with commandline /bin/chmod -R ugo+rx /Applications/[APP_NAME].app
    Feb 28 22:32:19 collings-4.local Adobe AIR Application Installer[5617]: Subprocess chmod succeeded
    Feb 28 22:32:20 collings-4.local Adobe AIR Application Installer[5617]: Application Installer end with exit code 0
    Feb 28 22:32:20 collings-4.local Adobe AIR Application Installer[5605]: Elevated install completed
    Feb 28 22:32:20 collings-4.local Adobe AIR Application Installer[5605]: Launching subprocess with commandline /Applications/[APP_NAME].app
    Feb 28 22:32:21 collings-4.local Adobe AIR Application Installer[5605]: Application Installer end with exit code 0
    Feb 28 22:32:21 collings-4.local Adobe AIR Installer[5604]: Subprocess app installer succeeded
    Feb 28 22:32:21 collings-4.local Adobe AIR Installer[5604]: Runtime Installer end with exit code 0

  • How to dynamically update JTable

    My application gets results from database as a set of resultsets. I display these results in a table. But generally stored procedure used used takes alot of time to get the full set of result sets. So this at times is annoying for user to wait for all the result when it could be much better if i could display results as and when recieved. For this i add the data recieved to the data vector and then call fireTableRowsInserted() on its model. which should update its view but this does not happen. Can someone advise me on how to achieve this.
    greetings.

    Your table model should extend AbstractTableModel. And when (for example) it adds a row to whatever data structure is supporting the model, it should call fireTableRowsInserted... you can find out more about those methods in the API documentation. You don't need to revalidate or invalidate or validate the JTable, at least I don't have that in my code anywhere.

Maybe you are looking for

  • Issue with use of shared variables in Crystal Reports 2008 Offline Viewer

    Hi, I have a report that contains a number of sub-reports which include drill-down functionality. The report returns data relating to an individual team with the user being able to view top level summary information in each area from the parent repor

  • Error While mapping using Join

    Hello Guys I just started Learning OWB i have a small problem while Mapping I mappped a column from source directly to Target and when i use the same column for Join condition for another mapping its not allowing me to so that and its giving error AP

  • How to delete a source system in BW?

    Hello All!    Can anone please  inform me about the procedure to delete a source system or inform me in which document i can find this information. Actually i wish to assing my newly installed BW3.5 system to a new logical system (i.e) its currently

  • How do I get Alexa trends and rankings in bottom right corner of ff29?

    I had Alexa Sparky installed which gave trends and ranking for the webpage. Since the ff29 update this has dissapeared. Reinstalling Sparky didn't work. Any ideas?

  • Preferences lost multiple times

    I've lost my preferences in InDesign about 5 times in the last week. I've exported my print  and document settings now so its a little easier, but still very annoying. I now have to go back and change all my measurement preferences, ect. Very very an