Calling Graphics from Form the App Crashes

I have a problem when I call Graphics from a Form.
The Graphics file builds dynamically many boxes.
The Form file has a Chart Item with this graphics file (calling it in batch mode.
I have noticed that sometimes, when I click on the chart or when the form builds the graphic the app quits or crashes. (When I run the graphic file alone from Graphics Builder there is no problem)
Has anyone seen this? Any idea? Is it a problem with the memory? Maybe a memory limitation when a form calls a graphics file???
Thank you.

I have a similar problem, and don't know why, sometimes if I close the graphics runtime there's no problem

Similar Messages

  • When I connect to the iTunes store from my ipad 1 and go to either films or tv the app crashes. If i try to search for a tv programme the app crashes. I am using latest iOS

    When I use the iTunes app to connect to the store, the app crashes when I try to search for a tv programme or film. I can buy stuff that is advertised but searching causes a crash. The same has happened with today's 12 days of Christmas. When i try to download House, the app crashes. Same with day 1, Coldplay, app crashed, missed the offer.

    Thanks for your help. A simple power off/on worked and cured the problem. I'm so used to the iPad being on all the time I forgot the basics.

  • Calling report from form. Need PDF output

    I am calling a report from a form using RUN_PRODUCT. I need to display the form in PDF format. When the user clicks the button in the form to run the report, acrobat reader should open up and the report displayed there. Please help.
    Thanks

    Thanks for the response. The first part worked. I am able to get the output in PDF format. In the 2nd part where I want to open acrobat and display the output, I am having some trouble with the code. When I compile, it says
    win_api_environment.read_registry must be declared. Is there some package I need to attach?
    Also, in the After reports trigger, how do I pass vFile (I am assuming this is the PDF file name)?
    Thanks
    The first thing you'll want to do is pass parameters to the report IE DESTYPE, DESNAME and DESFORMAT where these could be FILE, 'c:\temp\report' and PDF.
    Then, you can try this piece of code I wrote (with some help from other people at Metalink and here) sometime back. Now, I call it from forms, but in your case, you'd have to run it in the after report trigger. Since with RUN_PRODUCT you don't know when the report is finished, if you did it from the form, it wouldn't work correctly.
    PROCEDURE OPEN_PDF(vFile IN VARCHAR2)
    IS
    vcServerApp varchar2(40);
    vcServerTag varchar2(600);
    vcCommand varchar2(2000);
    iArgPos pls_integer;
    dummy NUMBER;
    BEGIN
    -- 1 get the Server App for .PDF files
    vcServerApp := win_api_environment.read_registry('HKEY_LOCAL_MACHINE\SOFTWARE\CLASSES\.PDF','',true);
    -- 2 get the executable
    vcServerTag := 'HKEY_LOCAL_MACHINE\SOFTWARE\CLASSES\'||
    vcServerApp||'\SHELL\OPEN\COMMAND';
    vcCommand:= win_api_environment.read_registry(vcServerTag,'',true);
    -- 3 Sort out how to specify the Filename
    iArgPos:= instr(vcCommand,'%1');
    if iArgPos = 0 then --no substitution Var on the command line
    vcCommand := vcCommand||' '||vFile;
    else
    vcCommand := substr(vcCommand,1,(iArgPos-1))||
    vFile||substr(vcCommand,(iArgPos+2));
    end if;
    -- 4 Run using Winexec (or Host if preferred).
    win_api_shell.winexec(vcCommand);
    EXCEPTION
    when no_data_found then
    abortt('Acrobat Reader was not found! Please consult with your help desk to install it and try again.','N');
    END;
    Chad
    I am calling a report from a form using RUN_PRODUCT. I need to display the form in PDF format. When the user clicks the button in the form to run the report, acrobat reader should open up and the report displayed there. Please help.
    Thanks

  • How to refresh or close graphics from forms

    I call two graphics from forms, through pl/sql. There are
    parameters in the forms to tune the graphics. But trying to
    refresh the graphics results in access violation and the
    graphics becomes a 'zombie'. Why is it possible ? How to avoid
    it ?
    null

    Hi,
    I am a newbie in taskflow development world.
    Having gone through the above answer, I am not sure on how it fits in my problem domain. I created a taskflow with few iinput parameter to it. Actually it's a polling application that displays a poll on the basis of poll id provided by user through taskflow input parameter. A new requirement came up to show a list of polls and user may click on a poll from the list and that poll should get displayed.
    I have done the showing list of poll part, but when user clicks on a particular poll, even though I am setting the poll ID of the selected poll to the appropriate parameter, it's not being taken. While doing some R&D on this, I found there are two attributes called Refresh and RefreshCondition for taskflow refreshing. Initially the value of Refresh was set to 'always' which I modified to 'ifNeeded' and 'deferred', one at a time and it did not work. I have also tried binding a boolean variable to 'RefreshCondition' attribute, but while debugging, I have found, that the boolean variable is read only once while the taskflow is getting initiated, no matter what the value of 'Refresh' is.
    I did not get much time to explore the meaning and applicability of 'Refresh' and 'RefreshCondition' attributes, but have a feeling that these are the ones that I have to tweak a little to get my work done. Can someone please help me on this?
    Thank you,
    Kanchan Upadhyay

  • Calling Report From Form To Many Destinations

    Hi
    I am calling reports from forms using SET_REPORT_OBJECT_PROPERTY and then run_report_object.
    I dont know the destination until runtime of the report which is ok as I can pass this in via my procedure, but if that destination is many ie mail and file what is the best way to distribute the report?
    I could call my procedure for each destination but that seems a bit unefficient since the report would be created many times, is there another way?

    what about adding a drop-down-list near your report-button where you can choose the destination?
    when you click the report-button you simply read the value selected in the drop-down-list and send it to your reports-server too.

  • Calling Report from Form Error ORA-06508

    Dear all,
    I want migrate from Fom6i to Oracle Developer Suite 10g (10.1).
    Folder Form = C:\APLIORA\IRS\FORM
    Folder Report = C:\APLIORA\IRS\REPORT
    I have modified file DEFAULT.ENV
    FORMS_PATH=C:\APLIORA\IRS\FORM;C:\APLIORA\IRS\REPORT
    i do not have problem call a form from form.
    but when i call report from form show error ORA-06508 : PL/SQL : could not find program unit being called ; -6508
    my procedure is
    PROCEDURE Call_Report IS
         list_id ParamList;
    BEGIN
    list_id := Get_Parameter_List('input_params');
    IF NOT Id_Null(list_id) THEN
    Destroy_Parameter_List(list_id);
    END IF;
    list_id := Create_Parameter_List('input_params');
    Add_Parameter(list_id,'MAXIMIZE',TEXT_PARAMETER,'YES');
    Add_Parameter(list_id,'ORACLE_SHUTDOWN',TEXT_PARAMETER,'YES');
    RP2RRO.RP2RRO_RUN_PRODUCT(REPORTS,'TESTREPORT.REP',SYNCHRONOUS,RUNTIME,FILESYSTEM,list_id,null);
    END ;
    Do I miss something ?
    Can any one help ?
    Thanks

    Hi,
    Thank you for your replay.
    The problem have solved.
    This my step :
    1. Install Windows XP SP2 and Form 10.1.2.0.2 on new pc.
    2. Install Jinit version 1.3.1.28.
    3. Create report server
    3. Compile form, report and pll
    4. call report from from with this procedure :
    PROCEDURE Call_Report (vFILENAME varchar2) IS
    report_id                Report_Object;
    ReportServerJob VARCHAR2(100);
    vc_rep_status      VARCHAR2(100);
    repsvr                          varchar2(21) := 'myserv';
    userid                         VARCHAR2(100);
    pass                          VARCHAR2(100);
    Host                    VARCHAR2(100);
    BEGIN
    userid          := Get_Application_Property(USERNAME) ;
    pass          := Get_Application_Property(PASSWORD) ;
    Host          := Get_Application_Property(CONNECT_STRING) ;
    report_id:= find_report_object('REPORT');
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_FILENAME,vFILENAME||'.jsp');
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_COMM_MODE,SYNCHRONOUS);
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_SERVER,repsvr);
    ReportServerJob:=run_report_object(report_id);
    vc_rep_status := REPORT_OBJECT_STATUS(ReportServerJob);
    WHILE vc_rep_status in ('RUNNING','OPENING_REPORT','ENQUEUED', null)
    LOOP
    vc_rep_status:=REPORT_OBJECT_STATUS(ReportServerJob);
    END LOOP;
    IF vc_rep_status='FINISHED' THEN
    WEB.SHOW_DOCUMENT('/reports/rwservlet?report='||vFILENAME||'.jsp'||'&userid='||userid||'/'||pass||'@'||Host||'&destype=CACHE&desformat=PDF&paramform=yes','_blank');
    ELSE
    message ('Report failed with error message '|| vc_rep_status);
    END IF;
    END;
    Ok, but i have another strange error. I will post new thread.
    Thank you and regards
    Teguh S

  • REP 110 & REP 0110 .calling reports from Form 10g(10.1.2.0.2)

    Hi All,
    We are migrating form from Oracle form 6i to Oracle 10g(10.1.2.0.2). I am calling reports from forms
    using Web.Show_Docment(). When we run reports in report builder 10g it works fine.
    But when we try to run reports from Forms 10g it throws error which is given below.
    We want to run reports from UNIX. After using this url to submit report we get error REP 110 and REP 0110
    URL
    http://GEM:7777/reports/rwservlet?server=rep_server&report=/u01/forms/QA_Forms10g/GEMREP.rdf+DESTYPE=CACHE+DESFORMAT=HTML+p_user_id=XYZ+p_client=2
    ERROR
    REP-110: File '/u01/forms/QA_Forms10g/GEMREP.rdf DESTYPE=CACHE DESFORMAT=HTML p_user_id=XYZ p_client=2' not found.
    REP-0110: Unable to open file '/u01/forms/QA_Forms10g/GEMREP.rdf DESTYPE=CACHE DESFORMAT=HTML p_user_id=XYZ p_client=2'.
    I will really appreciate your help.
    Thanks
    Sandy

    Hello,
    You are mixing 2 separators in the URL : & and +
    Use only one separator in the URL :
    Example :
    http://GEM:7777/reports/rwservlet?server=rep_server+report=/u01/forms/QA_Forms10g/GEMREP.rdf+DESTYPE=CACHE+DESFORMAT=HTML+p_user_id=XYZ+p_client=2
    Regards

  • Calling JSP from Forms and going back from JSP to Forms

    Hi,
    We are calling JSP from Forms 6i using show_document
    I'd like to go back to tha calling Form from the JSP.
    How can I construct the URL that would lead me back to the same Form and Forms session where the JSP was called from?
    Thanks,
    Arpad

    Thanks Shay,
    works for me too...
    Now:
    when I use the "Back" button of my IE to go back from JSP to the Forms session, it works for Jinitiator 1.1.8.19, but if I use Jinitiator 1.3 I got hung...
    Any ideas how could I make it work from Jinit 1.3?
    Thanks again/
    Regards,
    Arpad

  • Graphics from Forms or Reports

    When I am running graphics from forms or reports either using the chart wizard or by run_product built-in, I am getting error message OG-01603: UNABLE TO CREATE PL/SQL DEVELOPMENT ENVIRONMENT CONTEXT
    I am using Developer 6i.
    Please help me out.
    Thanks
    Zulqarnain

    I have tested on my pc it is perfectly working.
    Please check before installations..
    Is there any other oracle product is running in the same machine?
    1. Are you installing Dev 6i in a machine where Oracle database(8.0 or 8i) is installed?
    2.First shutdown the database. Stop the oracle services running.
    3. Then start installing Dev 6i in a different oracle home.

  • After installing Yosemite Whenever I go to print in Photoshop 2014 or Word 14.4.7  or Quicken 2007  V 16.2.0 the apps crash. In word and Quicken even if I just ask it to save as a PDF I get a crash. In Photoshop if I save the file first it prints wit

    After installing Yosemite Whenever I go to print in Photoshop 2014 or Word 14.4.7  or Quicken 2007  V 16.2.0 the apps crash. In word and Quicken even if I just ask it to save as a PDF I get a crash. In Photoshop if I save the file first it prints without a crash.

    The dialog box that comes up says PhotoShop has unexpectdly quit and do I want to reopen it.
    Here is the user diagnostic report followed by the System diagnostic report from the console. Almost as long as War and Peace.
    Process:               Adobe Photoshop CC 2014 [353]
    Path:                  /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/MacOS/Adobe Photoshop CC 2014
    Identifier:            com.adobe.Photoshop
    Version:               15.2.1 (15.2.1.257)
    Code Type:             X86-64 (Native)
    Parent Process:        ??? [1]
    Responsible:           Adobe Photoshop CC 2014 [353]
    User ID:               501
    Date/Time:             2014-12-05 18:23:37.501 -0500
    OS Version:            Mac OS X 10.10.1 (14B25)
    Report Version:        11
    Anonymous UUID:        B7945FDF-5F32-B8AF-E84D-5D687EAE96ED
    Time Awake Since Boot: 34000 seconds
    Crashed Thread:        0  Dispatch queue: com.apple.main-thread
    Exception Type:        EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes:       KERN_INVALID_ADDRESS at 0x00000001179ae8bb
    VM Regions Near 0x1179ae8bb:
        VM_ALLOCATE            000000011799c000-00000001179ad000 [   68K] rw-/rw- SM=SHM 
    -->
        mapped file            00000001179f2000-0000000117a0d000 [  108K] r--/rwx SM=COW  /Library/Fonts/Baghdad.ttc
    Application Specific Information:
    Performing @selector(doPrint:) from sender NSButton 0x7fecc911c990
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   ???                           0x00000001179ae8bb 0 + 4690995387
    1   libobjc.A.dylib               0x00007fff8f21368c objc_object::sidetable_release(bool) + 236
    2   com.kodak.aioprinter.printeroptions 0x000000011776b655 -[CSPDEPanel_Pl_1301171400 dealloc] + 101
    3   libobjc.A.dylib               0x00007fff8f21368c objc_object::sidetable_release(bool) + 236
    4   com.apple.print.framework.Print.Private 0x00000001178fafe3 0x1178f9000 + 8163
    5   libobjc.A.dylib               0x00007fff8f21368c objc_object::sidetable_release(bool) + 236
    6   com.apple.AppKit               0x00007fff957cbbcf -[NSMenuItem dealloc] + 239
    7   libobjc.A.dylib               0x00007fff8f21368c objc_object::sidetable_release(bool) + 236
    8   com.apple.AppKit               0x00007fff95a2f704 -[NSPopUpButtonCell removeAllItems] + 59
    9   com.apple.print.framework.Print.Private 0x0000000117904470 0x1178f9000 + 46192
    10  com.apple.print.framework.Print.Private 0x0000000117915c91 0x1178f9000 + 117905
    11  com.apple.print.framework.Print.Private 0x00000001179153ca 0x1178f9000 + 115658
    12  libsystem_trace.dylib         0x00007fff8af24cd7 _os_activity_initiate + 75
    13  com.apple.AppKit               0x00007fff95991497 -[NSApplication sendAction:to:from:] + 410
    14  com.adobe.Photoshop           0x0000000109ad0ef0 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 21470688
    15  com.apple.AppKit               0x00007fff959912c0 -[NSControl sendAction:to:] + 86
    16  com.apple.AppKit               0x00007fff95b65c5f __26-[NSCell _sendActionFrom:]_block_invoke + 131
    17  libsystem_trace.dylib         0x00007fff8af24cd7 _os_activity_initiate + 75
    18  com.apple.AppKit               0x00007fff959d9ddc -[NSCell _sendActionFrom:] + 144
    19  com.apple.AppKit               0x00007fff95b4c962 -[NSButtonCell _sendActionFrom:] + 39
    20  libsystem_trace.dylib         0x00007fff8af24cd7 _os_activity_initiate + 75
    21  com.apple.AppKit               0x00007fff959d963e -[NSButtonCell performClick:] + 1027
    22  com.apple.AppKit               0x00007fff95b470a9 __33-[NSButton performKeyEquivalent:]_block_invoke + 96
    23  libsystem_trace.dylib         0x00007fff8af24cd7 _os_activity_initiate + 75
    24  com.apple.AppKit               0x00007fff959a6e03 -[NSButton performKeyEquivalent:] + 369
    25  com.apple.AppKit               0x00007fff959a6a8b -[NSView _performKeyEquivalent:conditionally:] + 189
    26  com.apple.AppKit               0x00007fff959a6c6c -[NSControl _performKeyEquivalent:conditionally:] + 126
    27  com.apple.AppKit               0x00007fff959a6b3f -[NSView performKeyEquivalent:] + 150
    28  com.apple.AppKit               0x00007fff959a6a8b -[NSView _performKeyEquivalent:conditionally:] + 189
    29  com.apple.AppKit               0x00007fff959a6b3f -[NSView performKeyEquivalent:] + 150
    30  com.apple.AppKit               0x00007fff959a6a8b -[NSView _performKeyEquivalent:conditionally:] + 189
    31  com.apple.AppKit               0x00007fff959a6959 -[NSWindow performKeyEquivalent:] + 61
    32  com.apple.AppKit               0x00007fff959d7516 -[NSTextField textDidEndEditing:] + 900
    33  com.apple.CoreFoundation       0x00007fff8b69ecbc __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 12
    34  com.apple.CoreFoundation       0x00007fff8b5901b4 _CFXNotificationPost + 3140
    35  com.apple.Foundation           0x00007fff88838ea1 -[NSNotificationCenter postNotificationName:object:userInfo:] + 66
    36  com.apple.AppKit               0x00007fff959d52e5 -[NSTextView(NSPrivate) _giveUpFirstResponder:] + 423
    37  com.apple.AppKit               0x00007fff95a23652 -[NSTextView(NSKeyBindingCommands) insertNewline:] + 239
    38  com.apple.AppKit               0x00007fff959d3f84 -[NSTextView doCommandBySelector:] + 195
    39  com.apple.AppKit               0x00007fff95fe9c51 -[NSTextInputContext(NSInputContext_WithCompletion) doCommandBySelector:completionHandler:] + 118
    40  com.apple.AppKit               0x00007fff959a95b0 -[NSKeyBindingManager(NSKeyBindingManager_MultiClients) interpretEventAsCommand:forClient:] + 1899
    41  com.apple.AppKit               0x00007fff95fe8682 __61-[NSTextInputContext _handleEvent:options:completionHandler:]_block_invoke968 + 335
    42  com.apple.AppKit               0x00007fff95fea0bf -[NSTextInputContext(NSInputContext_WithCompletion) hasMarkedTextWithCompletionHandler:] + 76
    43  com.apple.AppKit               0x00007fff95fe84a3 __61-[NSTextInputContext _handleEvent:options:completionHandler:]_block_invoke_3 + 95
    44  com.apple.AppKit               0x00007fff95fe7838 -[NSTextInputContext tryHandleEvent_HasMarkedText_withDispatchCondition:dispatchWork:continuation:] + 101
    45  com.apple.AppKit               0x00007fff95fe8414 __61-[NSTextInputContext _handleEvent:options:completionHandler:]_block_invoke956 + 321
    46  com.apple.HIToolbox           0x00007fff8a77136f __TSMProcessRawKeyEventWithOptionsAndCompletionHandler_block_invoke_5 + 70
    47  com.apple.HIToolbox           0x00007fff8a6c8f45 ___ZL23DispatchEventToHandlersP14EventTargetRecP14OpaqueEventRefP14HandlerCallR ec_block_invoke + 108
    48  com.apple.AppKit               0x00007fff95fe1286 __55-[NSTextInputContext handleTSMEvent:completionHandler:]_block_invoke174 + 2387
    49  com.apple.AppKit               0x00007fff95fea0bf -[NSTextInputContext(NSInputContext_WithCompletion) hasMarkedTextWithCompletionHandler:] + 76
    50  com.apple.AppKit               0x00007fff95fe08a4 __55-[NSTextInputContext handleTSMEvent:completionHandler:]_block_invoke_2 + 95
    51  com.apple.AppKit               0x00007fff95fde5f8 -[NSTextInputContext tryHandleTSMEvent_HasMarkedText_withDispatchCondition:dispatchWork:continuation :] + 101
    52  com.apple.AppKit               0x00007fff95fe0600 -[NSTextInputContext handleTSMEvent:completionHandler:] + 3293
    53  com.apple.AppKit               0x00007fff959c87ee _NSTSMEventHandler + 324
    54  com.apple.HIToolbox           0x00007fff8a55832c DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1260
    55  com.apple.HIToolbox           0x00007fff8a55776e SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 386
    56  com.apple.HIToolbox           0x00007fff8a5575e2 SendEventToEventTargetWithOptions + 43
    57  com.apple.HIToolbox           0x00007fff8a76a68c SendTSMEvent_WithCompletionHandler + 417
    58  com.apple.HIToolbox           0x00007fff8a76ab8c __SendUnicodeTextAEToUnicodeDoc_WithCompletionHandler_block_invoke + 400
    59  com.apple.HIToolbox           0x00007fff8a76ae46 __SendFilterTextEvent_WithCompletionHandler_block_invoke + 189
    60  com.apple.HIToolbox           0x00007fff8a76a6e0 SendTSMEvent_WithCompletionHandler + 501
    61  com.apple.HIToolbox           0x00007fff8a76a9cf SendFilterTextEvent_WithCompletionHandler + 236
    62  com.apple.HIToolbox           0x00007fff8a767d41 SendUnicodeTextAEToUnicodeDoc_WithCompletionHandler + 295
    63  com.apple.HIToolbox           0x00007fff8a76c649 __utDeliverTSMEvent_WithCompletionHandler_block_invoke_2 + 296
    64  com.apple.HIToolbox           0x00007fff8a76c518 __utDeliverTSMEvent_WithCompletionHandler_block_invoke + 437
    65  com.apple.HIToolbox           0x00007fff8a7677bd TSMKeyEvent_WithCompletionHandler + 701
    66  com.apple.HIToolbox           0x00007fff8a7712f0 __TSMProcessRawKeyEventWithOptionsAndCompletionHandler_block_invoke_4 + 251
    67  com.apple.HIToolbox           0x00007fff8a7711e6 __TSMProcessRawKeyEventWithOptionsAndCompletionHandler_block_invoke_3 + 330
    68  com.apple.HIToolbox           0x00007fff8a771022 __TSMProcessRawKeyEventWithOptionsAndCompletionHandler_block_invoke_2 + 259
    69  com.apple.HIToolbox           0x00007fff8a770ea5 __TSMProcessRawKeyEventWithOptionsAndCompletionHandler_block_invoke + 251
    70  com.apple.HIToolbox           0x00007fff8a770caf TSMProcessRawKeyEventWithOptionsAndCompletionHandler + 3068
    71  com.apple.AppKit               0x00007fff95fe8226 __61-[NSTextInputContext _handleEvent:options:completionHandler:]_block_invoke945 + 131
    72  com.apple.AppKit               0x00007fff95fe7762 -[NSTextInputContext tryTSMProcessRawKeyEvent:dispatchCondition:setupForDispatch:furtherCondition:di spatchWork:continuation:] + 127
    73  com.apple.AppKit               0x00007fff95fe7d95 -[NSTextInputContext _handleEvent:options:completionHandler:] + 1266
    74  com.apple.AppKit               0x00007fff959c802e -[NSTextInputContext handleEvent:] + 109
    75  com.apple.AppKit               0x00007fff959a7c7d -[NSView interpretKeyEvents:] + 207
    76  com.apple.AppKit               0x00007fff959c7ea5 -[NSTextView keyDown:] + 695
    77  com.apple.AppKit               0x00007fff95eea9f6 -[NSWindow _reallySendEvent:] + 3266
    78  com.apple.AppKit               0x00007fff9597750c -[NSWindow sendEvent:] + 368
    79  com.apple.AppKit               0x00007fff95929811 -[NSApplication sendEvent:] + 4153
    80  com.adobe.Photoshop           0x0000000109ad0f5c AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 21470796
    81  com.adobe.Photoshop           0x0000000109ad1d4d AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 21474365
    82  com.apple.AppKit               0x00007fff95ac6c3f -[NSApplication _realDoModalLoop:peek:] + 770
    83  com.apple.AppKit               0x00007fff95ac5186 -[NSApplication runModalForWindow:] + 119
    84  com.apple.AppKit               0x00007fff95d4acb2 -[NSPrintPanel runModalWithPrintInfo:] + 498
    85  com.adobe.Photoshop           0x00000001099962e0 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 20181456
    86  com.adobe.Photoshop           0x0000000109a811c8 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 21143736
    87  com.adobe.Photoshop           0x0000000109222f66 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 12369494
    88  com.adobe.Photoshop           0x00000001092235a6 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 12371094
    89  com.adobe.Photoshop           0x0000000109220ffc AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 12361452
    90  com.adobe.Photoshop           0x0000000109220955 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 12359749
    91  com.adobe.Photoshop           0x00000001082d91ee boost::exception_detail::copy_boost_exception(boost::exception*, boost::exception const*) + 527550
    92  com.adobe.Photoshop           0x00000001083499d0 boost::exception_detail::copy_boost_exception(boost::exception*, boost::exception const*) + 988320
    93  com.adobe.Photoshop           0x0000000108351eec boost::exception_detail::copy_boost_exception(boost::exception*, boost::exception const*) + 1022396
    94  com.adobe.Photoshop           0x00000001082c708a boost::exception_detail::copy_boost_exception(boost::exception*, boost::exception const*) + 453466
    95  com.adobe.Photoshop           0x00000001082cd16d boost::exception_detail::copy_boost_exception(boost::exception*, boost::exception const*) + 478269
    96  com.adobe.Photoshop           0x00000001082cc381 boost::exception_detail::copy_boost_exception(boost::exception*, boost::exception const*) + 474705
    97  com.adobe.Photoshop           0x00000001082c81bf boost::exception_detail::copy_boost_exception(boost::exception*, boost::exception const*) + 457871
    98  com.adobe.Photoshop           0x00000001082c7fa6 boost::exception_detail::copy_boost_exception(boost::exception*, boost::exception const*) + 457334
    99  com.adobe.Photoshop           0x0000000109ad1dc4 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 21474484
    100 com.apple.AppKit               0x00007fff957b5e98 -[NSApplication run] + 711
    101 com.adobe.Photoshop           0x0000000109ad2592 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 21476482
    102 com.adobe.Photoshop           0x0000000109ad3908 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 21481464
    103 com.adobe.Photoshop           0x00000001082c888f boost::exception_detail::copy_boost_exception(boost::exception*, boost::exception const*) + 459615
    104 com.adobe.Photoshop           0x000000010857c6ce boost::exception_detail::copy_boost_exception(boost::exception*, boost::exception const*) + 3293598
    105 com.adobe.Photoshop           0x000000010857c829 boost::exception_detail::copy_boost_exception(boost::exception*, boost::exception const*) + 3293945
    106 com.adobe.Photoshop           0x000000010823fd34 0x10823d000 + 11572
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib         0x00007fff89bb922e kevent64 + 10
    1   libdispatch.dylib             0x00007fff918c7a6a _dispatch_mgr_thread + 52
    Thread 2:: MPSupport Worker
    0   libsystem_kernel.dylib         0x00007fff89bb8132 __psynch_cvwait + 10
    1   MultiProcessor Support         0x0000000118f3b40b 0x118ef4000 + 291851
    2   MultiProcessor Support         0x0000000118f3b30b 0x118ef4000 + 291595
    3   MultiProcessor Support         0x0000000118f5b844 0x118ef4000 + 424004
    4   libsystem_pthread.dylib       0x00007fff8f0392fc _pthread_body + 131
    5   libsystem_pthread.dylib       0x00007fff8f039279 _pthread_start + 176
    6   libsystem_pthread.dylib       0x00007fff8f0374b1 thread_start + 13
    Thread 3:: MPSupport Worker
    0   libsystem_kernel.dylib         0x00007fff89bb8132 __psynch_cvwait + 10
    1   MultiProcessor Support         0x0000000118f3b40b 0x118ef4000 + 291851
    2   MultiProcessor Support         0x0000000118f3b30b 0x118ef4000 + 291595
    3   MultiProcessor Support         0x0000000118f5b844 0x118ef4000 + 424004
    4   libsystem_pthread.dylib       0x00007fff8f0392fc _pthread_body + 131
    5   libsystem_pthread.dylib       0x00007fff8f039279 _pthread_start + 176
    6   libsystem_pthread.dylib       0x00007fff8f0374b1 thread_start + 13
    Thread 4:: MPSupport Worker
    0   libsystem_kernel.dylib         0x00007fff89bb8132 __psynch_cvwait + 10
    1   MultiProcessor Support         0x0000000118f3b40b 0x118ef4000 + 291851
    2   MultiProcessor Support         0x0000000118f3b30b 0x118ef4000 + 291595
    3   MultiProcessor Support         0x0000000118f5b844 0x118ef4000 + 424004
    4   libsystem_pthread.dylib       0x00007fff8f0392fc _pthread_body + 131
    5   libsystem_pthread.dylib       0x00007fff8f039279 _pthread_start + 176
    6   libsystem_pthread.dylib       0x00007fff8f0374b1 thread_start + 13
    Thread 5:: MPSupport Worker
    0   libsystem_kernel.dylib         0x00007fff89bb8132 __psynch_cvwait + 10
    1   MultiProcessor Support         0x0000000118f3b40b 0x118ef4000 + 291851
    2   MultiProcessor Support         0x0000000118f3b30b 0x118ef4000 + 291595
    3   MultiProcessor Support         0x0000000118f5b844 0x118ef4000 + 424004
    4   libsystem_pthread.dylib       0x00007fff8f0392fc _pthread_body + 131
    5   libsystem_pthread.dylib       0x00007fff8f039279 _pthread_start + 176
    6   libsystem_pthread.dylib       0x00007fff8f0374b1 thread_start + 13
    Thread 6:: MPSupport Worker
    0   libsystem_kernel.dylib         0x00007fff89bb8132 __psynch_cvwait + 10
    1   MultiProcessor Support         0x0000000118f3b40b 0x118ef4000 + 291851
    2   MultiProcessor Support         0x0000000118f3b30b 0x118ef4000 + 291595
    3   MultiProcessor Support         0x0000000118f5b844 0x118ef4000 + 424004
    4   libsystem_pthread.dylib       0x00007fff8f0392fc _pthread_body + 131
    5   libsystem_pthread.dylib       0x00007fff8f039279 _pthread_start + 176
    6   libsystem_pthread.dylib       0x00007fff8f0374b1 thread_start + 13
    Thread 7:: MPSupport Worker
    0   libsystem_kernel.dylib         0x00007fff89bb8132 __psynch_cvwait + 10
    1   MultiProcessor Support         0x0000000118f3b40b 0x118ef4000 + 291851
    2   MultiProcessor Support         0x0000000118f3b30b 0x118ef4000 + 291595
    3   MultiProcessor Support         0x0000000118f5b844 0x118ef4000 + 424004
    4   libsystem_pthread.dylib       0x00007fff8f0392fc _pthread_body + 131
    5   libsystem_pthread.dylib       0x00007fff8f039279 _pthread_start + 176
    6   libsystem_pthread.dylib       0x00007fff8f0374b1 thread_start + 13
    Thread 8:: MPSupport Worker
    0   libsystem_kernel.dylib         0x00007fff89bb8132 __psynch_cvwait + 10
    1   MultiProcessor Support         0x0000000118f3b40b 0x118ef4000 + 291851
    2   MultiProcessor Support         0x0000000118f3b30b 0x118ef4000 + 291595
    3   MultiProcessor Support         0x0000000118f5b844 0x118ef4000 + 424004
    4   libsystem_pthread.dylib       0x00007fff8f0392fc _pthread_body + 131
    5   libsystem_pthread.dylib       0x00007fff8f039279 _pthread_start + 176
    6   libsystem_pthread.dylib       0x00007fff8f0374b1 thread_start + 13
    Thread 9:
    0   libsystem_kernel.dylib         0x00007fff89bb356a semaphore_wait_trap + 10
    1   libtbb.dylib                   0x000000010d81b550 tbb::internal::rml::private_worker::thread_routine(void*) + 480
    2   libsystem_pthread.dylib       0x00007fff8f0392fc _pthread_body + 131
    3   libsystem_pthread.dylib       0x00007fff8f039279 _pthread_start + 176
    4   libsystem_pthread.dylib       0x00007fff8f0374b1 thread_start + 13
    Thread 10:
    0   libsystem_kernel.dylib         0x00007fff89bb356a semaphore_wait_trap + 10
    1   libtbb.dylib                   0x000000010d81b550 tbb::internal::rml::private_worker::thread_routine(void*) + 480
    2   libsystem_pthread.dylib       0x00007fff8f0392fc _pthread_body + 131
    3   libsystem_pthread.dylib       0x00007fff8f039279 _pthread_start + 176
    4   libsystem_pthread.dylib       0x00007fff8f0374b1 thread_start + 13
    Thread 11:
    0   libsystem_kernel.dylib         0x00007fff89bb356a semaphore_wait_trap + 10
    1   libtbb.dylib                   0x000000010d81b550 tbb::internal::rml::private_worker::thread_routine(void*) + 480
    2   libsystem_pthread.dylib       0x00007fff8f0392fc _pthread_body + 131
    3   libsystem_pthread.dylib       0x00007fff8f039279 _pthread_start + 176
    4   libsystem_pthread.dylib       0x00007fff8f0374b1 thread_start + 13
    Thread 12:
    0   libsystem_kernel.dylib         0x00007fff89bb356a semaphore_wait_trap + 10
    1   libtbb.dylib                   0x000000010d81b550 tbb::internal::rml::private_worker::thread_routine(void*) + 480
    2   libsystem_pthread.dylib       0x00007fff8f0392fc _pthread_body + 131
    3   libsystem_pthread.dylib       0x00007fff8f039279 _pthread_start + 176
    4   libsystem_pthread.dylib       0x00007fff8f0374b1 thread_start + 13
    Thread 13:
    0   libsystem_kernel.dylib         0x00007fff89bb356a semaphore_wait_trap + 10
    1   libtbb.dylib                   0x000000010d81b550 tbb::internal::rml::private_worker::thread_routine(void*) + 480
    2   libsystem_pthread.dylib       0x00007fff8f0392fc _pthread_body + 131
    3   libsystem_pthread.dylib       0x00007fff8f039279 _pthread_start + 176
    4   libsystem_pthread.dylib       0x00007fff8f0374b1 thread_start + 13
    Thread 14:
    0   libsystem_kernel.dylib         0x00007fff89bb356a semaphore_wait_trap + 10
    1   libtbb.dylib                   0x000000010d81b550 tbb::internal::rml::private_worker::thread_routine(void*) + 480
    2   libsystem_pthread.dylib       0x00007fff8f0392fc _pthread_body + 131
    3   libsystem_pthread.dylib       0x00007fff8f039279 _pthread_start + 176
    4   libsystem_pthread.dylib       0x00007fff8f0374b1 thread_start + 13
    Thread 15:
    0   libsystem_kernel.dylib         0x00007fff89bb356a semaphore_wait_trap + 10
    1   libtbb.dylib                   0x000000010d81b550 tbb::internal::rml::private_worker::thread_routine(void*) + 480
    2   libsystem_pthread.dylib       0x00007fff8f0392fc _pthread_body + 131
    3   libsystem_pthread.dylib       0x00007fff8f039279 _pthread_start + 176
    4   libsystem_pthread.dylib       0x00007fff8f0374b1 thread_start + 13
    Thread 16:
    0   libsystem_kernel.dylib         0x00007fff89bb8486 __semwait_signal + 10
    1   com.adobe.PSAutomate           0x0000000141f5b658 0x141e0d000 + 1369688
    2   com.adobe.PSAutomate           0x0000000141f410be 0x141e0d000 + 1261758
    3   com.adobe.PSAutomate           0x0000000141f5b1f5 0x141e0d000 + 1368565
    4   libsystem_pthread.dylib       0x00007fff8f0392fc _pthread_body + 131
    5   libsystem_pthread.dylib       0x00007fff8f039279 _pthread_start + 176
    6   libsystem_pthread.dylib       0x00007fff8f0374b1 thread_start + 13
    Thread 17:
    0   libsystem_kernel.dylib         0x00007fff89bb352e mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff89bb269f mach_msg + 55
    2   com.apple.CoreFoundation       0x00007fff8b5f2b14 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation       0x00007fff8b5f1fdb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation       0x00007fff8b5f1838 CFRunLoopRunSpecific + 296
    5   com.apple.AppKit               0x00007fff959257a7 _NSEventThread + 137
    6   libsystem_pthread.dylib       0x00007fff8f0392fc _pthread_body + 131
    7   libsystem_pthread.dylib       0x00007fff8f039279 _pthread_start + 176
    8   libsystem_pthread.dylib       0x00007fff8f0374b1 thread_start + 13
    Thread 18:
    0   libsystem_kernel.dylib         0x00007fff89bb8336 __recvfrom + 10
    1   VulcanMessage5.dylib           0x0000000110767b32 vcfoundation::io::BSDNamedPipe::Read(void*, unsigned long) + 24
    2   VulcanMessage5.dylib           0x0000000110765c40 vcfoundation::io::BufferedReader::InternalRead(char*, long) + 112
    3   VulcanMessage5.dylib           0x0000000110765cae vcfoundation::io::BufferedReader::Read(void*, unsigned long) + 60
    4   VulcanMessage5.dylib           0x000000011075e7d0 vcfoundation::io::IVCChannel::ReadFully(void*, unsigned long) + 70
    5   VulcanMessage5.dylib           0x000000011075f262 vcfoundation::io::Serializer::InternalDeserialize() + 30
    6   VulcanMessage5.dylib           0x000000011075f16f vcfoundation::io::Serializer::Deserialize() + 9
    7   VulcanMessage5.dylib           0x0000000110764782 vcfoundation::ncomm::Connection::ReadIn() + 28
    8   VulcanMessage5.dylib           0x00000001107648c6 vcfoundation::ncomm::NCService::ReadResponse(vcfoundation::ncomm::INCRequest*, vcfoundation::ncomm::INCListener&, vcfoundation::ncomm::NCService::ConRef&) + 40
    9   VulcanMessage5.dylib           0x0000000110764681 vcfoundation::ncomm::NCService::Execute(vcfoundation::ncomm::INCRequest*, vcfoundation::ncomm::INCListener&) + 109
    10  VulcanMessage5.dylib           0x00000001107645fa vcfoundation::ncomm::NCService::Execute(vcfoundation::ncomm::INCRequest*) + 32
    11  VulcanMessage5.dylib           0x000000011075532b adobe::vulcan::servicemgr::CSIRequest::Execute() + 53
    12  VulcanMessage5.dylib           0x0000000110756507 adobe::vulcan::servicemgr::RegisterForEventsRequest::Run() + 353
    13  VulcanMessage5.dylib           0x00000001107652d0 vcfoundation::thread::AbstractThread::Run() + 50
    14  VulcanMessage5.dylib           0x0000000110769523 vcfoundation::thread::Thread::ThreadProc(void*) + 9
    15  libsystem_pthread.dylib       0x00007fff8f0392fc _pthread_body + 131
    16  libsystem_pthread.dylib       0x00007fff8f039279 _pthread_start + 176
    17  libsystem_pthread.dylib       0x00007fff8f0374b1 thread_start + 13
    Thread 19:: UxTech Queue ThreadController
    0   libsystem_kernel.dylib         0x00007fff89bb8132 __psynch_cvwait + 10
    1   com.adobe.Photoshop           0x00000001099a130b AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 20226555
    2   com.adobe.Photoshop           0x0000000109fe2f5b AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 26787403
    3   com.adobe.Photoshop           0x0000000109fe141b AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 26780427
    4   com.adobe.Photoshop           0x0000000109b00e44 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 21667124
    5   libsystem_pthread.dylib       0x00007fff8f0392fc _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff8f039279 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff8f0374b1 thread_start + 13
    Thread 20:: UxTech Queue ThreadController
    0   libsystem_kernel.dylib         0x00007fff89bb8132 __psynch_cvwait + 10
    1   com.adobe.Photoshop           0x00000001099a130b AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 20226555
    2   com.adobe.Photoshop           0x0000000109fe2f5b AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 26787403
    3   com.adobe.Photoshop           0x0000000109fe141b AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 26780427
    4   com.adobe.Photoshop           0x0000000109b00e44 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 21667124
    5   libsystem_pthread.dylib       0x00007fff8f0392fc _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff8f039279 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff8f0374b1 thread_start + 13
    Thread 21:: UxTech Queue ThreadController
    0   libsystem_kernel.dylib         0x00007fff89bb8132 __psynch_cvwait + 10
    1   com.adobe.Photoshop           0x00000001099a130b AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 20226555
    2   com.adobe.Photoshop           0x0000000109fe2f5b AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 26787403
    3   com.adobe.Photoshop           0x0000000109fe141b AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 26780427
    4   com.adobe.Photoshop           0x0000000109b00e44 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 21667124
    5   libsystem_pthread.dylib       0x00007fff8f0392fc _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff8f039279 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff8f0374b1 thread_start + 13
    Thread 22:: UxTech Queue ThreadController
    0   libsystem_kernel.dylib         0x00007fff89bb8132 __psynch_cvwait + 10
    1   com.adobe.Photoshop           0x00000001099a130b AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 20226555
    2   com.adobe.Photoshop           0x0000000109fe2f5b AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 26787403
    3   com.adobe.Photoshop           0x0000000109fe141b AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 26780427
    4   com.adobe.Photoshop           0x0000000109b00e44 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 21667124
    5   libsystem_pthread.dylib       0x00007fff8f0392fc _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff8f039279 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff8f0374b1 thread_start + 13
    Thread 23:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib         0x00007fff89bb352e mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff89bb269f mach_msg + 55
    2   com.apple.CoreFoundation       0x00007fff8b5f2b14 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation       0x00007fff8b5f1fdb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation       0x00007fff8b5f1838 CFRunLoopRunSpecific + 296
    5   com.apple.CFNetwork           0x00007fff869a5d20 +[NSURLConnection(Loader) _resourceLoadLoop:] + 434
    6   com.apple.Foundation           0x00007fff8889eb7a __NSThread__main__ + 1345
    7   libsystem_pthread.dylib       0x00007fff8f0392fc _pthread_body + 131
    8   libsystem_pthread.dylib       0x00007fff8f039279 _pthread_start + 176
    9   libsystem_pthread.dylib       0x00007fff8f0374b1 thread_start + 13
    Thread 24:
    0   libsystem_kernel.dylib         0x00007fff89bb8132 __psynch_cvwait + 10
    1   com.adobe.ape.engine           0x000000014365e3dd APXGetHostAPI + 2516301
    2   com.adobe.ape.engine           0x000000014340c5c1 APXGetHostAPI + 83761
    3   com.adobe.ape.engine           0x000000014365e4a1 APXGetHostAPI + 2516497
    4   com.adobe.ape.engine           0x000000014365e51a APXGetHostAPI + 2516618
    5   com.adobe.ape.engine           0x000000014365e649 APXGetHostAPI + 2516921
    6   libsystem_pthread.dylib       0x00007fff8f0392fc _pthread_body + 131
    7   libsystem_pthread.dylib       0x00007fff8f039279 _pthread_start + 176
    8   libsystem_pthread.dylib       0x00007fff8f0374b1 thread_start + 13
    Thread 25:
    0   libsystem_kernel.dylib         0x00007fff89bb8132 __psynch_cvwait + 10
    1   com.adobe.ape.engine           0x000000014365e3dd APXGetHostAPI + 2516301
    2   com.adobe.ape.engine           0x000000014340c5c1 APXGetHostAPI + 83761
    3   com.adobe.ape.engine           0x000000014365e4a1 APXGetHostAPI + 2516497
    4   com.adobe.ape.engine           0x000000014365e51a APXGetHostAPI + 2516618
    5   com.adobe.ape.engine           0x000000014365e649 APXGetHostAPI + 2516921
    6   libsystem_pthread.dylib       0x00007fff8f0392fc _pthread_body + 131
    7   libsystem_pthread.dylib       0x00007fff8f039279 _pthread_start + 176
    8   libsystem_pthread.dylib       0x00007fff8f0374b1 thread_start + 13
    Thread 26:
    0   libsystem_kernel.dylib         0x00007fff89bb8132 __psynch_cvwait + 10
    1   com.adobe.ape.engine           0x000000014365e3dd APXGetHostAPI + 2516301
    2   com.adobe.ape.engine           0x000000014340c5c1 APXGetHostAPI + 83761
    3   com.adobe.ape.engine           0x000000014365e4a1 APXGetHostAPI + 2516497
    4   com.adobe.ape.engine           0x000000014365e51a APXGetHostAPI + 2516618
    5   com.adobe.ape.engine           0x000000014365e649 APXGetHostAPI + 2516921
    6   libsystem_pthread.dylib       0x00007fff8f0392fc _pthread_body + 131
    7   libsystem_pthread.dylib       0x00007fff8f039279 _pthread_start + 176
    8   libsystem_pthread.dylib       0x00007fff8f0374b1 thread_start + 13
    Thread 27:
    0   libsystem_kernel.dylib         0x00007fff89bb8132 __psynch_cvwait + 10
    1   com.adobe.ape.engine           0x000000014365e3dd APXGetHostAPI + 2516301
    2   com.adobe.ape.engine           0x000000014340c5c1 APXGetHostAPI + 83761
    3   com.adobe.ape.engine           0x000000014365e4a1 APXGetHostAPI + 2516497
    4   com.adobe.ape.engine           0x000000014365e51a APXGetHostAPI + 2516618
    5   com.adobe.ape.engine           0x000000014365e649 APXGetHostAPI + 2516921
    6   libsystem_pthread.dylib       0x00007fff8f0392fc _pthread_body + 131
    7   libsystem_pthread.dylib       0x00007fff8f039279 _pthread_start + 176
    8   libsystem_pthread.dylib       0x00007fff8f0374b1 thread_start + 13
    Thread 28:
    0   libsystem_kernel.dylib         0x00007fff89bb8132 __psynch_cvwait + 10
    1   com.adobe.ape.engine           0x000000014365e3dd APXGetHostAPI + 2516301
    2   com.adobe.ape.engine           0x000000014340c5c1 APXGetHostAPI + 83761
    3   com.adobe.ape.engine           0x000000014365e4a1 APXGetHostAPI + 2516497
    4   com.adobe.ape.engine           0x000000014365e51a APXGetHostAPI + 2516618
    5   com.adobe.ape.engine           0x000000014365e649 APXGetHostAPI + 2516921
    6   libsystem_pthread.dylib       0x00007fff8f0392fc _pthread_body + 131
    7   libsystem_pthread.dylib       0x00007fff8f039279 _pthread_start + 176
    8   libsystem_pthread.dylib       0x00007fff8f0374b1 thread_start + 13
    Thread 29:
    0   libsystem_kernel.dylib         0x00007fff89bb8132 __psynch_cvwait + 10
    1   com.adobe.ape.engine           0x000000014365e3dd APXGetHostAPI + 2516301
    2   com.adobe.ape.engine           0x000000014340c5c1 APXGetHostAPI + 83761
    3   com.adobe.ape.engine           0x000000014365e4a1 APXGetHostAPI + 2516497
    4   com.adobe.ape.engine           0x000000014365e51a APXGetHostAPI + 2516618
    5   com.adobe.ape.engine           0x000000014365e649 APXGetHostAPI + 2516921
    6   libsystem_pthread.dylib       0x00007fff8f0392fc _pthread_body + 131
    7   libsystem_pthread.dylib       0x00007fff8f039279 _pthread_start + 176
    8   libsystem_pthread.dylib       0x00007fff8f0374b1 thread_start + 13
    Thread 30:
    0   libsystem_kernel.dylib         0x00007fff89bb8132 __psynch_cvwait + 10
    1   com.adobe.ape.engine           0x000000014365e3dd APXGetHostAPI + 2516301
    2   com.adobe.ape.engine           0x000000014340c5c1 APXGetHostAPI + 83761
    3   com.adobe.ape.engine           0x000000014365e4a1 APXGetHostAPI + 2516497
    4   com.adobe.ape.engine           0x000000014365e51a APXGetHostAPI + 2516618
    5   com.adobe.ape.engine           0x000000014365e649 APXGetHostAPI + 2516921
    6   libsystem_pthread.dylib       0x00007fff8f0392fc _pthread_body + 131
    7   libsystem_pthread.dylib       0x00007fff8f039279 _pthread_start + 176
    8   libsystem_pthread.dylib       0x00007fff8f0374b1 thread_start + 13
    Thread 31:
    0   libsystem_kernel.dylib         0x00007fff89bb8132 __psynch_cvwait + 10
    1   com.adobe.ape.engine           0x000000014365e3dd APXGetHostAPI + 2516301
    2   com.adobe.ape.engine           0x000000014340c5c1 APXGetHostAPI + 83761
    3   com.adobe.ape.engine           0x000000014365e4a1 APXGetHostAPI + 2516497
    4   com.adobe.ape.engine           0x000000014365e51a APXGetHostAPI + 2516618
    5   com.adobe.ape.engine           0x000000014365e649 APXGetHostAPI + 2516921
    6   libsystem_pthread.dylib       0x00007fff8f0392fc _pthread_body + 131
    7   libsystem_pthread.dylib       0x00007fff8f039279 _pthread_start + 176
    8   libsystem_pthread.dylib       0x00007fff8f0374b1 thread_start + 13
    Thread 32:
    0   libsystem_kernel.dylib         0x00007fff89bb8132 __psynch_cvwait + 10
    1   com.adobe.ape.engine           0x000000014365e3a0 APXGetHostAPI + 2516240
    2   com.adobe.ape.engine           0x00000001436765ab APXGetHostAPI + 2615067
    3   com.adobe.ape.engine           0x000000014365e4a1 APXGetHostAPI + 2516497
    4   com.adobe.ape.engine           0x000000014365e51a APXGetHostAPI + 2516618
    5   com.adobe.ape.engine           0x000000014365e649 APXGetHostAPI + 2516921
    6   libsystem_pthread.dylib       0x00007fff8f0392fc _pthread_body + 131
    7   libsystem_pthread.dylib       0x00007fff8f039279 _pthread_start + 176
    8   libsystem_pthread.dylib       0x00007fff8f0374b1 thread_start + 13
    Thread 33:
    0   libsystem_kernel.dylib         0x00007fff89bb8132 __psynch_cvwait + 10
    1   com.adobe.ape.engine           0x000000014365e3a0 APXGetHostAPI + 2516240
    2   com.adobe.ape.engine           0x00000001437f1073 APXGetHostAPI + 4166115
    3   com.adobe.ape.engine           0x000000014365e4a1 APXGetHostAPI + 2516497
    4   com.adobe.ape.engine           0x000000014365e51a APXGetHostAPI + 2516618
    5   com.adobe.ape.engine           0x000000014365e649 APXGetHostAPI + 2516921
    6   libsystem_pthread.dylib       0x00007fff8f0392fc _pthread_body + 131
    7   libsystem_pthread.dylib       0x00007fff8f039279 _pthread_start + 176
    8   libsystem_pthread.dylib       0x00007fff8f0374b1 thread_start + 13
    Thread 34:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib         0x00007fff89bb83f6 __select + 10
    1   libsystem_pthread.dylib       0x00007fff8f0392fc _pthread_body + 131
    2   libsystem_pthread.dylib       0x00007fff8f039279 _pthread_start + 176
    3   libsystem_pthread.dylib       0x00007fff8f0374b1 thread_start + 13
    Thread 35:: General Background Service
    0   libsystem_kernel.dylib         0x00007fff89bb8132 __psynch_cvwait + 10
    1   com.adobe.Photoshop           0x000000010854bfe1 boost::exception_detail::copy_boost_exception(boost::exception*, boost::exception const*) + 3095217
    2   com.adobe.Photoshop           0x0000000109e0ad58 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 24853576
    3   com.adobe.Photoshop           0x0000000109e0a53b AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 24851499
    4   com.adobe.Photoshop           0x0000000109e0b6ba AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 24855978
    5   com.adobe.Photoshop           0x0000000109b00e44 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 21667124
    6   libsystem_pthread.dylib       0x00007fff8f0392fc _pthread_body + 131
    7   libsystem_pthread.dylib       0x00007fff8f039279 _pthread_start + 176
    8   libsystem_pthread.dylib       0x00007fff8f0374b1 thread_start + 13
    Thread 36:: Update Activation Menu Items
    0   libsystem_kernel.dylib         0x00007fff89bb8486 __semwait_signal + 10
    1   com.adobe.Photoshop           0x00000001084e2623 boost::exception_detail::copy_boost_exception(boost::exception*, boost::exception const*) + 2662643
    2   com.adobe.Photoshop           0x0000000109b00e44 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 21667124
    3   libsystem_pthread.dylib       0x00007fff8f0392fc _pthread_body + 131
    4   libsystem_pthread.dylib       0x00007fff8f039279 _pthread_start + 176
    5   libsystem_pthread.dylib       0x00007fff8f0374b1 thread_start + 13
    Thread 37:: cr_scratch
    0   libsystem_kernel.dylib         0x00007fff89bb8132 __psynch_cvwait + 10
    1   com.adobe.CameraRaw           0x000000014a44158b 0x149e45000 + 6276491
    2   com.adobe.CameraRaw           0x000000014a3ca28b 0x149e45000 + 5788299
    3   com.adobe.CameraRaw           0x000000014a1c9c81 0x149e45000 + 3689601
    4   libsystem_pthread.dylib       0x00007fff8f0392fc _pthread_body + 131
    5   libsystem_pthread.dylib       0x00007fff8f039279 _pthread_start + 176
    6   libsystem_pthread.dylib       0x00007fff8f0374b1 thread_start + 13
    Thread 38:: Background Save
    0   libsystem_kernel.dylib         0x00007fff89bb8132 __psynch_cvwait + 10
    1   com.adobe.Photoshop           0x000000010854bfe1 boost::exception_detail::copy_boost_exception(boost::exception*, boost::exception const*) + 3095217
    2   com.adobe.Photoshop           0x0000000109bbeada AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 22444490
    3   com.adobe.Photoshop           0x0000000109bbca89 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 22436217
    4   com.adobe.Photoshop           0x0000000109b00e44 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 21667124
    5   libsystem_pthread.dylib       0x00007fff8f0392fc _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff8f039279 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff8f0374b1 thread_start + 13
    Thread 39:
    0   libsystem_kernel.dylib         0x00007fff89bb8946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8f0374a1 start_wqthread + 13
    Thread 40:
    0   libsystem_kernel.dylib         0x00007fff89bb8946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8f0374a1 start_wqthread + 13
    Thread 41:
    0   libsystem_kernel.dylib         0x00007fff89bb8946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8f0374a1 start_wqthread + 13
    Thread 42:
    0   libsystem_kernel.dylib         0x00007fff89bb8946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8f0374a1 start_wqthread + 13
    Thread 43:
    0   libsystem_kernel.dylib         0x00007fff89bb8946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8f0374a1 start_wqthread + 13
    Thread 44:
    0   libsystem_kernel.dylib         0x00007fff89bb8946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8f0374a1 start_wqthread + 13
    Thread 45:
    0   libsystem_kernel.dylib         0x00007fff89bb8946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8f0374a1 start_wqthread + 13
    Thread 46:
    0   libsystem_kernel.dylib         0x00007fff89bb8946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8f0374a1 start_wqthread + 13
    Thread 47:
    0   libsystem_kernel.dylib         0x00007fff89bb8132 __psynch_cvwait + 10
    1   com.apple.CoreServices.CarbonCore 0x00007fff915e99c7 TSWaitOnConditionTimedRelative + 147
    2   com.apple.CoreServices.CarbonCore 0x00007fff915e95a2 TSWaitOnSemaphoreCommon + 403
    3   com.apple.CoreServices.CarbonCore 0x00007fff915a3a38 AsyncFileThread(void*) + 281
    4   libsystem_pthread.dylib       0x00007fff8f0392fc _pthread_body + 131
    5   libsystem_pthread.dylib       0x00007fff8f039279 _pthread_start + 176
    6   libsystem_pthread.dylib       0x00007fff8f0374b1 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000001  rbx: 0x00007fecc6f0ad10  rcx: 0x00000000002f4180  rdx: 0x00000000000b08a0
      rdi: 0x0000000110de8a00  rsi: 0x0000000110de8a00  rbp: 0x00007fff579be0d0  rsp: 0x00007fff579be0b0
       r8: 0x0000000000000015   r9: 0x00007feccd000000  r10: 0x0000000000000070  r11: 0x00007feccd000000
      r12: 0x00007fecc6f0ad10  r13: 0xffff8013390f52f0  r14: 0x0000000000000001  r15: 0x00007fff77d80200
      rip: 0x00000001179ae8bb  rfl: 0x0000000000010206  cr2: 0x00000001179ae8bb
    Logical CPU:     4
    Error Code:      0x00000014
    Trap Number:     14
    Binary Images:
           0x10823d000 -        0x10cb17fcf +com.adobe.Photoshop (15.2.1 - 15.2.1.257) <780CFBF0-ED89-3551-A0E2-E1CC75F5061F> /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/MacOS/Adobe Photoshop CC 2014
           0x10d80d000 -        0x10d83dfef +libtbb.dylib (0) <D41FA1F0-4921-308A-93DF-4D16F8913472> /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/Frameworks/libtbb.dylib
           0x10d85b000 -        0x10d880fff +libtbbmalloc.dylib (0) <60EF4F46-298B-38B6-A6CD-9B168072EAB7> /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/Frameworks/libtbbmalloc.dylib
           0x10d8ac000 -        0x10d9abfff +com.adobe.amtlib (8.0.0.122 - 8.0.0.122) <3793FBF6-1FED-357D-96EF-5C17B2F7A371> /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib
           0x10d9c0000 -        0x10dc80fcf +com.adobe.PlugPlugOwl (5.2.0.52 - 5.2.0.52) <CE75DB87-58C8-39E6-9911-00BAEF301EBA> /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/Frameworks/PlugPlugOwl.framework/Versions/A/PlugPlugOwl
           0x10df3b000 -        0x10dfe6ff7 +com.adobe.AdobeScCore (ScCore 4.5.5 - 4.5.5.32401) <04932D1E-CB2D-3D66-8B9E-8B325EB4E21F> /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/Frameworks/AdobeScCore.framework/Versions/A/AdobeScCore
           0x10e02f000 -        0x10e0edfff +com.adobe.AdobeExtendScript (ExtendScript 4.5.5 - 4.5.5.32401) <98E48A52-A6EB-309D-B668-EE951E67823F> /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/Frameworks/AdobeExtendScript.framework/Versions/A/AdobeExtend Script
           0x10e143000 -        0x10e149fff  org.twain.dsm (1.9.5 - 1.9.5) <6D13A0B6-113D-335A-8E7B-366A0CFE1CD6> /System/Library/Frameworks/TWAIN.framework/Versions/A/TWAIN
           0x10e152000 -        0x10e165ff7 +com.adobe.ahclientframework (1.8.0.31 - 1.8.0.31) <58BB943C-98EC-3812-AAAB-74F66630D1D4> /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/Frameworks/ahclient.framework/Versions/A/ahclient
           0x10e174000 -        0x10e178fff  com.apple.agl (3.3.0 - AGL-3.3.0) <3B0D06B0-99F1-3D5F-8977-340FC462B511> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
           0x10e180000 -        0x10e37aff7 +com.adobe.owl (AdobeOwl version 5.2.4 - 5.2.4) <CF1C521F-C4B7-3763-8C12-55BAA3D44ADC> /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
           0x10e3bf000 -        0x10e7b3ff7 +com.adobe.MPS (AdobeMPS 5.8.1.33340 - 5.8.1.33340) <4B02E5D5-79A8-3281-920A-BD3B74DFEDF7> /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
           0x10e82f000 -        0x10e85dfff +VulcanControl.dylib (5.0.0.82 - 5.0.0.82 © 2013 Adobe Systems, Inc. All rights reserved.) <059975FF-07C9-3231-BCD0-4E7E9862B14A> /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/Frameworks/VulcanControl.dylib
           0x10e893000 -        0x10ebd6fff +com.adobe.AGM (AdobeAGM 4.30.41.33308 - 4.30.41.33308) <74584FED-29A6-361C-B5B6-D26EEC620B50> /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
           0x10ec48000 -        0x10ef6dff7 +com.adobe.CoolType (AdobeCoolType 5.15.00.33308 - 5.15.00.33308) <07952676-1A11-3AA6-991D-04460EFBA92E> /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
           0x10efbb000 -        0x10efe2ff7 +com.adobe.BIBUtils (AdobeBIBUtils 1.1.01 - 1.1.01) <C21D264F-9A78-3E52-9E0F-3044E78A24B0> /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
           0x10efea000 -        0x10f00eff7 +com.adobe.AXE8SharedExpat (AdobeAXE8SharedExpat 3.8.0.32260 - 3.8.0.32260) <7CF0AED9-C0B4-3DBE-BB97-3BC2CC06AB67> /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE 8SharedExpat
           0x10f032000 -        0x10f033ff7  libCyrillicConverter.dylib (64) <251C52BB-5EE6-3722-89DA-F3DC80222142> /System/Library/CoreServices/Encodings/libCyrillicConverter.dylib
           0x10f038000 -        0x10f167fff +com.winsoft.wrservices (WRServices 8.0.0 - 8.0.0) <3DDC40D0-BC6F-3758-B00A-E102E80D4F5F> /Applications/Adobe Photoshop CC 2014/Adobe Photoshop CC 2014.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices
           0x10f1c5000 - 

  • My iPhone opens up my app (clash of clans) it loads half way then the app crashes and closes HELP!! And yes I have updated the game :(

    My iPhone opens up my app (clash of clans) it loads half way then the app crashes and closes HELP!!

    Hello, Dirk.j.fourie2525.
    Thank you for the question.  I have had issues with third party applications myself and I will do my best to help you.  I am attaching an article below that covers most troubleshooting steps for third party applications. 
    iOS: Troubleshooting applications purchased from the App Store
    http://support.apple.com/kb/ts1702
    If you are still experiencing the issue after processing the steps in this article, you may have to contact the developer of the application to report an issue. 
    Cheers,
    Jason H. 

  • I bought a new app ($0.99), bought $19.00 worth of on app purchases and the app crashed, now it says that I have to start a new game since i had just started it and didn't get a chance to save it, so my question is, how do i get my money back?

    I bought a new app ($0.99), bought $19.00 worth of on app purchases and the app crashed, now it says that I have to start a new game since i had just started it and didn't get a chance to save it, so my question is, how do i get my money back?

    I'm keeping the app, i just need the $19.00 back.

  • I have downloaded the most recent version of Iphoto and it no longer works period. I lost all photos, and the app crashes every time I try to open it. How can this be fixed?

    I have downloaded the most recent version of Iphoto and it no longer works period. I lost all photos, and the app crashes every time I try to open it. How can this be fixed?

    Post the first 50 lines only of the crash report
    Regards
    TD 

  • Updated to ios 6 and now when i go to the app store and try to check out my purchased it try to load the information but after about 20-25 seconds nothing loads and the app crashes. Im not sure if its because i have at least 600 apps in the cloud.

    WIth my iphone 4 in ios 6 when i try to view my puchased in the app store app it starts to load and after about 20-25 seconds nothing loads and the app crashes im wondering if its because i have at least 600 apps in there, but it has never happened to be before.

    WIth my iphone 4 in ios 6 when i try to view my puchased in the app store app it starts to load and after about 20-25 seconds nothing loads and the app crashes im wondering if its because i have at least 600 apps in there, but it has never happened to be before.

  • Hi, I upgraded my girlfriend's iPad 2 using my iMac, however, her iPad was sync with her PC. Although I've made backup earlier, when I restore from backup the apps doesn't sync back, neither her documents on pages. How can I put then back to her iPad?

    Hi, I upgraded my girlfriend's iPad 2 using my iMac, however, her iPad was sync with her PC. Although I've made backup earlier, when I restore from backup the apps doesn't sync back, neither her documents on pages. How can I put then back to her iPad?

    The backup saves many settings, but it copies photos and other files from the computer back to the iPad after IOS5 wipes the disk.   Plugging it into her computer will re-sync it.

Maybe you are looking for