Second page error

Hi Experts
       In smartform, am using 2 pages, in first page am having table and data, in the second page am displaying some long text.
      My requirement is after displaying content of table in first page, the text of second page needs to be displayed.
      How to do this, i tried using command also, but am getting the error of
if l_main_width <> l_docentry-tdwwidths.
   err_comp ssf_err_main_width_changed 'A' 080
            space space space space.
endif.
Termination occurred in the ABAP program "SAPLSTXBC" - in
"SSFCOMP_GENERATE_SMART_FORM".
The main program was "ZSMART ".
What could be the reason, pls explain.
regards
rajaram

Hi Raja ram,
Create the command node after the mainwindow and in general attributes tab check the check box go to page page 2.
And in page 2 check the window size and create the text node
as per you requirement.
For page 2 :  next page should be blank in general attributes.
Regards,
Sravanthi

Similar Messages

  • Getting Runtime error while adding Second page in Smartform.

    I added 2 pages in smartform. When I worked with single page. smartform working properly. Now I added one more page(i.e Second page) I am getting runtime error.  ("The current ABAP/4 program encountered an unexpected
    situation".   A RAISE statement in the program "SAPLSTXBC" raised the exception
    condition "ERROR".)   When I debug this standard program Something width problem getting on line number 110. Both width not matched so program raising exception. Can you please tell me to solve this problem what changes will I do in my smartform?

    Please let me know the details of each page.
    Error can occur in these cases.
    1) You copied the first page to second. and later you change the width of second page
    2) You created the second page and there is template in second page. each column width is not matching with the total width of the template.
    3) windows width is greater than the page width
    Please have a look.
    Regards,
    Nikhil
    Edited by: Nikhil V Kumar on Jul 27, 2010 12:16 PM

  • Smartforms error - no output of first line of table on second page

    After pagebreak in a SF-Table there is no output of the first tableline on the second page. I get the output of the title-line an empty line and then the next line.
    In OTF-Data I see the values but not in Print-Output or preview.
    It´s only sometimes. I´m unable to build a test-construkt with the same effect.
    OTF!  -->
    IN03TABLE_BEGIN                                 
    CP11000000D                                     
    FCHELVE   110  00093XSF101SF011110000062D X     
    SW00062                                         
    UL +0000000000000                               
    MT0170017671                                    
    CT00000000                                      
    ST0089910  8. Rate:                             
    MT0170017671                                    
    ST011081013.04.2009                             
    MT0170017671                                    
    ST0126411100,00  EUR                            
    MT0108504232                                    
    ST0089910  9. Rate:                             
    MT0226704232                                    
    ST011081013.05.2009                             
    MT0423404232                                    
    ST0126411100,00  EUR                            
    MT0102404527                                    
    ST0096010 10. Rate:                             
    MT0226704527                                    
    ST011081013.06.2009                             
    No Output of "8.Rate 13.04.2009 100 EUR"

    Hi
    OTF! -->
    IN03TABLE_BEGIN
    CP11000000D
    FCHELVE 110 00093XSF101SF011110000062D X
    SW00062
    UL +0000000000000
    MT0170017671
    CT00000000
    ST0089910
    8. Rate: MT0170017671 ST0110810 13.04.2009
                 MT0170017671 ST0126411  100,00 EUR
                 MT0108504232 ST0089910
    9. Rate: MT0226704232 ST0110810   13.05.2009
                 MT0423404232 ST0 126411 100,00 EUR
                 MT0102404527 ST0096010
    10. Rate:MT0226704527 ST0110810 13.06.2009
    But 8th rec do exists in the data still what is the problem.
    Regards,
    Sravanthi

  • BDC for FF67 not displaying the line itmes of second page

    Hi all,
    I am using the Z BDC report Manual Bank Statement Upload (FF67). The BDC is as mentioned below :
    We are using start variant in the BDC.
    The report is working fine but the issue is that suppose if their are 45 line items and on one page we can have only 30 line items . Then only 30 line items are been displayed . It is not taking the line items which have come on the second page. Please advsie . Below is the code of the BDC.
    REPORT  zfi_bank_recon.
    TABLES : febko.
    DATA: bdcdata LIKE bdcdata    OCCURS 0 WITH HEADER LINE.
    DATA : i_messtab LIKE bdcmsgcoll OCCURS 0 WITH HEADER LINE.
    DATA : BEGIN OF itab OCCURS 0,
           vgman TYPE febmka-vgman,
           valut TYPE char10, "febep-valut,
           kwbtr TYPE char17, "febmka-kwbtr,
           chect_kf TYPE febmkk-chect_kf,
           sgtxt_kf TYPE febmkk-sgtxt_kf,
           count(6) TYPE n,
           END OF itab.
    DATA : BEGIN OF error OCCURS 0,
           msg TYPE string,
          END OF error.
    DATA :flag,
          update VALUE 'A',
          mode VALUE 'N'.
    DATA : aznum1 TYPE aznum,
    lv_esbtr TYPE febko-esbtr,
    lv_esvoz TYPE febko-esvoz,
    lv_opening TYPE char17, "febmka-kwbtr,
    lv_closing TYPE char17. "febmka-kwbtr.
    *& Selection screen
    SELECTION-SCREEN : BEGIN OF BLOCK blk WITH FRAME TITLE text.
    PARAMETERS :  bukrs LIKE febmka-bukrs OBLIGATORY,
                  hbkid LIKE febmka-hbkid OBLIGATORY,
                  hktid LIKE febmka-hktid OBLIGATORY,
                  azdat LIKE febmka-azdat OBLIGATORY,
                  aznum LIKE febmka-aznum OBLIGATORY,
                  budtm LIKE febmka-budtm OBLIGATORY  DEFAULT sy-datum.
    SELECTION-SCREEN :  END OF BLOCK blk.
    SELECTION-SCREEN : BEGIN OF BLOCK blk1 WITH FRAME TITLE text1.
    PARAMETERS: p_file LIKE rlgrap-filename OBLIGATORY.
    SELECTION-SCREEN : END OF BLOCK blk1.
    AT SELECTION-SCREEN.
      SELECT SINGLE * FROM febko INTO febko
      WHERE bukrs = bukrs AND hbkid = hbkid AND
      hktid = hktid  AND aznum = aznum
           AND budtm = budtm
            AND azdat = azdat.
      IF sy-subrc EQ 0.
        MESSAGE e038(000) WITH 'Statement' aznum  'already uploaded; No further processing done'.
      ENDIF.
    At Selection Screen Event
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file.
      CALL FUNCTION 'F4_FILENAME'
        IMPORTING
          file_name = p_file.
    *& Start of Selection
    START-OF-SELECTION.
      CLEAR : flag.
      PERFORM data_upload.
      PERFORM check_data.
      IF itab[] IS NOT INITIAL AND flag IS INITIAL..
        PERFORM open_group.
        REFRESH bdcdata.
        PERFORM bdcdata. " USING LV_OPENING LV_CLOSING.
      PERFORM bdc_insert.
        PERFORM close_group.
      ENDIF.
    *&      Form  check_data
    FORM check_data.
      LOOP AT itab.
        DATA : int(6) TYPE n.
        CLEAR : int.
        int = sy-tabix.
        IF itab-vgman  IS  INITIAL.
          CONCATENATE 'Transaction type should not be blank : Record no'  int INTO error-msg SEPARATED BY space.
          APPEND error.
          CLEAR : error.
        ENDIF.
        IF itab-valut IS INITIAL.
          CONCATENATE 'Value Date should not be blank : Record no'  int INTO error-msg SEPARATED BY space.
          APPEND error.
          CLEAR : error.
        ENDIF.
        IF itab-kwbtr IS INITIAL.
          CONCATENATE 'Amount should not be blank : Record no'  int INTO error-msg SEPARATED BY space.
          APPEND error.
          CLEAR : error.
        ENDIF.
        IF itab-chect_kf IS INITIAL.
          CONCATENATE 'Bank Reference should not be blank : Record no'  int INTO error-msg SEPARATED BY space.
          APPEND error.
          CLEAR : error.
        ENDIF.
         IF  itab-vgman  NE 'DLF1'
           AND itab-vgman  NE 'DLF2'.
          CONCATENATE 'A Transaction type is not used : Record no'  int INTO error-msg SEPARATED BY space.
          APPEND error.
          CLEAR : error.
        ENDIF.
         IF itab-vgman  EQ 'DLF1'
        AND itab-kwbtr LE 0.
          CONCATENATE 'As per Transaction type, the Amount should be Positive : Record no'  int INTO error-msg SEPARATED BY space.
          APPEND error.
          CLEAR : error.
        ENDIF.
         IF   itab-vgman  EQ 'DLF2'
        AND itab-kwbtr GE 0.
          CONCATENATE 'As per Transaction type, the Amount should be Negative : Record no'  int INTO error-msg SEPARATED BY space.
          APPEND error.
          CLEAR : error.
        ENDIF.
      ENDLOOP.
      IF error[] IS NOT INITIAL.
        WRITE : / 'Error found in upload file'.
        SKIP 2 .
        LOOP AT error.
          WRITE : / error-msg.
        ENDLOOP.
        flag = 'X'.
      ENDIF.
      CLEAR : lv_esbtr, lv_esvoz, aznum1, lv_opening, lv_closing.
      IF flag IS INITIAL.
        SELECT MAX(  DISTINCT  aznum )  FROM febko INTO aznum1
        WHERE bukrs = bukrs AND hbkid = hbkid  AND hktid = hktid.
        IF sy-subrc = 0.
          SELECT SINGLE esbtr esvoz  FROM febko INTO (lv_esbtr,lv_esvoz)
          WHERE bukrs = bukrs AND hbkid = hbkid  AND hktid = hktid AND aznum = aznum1 .
          IF lv_esvoz = 'S'.
            lv_opening = lv_esbtr * -1.
          ELSE.
            lv_opening = lv_esbtr.
          ENDIF.
          lv_closing = lv_opening.
        ENDIF.
        LOOP AT itab.
          lv_closing = lv_closing + itab-kwbtr.
          DATA : lv_count(6) TYPE n.
          lv_count = lv_count + 1.
          MOVE lv_count TO itab-count .
          MODIFY itab FROM itab.
          CLEAR : itab.
        ENDLOOP.
      ENDIF.
    ENDFORM.                    "check_data
    *&      Form  data_upload
    FORM data_upload.
      DATA: loc_filename TYPE string.
      loc_filename = p_file.
      CALL FUNCTION 'GUI_UPLOAD'
        EXPORTING
          filename                = loc_filename
          filetype                = 'ASC'
          has_field_separator     = 'X'
        TABLES
          data_tab                = itab
        EXCEPTIONS
          file_open_error         = 1
          file_read_error         = 2
          no_batch                = 3
          gui_refuse_filetransfer = 4
          invalid_type            = 5
          no_authority            = 6
          unknown_error           = 7
          bad_data_format         = 8
          header_not_allowed      = 9
          separator_not_allowed   = 10
          header_too_long         = 11
          unknown_dp_error        = 12
          access_denied           = 13
          dp_out_of_memory        = 14
          disk_full               = 15
          dp_timeout              = 16
          OTHERS                  = 17.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
        WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    ENDFORM.                    "data_upload
    *&      Form  bdcdata
    FORM bdcdata. " USING lv_opening TYPE febko-ssbtr
      "    lv_closing TYPE febko-esbtr.
      DATA : day(2),
             month(2),
             year(4),
             date(10).
      year = azdat+0(4).
      month = azdat+4(2).
      day = azdat+6(2).
      CONCATENATE day month year INTO date.
      CONDENSE : date.
    Comment
      PERFORM bdc_dynpro      USING 'SAPMF40K' '0101'.
      PERFORM bdc_field       USING 'BDC_OKCODE'
                                    '/EVORG'.
      PERFORM bdc_field       USING 'BDC_CURSOR'
                                    'FEBMKA-AZDAT'.
      PERFORM bdc_dynpro      USING 'SAPMF40K' '0110'.
      PERFORM bdc_field       USING 'BDC_CURSOR'
                                    'FEBMKA-VARI_START'.
      PERFORM bdc_field       USING 'BDC_OKCODE'
                                    '=ENTE'.
      PERFORM bdc_field       USING 'FEBMKA-KONT_INT'
                                    'X'.
      PERFORM bdc_field       USING 'FEBMKA-FDIS_SEL'
                                    'X'.
      PERFORM bdc_field       USING 'FEBMKA-VARI_START'
                                    'Z0001'.
      PERFORM bdc_field       USING 'FEBMKA-DEBI_MID'
                                    'D'.
      PERFORM bdc_field       USING 'FEBMKA-KRED_MID'
                                    'K'.
      PERFORM bdc_field       USING 'FEBMKA-WVAR_ART'
                                    '4'.
      PERFORM bdc_field       USING 'FEBMKA-BUCH_VAL'
                                    'X'.
      PERFORM bdc_dynpro      USING 'SAPMF40K' '0101'.
      PERFORM bdc_field       USING 'BDC_CURSOR'
                                    'FEBMKA-ESALD'.
      PERFORM bdc_field       USING 'BDC_OKCODE'
                                    '/00'.
      PERFORM bdc_field       USING 'FEBMKA-BUKRS'
                                    bukrs.
      PERFORM bdc_field       USING 'FEBMKA-HBKID'
                                    hbkid.
      PERFORM bdc_field       USING 'FEBMKA-HKTID'
                                    hktid.
      PERFORM bdc_field       USING 'FEBMKA-AZNUM'
                                    aznum.
      PERFORM bdc_field       USING 'FEBMKA-AZDAT'
                                    date.
      PERFORM bdc_field       USING 'FEBMKA-SSALD'
                                    lv_opening.
      PERFORM bdc_field       USING 'FEBMKA-ESALD'
                                    lv_closing.
      PERFORM bdc_dynpro      USING 'SAPMF40K' '8000'.
      PERFORM bdc_field       USING 'BDC_CURSOR'
                                    'FEBMKK-SGTXT_KF(01)'.
      SORT itab DESCENDING BY count.
      LOOP AT itab.
        PERFORM bdc_field       USING 'BDC_OKCODE'
                                      '=SICH'.
        PERFORM bdc_field       USING 'FEBMKA-VGMAN(01)'
                                      itab-vgman.
        PERFORM bdc_field       USING 'FEBEP-VALUT(01)'
                                      itab-valut.
        PERFORM bdc_field       USING 'FEBMKA-KWBTR(01)'
                                              itab-kwbtr.
        PERFORM bdc_field       USING 'FEBMKK-CHECT_KF(01)'
                                      itab-chect_kf.
        PERFORM bdc_field       USING 'FEBMKK-SGTXT_KF(01)'
                                      itab-sgtxt_kf.
        PERFORM bdc_dynpro      USING 'SAPMF40K' '8000'.
        PERFORM bdc_field       USING 'BDC_CURSOR'
                                      'FEBMKK-SGTXT_KF(01)'.
      ENDLOOP.
      PERFORM bdc_dynpro      USING 'SAPMF40K' '8000'.
      PERFORM bdc_field       USING 'BDC_CURSOR'
                                    'FEBMKA-KWBTR(01)'.
      PERFORM bdc_field       USING 'BDC_OKCODE'
                                    '=SICH'.
      PERFORM bdc_dynpro      USING 'SAPMF40K' '0101'.
      PERFORM bdc_field       USING 'BDC_CURSOR'
                                    'FEBMKA-BUKRS'.
      PERFORM bdc_field       USING 'BDC_OKCODE'
                                    '=BACK'.
      PERFORM bdc_dynpro      USING 'SAPLSPO1' '0100'.
      PERFORM bdc_field       USING 'BDC_OKCODE'
                                    '=NO'.
    ENDFORM.                    "bdcdata
    *&      Form  OPEN_GROUP
    FORM open_group .
      CALL FUNCTION 'BDC_OPEN_GROUP'
        EXPORTING
          client = sy-mandt
          group  = 'BANK_STAT'
          user   = sy-uname.
         keep   = 'X'.
    ENDFORM.                    " OPEN_GROUP
    *&      Form  CLOSE_GROUP
    FORM close_group .
      CALL FUNCTION 'BDC_CLOSE_GROUP'.
      CALL TRANSACTION 'SM35'.
    ENDFORM.                    " CLOSE_GROUP
    *&      Form  bdc_insert
    FORM bdc_insert.
      CALL FUNCTION 'BDC_INSERT'
        EXPORTING
          tcode     = 'FF67'
        TABLES
          dynprotab = bdcdata.
    ENDFORM.                    " bdc_insert
           Start new screen                                              *
    FORM bdc_dynpro USING program dynpro.
      CLEAR bdcdata.
      bdcdata-program  = program.
      bdcdata-dynpro   = dynpro.
      bdcdata-dynbegin = 'X'.
      APPEND bdcdata.
    ENDFORM.                    "BDC_DYNPRO
           Insert field                                                  *
    FORM bdc_field USING fnam fval.
      CLEAR bdcdata.
      bdcdata-fnam = fnam.
      bdcdata-fval = fval.
      APPEND bdcdata.
    ENDFORM.                    "BDC_FIELD

    Hi,
    Use:
    If line item = 30.
    OKCODE = 'P++'. --->For next page after every 30 line items.
    endif.
    Or:(Sumilate in BDC)
    1 . New line.   -
    >Get the Fcode/Sy-ucomm value of New line(Icon on menu bar)
    2.Enter Line Item.
    Follow this after every line item.
    Hope this resolves the issue.
    Regards,
    Gurpreet

  • CF Set form.variable for query and Next/Previous pages error

    I have a CF form with a select that posts to a CF "action" page.
    On the action page I: CFSET ItemNumber=#form.ItemNumber#
    I CFOUTPUT the 'ItemNumber' into the CFQUERY (which is an Inner Join dependant on the '#ItemNumber#')...
    All of the above works just fine and displays the database fields in color alternating rows, per the rest of the code.
    Here's the problem:
    I'm displaying 40 rows on a page per "Next and Previous" code. (CFPARAM name="start" default="1" and CFPARAM name="disp" default="40" along with the rest of the NextN code in the header and body). This does display 40 rows on the page and puts a link at the bottom of the page "Next 40 Rows", etc.
    Note: I'm only querying the database once and using the query (query name="data") to populate the table rows And the NextN code (CFOUTPUT name="data") And (CFIF start + disp GREATER THAN data.RecordCount, etc)...
    The problem happens when you click the "Next 40 Rows" link to display the 2nd page of rows. Since (I'm assuming) this NextN code is 're-reading' the same page from top to bottom, an error is thrown when the code tries to read the CFSET ItemNumber=#form.ItemNumber# at the top of the page.
    With the #form.ItemNumber# on this action page Originally coming from the previous posting of the form to this action page, when the "Next 40 Rows" link is clicked and the NextN code re-reads this action page - the CFSET ItemNumber (#form.ItemNumber) is not getting populated and throws the error...
    I hope I've not made this sound confusing.
    I can get the NextN code to work when I'm just querying the database without "flying in" a form variable. But when I CFSET a variable (#form.ItemNumber#) that is inserted into the query, the second page of the NextN throws an error and doesn't display.
    I would include the page code here but it would be fairly lengthy and, as well, the NextN code is a 'standard' CF code -- I've narrowed the problem down to the above "Element is undefined" (when the page tries to reload from the "Next 40 Rows" link) and am hoping there's a simple fix or another way to display the records in Next and Previous pages.
    Thanks to anyone in advance for shedding light on this.
    - e

    Thank you for the reply, Owain.
    Yes - The Next/Previous at the bottom of the page are hyperlinks.
    <a href="ThisPage.cfm?start=#Evaluate("start + disp")#">
    The following is at the top of the page (and is the variable from the form that I CFOUTPUT in the query):
    <cfparam name="ItemNumberDropdown01" default="">
    <cfset ItemNumber = #form.ItemNumberDropdown01#>
    The error report showed that the "Next Page" hyperlink was reading an undefined variable... although when the "action page" first opens from the form posting to it, it populates the CFSET just fine (per the cfparam and cfset above)... As you mention, the hyperlink clearing the form scope is what causes the error in trying to display the next set of records...
    The form page and the 'action page' are both secure pages with an application page setting the session, etc. Am I at risk in using an URL scope?
    Where would this URL scope be put? (The href is shown above - would the URL scope go in this? - How would this be written?)
    The CFPARAM and CFSET would still exist at the top of the 'action page' and still throw an error wouldn't it or would this be replaced with something else to read the form.variable for this 'first' action page to be displayed?
    Thanks again for the 'education' on this...
    - ed

  • How to add a second page to scene selections link

    I imported a QuickTime that has 12 chapter markers.  iDVD automatically creates the main page that has two links:  "Play Movie" and "Scene Selection".  When I try to burn the DVD, I get an error telling me that the "Scene Selection" page has more than 12 buttons.   If you add the 12 scene titles and the back arrow button, then there are 13 buttons.  Therefore, I must add another page that will contain at least one of the 12 scene titles.  My question is, how can I keep the one main page so that when I click on "Scene Selection", it takes me to a second page that has a few scene titles and also has a page advance arrow that if clicked, will take me to the next page of scene selections.  The only way I can figure out how to do it is to have the main page contain two links: one for scenes 1 - 6 and one for scenes 7 - 12.  What am I missing?  Thanks for any help.

    On the scene selection page use the "+" button to create a new submenu page:
    Select the last scene link, go to the submenu and paste.  Go into the Preview mode and make sure the link works.  Then go to the first scene selection menu and delete that last scene link.
    If you copy and paste more than one link to the subkmenu remember the order they are added to that menu determines the order they will be highlighted when using the DVD player's remote device.
    OT

  • Application cannot connect to second page when oracle is used as database.

    Hi,
    I have an application which works on MySql database. But now I need to change the database to oracle. I have installed everything required inorder for the oracle to work. I am using active record store for my application. For that I have created sessions table using
    rake db:sessions:create
    And I have migrated to my database using
    rake db:migrate.
    Then I uncommented the following line in environment.rb:
    config.action_controller.session_store = :active_record_store
    Then If I start my application using IE, First page is shown, when I click on the second page link,
    I got HTTP 500 Internal Server Error saying
    The website cannot display the page
    HTTP 500
    Most likely causes:
    The website is under maintenance.
    The website has a programming error.
    What you can try:
    Refresh the page.
    Go back to the previous page.
    More information
    I am unable to understand what the problem is. When I comment the line config.action_controller.session_store = :active_record_store application works, but the sessions table is not updated. when I use MySql as my database, everything works fine.
    Can someone please help me with the solution? what may be the mistake am doing?

    Please provide more information about this issue.
    Are you using oracle_enhanced adapter? (activerecord-oracle_enhanced-gem)
    Which Rails version are you using?
    Can you look in your log file what exception you are getting? (if running in development mode then it should be in log/development.log)
    Raimonds

  • Increase main window size in the second page

    Dear Experts,
    In my first page i have the main window, i want to increase the size of main window in the secon page. how?

    Hi Venkey,
    When you have two or more pages in a smartform it is necessary that each page should have it's main window. But one important thing is that all the main windows of all the pages should be of same width and height. You cannot have different measures for each of the main window. If you do so you will end up in run time error.
    In second page, add window and make it as main window. Make sure that width and height is same as main window   of first page. Next add another window and make it as secondary window. Later add any components like templates, texts etc to this secondary window. Otherwise they will not be shown up during print or print preview.
    Let me know if you have any further issues.
    Thanks,
    Rajesh

  • Page error when first accessed

    When I access a page as a public user, I receive the following error for each portlet on the page:
    Error: The request for content either timed out, or produced an error, after 0 seconds.
    When I reload the page, everything looks fine. Any suggestions?

    I had the same errors. What worked for me was making sure I used the following url when referring to the page:
    http://host.mydomain.com/pls/portal30/url/page/PAGENAME

  • Download link from order e-mail not working 'page error'

    I ordered Adobe Photoshop Elements 10 & Adobe Premiere Elements 10 back in Nov2011.  I downloaded both to learn I needed the 64 bit version.  When I had time I downloaded Photoshop Elements 64 bit and got my project done.  Now I went back to get my 64 bit version of Premiere but the link no longer works.  On the order it says you can re-download anytime.  I sign in to my Adobe Account, go to Order History, hover over download - I see the address in my browser status bar at bottom left.  When I click on download the the status bar displays the yellow triangle with the warning message 'page error'  when you expand the message it indicates a address is not working.  I tried turning my firewall off - didn't have to do that before - but same message.  There must be a link where paying customers can get the proper download?  Everything I find is for the trial version.  Is there a link?  Why do the links in the order e-mail expire?  Thanks in advance!            

    OK, I finally worked around the issue.  Right click on the word download – then select open in new window.  Not sure why this worked – but it did.  Jeff, the alternate download option does appear on the second page that loads AFTER you get past the initial download link.  Though once I got there I was able to use the primary download for 64 bit.  Thanks all for looking at this.  J potter, try this and see if it helps.

  • Epub export problems - missing last page and 'Page error'

    I couldn't find answers to this elsewhere - my apologies if this has been answered. My version of InDesign is 6.0.4 on Windows 7, 64 bit. I have two issues with exporting from InDesign to epub format.
    The first is that on some longer documents, which display OK in Sony's Reader Library software, I get a 'page error' when trying to read them on Sony Reader Touch Edition. I have found that I can 'correct' them by loading into Calibre Library Mangement software then saving them out from there. This may be a problem with the Sony Reader Touch software in which case has anyone come across a similar problem? The Reader can cope with the files, but not how they are exported from InDesign.
    The second problem is that even when I appear to export OK the epub document occasionally has just the last page missing - a few lines that have run over onto a final page do not get incorporated. These are simple InDesign documents, not books with chapters or linked files. The problem does not happen all the time but appears to depend on just where the flowed text in the epub happens to finish. I have found a workaround for this too - in the original document I add one full stop/period per line (adding blank lines is no good as the export ignores them) to force an extra page in the InDesign original. This is OK as a workaround but it would be nice if I didn't have to do it!
    Any help would be appreciated. Thanks
    Colin

    you need the 7z file in addition to the exe
    Downloads available:
    Suites and Programs:  CC 2014 | CC | CS6 | CS5.5 | CS5 | CS4 | CS3
    Acrobat:  XI, X | 9,8 | 9 standard
    Premiere Elements:  12 | 11, 10 | 9, 8, 7
    Photoshop Elements:  12 | 11, 10 | 9,8,7
    Lightroom:  5.6| 5 | 4 | 3
    Captivate:  8 | 7 | 6 | 5
    Contribute:  CS5 | CS4, CS3
    Download and installation help for Adobe links
    Download and installation help for Prodesigntools links are listed on most linked pages.  They are critical; especially steps 1, 2 and 3.  If you click a link that does not have those steps listed, open a second window using the Lightroom 3 link to see those 'Important Instructions'.

  • 404 missing page error in infoview

    After logging in to infoview, the user gets a 404 missing page error in infoview when they try to schedule a report. Can you please let me know if the source for this error is a firewall issue?
    Thanks.

    We have tried clearing out cache. That did not help. I will check on browser version. Also have few more users unable to schedule. Permissions are okay. They ran one report on the schedule and it completed. But when they scheduled 10 reports to run on one server group which has one adaptive job server and one webi server, the reports did not run. They were scheduled in 30 minute intervals to run starting 12 in the night. All failed immediatly - my take on this is at least the first one should have run since theere was a 3o minute ineterval between that one and the second report. (But it ran during the day when scheduled to run)
    Got a Unexpected exception caught. Reason: [java.lang.NullPointerException: i_statusInfo is null.] error. Usually that error is a memory error, right? Even if it was , not sure why the first one did not run. I had scheduling issues on another webiserver as well and I also have a trace log for that server. Looks like attachments cannot be uploaded. Can be it emailed to you?
    Edited by: BO_dev on Jul 28, 2011 6:53 PM

  • Smart Form Second Page

    Hi Experts,
    I have designed a Smart Form for Sales Order Details which should Display Sales Order line Items using Internal Table.
    After Displaying Line Item I have to display Terms & Conditions in Second Page.
    I have Created Secondary window in Second Page for Terms & Conditions, while activating it is showing error as "A page without a main window cannot point to itself as next page".
    My Requirement is after passing all line items, in Next page to that I have to pass Terms and Conditions.
    Ask you solve the issue at the latest.
    Regards,
    Kumar
    Edited by: Thomas Zloch on Jan 17, 2011 11:13 AM - priority adjusted

    ABAP Wrote >
    I have Created Secondary window in Second Page for Terms & Conditions, while activating it is showing error as "A page without a main window cannot point to itself as next page"
    You cannot have more than one main window in smartform. Check PAGE Attributes of the second page. Remove NEXT and keep a space there.
    Set
    For FIRST Page : Under General attributes set : NEXT Page = FIRST
    For NEXT Page : Under General attributes set :NEXT Page = NEXT
    For T&C Page : Under General attributes set :NEXT Page = SPACE
    Set the page counter mode to Page and Overrall page unchanged.

  • Still not working. Landing page error

    Hi, my Email is still not working. I was migrated last week, changed password as instructed and everything was ok.
    Since it went down I can still log in but get this pop up
    An error occurred while reading your landing page settings. Can't switch to preferred landing page
    If I click settings then mail  I get this
    An error occurred while reading your landing page settings. Please try again later
    I saw a link in aother thread where you put your Email in and it tells you which service you're on and I get a not recognised message.
    I did the live chat help yesterday around this time and was told it would be be passed to a supervisor as a matter of urgency and fixed within 24 hours.
    Any suggestions?

    This has turned into a complete and utter farce now.
    I was able to access my email through windows live, and also on my tablet after doing a manual setup.
    Yesterday Evening, almost exactly on the 48 hours to the second since previous call, BT phoned me.
    "can you please log into bt.com"
    "ok, done it"
    "click on email"
    "done it, same landing page error message"
    "I'll put you on hold while I look it up"
    10 minutes later
    "hello I'll pass it on to technical team, someone will call you back
    "pardon?"
    "I am informing technical team, they will call you"
    "when?"
    "they will call sometime, have a good evening"
    5 minutes later phone rings, same person "log in and describe screen so I can tell technical"
    "they took screenshots the other day"
    "tell me what is on screen"
    I did it and he went, again saying technical would call me.
    No further to solving it and as from later on last evening I can no longer acces mail through Windows Live or my tablet, I'm getting wrong password message, can still log on bt.com though.
    When they try to take my next monthly payment from bank BTare going to get the message  "access denied"

  • Problems scanning a second page

    Can anyone help?  I can scan one page at a time using an epson RX85 all in one on a mac running OS 10.9.2 and Acrobat Pro 10.  I have tried to scan more than one page either as a continous scan or as separate docs and I come up against an error message, Adobe closes down.  Error shown below.  I've asked Apple to look at issue and they say it is problem with Adobe software.
    Process:         AdobeAcrobat [13618]
    Path:            /Applications/Adobe Acrobat X Pro/Adobe Acrobat Pro.app/Contents/MacOS/AdobeAcrobat
    Identifier:      com.adobe.Acrobat.Pro
    Version:         10.1.9 (10.1.9)
    Code Type:       X86 (Native)
    Parent Process:  launchd [162]
    Responsible:     AdobeAcrobat [13618]
    User ID:         501
    Date/Time:       2014-04-28 10:23:26.854 +0100
    OS Version:      Mac OS X 10.9.2 (13C64)
    Report Version:  11
    Anonymous UUID:  BF9EFD7F-20E5-81BF-78A2-4B2C09F85D88
    Sleep/Wake UUID: F5618CC7-2D5A-4541-A6B4-C8DCD74A4E4B
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x00000000000a27e8
    VM Regions Near 0xa27e8:
        __LINKEDIT             0000000000004000-0000000000006000 [    8K] r--/rwx SM=COW  /Applications/Adobe Acrobat X Pro/Adobe Acrobat Pro.app/Contents/MacOS/AdobeAcrobat
    --> __TEXT                 0000000000006000-0000000001d32000 [ 29.2M] r-x/rwx SM=COW  /Applications/Adobe Acrobat X Pro/Adobe Acrobat Pro.app/Contents/Frameworks/Acrobat.framework/Versions/A/Acrobat
        __DATA                 0000000001d32000-0000000001e3a000 [ 1056K] rw-/rwx SM=COW  /Applications/Adobe Acrobat X Pro/Adobe Acrobat Pro.app/Contents/Frameworks/Acrobat.framework/Versions/A/Acrobat
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   ???                                     0x0eee2f83 0 + 250490755
    1   com.apple.CoreServices.CarbonCore          0x926376a9 vCheckLoad + 664
    2   com.apple.CoreServices.CarbonCore          0x925be783 GetResourceCommon + 171
    3   com.apple.CoreServices.CarbonCore          0x9263798b Get1Resource + 41
    4   com.epson.scan.scncl                    0x11d6c60c CESPrefs::Read() + 170
    5   com.epson.scan.scncl                    0x11d6d013 CPrefsBase::CheckPreferenceValid(char**) + 107
    6   com.epson.scan.scncl                    0x11d6c2f8 CESPrefs::GetWorkAreaFSSpec(FSSpec*) + 60
    7   com.epson.scan.scncl                    0x11d30fcd CExtScanner::DeleteTempFolder() + 113
    8   com.epson.scan.scncl                    0x11d1ee68 CScanImg::ISIOpenScanner(HardwareInfo*) + 210
    9   com.epson.scan.twpmg                    0x11cdee5b CTriplet::OpenScanner() + 63
    10  com.epson.scan.twpmg                    0x11cdd216 CCtrlTriplet::OpenDS(TW_IDENTITY*, char*) + 134
    11  com.epson.scan.twpmg                    0x11cd53cd CImgTriplet::OpenDS(TW_IDENTITY*, char*) + 37
    12  com.epson.scan.twpmg                    0x11cd9dba CCtrlTriplet::IdentityMsg(TW_IDENTITY*, unsigned short, char*) + 162
    13  com.epson.scan.twpmg                    0x11cddac3 CCtrlTriplet::EntryPoint(TW_IDENTITY*, unsigned long, unsigned short, unsigned short, char*) + 267
    14  com.epson.scan.twpmg                    0x11cd58f1 CImgTriplet::EntryPoint(TW_IDENTITY*, unsigned long, unsigned short, unsigned short, char*) + 81
    15  com.epson.scan.twpmg                    0x11ceae7f CImgTriplet22::EntryPoint(TW_IDENTITY*, unsigned long, unsigned short, unsigned short, char*) + 87
    16  com.epson.scan.twpmg                    0x11ce0bf6 DS_Entry + 136
    17  com.epson.scan.dscl                     0x0e3ed66a CDSCtl::DoMSGOpenDS(TW_IDENTITY*, unsigned long, unsigned short, unsigned short, char*) + 524
    18  com.epson.scan.dscl                     0x0e3ed83d CDSCtl::DoDATIdentity(TW_IDENTITY*, unsigned long, unsigned short, unsigned short, char*) + 153
    19  com.epson.scan.dscl                     0x0e3edcf0 CDSCtl::DoDGControl(TW_IDENTITY*, unsigned long, unsigned short, unsigned short, char*) + 158
    20  com.epson.scan.dscl                     0x0e3edf2f CDSCtl::DSEntry(TW_IDENTITY*, unsigned long, unsigned short, unsigned short, char*) + 133
    21  com.epson.scan.dscl                     0x0e3ee0e8 DS_Entry + 116
    22  com.epson.scan.rx585_rx595_rx610          0x0e197670 DS_Control(unsigned short, unsigned short, char*) + 552
    23  com.epson.scan.rx585_rx595_rx610          0x0e198bcf DS_Entry + 193
    24  org.twain.dsm                           0x0c86b2f7 -[DS callDS:dataGroup:dataArgumentType:messageID:dataPtr:] + 388
    25  org.twain.dsm                           0x0c86ac4d -[DS openDS:dsIdentity:] + 92
    26  org.twain.dsm                           0x0c86a844 -[DSM openDS] + 687
    27  org.twain.dsm                           0x0c86a16f -[DSM identity] + 183
    28  org.twain.dsm                           0x0c86954a -[DSM entry:destination:dataGroup:dataArgumentType:messageID:dataPtr:] + 150
    29  org.twain.dsm                           0x0c869372 DSM_Entry + 159
    30  com.adobe.AcrobatPlugin.Scan            0x0eb96b0a AcroPluginMain + 268157
    31  com.adobe.AcrobatPlugin.Scan            0x0eb99a4b AcroPluginMain + 280254
    32  com.adobe.AcrobatPlugin.Scan            0x0eb9b551 AcroPluginMain + 287172
    33  com.adobe.AcrobatPlugin.Scan            0x0eb9b686 AcroPluginMain + 287481
    34  com.adobe.AcrobatPlugin.Scan            0x0eb9b763 AcroPluginMain + 287702
    35  com.adobe.AcrobatPlugin.Scan            0x0eba3de6 AcroPluginMain + 322137
    36  com.adobe.AcrobatPlugin.Scan            0x0eba3eb0 AcroPluginMain + 322339
    37  com.adobe.AcrobatPlugin.Scan            0x0eb9d8ad AcroPluginMain + 296224
    38  com.adobe.AcrobatPlugin.Scan            0x0eb783aa AcroPluginMain + 143389
    39  com.adobe.AcrobatPlugin.Scan            0x0eb78d9e AcroPluginMain + 145937
    40  com.adobe.AcrobatPlugin.Scan            0x0eb7d217 AcroPluginMain + 163466
    41  com.adobe.AcrobatPlugin.Scan            0x0eb7d3be AcroPluginMain + 163889
    42  com.adobe.Acrobat.framework             0x00917775 AcroSecurityBailOutImpl + 5433859
    43  com.adobe.Acrobat.framework             0x00659272 AcroSecurityBailOutImpl + 2557184
    44  com.adobe.Acrobat.framework             0x006593b8 AcroSecurityBailOutImpl + 2557510
    45  com.adobe.Acrobat.framework             0x00bb4434 AcroSecurityBailOutImpl + 8173250
    46  com.adobe.Acrobat.framework             0x00bb4159 AcroSecurityBailOutImpl + 8172519
    47  com.adobe.Acrobat.framework             0x0037b686 RunAcrobat + 3590229
    48  libobjc.A.dylib                         0x9ab0a2af -[NSObject performSelector:withObject:] + 70
    49  com.apple.AppKit                        0x9aef28a5 -[NSApplication sendAction:to:from:] + 438
    50  com.apple.AppKit                        0x9af0ec65 -[NSMenuItem _corePerformAction] + 486
    51  com.apple.AppKit                        0x9af0e96a -[NSCarbonMenuImpl performActionWithHighlightingForItemAtIndex:] + 163
    52  com.apple.AppKit                        0x9af0e021 -[NSMenu _performActionWithHighlightingForItemAtIndex:sendAccessibilityNotification:] + 79
    53  com.apple.AppKit                        0x9af61624 -[NSMenu performActionForItemAtIndex:] + 65
    54  com.apple.AppKit                        0x9af615d9 -[NSMenu _internalPerformActionForItemAtIndex:] + 45
    55  com.apple.AppKit                        0x9af615a4 -[NSMenuItem _internalPerformActionThroughMenuIfPossible] + 106
    56  com.apple.AppKit                        0x9af613f4 -[NSCarbonMenuImpl _carbonCommandProcessEvent:handlerCallRef:] + 120
    57  com.apple.AppKit                        0x9af03da6 NSSLMMenuEventHandler + 816
    58  com.apple.HIToolbox                     0x984e3d89 _InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) + 36
    59  com.apple.HIToolbox                     0x9833735f DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1452
    60  com.apple.HIToolbox                     0x98336678 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 386
    61  com.apple.HIToolbox                     0x98349821 SendEventToEventTarget + 88
    62  com.apple.HIToolbox                     0x984e3c2e SendHICommandEvent(unsigned long, HICommand const*, unsigned long, unsigned long, unsigned char, void const*, OpaqueEventTargetRef*, OpaqueEventTargetRef*, OpaqueEventRef**) + 478
    63  com.apple.HIToolbox                     0x983acf17 SendMenuCommandWithContextAndModifiers + 70
    64  com.apple.HIToolbox                     0x983acec4 SendMenuItemSelectedEvent + 199
    65  com.apple.HIToolbox                     0x983acd92 FinishMenuSelection(SelectionData*, MenuResult*, MenuResult*) + 134
    66  com.apple.HIToolbox                     0x9853859d MenuSelectCore(MenuData*, Point, double, unsigned long, OpaqueMenuRef**, unsigned short*) + 722
    67  com.apple.HIToolbox                     0x983b472e _HandleMenuSelection2 + 488
    68  com.apple.HIToolbox                     0x983b4537 _HandleMenuSelection + 53
    69  com.apple.AppKit                        0x9ae71278 _NSHandleCarbonMenuEvent + 358
    70  com.apple.AppKit                        0x9acc66e2 _DPSNextEvent + 2459
    71  com.apple.AppKit                        0x9acc58b0 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 119
    72  com.apple.AppKit                        0x9acb819c -[NSApplication run] + 727
    73  com.adobe.Acrobat.framework             0x00010913 RunAcrobat + 6882
    74  com.adobe.Acrobat.framework             0x0000ef6d RunAcrobat + 316
    75  com.adobe.Acrobat.Pro                   0x00001e92 main + 94
    76  com.adobe.Acrobat.Pro                   0x00001e16 start + 54
    Thread 1:: Dispatch queue: NSOperationQueue 0x2c9e0e0
    0   libsystem_kernel.dylib                  0x95446b76 __semwait_signal + 10
    1   libsystem_c.dylib                       0x9154ffb7 nanosleep$UNIX2003 + 219
    2   com.apple.Foundation                    0x97e51621 +[NSThread sleepForTimeInterval:] + 170
    3   com.adobe.Acrobat.framework             0x00d14e39 AcroSecurityBailOutImpl + 9617607
    4   com.apple.Foundation                    0x97dbf37f -[__NSOperationInternal _start:] + 753
    5   com.apple.Foundation                    0x97dbf081 -[NSOperation start] + 71
    6   com.apple.Foundation                    0x97dbefa8 __NSOQSchedule_f + 50
    7   libdispatch.dylib                       0x99a09e11 _dispatch_async_redirect_invoke + 158
    8   libdispatch.dylib                       0x99a05396 _dispatch_client_callout + 50
    9   libdispatch.dylib                       0x99a07457 _dispatch_root_queue_drain + 257
    10  libdispatch.dylib                       0x99a08722 _dispatch_worker_thread2 + 39
    11  libsystem_pthread.dylib                 0x98329dab _pthread_wqthread + 336
    12  libsystem_pthread.dylib                 0x9832dcce start_wqthread + 30
    Thread 2:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x95447992 kevent64 + 10
    1   libdispatch.dylib                       0x99a078ad _dispatch_mgr_invoke + 238
    2   libdispatch.dylib                       0x99a07546 _dispatch_mgr_thread + 52
    Thread 3:
    0   libsystem_kernel.dylib                  0x954467ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x9832ad1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib                 0x9832cbd9 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore          0x92661682 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore          0x926618a6 TSWaitOnConditionTimedRelative + 186
    5   com.apple.CoreServices.CarbonCore          0x9262dcf2 MPWaitOnQueue + 199
    6   AdobeACE                                0x01fc3737 ACEInitialize + 3741
    7   AdobeACE                                0x01fc36ad ACEInitialize + 3603
    8   com.apple.CoreServices.CarbonCore          0x9262e2ce PrivateMPEntryPoint + 68
    9   libsystem_pthread.dylib                 0x983285fb _pthread_body + 144
    10  libsystem_pthread.dylib                 0x98328485 _pthread_start + 130
    11  libsystem_pthread.dylib                 0x9832dcf2 thread_start + 34
    Thread 4:
    0   libsystem_kernel.dylib                  0x954467ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x9832ad1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib                 0x9832cbd9 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore          0x92661682 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore          0x926618a6 TSWaitOnConditionTimedRelative + 186
    5   com.apple.CoreServices.CarbonCore          0x9262dcf2 MPWaitOnQueue + 199
    6   AdobeACE                                0x01fc3737 ACEInitialize + 3741
    7   AdobeACE                                0x01fc36ad ACEInitialize + 3603
    8   com.apple.CoreServices.CarbonCore          0x9262e2ce PrivateMPEntryPoint + 68
    9   libsystem_pthread.dylib                 0x983285fb _pthread_body + 144
    10  libsystem_pthread.dylib                 0x98328485 _pthread_start + 130
    11  libsystem_pthread.dylib                 0x9832dcf2 thread_start + 34
    Thread 5:
    0   libsystem_kernel.dylib                  0x954467ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x9832ad1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib                 0x9832cbd9 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore          0x92661682 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore          0x926618a6 TSWaitOnConditionTimedRelative + 186
    5   com.apple.CoreServices.CarbonCore          0x9262dcf2 MPWaitOnQueue + 199
    6   AdobeACE                                0x01fc3737 ACEInitialize + 3741
    7   AdobeACE                                0x01fc36ad ACEInitialize + 3603
    8   com.apple.CoreServices.CarbonCore          0x9262e2ce PrivateMPEntryPoint + 68
    9   libsystem_pthread.dylib                 0x983285fb _pthread_body + 144
    10  libsystem_pthread.dylib                 0x98328485 _pthread_start + 130
    11  libsystem_pthread.dylib                 0x9832dcf2 thread_start + 34
    Thread 6:
    0   libsystem_kernel.dylib                  0x954467ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x9832ad1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib                 0x9832cbd9 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore          0x92661682 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore          0x926618a6 TSWaitOnConditionTimedRelative + 186
    5   com.apple.CoreServices.CarbonCore          0x9262dcf2 MPWaitOnQueue + 199
    6   AdobeACE                                0x01fc3737 ACEInitialize + 3741
    7   AdobeACE                                0x01fc36ad ACEInitialize + 3603
    8   com.apple.CoreServices.CarbonCore          0x9262e2ce PrivateMPEntryPoint + 68
    9   libsystem_pthread.dylib                 0x983285fb _pthread_body + 144
    10  libsystem_pthread.dylib                 0x98328485 _pthread_start + 130
    11  libsystem_pthread.dylib                 0x9832dcf2 thread_start + 34
    Thread 7:
    0   libsystem_kernel.dylib                  0x954467ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x9832ad1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib                 0x9832cbd9 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore          0x92661682 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore          0x926618a6 TSWaitOnConditionTimedRelative + 186
    5   com.apple.CoreServices.CarbonCore          0x9262dcf2 MPWaitOnQueue + 199
    6   AdobeACE                                0x01fc3737 ACEInitialize + 3741
    7   AdobeACE                                0x01fc36ad ACEInitialize + 3603
    8   com.apple.CoreServices.CarbonCore          0x9262e2ce PrivateMPEntryPoint + 68
    9   libsystem_pthread.dylib                 0x983285fb _pthread_body + 144
    10  libsystem_pthread.dylib                 0x98328485 _pthread_start + 130
    11  libsystem_pthread.dylib                 0x9832dcf2 thread_start + 34
    Thread 8:
    0   libsystem_kernel.dylib                  0x954467ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x9832ad1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib                 0x9832cbd9 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore          0x92661682 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore          0x926618a6 TSWaitOnConditionTimedRelative + 186
    5   com.apple.CoreServices.CarbonCore          0x9262dcf2 MPWaitOnQueue + 199
    6   AdobeACE                                0x01fc3737 ACEInitialize + 3741
    7   AdobeACE                                0x01fc36ad ACEInitialize + 3603
    8   com.apple.CoreServices.CarbonCore          0x9262e2ce PrivateMPEntryPoint + 68
    9   libsystem_pthread.dylib                 0x983285fb _pthread_body + 144
    10  libsystem_pthread.dylib                 0x98328485 _pthread_start + 130
    11  libsystem_pthread.dylib                 0x9832dcf2 thread_start + 34
    Thread 9:
    0   libsystem_kernel.dylib                  0x954467ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x9832ad1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib                 0x9832cbd9 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore          0x92661682 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore          0x926618a6 TSWaitOnConditionTimedRelative + 186
    5   com.apple.CoreServices.CarbonCore          0x9262dcf2 MPWaitOnQueue + 199
    6   AdobeACE                                0x01fc3737 ACEInitialize + 3741
    7   AdobeACE                                0x01fc36ad ACEInitialize + 3603
    8   com.apple.CoreServices.CarbonCore          0x9262e2ce PrivateMPEntryPoint + 68
    9   libsystem_pthread.dylib                 0x983285fb _pthread_body + 144
    10  libsystem_pthread.dylib                 0x98328485 _pthread_start + 130
    11  libsystem_pthread.dylib                 0x9832dcf2 thread_start + 34
    Thread 10:
    0   libsystem_kernel.dylib                  0x954467ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x9832ad1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib                 0x9832cbd9 pthread_cond_wait$UNIX2003 + 71
    3   AdobeAGM                                0x02110dac AGMInitialize + 33770
    4   AdobeAGM                                0x02110ce6 AGMInitialize + 33572
    5   AdobeAGM                                0x02110841 AGMInitialize + 32383
    6   libsystem_pthread.dylib                 0x983285fb _pthread_body + 144
    7   libsystem_pthread.dylib                 0x98328485 _pthread_start + 130
    8   libsystem_pthread.dylib                 0x9832dcf2 thread_start + 34
    Thread 11:
    0   libsystem_kernel.dylib                  0x954467ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x9832ad1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib                 0x9832cbd9 pthread_cond_wait$UNIX2003 + 71
    3   AdobeAGM                                0x02110dac AGMInitialize + 33770
    4   AdobeAGM                                0x02110ce6 AGMInitialize + 33572
    5   AdobeAGM                                0x02110841 AGMInitialize + 32383
    6   libsystem_pthread.dylib                 0x983285fb _pthread_body + 144
    7   libsystem_pthread.dylib                 0x98328485 _pthread_start + 130
    8   libsystem_pthread.dylib                 0x9832dcf2 thread_start + 34
    Thread 12:
    0   libsystem_kernel.dylib                  0x954467ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x9832ad1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib                 0x9832cbd9 pthread_cond_wait$UNIX2003 + 71
    3   AdobeAGM                                0x02110dac AGMInitialize + 33770
    4   AdobeAGM                                0x02110ce6 AGMInitialize + 33572
    5   AdobeAGM                                0x02110841 AGMInitialize + 32383
    6   libsystem_pthread.dylib                 0x983285fb _pthread_body + 144
    7   libsystem_pthread.dylib                 0x98328485 _pthread_start + 130
    8   libsystem_pthread.dylib                 0x9832dcf2 thread_start + 34
    Thread 13:
    0   libsystem_kernel.dylib                  0x95441f7a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x9544116c mach_msg + 68
    2   com.apple.CoreFoundation                0x987f9d29 __CFRunLoopServiceMachPort + 169
    3   com.apple.CoreFoundation                0x987f9301 __CFRunLoopRun + 1393
    4   com.apple.CoreFoundation                0x987f8b1a CFRunLoopRunSpecific + 394
    5   com.apple.CoreFoundation                0x987f897b CFRunLoopRunInMode + 123
    6   com.apple.AppKit                        0x9ae6fb68 _NSEventThread + 283
    7   libsystem_pthread.dylib                 0x983285fb _pthread_body + 144
    8   libsystem_pthread.dylib                 0x98328485 _pthread_start + 130
    9   libsystem_pthread.dylib                 0x9832dcf2 thread_start + 34
    Thread 14:
    0   libsystem_kernel.dylib                  0x95447976 kevent + 10
    1   com.adobe.Acrobat.framework             0x01365dca AcroSecurityBailOutImpl + 16240728
    2   com.adobe.Acrobat.framework             0x012ba3cf AcroSecurityBailOutImpl + 15537757
    3   libsystem_pthread.dylib                 0x983285fb _pthread_body + 144
    4   libsystem_pthread.dylib                 0x98328485 _pthread_start + 130
    5   libsystem_pthread.dylib                 0x9832dcf2 thread_start + 34
    Thread 15:
    0   libsystem_kernel.dylib                  0x954467ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x9832ad8a _pthread_cond_wait + 837
    2   libsystem_pthread.dylib                 0x9832cfa3 pthread_cond_wait + 48
    3   com.adobe.amt.services                  0x0e964f2c C_AMTUISwitchSuppressUpdates + 16864
    4   com.adobe.amt.services                  0x0e95de78 C_EULA_SetState + 2166
    5   com.adobe.amt.services                  0x0e964f92 C_AMTUISwitchSuppressUpdates + 16966
    6   libsystem_pthread.dylib                 0x983285fb _pthread_body + 144
    7   libsystem_pthread.dylib                 0x98328485 _pthread_start + 130
    8   libsystem_pthread.dylib                 0x9832dcf2 thread_start + 34
    Thread 16:
    0   libsystem_kernel.dylib                  0x95441f7a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x9544116c mach_msg + 68
    2   com.apple.CoreFoundation                0x987f9d29 __CFRunLoopServiceMachPort + 169
    3   com.apple.CoreFoundation                0x987f9301 __CFRunLoopRun + 1393
    4   com.apple.CoreFoundation                0x987f8b1a CFRunLoopRunSpecific + 394
    5   com.apple.CoreFoundation                0x987f897b CFRunLoopRunInMode + 123
    6   com.adobe.AcrobatPlugin.EFS             0x1246998f AcroPluginMain + 22457
    7   com.apple.Foundation                    0x97e23f0e -[NSThread main] + 45
    8   com.apple.Foundation                    0x97e23e66 __NSThread__main__ + 1426
    9   libsystem_pthread.dylib                 0x983285fb _pthread_body + 144
    10  libsystem_pthread.dylib                 0x98328485 _pthread_start + 130
    11  libsystem_pthread.dylib                 0x9832dcf2 thread_start + 34
    Thread 17:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x95441f7a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x9544116c mach_msg + 68
    2   com.apple.CoreFoundation                0x987f9d29 __CFRunLoopServiceMachPort + 169
    3   com.apple.CoreFoundation                0x987f9301 __CFRunLoopRun + 1393
    4   com.apple.CoreFoundation                0x987f8b1a CFRunLoopRunSpecific + 394
    5   com.apple.CoreFoundation                0x987f897b CFRunLoopRunInMode + 123
    6   com.apple.Foundation                    0x97e24095 +[NSURLConnection(Loader) _resourceLoadLoop:] + 381
    7   com.apple.Foundation                    0x97e23f0e -[NSThread main] + 45
    8   com.apple.Foundation                    0x97e23e66 __NSThread__main__ + 1426
    9   libsystem_pthread.dylib                 0x983285fb _pthread_body + 144
    10  libsystem_pthread.dylib                 0x98328485 _pthread_start + 130
    11  libsystem_pthread.dylib                 0x9832dcf2 thread_start + 34
    Thread 18:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x95446ace __select + 10
    1   com.apple.CoreFoundation                0x98849b86 __CFSocketManager + 1158
    2   libsystem_pthread.dylib                 0x983285fb _pthread_body + 144
    3   libsystem_pthread.dylib                 0x98328485 _pthread_start + 130
    4   libsystem_pthread.dylib                 0x9832dcf2 thread_start + 34
    Thread 19:
    0   libsystem_kernel.dylib                  0x95447046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x98329dcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib                 0x9832dcce start_wqthread + 30
    Thread 20:
    0   libsystem_kernel.dylib                  0x95447046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x98329dcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib                 0x9832dcce start_wqthread + 30
    Thread 21:
    0   libsystem_kernel.dylib                  0x95447046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x98329dcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib                 0x9832dcce start_wqthread + 30
    Thread 22:
    0   libsystem_kernel.dylib                  0x95447046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x98329dcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib                 0x9832dcce start_wqthread + 30
    Thread 23:
    0   libsystem_kernel.dylib                  0x95447046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x98329dcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib                 0x9832dcce start_wqthread + 30
    Thread 24:
    0   libsystem_kernel.dylib                  0x95447046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x98329dcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib                 0x9832dcce start_wqthread + 30
    Thread 25:
    0   libsystem_kernel.dylib                  0x95447046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x98329dcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib                 0x9832dcce start_wqthread + 30
    Thread 26:: com.apple.appkit-heartbeat
    0   libsystem_kernel.dylib                  0x95446b76 __semwait_signal + 10
    1   libsystem_c.dylib                       0x9154ffb7 nanosleep$UNIX2003 + 219
    2   libsystem_c.dylib                       0x9154fe62 usleep$UNIX2003 + 60
    3   com.apple.AppKit                        0x9af3aa4c -[NSUIHeartBeat _heartBeatThread:] + 2318
    4   com.apple.Foundation                    0x97e23f0e -[NSThread main] + 45
    5   com.apple.Foundation                    0x97e23e66 __NSThread__main__ + 1426
    6   libsystem_pthread.dylib                 0x983285fb _pthread_body + 144
    7   libsystem_pthread.dylib                 0x98328485 _pthread_start + 130
    8   libsystem_pthread.dylib                 0x9832dcf2 thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x000027e8  ebx: 0x72737263  ecx: 0x06222600  edx: 0x00000664
      edi: 0x45535052  esi: 0x00000000  ebp: 0xbfffc818  esp: 0xbfffc7bc
       ss: 0x00000023  efl: 0x00010246  eip: 0x0eee2f83   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0x000a27e8
    Logical CPU:     0
    Error Code:      0x00000007
    Trap Number:     14
    Binary Images:
        0x1000 -     0x1fff +com.adobe.Acrobat.Pro (10.1.9 - 10.1.9) <F4B5B9F0-99D4-C8E9-64AB-B388EDBFCE5B> /Applications/Adobe Acrobat X Pro/Adobe Acrobat Pro.app/Contents/MacOS/AdobeAcrobat
        0x6000 -  0x1d31fef +com.adobe.Acrobat.framework (10.1.9 - 10.1.9) <C7E58FAC-8D45-2741-ECAA-9854648A84BE> /Applications/Adobe Acrobat X Pro/Adobe Acrobat Pro.app/Contents/Frameworks/Acrobat.framework/Versions/A/Acrobat
    0x1fc1000 -  0x20e2fff +AdobeACE (1) <B885D217-C2F6-8496-12D0-FCA0E620635B> /Applications/Adobe Acrobat X Pro/Adobe Acrobat Pro.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
    0x2105000 -  0x26cafeb +AdobeAGM (1) <D32ACDB7-2362-47C0-8D55-DBE2F4D82433> /Applications/Adobe Acrobat X Pro/Adobe Acrobat Pro.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
    0x277d000 -  0x279aff7 +AdobeBIB (1) <7C894693-F5AC-A9BF-E72A-097BDF33C329> /Applications/Adobe Acrobat X Pro/Adobe Acrobat Pro.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
    0x27a1000 -  0x2ac6ff7 +com.adobe.CoolType (AdobeCoolType 5.08.124.1 - 5.08.124.1) <6426C28B-EF96-2C42-DCBD-20BA715F04EA> /Applications/Adobe Acrobat X Pro/Adobe Acrobat Pro.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
    0x5740000 -  0x5765ff9  com.apple.framework.familycontrols (4.1 - 410) <A33A97EE-C735-38BA-9B49-5D78DAA3DEDA> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
    0x577a000 -  0x5785ffa  com.apple.CommerceCore (1.0 - 42) <E59717F2-6770-3DBC-8510-F7AA61E60F57> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCor e.framework/Versions/A/CommerceCore
    0xad29000 -  0xaf21ff7 +com.adobe.Acrobat.adm (10.1.9 - 10.1.9) <E753ECED-3BB9-B731-B7DC-C91EA73A1FE5> /Applications/Adobe Acrobat X Pro/Adobe Acrobat Pro.app/Contents/Frameworks/SPPlugins/AdobeADM.bundle/Contents/MacOS/AdobeADM
    0xc2f1000 -  0xc366ff7 +AcroSQLite (1) <9B46E977-F455-0898-B80D-C41005832930> /Applications/Adobe Acrobat X Pro/Adobe Acrobat Pro.app/Contents/Frameworks/AcroSQLite.framework/Versions/A/AcroSQLite
    0xc500000 -  0xc70bfeb +com.adobe.AcrobatPlugin.EScript (10.1.9 - 10.1.9) <B3691CED-70BE-7E17-C167-1C3738F94FDE> /Applications/Adobe Acrobat X Pro/Adobe Acrobat Pro.app/Contents/Built-in/EScript.acroplugin/Contents/MacOS/EScript
    0xc77b000 -  0xc77bffd +cl_kernels (???) <2C4CC0C2-7D7A-4B01-8531-454ED936FB72> cl_kernels
    0xc79d000 -  0xc7d4ff7 +com.adobe.AcrobatPlugin.PaperCapture (10.1.9 - 10.1.9) <ED56E91B-6DC5-1089-3DF6-5D921782E00E> /Applications/Adobe Acrobat X Pro/Adobe Acrobat Pro.app/Contents/Built-in/PaperCapture.acroplugin/Contents/MacOS/PaperCapture
    0xc7dc000 -  0xc849ffb +com.adobe.amtlib (amtlib 3.5.0.34 - 3.5.0.34) <8C1EBC9E-DDFF-660B-03FB-196CE8A4CED8> /Applications/Adobe Acrobat X Pro/Adobe Acrobat Pro.app/Contents/Frameworks/amtlib.framework/amtlib
    0xc862000 -  0xc862ffb +cl_kernels (???) <52CDBCB9-6D41-43AD-B080-EA3D3AA36E93> cl_kernels
    0xc866000 -  0xc866ff3 +cl_kernels (???) <45D6068B-9FFC-4A68-BFD9-4D75BB8593B7> cl_kernels
    0xc868000 -  0xc86efff  org.twain.dsm (1.9.5 - 1.9.5) <3CE5B8E4-1F2D-3694-890D-B3965F244443> /System/Library/Frameworks/TWAIN.framework/Versions/A/TWAIN
    0xc876000 -  0xc87efff +com.adobe.asneu.framework (asneu version 1.7.0.1 - 1.7.0.1) <80195B5C-2C67-D841-232C-74FCAB79D304> /Applications/Adobe Acrobat X Pro/Adobe Acrobat Pro.app/Contents/Frameworks/asneu.framework/Versions/A/asneu
    0xc88e000 -  0xc8c7ffb +com.adobe.AcrobatPlugin.Updater (10.1.9 - 10.1.9) <A3E0A9CD-F644-A5EA-ABE0-4B0BA68383B7> /Applications/Adobe Acrobat X Pro/Adobe Acrobat Pro.app/Contents/Built-in/Updater.acroplugin/Contents/MacOS/Updater
    0xc8d1000 -  0xc92efff +AdobeXMP (0) <E3A59E8C-A514-8A4A-F965-E9C043C7AC96> /Applications/Adobe Acrobat X Pro/Adobe Acrobat Pro.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
    0xd731000 -  0xde95fe7 +com.adobe.AcrobatPlugin.Comments (10.1.9 - 10.1.9) <A373B65D-CCB0-44EF-93D0-35F2B6B59601> /Applications/Adobe Acrobat X Pro/Adobe Acrobat Pro.app/Contents/Built-in/Comments.acroplugin/Contents/MacOS/Comments
    0xe066000 -  0xe08efff +AdobeAXE8SharedExpat (0) <6DE8E2CA-91EC-77D7-E674-D336B7D09AF5> /Applications/Adobe Acrobat X Pro/Adobe Acrobat Pro.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8SharedExpa t
    0xe0b5000 -  0xe0b5fff +cl_kernels (???) <999BAEF2-5079-4021-AE94-38BED5BC1DBF> cl_kernels
    0xe0ba000 -  0xe0bbff1 +cl_kernels (???) <6EBF1E37-FF4C-45C7-8AF0-D2FD3A6456BE> cl_kernels
    0xe196000 -  0xe1a4ff1 +com.epson.scan.rx585_rx595_rx610 (3.2.8 - 3.2.8) /Library/Image Capture/TWAIN Data Sources/*/EPSON RX585_RX595_RX610
    0xe1ac000 -  0xe1b7fff  libGPUSupport.dylib (9.6) <E99B15B5-B173-329B-B8AA-B6BA5EE4D5EE> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/libGPUSupport .dylib
    0xe3eb000 -  0xe402fe7 +com.epson.scan.dscl (3.2.1 - 3.2.1) /Library/Image Capture/TWAIN Data Sources/*/DS Control.bundle/Contents/MacOS/DS Control
    0xe424000 -  0xe426fff +com.epson.scan.usb (1.1.6) <69BC3AE6-A7D2-E1AA-6C16-016DDC387B04> /Library/Image Capture/TWAIN Data Sources/*/EPSON USB Scanner.bundle/Contents/MacOS/EPSON USB Scanner
    0xe441000 -  0xe445ff9  libgermantok.dylib (14) <F6DEC1E3-5AAA-3BEB-9EF3-92608F4A094D> /usr/lib/libgermantok.dylib
    0xe45f000 -  0xe460ff5 +cl_kernels (???) <BC6378CA-16EF-4913-B4C6-3CA3D061475A> cl_kernels
    0xe462000 -  0xe46efe7 +com.epson.scan.DDC (1.1.0 - 1.1.0) /Library/Image Capture/TWAIN Data Sources/*/EsDDC.bundle/Contents/MacOS/EsDDC
    0xe474000 -  0xe488fe3 +com.epson.scan.ade (3.0.1 - 3.0.1) /Library/Image Capture/TWAIN Data Sources/*/ADE.bundle/Contents/MacOS/ADE
    0xe50a000 -  0xe57afeb +com.adobe.adobe_caps (adobe_caps 3.5.4.0 - 3.5.4.0) <36D53A2C-0DAB-34C6-48C7-49D2ECF52D0D> /Applications/Adobe Acrobat X Pro/Adobe Acrobat Pro.app/Contents/Frameworks/adobe_caps.framework/Versions/A/adobe_caps
    0xe60e000 -  0xe610ff5 +cl_kernels (???) <0F975414-F745-46C1-9E2C-8F7936504B06> cl_kernels
    0xe652000 -  0xe678ffb +AdobeBIBUtils (1) <B9888BEE-A939-50E3-1CD3-3313AC14A073> /Applications/Adobe Acrobat X Pro/Adobe Acrobat Pro.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
    0xe680000 -  0xe684fff  com.apple.AppleMPEG2Codec (1.0.2 - 220.1) <017135BD-3E54-30EC-9489-6ACADA56D51F> /Library/QuickTime/AppleMPEG2Codec.component/Contents/MacOS/AppleMPEG2Codec
    0xe940000 -  0xe9a7fe7 +com.adobe.amt.services (AMTServices 3.5.0.34 [BuildVersion: 3.5; BuildDate: Tue Sep 14 2010 21:49:00] - 3.5.0.34) <F56D7855-B0F7-4E7E-1997-D4FC2F5ACB2D> /Applications/Adobe Acrobat X Pro/Adobe Acrobat Pro.app/Contents/Frameworks/amtservices.framework/Versions/A/amtservices
    0xe9c3000 -  0xe9cdff7  com.apple.iokit.IOUSBLib (656.4.0 - 656.4.0) <37002B7E-8806-39EA-9CBD-F331F6005DF2> /System/Library/Extensions/IOUSBFamily.kext/Contents/PlugIns/IOUSBLib.bundle/Contents/Mac OS/IOUSBLib
    0xea38000 -  0xeb23ff7  unorm8_bgra.dylib (2.3.58) <2DC35A3D-E1D6-3378-953F-D5EADE3400D2> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/unorm8_bgra .dylib
    0xeb4f000 -  0xebc5fef +com.adobe.AcrobatPlugin.Scan (10.1.9 - 10.1.9) <9D4136D1-77BC-B8FB-CD36-ECC4C8E0077E> /Applications/Adobe Acrobat X Pro/Adobe Acrobat Pro.app/Contents/Built-in/Scan.acroplugin/Contents/MacOS/Scan
    0xed00000 -  0xeda8ff3 +com.adobe.AcrobatPlugin.PDDom (10.1.9 - 10.1.9) <B11DA30C-8D16-107F-5697-1764CBB69518> /Applications/Adobe Acrobat X Pro/Adobe Acrobat Pro.app/Contents/Built-in/PDDom.acroplugin/Contents/MacOS/PDDom
    0xeff0000 -  0xeff7ff8  com.apple.AppleGVAHW.component (1.2 - 1) <03305334-A3AE-3F51-A076-BBA13E0916F9> /System/Library/QuickTime/AppleGVAHW.component/Contents/MacOS/AppleGVAHW
    0x11b08000 - 0x11b85ff7 +com.irislink.iDRS14_5 (14.5 - 14.5.4.1) <A30459C2-B559-CF82-60DC-19FE9758BECB> /Applications/Adobe Acrobat X Pro/Adobe Acrobat Pro.app/Contents/Built-in/PaperCapture.acroplugin/Contents/Frameworks/OCRLibrary.framewor k/Versions/A/Frameworks/iDRS14_5.framework/Versions/A/iDRS14_5
    0x11cbc000 - 0x11cf6013 +com.epson.scan.twpmg (3.2.7 - 3.2.7) /Library/Image Capture/TWAIN Data Sources/*/TWAIN Protocol Manager.bundle/Contents/MacOS/TWAIN Protocol Manager
    0x11d1b000 - 0x11dc6fef +com.epson.scan.scncl (3.2.8 - 3.2.8) /Library/Image Capture/TWAIN Data Sources/*/Scan Control.bundle/Contents/MacOS/Scan Control
    0x11e69000 - 0x11ef3fff +com.epson.scan.dtr (4.2.8 - 4.2.8) /Library/Image Capture/TWAIN Data Sources/*/DTR.bundle/Contents/MacOS/DTR
    0x11f1a000 - 0x11f56ff3 +com.epson.scan.fit (3.8.0 - 3.8.0) /Library/Image Capture/TWAIN Data Sources/*/FIT.bundle/Contents/MacOS/FIT
    0x11f7e000 - 0x11fb6ff7  com.apple.QuickTimeFireWireDV.component (7.7.3 - 2826.17) <CEDCAC9B-679F-36E0-BAB9-6A387857710C> /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTimeFireWireD V
    0x11fc2000 - 0x11fdbff2  com.apple.applepixletvideo (1.2.31 - 1.2d31) <3691A649-1F8F-3C0A-89F4-5C2DD4E38EEC> /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/ApplePixletVideo
    0x12004000 - 0x120e0fd7  com.apple.AppleProResDecoder (3.0.4 - 6305.11) <50F80B48-00A2-37F0-BE25-CD0258A474BE> /System/Library/QuickTime/AppleProResDecoder.component/Contents/MacOS/AppleProResDecoder
    0x120eb000 - 0x1212fff7  com.apple.AppleVAH264HW.component (3.0 - 3.0) <593296F6-F8CD-33D4-AE26-88E46A71F14C> /System/Library/QuickTime/AppleVAH264HW.component/Contents/MacOS/AppleVAH264HW
    0x121f2000 - 0x122a7fff  com.apple.AppleGVAFramework (7.1.10 - 7.1.10) <7F8C0D33-0E54-3A6E-B677-A2A10B5E7D86> /System/Library/PrivateFrameworks/AppleGVA.framework/Versions/A/AppleGVA
    0x122b7000 - 0x122e9ff7  com.apple.AppleIntermediateCodec (2.0.2 - 6305.11) <397782CB-2454-37D5-A10C-B992A4E1D439> /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleIntermediateCodec
    0x122f1000 - 0x1232bfe7 +com.epson.scan.devcl (3.2.1 - 3.2.1) /Library/Image Capture/TWAIN Data Sources/*/Device Control.bundle/Contents/MacOS/Device Control
    0x12450000 - 0x1247bfe3 +com.adobe.AcrobatPlugin.EFS (10.1.9 - 10.1.9) <04983FD6-DB4C-FE86-A47D-1B1E781B8ECB> /Applications/Adobe Acrobat X Pro/Adobe Acrobat Pro.app/Contents/Built-in/EFS.acroplugin/Contents/MacOS/EFS
    0x12c65000 - 0x12c8ffff  com.apple.datadetectors (5.0 - 246.0) <E78157B5-C380-3C09-8439-54F5E89209C9> /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/DataDetectors
    0x12ca7000 - 0x12cc9fe7 +com.epson.scan.devif (3.2.4 - 3.2.4) /Library/Image Capture/TWAIN Data Sources/*/Device Interface.bundle/Contents/MacOS/Device Interface
    0x13942000 - 0x13b31ffd  com.apple.WebKit2 (9537 - 9537.74.9) <532DBB1D-9E22-3715-BD0D-8B0EE91C0CE1> /System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/WebKit2
    0x16dae000 - 0x16dc9ff5  com.apple.security.csparser (3.0 - 55471.14) <A93E850A-BE26-38F0-AD60-166A879A314A> /System/Library/Frameworks/Security.framework/PlugIns/csparser.bundle/Contents/MacOS/cspa rser
    0x40000000 - 0x400c9fe3 +AdobeJP2K (0) <6DF60871-843B-061C-EBB0-C819A12055E0> /Applications/Adobe Acrobat X Pro/Adobe Acrobat Pro.app/Contents/Frameworks/AdobeJP2K.framework/Versions/A/AdobeJP2K
    0x50000000 - 0x50294fff  com.apple.ATIRadeonX2000GLDriver (8.24.11 - 8.2.4) <DD844D57-413B-3103-994F-45737D659B74> /System/Library/Extensions/ATIRadeonX2000GLDriver.bundle/Contents/MacOS/ATIRadeonX2000GLD river
    0x8fe36000 - 0x8fe68417  dyld (239.4) <2E655535-479B-3E48-ADD3-6278819CA38A> /usr/lib/dyld
    0x90008000 - 0x9002dff7  com.apple.quartzfilters (1.8.0 - 1.7.0) <FCF52905-85B1-375C-B0AA-B8251B614D2D> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework /Versions/A/QuartzFilters
    0x9002e000 - 0x900f5ff7  com.apple.DiscRecording (8.0 - 8000.4.6) <84A7EC09-3BBD-3E04-A88C-6D3B724448FF> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x900f6000 - 0x900f9ffe  com.apple.LoginUICore (3.0 - 3.0) <6FE961A4-3C17-3004-B50B-FD78FDC28350> /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/Frameworks/LoginUICore. framework/Versions/A/LoginUICore
    0x900fa000 - 0x90103fff  com.apple.audio.SoundManager (4.1 - 4.1) <68B7CEB7-AF09-3E24-8548-6ABF065B5186> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.framework/V ersions/A/CarbonSound
    0x90104000 - 0x90157ff3  com.apple.CoreMediaIO (407.0 - 4561) <A756270D-CA9A-36CB-B698-3D9EEAB9C50E> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
    0x90158000 - 0x90158ffd  libOpenScriptingUtil.dylib (157) <4D06E8ED-D312-34EA-A448-DFF45ADC3CE5> /usr/lib/libOpenScriptingUtil.dylib
    0x90159000 - 0x9016cfff  com.apple.ImageCapture (9.0 - 9.0) <63D5C96F-1893-3F35-ADFB-EE451AFD87E6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/ Versions/A/ImageCapture
    0x9016d000 - 0x90172ff6  libcompiler_rt.dylib (35) <9924DF2E-D80B-3A21-920D-544A4597203F> /usr/lib/system/libcompiler_rt.dylib
    0x90173000 - 0x90176ffa  libCGXType.A.dylib (599.20.11) <8824B66A-D235-3163-808D-8B98F69304CD> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x90177000 - 0x901a6ff7  com.apple.framework.SystemAdministration (1.0 - 1.0) <1BD6205B-7C66-3B7B-AC8C-11BE34F7CF6B> /System/Library/PrivateFrameworks/SystemAdministration.framework/Versions/A/SystemAdminis tration
    0x901a7000 - 0x90337ff0  GLEngine (9.6) <6A58B9C0-B67E-3FD1-B707-837744D918C2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLEngine.bundle/GLEngine
    0x90338000 - 0x90339fff  libDiagnosticMessagesClient.dylib (100) <B936B1D4-90BB-395D-8EA9-E1237608E7D0> /usr/lib/libDiagnosticMessagesClient.dylib
    0x9033a000 - 0x90c94fe3  com.apple.QuickTimeComponents.component (7.7.3 - 2826.17) <AEF44853-2A48-3797-91AA-2510B523E052> /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTimeComponent s
    0x90c95000 - 0x90cb1fff  libCRFSuite.dylib (34) <FFF76EBA-DF35-3A5F-857F-3F4B1C9F4C77> /usr/lib/libCRFSuite.dylib
    0x90cb2000 - 0x90cf4fff  libGLU.dylib (9.6) <6A7E248D-3936-3B0D-9BF2-E4F0D2FE5306> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x90cf5000 - 0x90cfdfff  libsystem_dnssd.dylib (522.90.2) <A73663C9-CE65-3FF3-B41B-686728BBFB00> /usr/lib/system/libsystem_dnssd.dylib
    0x90cfe000 - 0x90e7cff8  libGLProgrammability.dylib (9.6) <95E86FA5-8620-38C5-B3CB-885F32569634> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dyl ib
    0x90e7d000 - 0x90e96fff  com.apple.Kerberos (3.0 - 1) <91F17EB2-C70C-359C-B09D-96B52D2A9C9F> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x90e97000 - 0x90ef8ff7  com.apple.Symbolication (1.4 - 129) <E5948C08-6ADF-3D86-9134-6AE49CF1DA0F> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
    0x90ef9000 - 0x90f2affa  libsystem_m.dylib (3047.16) <28E614E8-7802-3E84-960A-AD4721EF10F7> /usr/lib/system/libsystem_m.dylib
    0x90f2b000 - 0x90f4fff3  libc++abi.dylib (49.1) <43A04ACF-97A5-35ED-B454-6B5C0CF0F99D> /usr/lib/libc++abi.dylib
    0x90f50000 - 0x911b4ff7  com.apple.CoreData (107 - 481.01) <85EE4DFF-3A61-3D3B-A818-524F0A427A4D> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x911b5000 - 0x911bcff7  com.apple.XPCService (2.0 - 1) <94783930-9E46-394F-B1B2-9CA57CBA2D25> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService
    0x911bd000 - 0x91203ff7  libFontRegistry.dylib (127) <A0930DB2-A6C6-3C6E-B4A2-119E0D76FD7D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontRegistry.dylib
    0x91204000 - 0x912affff  libcrypto.0.9.7.dylib (106) <DA3D5F8E-5822-3D41-BC1C-FFE1CC9BB42B> /usr/lib/libcrypto.0.9.7.dylib
    0x912b0000 - 0x912c0ff5  com.apple.LangAnalysis (1.7.0 - 1.7.0) <71DE7754-0A47-3F35-B1BF-B1FE7E1311E0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalys is.framework/Versions/A/LangAnalysis
    0x912c1000 - 0x91487ffb  libicucore.A.dylib (511.31) <9C25D145-E785-357B-9833-1980A1A738C9> /usr/lib/libicucore.A.dylib
    0x91488000 - 0x914a3ff5  com.apple.openscripting (1.4 - 157) <5C161A52-8D2F-3D56-A988-05727BED7A59> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework /Versions/A/OpenScripting
    0x914a4000 - 0x914d3ff1  com.apple.frameworks.CoreDaemon (1.3 - 1.3) <2215559E-C517-3122-906F-156FD3CC10AD> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
    0x914d4000 - 0x91566ff9  libsystem_c.dylib (997.90.3) <80D21D3D-1031-314C-B1F0-0B35B977CEFB> /usr/lib/system/libsystem_c.dylib
    0x91567000 - 0x91568fff  com.apple.AddressBook.ContactsData (8.0 - 1369) <F973C097-C9A2-3B8D-A33A-A87E4A41E56B> /System/Library/PrivateFrameworks/ContactsData.framework/Versions/A/ContactsData
    0x91569000 - 0x91569fff  com.apple.Cocoa (6.8 - 20) <407DC9E6-BBCE-3D34-9BBB-00C90584FFDF> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x9156a000 - 0x9157fff3  com.apple.AppContainer (3.0 - 1) <017FED4F-AD6E-3A56-806B-A2D33E69EFF9> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContainer
    0x91580000 - 0x91a27fe7  com.apple.CoreAUC (6.22.08 - 6.22.08) <3F9E2986-8FF9-3339-A0C8-DC1186C4A5EC> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x91a28000 - 0x91a31fff  com.apple.speech.recognition.framework (4.2.4 - 4.2.4) <CF8E5706-F744-3139-8A51-D52BF055D19F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.frame work/Versions/A/SpeechRecognition
    0x91a32000 - 0x91a6fffb  libGLImage.dylib (9.6) <EAC640A8-CD71-3AB2-9918-21CACCBCCB0D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
    0x91a70000 - 0x91a7eff3  com.apple.opengl (9.6.0 - 9.6.0) <63941A8D-AACC-3C71-BE8C-4DAA913A1439> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x91a7f000 - 0x91b87ff7  com.apple.QuickTimeImporters.component (7.7.3 - 2826.17) <9B883A02-F284-3331-B4C0-CB1EF043BB06> /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTimeImporters
    0x91b88000 - 0x91b97fff  libGL.dylib (9.6) <58C42A46-27D0-3228-B3C1-EC3923D49BAD> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x91b98000 - 0x91ba1fff  com.apple.DiskArbitration (2.6 - 2.6) <92F7575A-AA20-34D9-BB26-2CC8C3CCAFEB> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x91ba2000 - 0x91c70ff7  com.apple.backup.framework (1.5.2 - 1.5.2) <BE2F37D3-F610-30EE-B106-44B5DAE35603> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x91c71000 - 0x91d1dffb  libvMisc.dylib (423.32) <43873EFF-FB43-3301-BEE8-F2C3A046D7A6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvMisc.dylib
    0x91d1e000 - 0x91d20ffb  libRadiance.dylib (1042) <22E517A8-4725-3175-B5D1-5573FBE780B3> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91d21000 - 0x91d37ff9  com.apple.aps.framework (4.0 - 4.0) <F716BD85-21B6-3D84-BEA2-8BC617E1D08C> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePushService
    0x91d38000 - 0x91e36fff  libJP2.dylib (1042) <795B3209-2382-3F31-AEF7-588E4BCAAF06> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91e37000 - 0x91e61fff  libxslt.1.dylib (13) <249D54AB-1D82-38FE-ABEC-0D575450C73B> /usr/lib/libxslt.1.dylib
    0x91e62000 - 0x91ef3fff  com.apple.ColorSync (4.9.0 - 4.9.0) <8366AE10-0396-3100-B87A-A176E8ECE7B6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/ColorSync
    0x91ef4000 - 0x91f26ff7  libTrueTypeScaler.dylib (111.1) <A568EE4C-1588-3F8B-8640-F02CEFC5AF09> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libTrueTypeScaler.dylib
    0x91f27000 - 0x91f66ff5  com.apple.ids (10.0 - 1000) <D28CFCBA-F7C4-3456-92E4-0B1ABA86BB87> /System/Library/PrivateFrameworks/IDS.framework/Versions/A/IDS
    0x91f67000 - 0x921d0fff  com.apple.AddressBook.framework (8.0 - 1369) <B47D95FD-FCD4-3BB3-B688-5597E67B5247> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x921d1000 - 0x921edff9  com.apple.Ubiquity (1.3 - 289) <1CEDC83D-7282-3B4D-8CF7-4FE045012391> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
    0x921ee000 - 0x92206fff  com.apple.CFOpenDirectory (10.9 - 173.90.1) <13B70F7C-9A4D-3CCA-AEB8-3958F5B6167E> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory. framework/Versions/A/CFOpenDirectory
    0x92207000 - 0x92253ff7  libcups.2.dylib (372.2) <ED7CEA7C-9FD7-34E0-B960-268BD6AFA056> /usr/lib/libcups.2.dylib
    0x92277000 - 0x9227aff7  libdyld.dylib (239.4) <F4604F64-945B-3871-8F26-E9C55488BC27> /usr/lib/system/libdyld.dylib
    0x9227b000 - 0x922cefff  com.apple.htmlrendering (77 - 1.1.4) <408FA30F-4FE9-3162-9FFD-677E8569C1EA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering.framework /Versions/A/HTMLRendering
    0x922cf000 - 0x922ffff3  libtidy.A.dylib (15.12) <3DBE95FE-8FA7-3584-9202-E37B54B3B064> /usr/lib/libtidy.A.dylib
    0x92300000 - 0x9235efff  com.apple.ViewBridge (1.0 - 46.2) <64AC1689-5F60-3E16-AE62-A2259E0D57EC> /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge
    0x9235f000 - 0x9236affb  libcommonCrypto.dylib (60049) <F8E60C43-22EE-3E0B-9546-3365056901F1> /usr/lib/system/libcommonCrypto.dylib
    0x9236b000 - 0x923bcffb  com.apple.CoreMedia (1.0 - 1273.49) <26F891C5-DF9F-3A2C-995A-827595F03CF2> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x923bd000 - 0x92454ff7  com.apple.ink.framework (10.9 - 207) <EF00BCCB-B270-3F3D-9424-EF5F4BC23E25> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/ A/Ink
    0x92455000 - 0x924aaff7  com.apple.framework.internetaccounts (2.1 - 210) <3E555C08-C8FA-3175-8C3F-E49F6F5238A6> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/InternetAccounts
    0x924ab000 - 0x924b7ff7  com.apple.OpenDirectory (10.9 - 173.90.1) <B7440CD7-04F8-3558-B5AA-FD48381B14DE> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x924b8000 - 0x924e3ff7  libsystem_network.dylib (241.3) <71EBA489-386D-3608-ADE6-CB50EBD1AB1B> /usr/lib/system/libsystem_network.dylib
    0x924e4000 - 0x92504fff  com.apple.facetimeservices (10.0 - 1000) <D3A59518-0F74-3B3F-8BFE-447D75E9F3F1> /System/Library/PrivateFrameworks/FTServices.framework/Versions/A/FTServices
    0x92505000 - 0x925a1fff  com.apple.QD (3.50 - 298) <F73FD4D4-17A4-37D6-AC06-7CA5A8BA1212> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framewo rk/Versions/A/QD
    0x925a2000 - 0x928a3ffb  com.apple.CoreServices.CarbonCore (1077.17 - 1077.17) <02C72D54-E3D3-32B0-A081-E85A7038489D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore
    0x928a4000 - 0x928ccfff  libsystem_info.dylib (449.1.3) <BB68E8CC-422F-3121-8C86-D0F766FB696D> /usr/lib/system/libsystem_info.dylib
    0x928cd000 - 0x929daff7  com.apple.ImageIO.framework (3.3.0 - 1042) <677F8044-E8B4-34A8-B7D9-575D7CEA019E> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x929db000 - 0x92a1bff7  com.apple.bom (14.0 - 193.1) <FFF1C8E5-41FF-357B-8681-69B21DCED2E4> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x92a1c000 - 0x92a1dffd  libunc.dylib (28) <22A126A1-DCFB-3BE5-A66B-C973F0A5D839> /usr/lib/system/libunc.dylib
    0x92a1e000 - 0x92a73ff3  com.apple.ImageCaptureCore (5.0 - 5.0) <69A007AE-4654-3C79-9AF6-5EC8F173F225> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore
    0x92a74000 - 0x92a7bff2  com.apple.NetFS (6.0 - 4.0) <915AA303-C02B-3B0C-8208-D8AAA4350DB4> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x92a7c000 - 0x92a7fffb  libutil.dylib (34) <B496031E-E763-3DEB-84D2-85C0F3DF2012> /usr/lib/libutil.dylib
    0x92a80000 - 0x92b2bff5  com.apple.imcore (10.0 - 1000) <000D6E8B-1067-3FE1-8524-18A8710C572E> /System/Library/PrivateFrameworks/IMCore.framework/Versions/A/IMCore
    0x92b2c000 - 0x92f51fe3  com.apple.VideoToolbox (1.0 - 1273.49) <A581EEA0-25DF-386C-904D-26E51C3ED640> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0x92f52000 - 0x92f7bff5  com.apple.shortcut (2.6 - 2.6) <F9F32E6F-E641-36D0-B648-058D5E146D38> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x92f7c000 - 0x92f7dfff  libSystem.B.dylib (1197.1.1) <C58F0CC9-C1FD-3024-9358-D3359A6BBCAD> /usr/lib/libSystem.B.dylib
    0x92f7e000 - 0x92f7efff  com.apple.Carbon (154 - 157) <6E680560-FD53-3C00-BDF7-7AFA28747DC8> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92f7f000 - 0x92fceff1  com.apple.HIServices (1.22 - 467.2) <F47161AA-E19F-3357-862F-5B4C8DA97975> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices .framework/Versions/A

    hi
    as u r posts the second Page is not getting triggered.. because when you put abreak point in the PAGE2 it shoud stop there.
    Now i have created 2 PAGEs for the PAGE1 next page is PAGE1 only , and  iam printing some data in PAGE1, in the PAGE2 i have created a window to print some static text.
    now i have created a COMMAND node in PAGE1 to call the PAGE2 explicitily(by chcking the GOTo NEW PAGE option -->PAGE2.
    it is working fine.
    u r also doing in this same way or someother?...
    where exactly u r using the COMMAND NODE... i thiknk it is not triggering.
    wht is next page for u r PAGE1,
    in ur command node have u given goto newpage-->PAGE2 ..
    chck onca again.

Maybe you are looking for