Form Wizard, Excel Sourced Documents, Dozens of Extra Fields

I have a series of PDF documents which I generate on a weekly basis from MS Excel reports.
It looks something like this:
Description
Jan Sales
Feb Sales
Mar Sales
Apr Sales
May Sales
Order 1
Order 2
Order 3
Order 4
Vendor 1
Widget 1
2
5
5
4
Widget 2
4
7
2
8
7
Vendor 2
Widget A
2
9
3
8
2
When I run this through Form Wizard, I get a form field in every blank cell.  I'd really like form fields limited to the Order 1 column.  Is there anything I can do to trick the Form Wizard to limit its attention to this area?  Perhaps by modifying the underlying Excel form before printing to Acrobat?
Edit:
Maybe I should mention that it's the fact that I have 200 pages/week that motivates me to look for a reduction in the Form Wizard initial field generation.  It takes me a little over 2 minutes a page to delete out the 100+ extra fields per page.  Eliminating the better part of a day's repetitive labor is kind of a big deal.
Message was edited by: jwpfw

Here are some ideas you can try. You can delete fields with JavaScript, so you could set up a script that loops through the fields and deletes them based on some criteria, such as the position on the page or the field name that Acrobat automatically generates. You can set up the script so it's activated from a custom toolbar button or menu item, or as part of a batch sequence (custom action). If you'd like specific help with the code, it would help if you could post a sample document that has the fields added.
An alternative that you can use if the layout of the document will remain unchanged is to add the fields using a script, perhaps taking advantage of tempates. So instead of running the Form Wizard to add the fields, you create a script to add the fields exactly where you want and with the field names and any other properties you want.

Similar Messages

  • Create fillable form with changing source document

    I want to create a fillable, saveable form in which the source document changes.  Hope I am using the correct verbiage.  Source document meaning the Word document that I convert to a .pdf, which I then use to create the fillable form.  This source document has client/description information that consistently changes.  Is there any way to easily create the fillable form, without having to insert/size/change the text boxes each time (iow, create a whole new form each time)?  I am using Acrobat X.
    Thanks,
    Julie

    If you can have a copy of the original form, create a PDF of the changed form and create a new PDF with a name different that the original form. This will be content layer of the document and not have the form field layer or form fields. You can then open the original PDF form and use the "Document => Replace pages..." to replace the underlying content of the original form while retaining the form field layer. You can now save the revised form. You may need to relocate form form fields due to changes in the form.

  • Form Validation using Javascript error when adding extra fields

    Hi,
    I have a form (with a few fields which require validation) which works just fine.  I have added extra fields to the form and require them to validate too.  My problem is that they are not showing via the behaviours/validation box and I can't figure out how to sort it!  They are contained within the form element.  I have tried to delate the original validation and start again but to no avail.
    Please can someone help me?
    Code below.
    Many thanks
    function MM_validateForm() { //v4.0
      var i,p,q,nm,test,num,min,max,errors='',args=MM_validateForm.arguments;
      for (i=0; i<(args.length-2); i+=3) { test=args[i+2]; val=MM_findObj(args[i]);
        if (val) { nm=val.name; if ((val=val.value)!="") {
          if (test.indexOf('isEmail')!=-1) { p=val.indexOf('@');
            if (p<1 || p==(val.length-1)) errors+='- '+nm+' must contain an e-mail address.\n';
          } else if (test!='R') { num = parseFloat(val);
            if (isNaN(val)) errors+='- '+nm+' must contain a number.\n';
            if (test.indexOf('inRange') != -1) { p=test.indexOf(':');
              min=test.substring(8,p); max=test.substring(p+1);
              if (num<min || max<num) errors+='- '+nm+' must contain a number between '+min+' and '+max+'.\n';
        } } } else if (test.charAt(0) == 'R') errors += '- '+nm+' is required.\n'; }
      } if (errors) alert('The following error(s) occurred:\n'+errors);
      document.MM_returnValue = (errors == '');
    //-->
    <form action="contact_us.asp" method="post" name="contact" target="_parent" class="contentText" id="contact">
          <table width="100%" border="0" cellspacing="5" cellpadding="0">
            <tr>
              <td width="54%" class="subHeader">Full Name* </td>
              <td width="46%" class="subHeader"><input name="FullName" type="text" id="FullName" /></td>
            </tr>
            <tr>
              <td class="subHeader">Company Name </td>
              <td class="subHeader"><input name="CompanyName" type="text" id="CompanyName" /></td>
            </tr>
            <tr>
              <td class="subHeader">Address</td>
              <td class="subHeader"><input name="Address1" type="text" id="Address1" /></td>
            </tr>
            <tr>
              <td class="subHeader"> </td>
              <td class="subHeader"><input name="Address2" type="text" id="Address2" /></td>
            </tr>
            <tr>
              <td class="subHeader"> </td>
              <td class="subHeader"><input name="Address3" type="text" id="Address3" /></td>
            </tr>
            <tr>
              <td class="subHeader">Postcode</td>
              <td class="subHeader"><input name="Postcode" type="text" id="Postcode" /></td>
            </tr>
            <tr>
              <td class="subHeader">Telephone Number* </td>
              <td class="subHeader"><input name="Telephone" type="text" id="Telephone" /></td>
            </tr>
            <tr>
              <td class="subHeader">Mobile Number </td>
              <td class="subHeader"><input name="Mobile" type="text" id="Mobile" /></td>
            </tr>
            <tr>
              <td height="25" class="subHeader">Email Address* </td>
              <td class="subHeader"><input name="Email" type="text" id="Email" /></td>
            </tr>
            <tr>
              <td height="30" class="subHeader">Status*</td>
              <td class="subHeader"><select name="StatusClass" id="StatusClass">
                <option selected="selected">Please Choose</option>
                <option>Architect</option>
                <option>Interior Designer</option>
                <option>Private Client</option>
                <option>Student</option>
                <option>Trade Enquiry</option>
              </select>          </td>
            </tr>
            <tr>
              <td height="23" class="subHeader">Project*</td>
              <td class="subHeader"><select name="Project" size="1" id="Project">
                <option selected="selected">Please Choose</option>
                <option>Planning Stages</option>
                <option>New Build</option>
                <option>Refurbishment</option>
                <option>Barn Conversion</option>
                <option>No project - information only</option>
              </select>          </td>
            </tr>
            <tr>
              <td height="37" class="subHeader">How did you hear about us?*</td>
              <td class="subHeader"><select name="CameFrom" size="1" id="CameFrom">
                <option selected="selected">Please Choose</option>
                <option>Web Search</option>
                <option>Grand Designs</option>
                <option>Living Etc</option>
                <option>Home Building &amp; Renovation</option>
                <option>Architect</option>
                <option>Friend/Family</option>
                <option>Magazine/Editorial</option>
                <option>Newspaper Article</option>
                <option>Trade Show/Exhibition</option>
                <option>Other</option>
              </select></td>
            </tr>
            <tr>
              <td height="24" class="subHeader">Brochure Request </td>
              <td class="subHeader"><input name="Brochure" type="checkbox" id="Brochure" value="checkbox" /></td>
            </tr>
            <tr>
              <td class="subHeader">Message</td>
              <td class="subHeader"><span class="style4">
                <textarea name="Message" id="Message"></textarea>
              </span></td>
            </tr>
            <tr>
              <td class="subHeader"> </td>
              <td class="subHeader"><input name="Submit" type="submit" value="Submit" /></td>
            </tr>
            <tr>
              <td colspan="2" class="subHeader"><em>* Required fields</em></td>
            </tr>
          </table>
          </form>

    whoops..... forgot to post this line of code which was a bit further down the page...
    "MM_validateForm('name','','R','number','','RisNum');return document.MM_returnValue">

  • Forms wizard does not allow what type of field to use as default?

    I have Acrobat 9 and am creating a form that has ober 300 fields (for logging calls).
    The issue I have is when starting the wizard, it defaults to creating all 300 fields as TEXT boxes. I'd like to have them as COMBO BOXES. I see no way to change them or to change how adobe 9 creates them at start up of the wizard.
    I know I can do them one at a time and even copy and paste groups of them, but they don't line up as well when I do it this way.
    Any ideas?
    Thanks

    Hi!
    Thanks very much for your reply. Precisely what I'm hoping to do is stamp annotations--to the point that I've prototyped three whole toolbars of fixtures, sensors, and wall controls with mocked up rubber stamps, and marked up several whole buildings worth of construction plans to show the concept.
    Okay--so the stamp annotation looks terrific. How do I find out more? The Acrobat 9.1 SDK (under "Plug-ins and Applications", then "Creating Annotations") says this:
    Several annotation types exist, which are identified  by their subtype. Each subtype can have additional properties that  extend the basic ones. The subtype for text annotations (also called  notes) is text. The subtype for link annotations is link. The Acrobat  core API contains two built-in annotation typedefs PDTextAnnot and PDLinkAnnot. A PDTextAnnot object corresponds to a text annotation and a PDLinkAnnot object corresponds to a link annotation.
    That paragraph (and the subsequent pages in that chapter) led me to think that my options were:
    Text annotation
    Link annotation
    3D annotation
    Dive into the Cos layer and create a custom annotation
    Where can I find documentation on the Stamp annotation? (I do have the Stamper sample application.)
    Thanks again,
    John Murdoch

  • Xcelsius messes up links when importing Excel source document

    I am creating a dashboard using an Excel doc as my master source.  Because the dashboard data is all over my network, I have a master excel doc that has cell values that are links to cells in three other excel spreadsheets on my network.  When I import the spreadsheet into Xcelsius, it says the links are wrong.  I click the "Change Source" button and notice the links point to my hard drive (c:\agency\agency production\2008 production.xls) instead of the where the link should be (o:\agency\agency production\2008 production.xls).  The master excel spreadsheet has all the links correctly going to our network drives.
    I've tried recreating the master spreadsheet
    breaking the links and recreating
    Using FQDN names for the links instead of drive letters
    I always get the same error.
    Any help is appreciated.

    Hi Chris,
    I'm actually trying to get one master excel spreadsheet to link to several smaller source files. I've created all the references to the E:\ drive on our server, but when I import the model in Xcelsius the charts are all blank. This leads me to believe that Xcelsius can't work with linked excel spreadsheets. Were you ever able to get this to work?
    Thanks!
    Tiffany

  • Using dynamic form wizard dont allow decimals

    using the dynamic form wizard converts a given number using decimals in integer !!
    example : if i use a text field ( in a form generated with the wizard) that will input a number with decimals : 123.44, the form sends 12344 to the db.
    i´m using an access db (2003) and the numeric fields are declarated as number type
    any ideas to solve this?
    tanx

    The problem is the same when using the Insert Record Form Wizard. I've made all the fields mandatory, but the file field still doesn't look like it has the content of the form passed through to the database. I've recreated the page, and double checked that the correct links are being made between the form inputs and the database fields, but still get the following:
    ]Error:
    ]SQL error: Field 'eventDoc.eventDocFile' cannot be a zero-length string..
    ]Developer Details:
    ]SQL error: INSERT INTO eventDoc (eventDocEvent, eventDocFile, eventDocText, eventDocTextWelsh) VALUES (32, '', 'Test file to check insert behaviour', 'Test file to check insert behaviour (Welsh)'). (SQL_ERROR)
    tNG Execution Trace - VIEW
    * tNG_insert.executeTransaction
    o STARTER.Trigger_Default_Starter
    o tNG_insert.doTransaction
    + BEFORE.Trigger_Default_FormValidation
    + tNG_insert.prepareSQL
    + tNG_insert.executeTransaction - execute sql* (THIS LINE IN RED)
    + ERROR.Trigger_Default_Insert_RollBack
    * tNG_insert.getRecordset
    * tNG_insert.getFakeRsArr
    * tNG_insert.getLocalRecordset
    * tNG_insert.getFakeRecordset
    * tNG_insert.getFakeRecordset
    I've also tested on both my local development server and the hosting server now, and have the same problem on both. It also happens if I just create the form, but don't apply the file upload behaviour - so it seems like it might be a problem with the supplied behaviours and how they handle the content of file inputs from forms.
    I've only used the file upload in PHP before, where it seemed to work quite happily.

  • Adobe Form From Excel Has Excel File Location in Form

    I took an excel sheet that we use as a form and used the adobe form wizard to convert it to a pdf form and it has the excel files
    location at the bottom of the form C:\Documents and Settings\My Name\Desktop\stsform.xls.
    How can i make it so that this does not show up in the pdf form? This is being read in from somewhere as it does not appear on the excel form.
    This may be a basic question but this is my first try at adobe forms. I am using acrobat 9 Pro.

    Hi..
    does any one here to explain how the coding to be done..

  • How do I convert an excel (2008) document to Numbers?  When I drag the Excel document onto the Numbers icon I get, "Import error.  The file format is invalid"

    How can I convert an Excel (2008) document to Numbers.  When I drag the Excel document onto the Numbers icon I get, "Import error.  The file format is invalid.

    That extension identifies the most current Excel file format, a format that can be opened by Numbers '09 (and by Numbers '08).
    A check with Numbers '09 shows it capable of opening .xlsx files when right-clicked (and Numbers chose as the application to open, when double-clicked (if Numbers has been set as the default application to open this type of file, or when dragged to the Numbers icon in the dock.
    I see two possibilities for Numbers inability to open it and the message you receive:
    1. The file is not actually an Excel file, and the sender has added the .xlsx extension to the filename manually.
    2. The file is an Excel file, but has somehow been corrupted.
    Have you tried opening the file with a different application? The open source Office suites, OpenOffice.org, LibreOffice and NeoOffice can also open .xlsx files. If they're unable to open this one, that would point toward the file itself being faulty. You can download these applications from their rspective websites, linked in the names above. All request a donation to support future development, but only Neo requires one to have been made recently, and that only for the current release (which won't be necessary to open .xlsx files).
    Regards,
    Barry

  • Acrobat 9.5.1 forms wizard crashes acrobat

    Help!
    I tam trying to use forms wizard, and it crashes like a drunk freshmen driving a gocart backwards...
    Attached is the log.
    A
    ====================================================================
    Process:         AdobeAcrobat [27881]
    Path:            /Applications/Adobe Acrobat 9 Pro/Adobe Acrobat Pro.app/Contents/MacOS/AdobeAcrobat
    Identifier:      com.adobe.Acrobat.Pro
    Version:         9.5.1 (9.5.1)
    Code Type:       X86 (Native)
    Parent Process:  launchd [116]
    Date/Time:       2012-05-15 16:02:02.869 -0400
    OS Version:      Mac OS X 10.7.3 (11D50)
    Report Version:  9
    Interval Since Last Report:          540628 sec
    Crashes Since Last Report:           4
    Per-App Interval Since Last Report:  340 sec
    Per-App Crashes Since Last Report:   3
    Anonymous UUID:                      8DB2C10A-2ED0-48E9-A358-3DDAAF8EED5E
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000020
    VM Regions Near 0x20:
    --> __PAGEZERO             0000000000000000-0000000000001000 [    4K] ---/--- SM=NUL  /Applications/Adobe Acrobat 9 Pro/Adobe Acrobat Pro.app/Contents/MacOS/AdobeAcrobat
        __TEXT                 0000000000001000-0000000000003000 [    8K] r-x/rwx SM=COW  /Applications/Adobe Acrobat 9 Pro/Adobe Acrobat Pro.app/Contents/MacOS/AdobeAcrobat
    Application Specific Information:
    objc[27881]: garbage collection is OFF
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.adobe.AcrobatPlugin.MakeAccessible          0x7809c59a AcroPluginMain + 2642166
    1   com.adobe.AcrobatPlugin.MakeAccessible          0x77f0f313 AcroPluginMain + 1015407
    2   com.adobe.AcrobatPlugin.MakeAccessible          0x77e6dcfc AcroPluginMain + 354392
    3   com.adobe.AcrobatPlugin.MakeAccessible          0x77e6db4a AcroPluginMain + 353958
    4   com.adobe.AcrobatPlugin.MakeAccessible          0x77e6df61 AcroPluginMain + 355005
    5   com.adobe.AcrobatPlugin.MakeAccessible          0x77e58dfa AcroPluginMain + 268630
    6   com.adobe.AcrobatPlugin.MakeAccessible          0x77e2c0bd AcroPluginMain + 85017
    7   com.adobe.AcrobatPlugin.MakeAccessible          0x77e24c63 AcroPluginMain + 55231
    8   com.adobe.AcrobatPlugin.MakeAccessible          0x77e204cb AcroPluginMain + 36903
    9   com.adobe.Acrobat.framework             0x80600cfc AcroSecurityBailOutImpl + 6012152
    10  com.adobe.Acrobat.framework             0x80256237 AcroSecurityBailOutImpl + 2167347
    11  com.adobe.Acrobat.framework             0x8025634f AcroSecurityBailOutImpl + 2167627
    12  com.adobe.AcrobatPlugin.AcroForm          0x7b95cc6e AcroPluginMain + 1211550
    13  com.adobe.Acrobat.framework             0x7feda94f RunAcrobat + 1366101
    14  com.adobe.Acrobat.framework             0x7feda684 RunAcrobat + 1365386
    15  com.apple.CoreFoundation                0x91ad2656 __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 22
    16  com.apple.CoreFoundation                0x91ad1fe7 __CFRunLoopDoTimer + 743
    17  com.apple.CoreFoundation                0x91ab0f70 __CFRunLoopRun + 1888
    18  com.apple.CoreFoundation                0x91ab047c CFRunLoopRunSpecific + 332
    19  com.apple.CoreFoundation                0x91ab0328 CFRunLoopRunInMode + 120
    20  com.apple.HIToolbox                     0x9929117f RunCurrentEventLoopInMode + 318
    21  com.apple.HIToolbox                     0x99298412 ReceiveNextEventCommon + 168
    22  com.apple.HIToolbox                     0x99298356 BlockUntilNextEventMatchingListInMode + 88
    23  com.apple.AppKit                        0x92995a9c _DPSNextEvent + 678
    24  com.apple.AppKit                        0x92995306 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 113
    25  com.apple.AppKit                        0x92991675 -[NSApplication run] + 911
    26  com.adobe.Acrobat.framework             0x7fd8dd0c RunAcrobat + 3090
    27  com.adobe.Acrobat.framework             0x7fd8d238 RunAcrobat + 318
    28  com.adobe.Acrobat.Pro                   0x00002e8b start + 2371
    29  com.adobe.Acrobat.Pro                   0x0000264a start + 258
    30  com.adobe.Acrobat.Pro                   0x00002571 start + 41
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x935be90a kevent + 10
    1   libdispatch.dylib                       0x99f01c58 _dispatch_mgr_invoke + 969
    2   libdispatch.dylib                       0x99f006a7 _dispatch_mgr_thread + 53
    Thread 2:
    0   libsystem_kernel.dylib                  0x935bd83e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x98c80e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x98c3142c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore          0x95ed5e62 TSWaitOnCondition + 124
    4   com.apple.CoreServices.CarbonCore          0x95e473c5 TSWaitOnConditionTimedRelative + 136
    5   com.apple.CoreServices.CarbonCore          0x95ea9681 MPWaitOnQueue + 200
    6   AdobeACE                                0x7faf1759 ACEMPThread::Task() + 133
    7   AdobeACE                                0x7faf16cd TaskGlue + 17
    8   com.apple.CoreServices.CarbonCore          0x95eaa5e0 PrivateMPEntryPoint + 68
    9   libsystem_c.dylib                       0x98c7ced9 _pthread_start + 335
    10  libsystem_c.dylib                       0x98c806de thread_start + 34
    Thread 3:
    0   libsystem_kernel.dylib                  0x935bd83e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x98c80e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x98c2882a pthread_cond_wait + 48
    3   AdobeAGM                                0x7e431bc8 pthread_condition_base::Wait(pthread_scoped_lock_base&) + 26
    4   AdobeAGM                                0x7e431b1d AGMMessageQueueImpl::Pull() + 65
    5   AdobeAGM                                0x7e823b90 AGMWorkQueueTask::operator()() + 84
    6   AdobeAGM                                0x7e824e1b boost::function0<void, std::allocator<boost::function_base> >::operator()() const + 75
    7   AdobeAGM                                0x7e4319fd thread_proxy + 45
    8   libsystem_c.dylib                       0x98c7ced9 _pthread_start + 335
    9   libsystem_c.dylib                       0x98c806de thread_start + 34
    Thread 4:
    0   libsystem_kernel.dylib                  0x935be90a kevent + 10
    1   com.adobe.Acrobat.framework             0x80726672 AcroSecurityBailOutImpl + 7214702
    2   com.adobe.Acrobat.framework             0x80657853 AcroSecurityBailOutImpl + 6367311
    3   libsystem_c.dylib                       0x98c7ced9 _pthread_start + 335
    4   libsystem_c.dylib                       0x98c806de thread_start + 34
    Thread 5:
    0   libsystem_kernel.dylib                  0x935bd83e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x98c80e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x98c80f7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x965553f7 -[NSCondition waitUntilDate:] + 427
    4   com.apple.Foundation                    0x9651b806 -[NSConditionLock lockWhenCondition:beforeDate:] + 294
    5   com.apple.Foundation                    0x9651b6da -[NSConditionLock lockWhenCondition:] + 69
    6   com.adobe.acrobat.amtlibwrapper          0x075922d1 AVAMTForegroundUpdateCheckEnabled + 116699
    7   com.adobe.acrobat.amtlibwrapper          0x07587341 AVAMTForegroundUpdateCheckEnabled + 71755
    8   com.adobe.acrobat.amtlibwrapper          0x07590d60 AVAMTForegroundUpdateCheckEnabled + 111210
    9   com.apple.Foundation                    0x96522e59 -[NSThread main] + 45
    10  com.apple.Foundation                    0x96522e09 __NSThread__main__ + 1582
    11  libsystem_c.dylib                       0x98c7ced9 _pthread_start + 335
    12  libsystem_c.dylib                       0x98c806de thread_start + 34
    Thread 6:
    0   libsystem_kernel.dylib                  0x935bd83e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x98c80e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x98c80f7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.CoreServices.CarbonCore          0x95e473ef TSWaitOnConditionTimedRelative + 178
    4   com.apple.CoreServices.CarbonCore          0x95ea9681 MPWaitOnQueue + 200
    5   com.adobe.AcrobatPlugin.Updater          0x73e09dfc AcroPluginMain + 126620
    6   com.adobe.AcrobatPlugin.Updater          0x73deb6d5 AcroPluginMain + 1909
    7   com.apple.CoreServices.CarbonCore          0x95eaa5e0 PrivateMPEntryPoint + 68
    8   libsystem_c.dylib                       0x98c7ced9 _pthread_start + 335
    9   libsystem_c.dylib                       0x98c806de thread_start + 34
    Thread 7:
    0   libsystem_kernel.dylib                  0x935be02e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x98c7eccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x98c806fe start_wqthread + 30
    Thread 8:
    0   libsystem_kernel.dylib                  0x935be02e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x98c7eccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x98c806fe start_wqthread + 30
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00000018  ebx: 0x7809c395  ecx: 0x002f4180  edx: 0x0a387460
      edi: 0xbfffd450  esi: 0x77e6de10  ebp: 0xbfffcf78  esp: 0xbfffcf00
       ss: 0x00000023  efl: 0x00010206  eip: 0x7809c59a   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0x00000020
    Logical CPU: 0
    Binary Images:
        0x1000 -     0x2fff +com.adobe.Acrobat.Pro (9.5.1 - 9.5.1) <F39CE339-ABFD-4D0D-9FAD-9D19AFCDA4A7> /Applications/Adobe Acrobat 9 Pro/Adobe Acrobat Pro.app/Contents/MacOS/AdobeAcrobat
       0x7b000 -    0x7bfff  libmx.A.dylib (2026.0.0 - compatibility 1.0.0) <859B5BCC-B5D9-370F-8B6C-1E2B242D5DCD> /usr/lib/libmx.A.dylib
       0xb0000 -    0xbeffb  libSimplifiedChineseConverter.dylib (54.0.0 - compatibility 1.0.0) <4378B89F-0BDA-3072-9C67-DE1A371DD816> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
       0xef000 -    0xf1fff +com.Logitech.Control Center.Scroll Enhancer Loader (3.0.0 - 3.0.0) <D495E732-F042-D5BA-263A-A6D6F8992A20> /Library/InputManagers/*/LCC Scroll Enhancer Loader.bundle/Contents/MacOS/LCC Scroll Enhancer Loader
       0xf6000 -    0xf7fff +com.ecamm.pluginloader (Ecamm Plugin Loader v1.0.5 - 1.0.5) /Library/InputManagers/*/Ecamm Plugin Loader.bundle/Contents/MacOS/Ecamm Plugin Loader
      0x6fc000 -   0x6fffff +com.Logitech.Control Center.Scroll Enhancer (3.0.0 - 3.0.0) <EB0B318B-9F02-7DEA-F59E-CEE7DFD60489> /Library/Application Support/Logitech.localized/*/LCC Scroll Enhancer.bundle/Contents/MacOS/LCC Scroll Enhancer
      0x7f9000 -   0x7faff1  com.apple.textencoding.unicode (2.4 - 2.4) <4E55D4B9-4E67-3FC9-9407-3E99D1D50F15> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x2a67000 -  0x2abdfeb +com.adobe.AcroSQLite (AcroSQLite - 1.0.0) <72E6DB47-E261-4DB5-8C19-7C47DFBFD60E> /Applications/Adobe Acrobat 9 Pro/Adobe Acrobat Pro.app/Contents/Frameworks/AcroSQLite.framework/AcroSQLite
    0x2c00000 -  0x2c47fc7 +com.adobe.adobe_caps (adobe_caps 0.0.120.0 - 0.0.120.0) /Applications/Adobe Acrobat 9 Pro/Adobe Acrobat Pro.app/Contents/Frameworks/adobe_caps.framework/adobe_caps
    0x2cb9000 -  0x2ccbfff  libTraditionalChineseConverter.dylib (54.0.0 - compatibility 1.0.0) <F7D2A96C-D03F-3C0B-83FC-1016BB787B59> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0x2ce9000 -  0x2cf6ff7 +com.adobe.asneu.framework (asneu version 1.6.2f01 - 1.6.2) /Applications/Adobe Acrobat 9 Pro/Adobe Acrobat Pro.app/Contents/Frameworks/asneu.framework/asneu
    0x2cfa000 -  0x2cfcfff  libCoreFSCache.dylib (??? - ???) <17698E23-65F8-30AF-9C05-7E6172E52656> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib
    0x7574000 -  0x76a9ff6 +com.adobe.acrobat.amtlibwrapper (1.1 - 1.1) <EE2AD5A8-A53F-4424-871E-E9B9A37D9EA7> /Applications/Adobe Acrobat 9 Pro/Adobe Acrobat Pro.app/Contents/Frameworks/AMTLibWrapper.framework/AMTLibWrapper
    0x76d8000 -  0x76ddfe2  libcldcpuengine.dylib (1.50.69 - compatibility 1.0.0) <57256969-D8B2-3B02-9425-25E719AAF478> /System/Library/Frameworks/OpenCL.framework/Libraries/libcldcpuengine.dylib
    0x76e8000 -  0x76e8ff3 +cl_kernels (??? - ???) <13C6CE81-5D2A-4688-B73A-2FCA53BEF52F> cl_kernels
    0x76fb000 -  0x7711fd7 +com.adobe.selfhealer (AdobeSelfHealing version 2.2.0 - 2.2.0) <5C4F769C-A7B9-45DE-815E-679A235E2A0D> /Applications/Adobe Acrobat 9 Pro/Adobe Acrobat Pro.app/Contents/Frameworks/AdobeSelfHealing.framework/AdobeSelfHealing
    0x78a0000 -  0x794dff7  libcrypto.0.9.7.dylib (0.9.7 - compatibility 0.9.7) <7B6DB792-C9E5-3772-8734-8D0052757B8C> /usr/lib/libcrypto.0.9.7.dylib
    0x79a3000 -  0x79dafd3 +com.adobe.epic (adobe_epic 2.5.1.59 - 2.5.1.59) /Applications/Adobe Acrobat 9 Pro/Adobe Acrobat Pro.app/Contents/Frameworks/adobe_epic.framework/adobe_epic
    0x79e8000 -  0x79f4fef +com.adobe.eula (adobe_eula 2.5.1.59 - 2.5.1.59) /Applications/Adobe Acrobat 9 Pro/Adobe Acrobat Pro.app/Contents/Frameworks/adobe_eula.framework/adobe_eula
    0x79fa000 -  0x7e7cfe3 +AdobeLM_libFNP.dylib (??? - ???) <4DFC36E1-2564-47A0-A604-0C2733FB1E87> /Applications/Adobe Acrobat 9 Pro/Adobe Acrobat Pro.app/Contents/MacOS/AdobeLM_libFNP.dylib
    0x802e000 -  0x802fff5 +com.vmware.FusionVMDKPlugIn (??? - 416484) <FB38D6FA-1EC8-88C6-DBC0-D2051763C8CD> /Library/Contextual Menu Items/FusionVMDKPlugIn.plugin/Contents/MacOS/FusionVMDKPlugIn
    0x97cb000 -  0x97ecff7 +com.adobe.BIBUtils (AdobeBIBUtils 1.1.01 - 1.1.01) /Applications/Adobe Acrobat 9 Pro/Adobe Acrobat Pro.app/Contents/Frameworks/AdobeBIBUtils.framework/AdobeBIBUtils
    0xa124000 -  0xa1c5ff7  unorm8_bgra.dylib (1.50.69 - compatibility 1.0.0) <7A0427BD-4FB5-3F4E-A7F8-F760AD944283> /System/Library/Frameworks/OpenCL.framework/Libraries/ImageFormats/unorm8_bgra.dylib
    0xa2bf000 -  0xa2d9fff +AdobeBIB (??? - ???) /Library/Contextual Menu Items/ADFSMenu.plugin/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
    0xc6af000 -  0xc6edfe7 +com.adobe.vcmenu (??? - 4.0.1.095) /Library/Contextual Menu Items/ADFSMenu.plugin/Contents/MacOS/ADFSMenu
    0xc985000 -  0xcaf1fd7 +com.adobe.Acrobat.adm (9.5.1 - 9.5.1) <714CF580-8275-4560-AE9E-ABE7D42DE693> /Applications/Adobe Acrobat 9 Pro/Adobe Acrobat Pro.app/Contents/MacOS/SPPlugins/AdobeADM.bundle/Contents/MacOS/AdobeADM
    0xd3eb000 -  0xd44afe7 +com.adobe.AdobeXMPCore (Adobe XMP Core 4.2.1 -c 43 - ???) /Applications/Adobe Acrobat 9 Pro/Adobe Acrobat Pro.app/Contents/Frameworks/AdobeXMP.framework/AdobeXMP
    0xd459000 -  0xd4f6fdf +com.adobe.linguistic.LinguisticManager (3.2.1 - 8088) /Applications/Adobe Acrobat 9 Pro/Adobe Acrobat Pro.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeLinguistic
    0xd516000 -  0xdec657f +libicudata.dylib.36.0 (36.0.0 - compatibility 36.0.0) /Applications/Adobe Acrobat 9 Pro/Adobe Acrobat Pro.app/Contents/Frameworks/ICUData.framework/Versions/3.6/libicudata.dylib.36.0
    0xdec9000 -  0xdf9dc77 +libicuuc.dylib.36.0 (36.0.0 - compatibility 36.0.0) /Applications/Adobe Acrobat 9 Pro/Adobe Acrobat Pro.app/Contents/Frameworks/ICUUnicode.framework/Versions/3.6/libicuuc.dylib.36.0
    0x27c48000 - 0x27e5bfc3 +com.adobe.ocrlibrary (1.0 - 1.0) /Applications/Adobe Acrobat 9 Pro/Adobe Acrobat Pro.app/Contents/Plug-ins/PaperCapture.acroplugin/Contents/Frameworks/OCRLibrary.framewor k/OCRLibrary
    0x27e9d000 - 0x27f07ff7 +com.irislink.iDRS (1.0 - 12.0.1.3) /Applications/Adobe Acrobat 9 Pro/Adobe Acrobat Pro.app/Contents/Plug-ins/PaperCapture.acroplugin/Contents/Frameworks/OCRLibrary.framewor k/Versions/A/Frameworks/iDRS.framework/Versions/A/iDRS
    0x27f32000 - 0x280b6fff +com.irislink.mac.DRS_iDRS (11.0 - 1088) /Applications/Adobe Acrobat 9 Pro/Adobe Acrobat Pro.app/Contents/Plug-ins/PaperCapture.acroplugin/Contents/Frameworks/OCRLibrary.framewor k/Versions/A/Frameworks/iDRS.framework/Resources/DRS_iDRS.framework/DRS_iDRS
    0x73de6000 - 0x73e2bfd8 +com.adobe.AcrobatPlugin.Updater (9.5.1 - 9.5.1) <110F9B57-4E4E-484F-83CF-7D400F2FAF35> /Applications/Adobe Acrobat 9 Pro/Adobe Acrobat Pro.app/Contents/Plug-ins/Updater.acroplugin/Contents/MacOS/Updater
    0x74a95000 - 0x74aebfe7 +com.adobe.AcrobatPlugin.Spelling (9.5.1 - 9.5.1) <20A81F8B-8B88-4540-8540-1074E80DD64F> /Applications/Adobe Acrobat 9 Pro/Adobe Acrobat Pro.app/Contents/Plug-ins/Spelling.acroplugin/Contents/MacOS/Spelling
    0x75669000 - 0x75f18c36 +com.adobe.AcrobatPlugin.PPKLite (9.5.1 - 9.5.1) <582FF38D-C0AC-4B38-B575-9AB0A937965C> /Applications/Adobe Acrobat 9 Pro/Adobe Acrobat Pro.app/Contents/Plug-ins/PPKLite.acroplugin/Contents/MacOS/PPKLite
    0x7773a000 - 0x7776cfd7 +com.adobe.AcrobatPlugin.PaperCapture (9.5.1 - 9.5.1) <E8AA106C-DC6F-4719-8E05-40C2BBC2D240> /Applications/Adobe Acrobat 9 Pro/Adobe Acrobat Pro.app/Contents/Plug-ins/PaperCapture.acroplugin/Contents/MacOS/PaperCapture
    0x77e16000 - 0x78259fe8 +com.adobe.AcrobatPlugin.MakeAccessible (9.5.1 - 9.5.1) <56843432-796A-4CE5-8DC3-133121679E9E> /Applications/Adobe Acrobat 9 Pro/Adobe Acrobat Pro.app/Contents/Plug-ins/MakeAccessible.acroplugin/Contents/MacOS/MakeAccessible
    0x7986d000 - 0x79a16feb +com.adobe.AcrobatPlugin.EScript (9.5.1 - 9.5.1) <2754C6A4-F4D6-4700-8F99-739AFBDDF5A0> /Applications/Adobe Acrobat 9 Pro/Adobe Acrobat Pro.app/Contents/Plug-ins/EScript.acroplugin/Contents/MacOS/EScript
    0x7a671000 - 0x7a7cdfd6 +com.adobe.AcrobatPlugin.DigSig (9.5.1 - 9.5.1) <1CF27BC0-0E0C-4924-B982-9654FCE57938> /Applications/Adobe Acrobat 9 Pro/Adobe Acrobat Pro.app/Contents/Plug-ins/DigSig.acroplugin/Contents/MacOS/DigSig
    0x7a9f7000 - 0x7ae372f3 +com.adobe.AcrobatPlugin.Comments (9.5.1 - 9.5.1) <83F81BF5-A03D-40D0-B4B7-5D6DBA8CC293> /Applications/Adobe Acrobat 9 Pro/Adobe Acrobat Pro.app/Contents/Plug-ins/Comments.acroplugin/Contents/MacOS/Comments
    0x7b831000 - 0x7c27b0de +com.adobe.AcrobatPlugin.AcroForm (9.5.1 - 9.5.1) <A8972D5A-74EB-48A6-8312-4A1EFE1EA34B> /Applications/Adobe Acrobat 9 Pro/Adobe Acrobat Pro.app/Contents/Plug-ins/AcroForm.acroplugin/Contents/MacOS/AcroForm
    0x7d6fe000 - 0x7d988ff7 +AdobeCoolType (??? - ???) <65DA3F1A-9A28-4715-979D-CC8657118251> /Applications/Adobe Acrobat 9 Pro/Adobe Acrobat Pro.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
    0x7e377000 - 0x7e391fff +AdobeBIB (??? - ???) <77EC7656-5157-42C3-8EB4-45CE350EC4FF> /Applications/Adobe Acrobat 9 Pro/Adobe Acrobat Pro.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
    0x7e42a000 - 0x7e940fef +AdobeAGM (??? - ???) <9734314D-AF19-41E4-B102-986CBE727C3E> /Applications/Adobe Acrobat 9 Pro/Adobe Acrobat Pro.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
    0x7faef000 - 0x7fbfcfe7 +AdobeACE (??? - ???) <F82B6CAC-1F53-496F-ADEE-50A2CA3ECE42> /Applications/Adobe Acrobat 9 Pro/Adobe Acrobat Pro.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
    0x7fd8b000 - 0x81088fc4 +com.adobe.Acrobat.framework (9.5.1 - 9.5.1) <3BC5068A-EA9B-4B87-A7FA-F3026ADBC65A> /Applications/Adobe Acrobat 9 Pro/Adobe Acrobat Pro.app/Contents/Frameworks/Acrobat.framework/Acrobat
    0x8fe9f000 - 0x8fed1aa7  dyld (195.6 - ???) <3A866A34-4CDD-35A4-B26E-F145B05F3644> /usr/lib/dyld
    0x900d7000 - 0x90203ff9  com.apple.CFNetwork (520.3.2 - 520.3.2) <58021CA7-0C91-3395-8278-8BD76E03BDCB> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwork.framewo rk/Versions/A/CFNetwork
    0x90204000 - 0x902daaab  libobjc.A.dylib (228.0.0 - compatibility 1.0.0) <2E272DCA-38A0-3530-BBF4-47AE678D20D4> /usr/lib/libobjc.A.dylib
    0x902db000 - 0x902e8fff  libGL.dylib (??? - ???) <30E6DED6-0213-3A3B-B2B3-310E33301CCB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x905fb000 - 0x90673ff8  com.apple.CorePDF (3.1 - 3.1) <0074267B-F74A-30FC-8508-A14C821F0771> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x906c6000 - 0x908efffb  com.apple.QuartzComposer (5.0 - 236.3) <E805537F-7BB8-31C6-A3F3-27D8CD1FE31E> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framewor k/Versions/A/QuartzComposer
    0x908f6000 - 0x909d9ff7  libcrypto.0.9.8.dylib (44.0.0 - compatibility 0.9.8) <BD913D3B-388D-33AE-AA5E-4810C743C28F> /usr/lib/libcrypto.0.9.8.dylib
    0x909da000 - 0x90a50fff  com.apple.Metadata (10.7.0 - 627.28) <71AC8DA5-FA89-3411-A97C-65B6129E97BD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framewor k/Versions/A/Metadata
    0x90a51000 - 0x90a76ff9  libJPEG.dylib (??? - ???) <743578F6-8C0C-39CC-9F15-3A01E1616EAE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libJPEG.dylib
    0x90a77000 - 0x90aa6ff7  libsystem_info.dylib (??? - ???) <37640811-445B-3BB7-9934-A7C99848250D> /usr/lib/system/libsystem_info.dylib
    0x90b8a000 - 0x90bf2ff3  com.apple.ISSupport (1.9.8 - 56) <59225A65-41C1-35CA-9F29-229AC427B728> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x90bf3000 - 0x90bf6ff7  libmathCommon.A.dylib (2026.0.0 - compatibility 1.0.0) <69357047-7BE0-3360-A36D-000F55E39336> /usr/lib/system/libmathCommon.A.dylib
    0x90bf7000 - 0x90c3fff7  com.apple.SystemConfiguration (1.11.2 - 1.11) <CA077C0D-8A54-38DB-9690-5D222899B93D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
    0x90c40000 - 0x90c68ff7  libxslt.1.dylib (3.24.0 - compatibility 3.0.0) <5158C760-D168-3842-AAE0-3B146B3537A7> /usr/lib/libxslt.1.dylib
    0x90c69000 - 0x91689fff  com.apple.WebCore (7534.53 - 7534.53.11) <1A48798F-7E15-3792-9CA2-8661F49669AB> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.framework/Versi ons/A/WebCore
    0x9168a000 - 0x91692ff5  libcopyfile.dylib (85.1.0 - compatibility 1.0.0) <BB0C7B49-600F-3551-A460-B7E36CA4C4A4> /usr/lib/system/libcopyfile.dylib
    0x91693000 - 0x91755fff  com.apple.CoreServices.OSServices (478.37 - 478.37) <00A48B2A-2D75-3FD0-9805-61BB11710879> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framew ork/Versions/A/OSServices
    0x91775000 - 0x9178aff7  com.apple.ImageCapture (7.0 - 7.0) <E019C6BB-CCE9-3D8C-A131-909CE8853502> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/ Versions/A/ImageCapture
    0x9178b000 - 0x91807ff7  libType1Scaler.dylib (??? - ???) <2560F511-3288-3367-A4E2-AD15219B6913> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libType1Scaler.dylib
    0x91950000 - 0x919b7fff  libc++.1.dylib (19.0.0 - compatibility 1.0.0) <3AFF3CE8-14AE-300F-8F63-8B7FB9D4DA96> /usr/lib/libc++.1.dylib
    0x919b8000 - 0x91a1dff7  libvDSP.dylib (325.4.0 - compatibility 1.0.0) <4B4B32D2-4F66-3B0D-BD61-FA8429FF8507> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvDSP.dylib
    0x91a1e000 - 0x91a20ff7  libdyld.dylib (195.6.0 - compatibility 1.0.0) <1F865C73-5803-3B08-988C-65B8D86CB7BE> /usr/lib/system/libdyld.dylib
    0x91a21000 - 0x91a2cffe  libbz2.1.0.dylib (1.0.5 - compatibility 1.0.0) <B63F5D07-93B3-3F02-BFB7-472B4ED3521F> /usr/lib/libbz2.1.0.dylib
    0x91a2d000 - 0x91a33ffd  com.apple.CommerceCore (1.0 - 17) <E59CD307-58E2-35FD-9131-B38978799910> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCor e.framework/Versions/A/CommerceCore
    0x91a67000 - 0x91a74fff  com.apple.HelpData (2.1.2 - 72) <37D51522-EDED-38BC-9412-3224ED91A078> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x91a75000 - 0x91c4cfff  com.apple.CoreFoundation (6.7.1 - 635.19) <3A07EDA3-F460-3971-BFCB-AFE9A11F74F1> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x91c4d000 - 0x91cdafe7  libvMisc.dylib (325.4.0 - compatibility 1.0.0) <F2A8BBA3-6431-3CED-8CD3-0953410B6F96> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvMisc.dylib
    0x91cf4000 - 0x92037fff  com.apple.MediaToolbox (1.0 - 705.61) <FF915A3D-16F4-3191-A9B2-EF9270104786> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbox
    0x92044000 - 0x92046ffb  libRadiance.dylib (??? - ???) <4721057E-5A1F-3083-911B-200ED1CE7678> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libRadiance.dylib
    0x92047000 - 0x92048ff7  libsystem_sandbox.dylib (??? - ???) <D272A77F-7F47-32CD-A36E-5A3FB966ED55> /usr/lib/system/libsystem_sandbox.dylib
    0x92049000 - 0x9204afff  libsystem_blocks.dylib (53.0.0 - compatibility 1.0.0) <B04592B1-0924-3422-82FF-976B339DF567> /usr/lib/system/libsystem_blocks.dylib
    0x926dd000 - 0x926ddffe  libkeymgr.dylib (23.0.0 - compatibility 1.0.0) <7F0E8EE2-9E8F-366F-9988-E2F119DB9A82> /usr/lib/system/libkeymgr.dylib
    0x9296a000 - 0x9298bfff  com.apple.framework.internetaccounts (1.2 - 3) <C54DD5C3-DF85-302D-9D4B-6C34C4B1A8A2> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/InternetAccounts
    0x9298c000 - 0x9341fff6  com.apple.AppKit (6.7.3 - 1138.32) <008E7C05-C20C-344A-B51C-4A2441372785> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x935a5000 - 0x935c3ff7  libsystem_kernel.dylib (1699.24.23 - compatibility 1.0.0) <9892E4F8-50B1-3766-8F20-46CCF1879E3D> /usr/lib/system/libsystem_kernel.dylib
    0x935c4000 - 0x9365bff3  com.apple.securityfoundation (5.0 - 55107) <DF36D4ED-47F7-3F7F-AB09-32E5BFB7EF05> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
    0x9365c000 - 0x9374cff1  libiconv.2.dylib (7.0.0 - compatibility 7.0.0) <9E5F86A3-8405-3774-9E0C-3A074273C96D> /usr/lib/libiconv.2.dylib
    0x9374d000 - 0x9379eff9  com.apple.ScalableUserInterface (1.0 - 1) <3C39DF4D-5CAE-373A-BE08-8CD16E514337> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableUserInterfa ce.framework/Versions/A/ScalableUserInterface
    0x9379f000 - 0x937ccff7  com.apple.securityinterface (5.0 - 55007) <E5139C3F-23D2-363D-A4A2-B491E55A5439> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInterface
    0x937cd000 - 0x937ddff7  libCRFSuite.dylib (??? - ???) <94E040D2-2769-359A-A21B-DB85FCB73BDC> /usr/lib/libCRFSuite.dylib
    0x937de000 - 0x9393fffb  com.apple.QuartzCore (1.7 - 270.2) <4A6035C8-1237-37E5-9FFF-1EFD735D8B18> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x939ae000 - 0x939b0ff9  com.apple.securityhi (4.0 - 1) <ACEEED5F-8D58-377D-B2B8-E4A7F4E5E286> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Ve rsions/A/SecurityHI
    0x939fc000 - 0x939fcfff  com.apple.Accelerate.vecLib (3.7 - vecLib 3.7) <22997C20-BEB7-301D-86C5-5BFB3B06D212> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/vecLib
    0x93a47000 - 0x93a83ffa  libGLImage.dylib (??? - ???) <05B36DC4-6B90-33E6-AE6A-10CAA1B70606> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
    0x93a86000 - 0x93abaff8  libssl.0.9.8.dylib (44.0.0 - compatibility 0.9.8) <567E922C-E64F-321B-9A47-6B18BF481625> /usr/lib/libssl.0.9.8.dylib
    0x93ac7000 - 0x93b29ffb  com.apple.datadetectorscore (3.0 - 179.4) <32262124-6F75-3999-86DA-590A90BA464C> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCor e
    0x93b2a000 - 0x93b31ff7  libsystem_notify.dylib (80.1.0 - compatibility 1.0.0) <47DB9E1B-A7D1-3818-A747-382B2C5D9E1B> /usr/lib/system/libsystem_notify.dylib
    0x93b32000 - 0x93b3dff3  libCSync.A.dylib (600.0.0 - compatibility 64.0.0) <DD0529E3-9D71-37B6-9EB8-D7747B2B12C6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libCSync.A.dylib
    0x93b3e000 - 0x93b46ff3  liblaunch.dylib (392.36.0 - compatibility 1.0.0) <1B0D0612-0AF1-3EEA-80CF-C2344E012F12> /usr/lib/system/liblaunch.dylib
    0x93b47000 - 0x94023ff6  libBLAS.dylib (??? - ???) <134ABFC6-F29E-3DC5-8E57-E13CB6EF7B41> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libBLAS.dylib
    0x94024000 - 0x942a9fe3  com.apple.QuickTime (7.7.1 - 2315) <E6249041-B569-3A96-897F-E84B1C057948> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x942d4000 - 0x94547ff7  com.apple.CoreImage (7.93 - 1.0.1) <88FEFE5B-83A9-3CD9-BE2E-DB1E0553EBB0> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage.framework /Versions/A/CoreImage
    0x94548000 - 0x94576fe7  libSystem.B.dylib (159.1.0 - compatibility 1.0.0) <30189C33-6ADD-3142-83F3-6114B1FC152E> /usr/lib/libSystem.B.dylib
    0x94577000 - 0x9457bff7  com.apple.OpenDirectory (10.7 - 146) <4986A382-8FEF-3392-8CE9-CF6A5EE4E365> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x9457c000 - 0x945cdfff  libFontRegistry.dylib (??? - ???) <DF69E8EC-9114-3757-8355-8F3E82156F85> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontRegistry.dylib
    0x945ce000 - 0x94c49fe5  com.apple.CoreAUC (6.11.04 - 6.11.04) <B06D52C9-9F59-3EF2-B2BA-11E93C573572> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x94c4a000 - 0x94c53ffb  com.apple.DisplayServicesFW (2.5.2 - 317) <02BD6AF3-F355-3F68-9DC2-2DA28CE27682> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices
    0x94c54000 - 0x94c54fff  com.apple.audio.units.AudioUnit (1.7.2 - 1.7.2) <2E71E880-25D1-3210-8D26-21EC47ED810C> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x94c55000 - 0x94cd0ffb  com.apple.ApplicationServices.ATS (317.5.0 - ???) <7A8B0538-8E2E-3355-81E3-0C0A7EBED28E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/ATS
    0x94d88000 - 0x94d8bffd  libCoreVMClient.dylib (??? - ???) <2D135537-F9A6-33B1-9B01-6ECE7E929C00> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
    0x94d8c000 - 0x94dcdff9  libcurl.4.dylib (7.0.0 - compatibility 7.0.0) <CAE102A7-EA5E-391C-A91F-A08071A68652> /usr/lib/libcurl.4.dylib
    0x94dcf000 - 0x94de6ff8  com.apple.CoreMediaAuthoring (2.0 - 890) <53F48529-E89F-3518-B888-C8C735C16F8F> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreMediaAuthor ing
    0x94de7000 - 0x94e38ff3  com.apple.CoreMediaIO (210.0 - 3180) <6C9974AD-CA84-3C49-B55E-0496B675DBA1> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
    0x94e39000 - 0x94e3affd  libCVMSPluginSupport.dylib (??? - ???) <6C364E11-B9B3-351A-B297-DB06FBAAFFD1> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dyl ib
    0x94e3b000 - 0x94e5dff1  com.apple.PerformanceAnalysis (1.10 - 10) <FEB4AEF4-F8C0-3A20-A004-B236B2F0B02B> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAna lysis
    0x94e5e000 - 0x94e5fffd  com.apple.MonitorPanelFramework (1.4.0 - 1.4.0) <8CADB97F-101D-34C3-82C2-569E801031E0> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPanel
    0x94e60000 - 0x94ea3fff  com.apple.MediaKit (12 - 589) <C9B45C52-6AC0-3685-82E7-E65960D82F87> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x94ed6000 - 0x94f00ff0  libpcre.0.dylib (1.1.0 - compatibility 1.0.0) <5CAA1478-97E0-31EA-8F50-BF09D665DD84> /usr/lib/libpcre.0.dylib
    0x94f01000 - 0x94fc1ffb  com.apple.ColorSync (4.7.1 - 4.7.1) <68413C12-2380-3B73-AF74-B9E069DFB89A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/ColorSync
    0x94fcc000 - 0x95030fff  com.apple.framework.IOKit (2.0 - ???) <8DAF4991-7359-3D1B-AC69-3CBA797D1E3C> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x95031000 - 0x95034fff  com.apple.AppleSystemInfo (1.0 - 1) <0E02BA66-4EA6-3EA1-8D81-3D0DE36F1CE8> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo
    0x95035000 - 0x953efffb  com.apple.SceneKit (2.2 - 125.3) <D4EAD83D-0E86-3159-80D6-C8B53B25B833> /System/Library/PrivateFrameworks/SceneKit.framework/Versions/A/SceneKit
    0x95498000 - 0x954adfff  com.apple.speech.synthesis.framework (4.0.74 - 4.0.74) <92AADDB0-BADF-3B00-8941-B8390EDC931B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynt hesis.framework/Versions/A/SpeechSynthesis
    0x954ae000 - 0x9550afff  com.apple.coreui (1.2.1 - 165.3) <65526A00-D355-3932-9279-9A7D6BF76D95> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x9550b000 - 0x95515ff0  com.apple.DirectoryService.Framework (10.7 - 146) <59061A4B-D743-3A34-B142-7BE2472BBC2D> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService
    0x95553000 - 0x95563fff  com.apple.LangAnalysis (1.7.0 - 1.7.0) <6D6F0C9D-2EEA-3578-AF3D-E2A09BCECAF3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalys is.framework/Versions/A/LangAnalysis
    0x95564000 - 0x95567ffc  libpam.2.dylib (3.0.0 - compatibility 3.0.0) <6FFDBD60-5EC6-3EFA-996B-EE030443C16C> /usr/lib/libpam.2.dylib
    0x955b4000 - 0x955cefff  com.apple.Kerberos (1.0 - 1) <D7920A1C-FEC4-3460-8DD0-D02491578CBB> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x956e1000 - 0x95833fff  com.apple.audio.toolbox.AudioToolbox (1.7.2 - 1.7.2) <E369AC9E-F548-3DF6-B320-9D09E486070E> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x95834000 - 0x95867fef  libtidy.A.dylib (??? - ???) <E962D8EC-6B9D-35B7-B586-F07D92302ADD> /usr/lib/libtidy.A.dylib
    0x95868000 - 0x958f2ffb  com.apple.SearchKit (1.4.0 - 1.4.0) <CF074082-64AB-3A1F-831E-582DF1667827> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framewo rk/Versions/A/SearchKit
    0x958f3000 - 0x958fdff2  com.apple.audio.SoundManager (3.9.4.1 - 3.9.4.1) <2A089CE8-9760-3F0F-B77D-29A78940EA17> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.framework/V ersions/A/CarbonSound
    0x95919000 - 0x95acdff3  libicucore.A.dylib (46.1.0 - compatibility 1.0.0) <6AD14A51-AEA8-3732-B07B-DEA37577E13A> /usr/lib/libicucore.A.dylib
    0x95b07000 - 0x95c69fff  com.apple.QTKit (7.7.1 - 2315) <21C7F00E-FBB9-3F12-AE51-06A630ECAC5E> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x95c6a000 - 0x95c87fff  libresolv.9.dylib (46.1.0 - compatibility 1.0.0) <2870320A-28DA-3B44-9D82-D56E0036F6BB> /usr/lib/libresolv.9.dylib
    0x95c89000 - 0x95c8aff4  libremovefile.dylib (21.1.0 - compatibility 1.0.0) <6DE3FDC7-0BE0-3791-B6F5-C15422A8AFB8> /usr/lib/system/libremovefile.dylib
    0x95c8b000 - 0x95ca1ffe  libxpc.dylib (77.18.0 - compatibility 1.0.0) <D40B8FD1-C671-3BD5-8C9E-054AF6D4FE9A> /usr/lib/system/libxpc.dylib
    0x95ca2000 - 0x95ca2fff  com.apple.Carbon (153 - 153) <63603A0C-723B-3968-B302-EBEEE6A14E97> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x95ca3000 - 0x95cb7fff  com.apple.CFOpenDirectory (10.7 - 146) <9149C1FE-865E-3A8D-B9D9-547384F553C8> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory. framework/Versions/A/CFOpenDirectory
    0x95cb8000 - 0x95cc0fff  com.apple.DiskArbitration (2.4.1 - 2.4.1) <28D5D8B5-14E8-3DA1-9085-B9BC96835ACF> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x95cd9000 - 0x95cd9ff0  com.apple.ApplicationServices (41 - 41) <C48EF6B2-ABF9-35BD-A07A-A38EC0008294> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
    0x95cda000 - 0x95d00ffb  com.apple.quartzfilters (1.7.0 - 1.7.0) <64AB163E-7E91-3028-8730-BE11BC1F5237> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework /Versions/A/QuartzFilters
    0x95d01000 - 0x95d4aff7  libGLU.dylib (??? - ???) <AEA2AD9A-EEDD-39B8-9B28-4C7C1BACB594> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x95d4b000 - 0x95d54fff  libc++abi.dylib (14.0.0 - compatibility 1.0.0) <FEB5330E-AD5D-37A0-8AB2-0820F311A2C8> /usr/lib/libc++abi.dylib
    0x95d55000 - 0x95d55fff  com.apple.vecLib (3.7 - vecLib 3.7) <8CCF99BF-A4B7-3C01-9219-B83D2AE5F82A> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x95d56000 - 0x95d72ffc  libPng.dylib (??? - ???) <75F41C08-E187-354C-8115-79387F57FC2C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libPng.dylib
    0x95d73000 - 0x95e08ff7  com.apple.LaunchServices (480.27.1 - 480.27.1) <8BFE799A-7E35-3834-9403-20E5ADE015D0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.fr amework/Versions/A/LaunchServices
    0x95e09000 - 0x9610bfff  com.apple.CoreServices.CarbonCore (960.20 - 960.20) <E6300673-A013-3A91-BB1A-DD793B857E16> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore
    0x9610c000 - 0x96169ffb  com.apple.htmlrendering (76 - 1.1.4) <409EF0CB-2997-369A-9326-BE12436B9EE1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering.framework /Versions/A/HTMLRendering
    0x961c6000 - 0x961e3ff3  com.apple.openscripting (1.3.3 - ???) <8ABD04D6-7B7A-3C39-801E-1630098D5B42> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework /Versions/A/OpenScripting
    0x961e4000 - 0x963d9ff7  com.apple.CoreData (104.1 - 358.13) <EB02DCA7-DB2A-32DD-B49E-ECE54D078610> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x963da000 - 0x963e8ff7  libxar-nossl.dylib (??? - ???) <5BF4DA8E-C319-354A-967E-A0C725DC8BA3> /usr/lib/libxar-nossl.dylib
    0x96440000 - 0x9644efff  com.apple.opengl (1.7.6 - 1.7.6) <5EF9685C-F8B2-3B22-B291-8012761E9AC8> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x9644f000 - 0x96455ffb  com.apple.print.framework.Print (7.1 - 247.1) <5D7ADC17-D8EF-3958-9C0C-AA45B7717FBA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Version s/A/Print
    0x96480000 - 0x9648bffe  com.apple.NetAuth (3.2 - 3.2) <4377FB18-A550-35C6-BCD2-71C42134EEA6> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x9648c000 - 0x964c2ff7  com.apple.AE (527.7 - 527.7) <7BAFBF18-3997-3656-9823-FD3B455056A4> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Vers ions/A/AE
    0x964c3000 - 0x967cdff3  com.apple.Foundation (6.7.1 - 833.24) <8E2AD829-587C-3146-B483-9D0209B84192> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x967ce000 - 0x96a17ff7  com.apple.JavaScriptCore (7534.53 - 7534.53.8) <5F799A84-B6B2-398F-B617-285BAA60139F> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x96a29000 - 0x96a69ff7  libauto.dylib (??? - ???) <984C81BE-FA1C-3228-8F7E-2965E7E5EB85> /usr/lib/libauto.dylib
    0x96a6a000 - 0x96ad9fff  com.apple.Heimdal (2.1 - 2.0) <BCF7C3F1-23BE-315A-BBB6-5F01C79CF626> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x9795f000 - 0x97993ff3  libTrueTypeScaler.dylib (??? - ???) <43479E0A-C47D-3CE3-B328-9CB33D3FC3B3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libTrueTypeScaler.dylib
    0x97a1f000 - 0x97abaff3  com.apple.ink.framework (1.3.2 - 110) <F0E9C225-0D20-31D2-AB14-2299CFAE6C2E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/ A/Ink
    0x97b0d000 - 0x97b94fff  com.apple.print.framework.PrintCore (7.1 - 366.1) <BD9120A6-BFB0-3796-A903-05F627F696DF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore. framework/Versions/A/PrintCore
    0x97b95000 - 0x97bf0ff3  com.apple.Symbolication (1.3 - 91) <4D12D2EC-5010-3958-A205-9A67E972C76A> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
    0x97bfd000 - 0x97bfdfff  libdnsinfo.dylib (395.10.0 - compatibility 1.0.0) <3C94961E-78FE-37FC-A25A-503CEB05E324> /usr/lib/system/libdnsinfo.dylib
    0x97bfe000 - 0x97ccdfff  com.apple.ImageIO.framework (3.1.1 - 3.1.1) <D4D6EB78-8A6C-3474-921C-622C6951489B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/ImageIO
    0x97dfd000 - 0x97e3dff7  com.apple.NavigationServices (3.7 - 193) <16A8BCC8-7343-3A90-88B3-AAA334DF615F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationServices.fram ework/Versions/A/NavigationServices
    0x97e3e000 - 0x97efbff3  ColorSyncDeprecated.dylib (4.6.0 - compatibility 1.0.0) <1C0646D4-18D6-375E-9C0E-EA066C6A6C3C> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.framework/V ersions/A/Resources/ColorSyncDeprecated.dylib
    0x97efc000 - 0x97f32ff4  com.apple.LDAPFramework (3.1 - 120.2) <A7DFFDA8-EC2C-35BE-A681-1F54A8D9C240> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x97f33000 - 0x97f71fff  libRIP.A.dylib (600.0.0 - compatibility 64.0.0) <0FAB8C29-2A1B-3E25-BA34-BDD832B828DA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libRIP.A.dylib
    0x97f72000 - 0x97f7bff3  com.apple.CommonAuth (2.1 - 2.0) <5DA75D12-A4D6-3362-AD72-79A64C79669E> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x97f7c000 - 0x98053ff6  com.apple.QuickLookUIFramework (3.1 - 500.10) <1E4CDD9B-BF13-375A-AC74-0943F9DA8648> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/V ersions/A/QuickLookUI
    0x98054000 - 0x9897c5eb  com.apple.CoreGraphics (1.600.0 - ???) <E285B0B6-F9FC-33BC-988F-ED619B32029C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/CoreGraphics
    0x9897d000 - 0x98982ffd  libGFXShared.dylib (??? - ???) <179E77CE-C72C-3B5F-8F1E-3901517C24BB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
    0x98b19000 - 0x98bf0ffb  com.apple.avfoundation (2.0 - 180.30) <6788562E-A9A8-3898-A0F4-66D9BBAE3430> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
    0x98bf1000 - 0x98c1fff7  com.apple.DictionaryServices (1.2.1 - 158.2) <DA16A8B2-F359-345A-BAF7-8E6A5A0741A1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryService s.framework/Versions/A/DictionaryServices
    0x98c20000 - 0x98cebfff  libsystem_c.dylib (763.12.0 - compatibility 1.0.0) <1B0A12B3-DAFA-31E2-8F82-E98D620E4D72> /usr/lib/system/libsystem_c.dylib
    0x98cec000 - 0x98d0ffff  com.apple.CoreVideo (1.7 - 70.1) <3520F013-DF91-364E-88CF-ED252A7BD0AE> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x98d68000 - 0x98e7ffe9  com.apple.WebKit (7534.53 - 7534.53.11) <E6C70036-EDDD-368B-A865-349615BB0A89> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x98e80000 - 0x98e85ffb  com.apple.phonenumbers (1.0 - 47) <1830301D-5409-3949-9614-C43C62B39DDA> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumbers
    0x991fa000 - 0x991fafff  com.apple.Cocoa (6.6 - ???) <5FAFE73E-6AF5-3D09-9191-0BDC8C6875CB> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x991fb000 - 0x99277ff0  com.apple.PDFKit (2.6.2 - 2.6.2) <5DC1CC0B-4F92-397F-98E3-5A5A9EB2CC5F> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framework/Versio ns/A/PDFKit
    0x99287000 - 0x9928eff8  libCGXCoreImage.A.dylib (600.0.0 - compatibility 64.0.0) <8CBED8FC-BF9A-316D-8B47-32336263BE68> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x9928f000 - 0x995d3ffb  com.apple.HIToolbox (1.8 - ???) <9540400F-B432-3116-AEAD-C1FBCFE67E73> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox
    0x995d4000 - 0x995d8fff  libGIF.dylib (??? - ???) <06E85451-F51C-31C4-B5A6-180819BD9738> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libGIF.dylib
    0x995d9000 - 0x9963bff3  libstdc++.6.dylib (52.0.0 - compatibility 7.0.0) <266CE9B3-526A-3C41-BA58-7AE66A3B15FD> /usr/lib/libstdc++.6.dylib
    0x9963c000 - 0x99643ff9  libsystem_dnssd.dylib (??? - ???) <7F65AB92-E2B6-3C4B-9112-8911BE9265EC> /usr/lib/system/libsystem_dnssd.dylib
    0x99647000 - 0x99695ff3  com.apple.ImageCaptureCore (3.0.2 - 3.0.2) <2FBC3C23-B0DD-3F0B-8452-90954F9C7E13> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore
    0x99696000 - 0x9969affd  IOSurface (??? - ???) <0A80F0AD-AD64-3A85-B44D-4A3F0375CE6F> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x9969b000 - 0x99728ff7  com.apple.CoreText (220.11.0 - ???) <720EFEE0-A92A-3519-9C88-D06E4DE14EAB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreText.f ramework/Versions/A/CoreText
    0x99729000 - 0x99b1cffb  com.apple.VideoToolbox (1.0 - 705.61) <1278DC1E-AF77-34C1-9A60-B61ECF806E4D> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0x99b78000 - 0x99c59ff3  com.apple.backup.framework (1.3.1 - 1.3.1) <2CFEC368-F3FA-33C2-A821-336ACBAB0D35> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x99c7f000 - 0x99c8afff  libkxld.dylib (??? - ???) <34E463E4-561B-3062-84CD-8BA0B13BF6F1> /usr/lib/system/libkxld.dylib
    0x99c8b000 - 0x99d9cff7  libJP2.dylib (??? - ???) <143828CE-D429-3C66-A0DC-4F39536568E4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libJP2.dylib
    0x99d9d000 - 0x99dedff0  libTIFF.dylib (??? - ???) <F532A16A-7761-355C-8B7B-CEF988D8EEFF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libTIFF.dylib
    0x99dee000 - 0x99efefe7  libsqlite3.dylib (9.6.0 - compatibility 9.0.0) <34E1E3CC-7B6A-3B37-8D07-1258D11E16CB> /usr/lib/libsqlite3.dylib
    0x99eff000 - 0x99f0dfff  libdispatch.dylib (187.7.0 - compatibility 1.0.0) <B50C62AD-0B5B-34C3-A491-ECFD72ED505E> /usr/lib/system/libdispatch.dylib
    0x99f0e000 - 0x99f12fff  com.apple.CommonPanels (1.2.5 - 94) <EA47550D-7DAF-30D9-91DB-1FB594CC8522> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/ Versions/A/CommonPanels
    0x99f1e000 - 0x99f1efff  com.apple.quartzframework (1.5 - 1.5) <49B5CA00-083A-3D4A-9A68-4759A5CC35A6> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x99f1f000 - 0x99f27ff3  libunwind.dylib (30.0.0 - compatibility 1.0.0) <E8DA8CEC-12D6-3C8D-B2E2-5D567C8F3CB5> /usr/lib/system/libunwind.dylib
    0x9a29f000 - 0x9a39effb  com.apple.DiskImagesFramework (10.7.3 - 331.3) <92112BAD-4A81-32C0-BB4F-3A92DBFF829F> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
    0x9a3cb000 - 0x9a3ccff0  libunc.dylib (24.0.0 - compatibility 1.0.0) <2F4B35B2-706C-3383-AA86-DABA409FAE45> /usr/lib/system/libunc.dylib
    0x9a3d1000 - 0x9a3f3ffe  com.apple.framework.familycontrols (3.0 - 300) <6B0920A5-3971-30EF-AE4C-5361BB7199EB> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
    0x9a497000 - 0x9a90cff7  FaceCoreLight (1.4.7 - compatibility 1.0.0) <312D0F58-B8E7-3F61-8A83-30C95F2EBEAA> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLight
    0x9a90d000 - 0x9adf2ffb  com.apple.RawCamera.bundle (3.12.0 - 614) <A2B304C1-1E8D-AAB1-14F6-11462C666C82> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x9adf3000 - 0x9af02fff  com.apple.DesktopServices (1.6.2 - 1.6.2) <33DCFB71-1D9E-30B6-BC4C-CD54068690BE> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopService sPriv
    0x9af03000 - 0x9af06ff9  libCGXType.A.dylib (600.0.0 - compatibility 64.0.0) <E06426D8-CC01-3754-B5B3-D15CBA5C8D73> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libCGXType.A.dylib
    0x9af07000 - 0x9af4affd  libcommonCrypto.dylib (55010.0.0 - compatibility 1.0.0) <6B35F203-5D72-335A-A4BC-CC89FEC0E14F> /usr/lib/system/libcommonCrypto.dylib
    0x9af4b000 - 0x9b043ff7  libFontParser.dylib (??? - ???) <8C069D3D-534F-3EBC-8035-A43E2B3A431A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontParser.dylib
    0x9b044000 - 0x9b054fff  libsasl2.2.dylib (3.15.0 - compatibility 3.0.0) <D6F728DA-990A-32A3-86FA-4A3F4D88E309> /usr/lib/libsasl2.2.dylib
    0x9b093000 - 0x9b097ffa  libcache.dylib (47.0.0 - compatibility 1.0.0) <56256537-6538-3522-BCB6-2C79DA6AC8CD> /usr/lib/system/libcache.dylib
    0x9b0a3000 - 0x9b18bfff  libxml2.2.dylib (10.3.0 - compatibility 10.0.0) <A1B07527-9C74-3107-A972-9795B817D683> /usr/lib/libxml2.2.dylib
    0x9b18c000 - 0x9b448ff3  com.apple.security (7.0 - 55110) <2F4FCD65-2A30-3330-99DE-91FE1F78B9FB> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x9b449000 - 0x9b498ffb  com.apple.AppleVAFramework (5.0.14 - 5.0.14) <71C9D388-E607-3DB4-9FD3-FC918EB4A835> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x9b499000 - 0x9b49dff3  libsystem_network.dylib (??? - ???) <62EBADDA-FC72-3275-AAB3-5EDD949FEFAF> /usr/lib/system/libsystem_network.dylib
    0x9bb39000 - 0x9bb3afff  liblangid.dylib (??? - ???) <C8C204E9-1785-3785-BBD7-22D59493B98B> /usr/lib/liblangid.dylib
    0x9bb41000 - 0x9bb6affe  com.apple.opencl (1.50.69 - 1.50.69) <44120D48-00A2-3C09-9055-36D309F1E7C9> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x9bd6d000 - 0x9bd80ffb  com.apple.MultitouchSupport.framework (220.62.1 - 220.62.1) <AE079D11-3A38-3707-A2DF-6BD2FC24B712> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSuppor t
    0x9bd81000 - 0x9bddafff  com.apple.HIServices (1.11 - ???) <F8B77735-B168-3E21-9B8F-921115B4C19B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices .framework/Versions/A/HIServices
    0x9bddb000 - 0x9c1ddff6  libLAPACK.dylib (??? - ???) <00BE0221-8564-3F87-9F6B-8A910CF2F141> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libLAPACK.dylib
    0x9c1de000 - 0x9c1fdfff  com.apple.RemoteViewServices (1.3 - 44) <243F16F3-FFFE-3E81-A969-2EC947A11D89> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServi ces
    0x9c1fe000 - 0x9c25fffb  com.apple.audio.CoreAudio (4.0.2 - 4.0.2) <E617857C-D870-3E2D-BA13-3732DD1BC15E> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x9c264000 - 0x9c2a1ff7  libcups.2.dylib (2.9.0 - compatibility 2.0.0) <4508AABD-EDA8-3BF7-B03A-978D2395C9A8> /usr/lib/libcups.2.dylib
    0x9c2a2000 - 0x9c2cdfff  com.apple.GSS (2.1 - 2.0) <DA24E4F9-F9D4-3CDB-89E4-6EAA7A9F6005> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x9c2ce000 - 0x9c2e6ff3  com.apple.frameworks.preferencepanes (15.0 - 15.0) <9E5FE337-358F-3B10-955D-B2D2021F732B> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
    0x9c2e7000 - 0x9c2ecff7  libmacho.dylib (800.0.0 - compatibility 1.0.0) <943213F3-CC9B-328E-8A6F-16D85C4274C7> /usr/lib/system/libmacho.dylib
    0x9c2ed000 - 0x9c2f0ff7  libcompiler_rt.dylib (6.0.0 - compatibility 1.0.0) <7F6C14CC-0169-3F1B-B89C-372F67F1F3B5> /usr/lib/system/libcompiler_rt.dylib
    0x9c2f1000 - 0x9c302fff  libbsm.0.dylib (??? - ???) <54ACF696-87C6-3652-808A-17BE7275C230> /usr/lib/libbsm.0.dylib
    0x9c303000 - 0x9c304ff7  libquarantine.dylib (36.2.0 - compatibility 1.0.0) <3F974196-FBAD-3DBD-8ED0-DC16C2B3526B> /usr/lib/system/libquarantine.dylib
    0x9c387000 - 0x9c395fff  libz.1.dylib (1.2.5 - compatibility 1.0.0) <E73A4025-835C-3F73-9853-B08606E892DB> /usr/lib/libz.1.dylib
    0x9c3e6000 - 0x9c40fff1  com.apple.CoreServicesInternal (113.12 - 113.12) <CFF78E35-81F5-36C2-A59F-BF85561AC16D> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesI nternal
    0x9c410000 - 0x9c6c1ff7  com.apple.AddressBook.framework (6.1 - 1083) <060E8C9F-FBF8-3394-8D63-D2DE0F428829> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x9c6c2000 - 0x9c7a3ff7  com.apple.DiscRecording (6.0.3 - 6030.4.1) <BB3FE6A8-B9EB-3CA2-B87E-70F7688527EA> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x9c7a4000 - 0x9c8c2fec  com.apple.vImage (5.1 - 5.1) <7757F253-B281-3612-89D4-F2B04061CBE1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Ve rsions/A/vImage
    0x9c8c3000 - 0x9c8c4fff  libDiagnosticMessagesClient.dylib (??? - ???) <DB3889C2-2FC2-3087-A2A2-4C319455E35C> /usr/lib/libDiagnosticMessagesClient.dylib
    0x9c8c5000 - 0x9c8ccffd  com.apple.NetFS (4.0 - 4.0) <AE731CFE-1B2E-3E46-8759-843F5FB8C24F> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x9c8cd000 - 0x9c8d8ffb  com.apple.speech.recognition.framework (4.0.19 - 4.0.19) <DFF43AC6-7D21-36C6-97C9-F46411D18032> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.frame work/Versions/A/SpeechRecognition
    0x9c8d9000 - 0x9c91aff7  com.apple.CoreMedia (1.0 - 705.61) <75CC7ECC-8D62-3BA3-BD9B-D5E7FA82EC2D> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x9ca14000 - 0x9ca14fff  com.apple.Accelerate (1.7 - Accelerate 1.7) <4192CE7A-BCE0-3D3C-AAF7-6F1B3C607386> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x9ca27000 - 0x9ca77ff9  com.apple.QuickLookFramework (3.1 - 500.10) <E56B33BE-4445-3CC9-AAA5-1C8E6D45FEB0> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x9ca78000 - 0x9cc93ff7  com.apple.imageKit (2.1.1 - 1.0) <3A523A4F-BE07-35B1-9A41-523FD27C14D4> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Vers ions/A/ImageKit
    0x9cc94000 - 0x9cc95fff  com.apple.TrustEvaluationAgent (2.0 - 1) <4BB39578-2F5E-3A50-AD59-9C0AB99472EB> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluati onAgent
    0x9cc96000 - 0x9ccbbfff  com.apple.datadetectors (3.2 - 172.5) <6BD9F9AE-88BE-34B5-B951-181CE0662499> /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/DataDetectors
    0x9ccc7000 - 0x9cd6bfff  com.apple.QD (3.40 - ???) <3881BEC6-0908-3073-BA44-346356E1CDF9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framewo rk/Versions/A/QD
    0x9cd86000 - 0x9cdbdfef  com.apple.DebugSymbols (2.1 - 87) <EB951B78-31A5-379F-AFA1-B5C9A7BB3D23> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
    0x9cdc6000 - 0x9cdc9ffb  com.apple.help (1.3.2 - 42) <B1E6701C-7473-30B2-AB5A-AFC9A4823694> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions /A/Help
    0x9cdca000 - 0x9cdcaff2  com.apple.CoreServices (53 - 53) <7CB7AA95-D5A7-366A-BB8A-035AA9E582F8> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x9cdcd000 - 0x9cde9ff5  com.apple.GenerationalStorage (1.0 - 126.1) <E622F823-7D98-3D13-9C3D-7EA482567394> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalSt orage
    0x9cdea000 - 0x9ce13fff  com.apple.shortcut (2.1 - 2.1) <D56F5E5E-A41F-36D1-ACD5-42EA7910B20F> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x9ce14000 - 0x9ce88fff  com.apple.CoreSymbolication (2.2 - 73.2) <FA9305CA-FB9B-3646-8C41-FF8DF15AB2C1> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolicatio n
    0xba900000 - 0xba91bffd  libJapaneseConverter.dylib (54.0.0 - compatibility 1.0.0) <473499F3-8CB8-3372-98B0-8E3BCC1A3D80> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0xbab00000 - 0xbab21ff6  libKoreanConverter.dylib (54.0.0 - compatibility 1.0.0) <B5E80EAA-78D8-3243-A735-A6ECED09A8AC> /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 11
        thread_create: 0
        thread_set_state: 0
      Calls made by this process:
        task_for_pid: 0
        thread_create: 0
        thread_set_state: 0
      Calls made by all processes on this machine:
        task_for_pid: 607051
        thread_create: 1
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=289.9M resident=106.9M(37%) swapped_out_or_unallocated=183.0M(63%)
    Writable regions: Total=98.4M written=4852K(5%) resident=42.8M(43%) swapped_out=28K(0%) unallocated=55.6M(57%)
    REGION TYPE                      VIRTUAL
    ===========                      =======
    ATS (font support)                 32.0M
    CG backing stores                  6112K
    CG image                             32K
    CG raster data                      128K
    CG shared images                   3448K
    CoreGraphics                          8K
    CoreImage                             4K
    CoreServices                       5144K
    MALLOC                 

    vamalik, I'm not sure you read my post correctly. I have re-installed 4 time and have done it twice since you replyed.  I use this program often for my business and need to get it resolved. 
    I cleared the event logs and ran the import again.  The only entry was in the Microsoft Office Session log:
    Event Type: Information
    Event Source: Microsoft Office 12 Sessions
    Event Category: None
    Event ID: 7000
    Date:  6/20/2012
    Time:  6:56:11 PM
    User:  N/A
    Computer: OMNI003
    Description:
    ID: 0, Application Name: Microsoft Office Word, Application Version: 12.0.6661.5000, Microsoft Office Version: 12.0.6612.1000. This session lasted 4 seconds with 0 seconds of active time.  This session ended normally.

  • Adobe Acrobat 9 Pro - Form Wizard isn't detecting form fields?

    Hi there,
    I've been scouring various forums, blogs, etc. to find an answer to my problem, and have yet to be successful.  Here it is:
    I've created a form in Illustrator CS5 using the rectangle shape tool to indicate form fields.  I need users to be able to enter information in each of the specified fields.  I've saved the file as a .PDF and have opened it into Adobe Acrobat Pro 9.  I then select "Start Form Wizard" from the Forms menu, and after making the appropriate selections it tells me: "No new form field annotations were detected." and then prompts me to the form editing page.  I've also tried simply selecting "Add or Edit Fields" from the Forms menu and the same thing happens - it isn't detecting any form fields.
    The only time the Form Wizard or Add or Edit Fields options work is if I use underlines instead of boxes as the form fields, but I'd really prefer to use the boxes since they lend themselves to the aesthetics of the document much better. 
    I'm new to converting Illustrator files into interactive .PDFs, so I'm not sure what I should be doing.  The background color of the document is grey and the boxes are white with no outline (I tried it with an outline around the boxes and it still didn't work).  Any advice would be much appreciated!  Thanks.
    Beth

    Hi Beth
    How big are  these fields? Are they for entering text or just check boxes?
    I have found that sometimes FormWizard is not compatible with some Quark files.
    Sounds like it might be easier for you to do the fields manually.
    First draw the field like you want it and set that as the default then you can choose to paste multiple fields.
    Also if you want to use a line for FormWizard you can make the background of the field white and cover the line with it.
    Ron

  • Form wizard cannot detect fields

    I designed a form in InDesign CS4 and saved it as a high resolution PDF file. I open the PDF file in Acrobat 9 Pro and go to Forms > Start Form Wizard, select the current document and get the error message: "No new form field annotations were detected."
    I have created forms this way in the past and this is the first time this process hasn't worked for me. Any suggestions on what could be causing the problem? (Do I need to export the PDF a particular way or something else?)

    Exporting from InDesign with printer: Adobe PDF and PPD: Adobe PDF 9.0
    Paper: Letter
    Crops: Off
    Output Color Settings: I have tried Composite Grayscale, CMYK, RGB and Separations (Black)
    Graphics: All
    Fonts: Complete
    PDF Default settings: I have tried Standard, High Resolution Print, PDF/X-1a:2001, Press Quality, Smallest File Size, Standard
    For example, I have tried combinations such as exporting as black separations with the Press Quality setting or as a Composite CMYK image with the PDF/X-1a:2001 setting.

  • Copy and Paste from Oracle Forms to Excel

    Hi to All,
    I ran into this unusal problem with one user. She is trying to copy data in a cell from oracle form to excel. She does control+c and tries to control+v in excel. The data does not get pasted.
    I tried logging into oracle on her pc and do the same method. I get the same results.
    We tried copy from the menu bar in oracle and go into excel , menu and do paste. And it does not paste.
    I did a test from copy from word document to excel...that worked.
    We tried a different pc and everything worked.
    Is there a setting in oracle when i do a copy that is not copyin the cell correctly. Any tips how to resolve this problem.
    Thanks in advance for help in this matter.

    If it only happens on one PC, then usually there is a problem with the PC showing the "yellow bars" when logging into Oracle Forms. Otherwise, there is a more global problem with unsigned JAR files on the server.
    Unable To Copy And Paste Text To Desktop Applications From Core Applications
    http://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=434038.1
    Cannot Cut, Copy, or Paste from a Desktop Application into Oracle Applications
    http://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=168280.1
    Cannot Perform a Copy and Paste from release 12.0.4 from or to Excel
    http://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=735670.1

  • Form wizard only works on first page

    I can't seem to get the form wizard to convert a pdf document on anything more than the first page. The wizard runs and the first page works fine, but there are no form fields included on any of the remaining pages. What am I doing wrong?

    What form wizard?
    Jon

  • API to update ASL attribute source document in 11.5.10.1

    Hi All,
    We are trying to update the ASL attribute source document, programmatically.
    Can you please tell us, which API will be used to do so or any other alternatives?
    Thanks & Regards,
    Gowri

    Hi Helios,
    Thank you for the update, actually the problem is solved.
    The issue is : Whenever i am trying to show a message in that form using either form personalization or CUSTOM.pll, it is giving the error, if i do any thing else like 'changing the default where clause etc', it is not giving any error. The problem is only with message. Actually my requirement is changing the where clause, which is happening with out any problem. I dropped the idea of showing the message any way.
    This problem is strange. Any ways, i am raising an SR with Oracle.
    Raj

  • Revising forms previously created using Form Wizard

    I have a form that I previously created in Word, converted to pdf and then used the Form Wizard to add the form fields.
    I now need to revise the form in Word. Is there an easy way to copy
    the form fields previously used into the new version without having to go through the whole creating form fields process again? The option for Replace Page
    s is greyed out so I can't use it like I can with other pdf's.

    Normally you would replace the old pages with the new and any fields would not be affected. The fact that it's greyed out could be due to security setting or if the form has been distributed or otherwise Reader-enabled. You should always save a copy of the form before you apply security or distribute (or Reader-enable) the document so you can make changes like this.

Maybe you are looking for

  • Automator - How do I: Mouse Click, Move Windows, and more

    Hello, I am attempting to create my own Automator programs and for a while I had some that worked nicely. I have recently been tweaking my iMac so that it can "think" on its own (by automator of course) and do things for me. However, I've run across

  • Unable to create a new campaign in marketing planner

    Hi experts, I'm not able to create a new campaign in the marketing planner iview, or a new lead in the leads iview. Every time I click on ''create'', an error message: ''impossible viewing the page'' appears in the botton-left part of the screen. Tha

  • 2 itunes accounts 1 mac

    Can I authorise the same mac for two separate accounts in differnent countries?

  • Use of Iphone 3Gs with another SIM card

    I purchased an Iphone 3Gs in France from Orange without a contract, i.e. paid the full price and therefore it should be unlocked. I now want to use it for trips and put another SIM card in it. Now after resetting it, it simply tells me that the SIM i

  • Odd compiler behavior with annotations

    Hi all, I apologize if this is the wrong forum, but the JDev code editor behavior is a significant part of this. I have an annotation type, TestParameters. If I write the following line: TestParameters params = (TestParameters) someClass.getAnnotatio