Opening WAD template from WAD template

Hello
I have strange issue. Let me know if you had the same.
I have a template with Navigation Pane and Table Grid based on the Data Provider A type BEx Query. I have second template with Navigation Pane and Table Grid based on the Data Provider B type BEx Query. Data Providers A and B refer to different queries. I created a button type OPEN_TEMPLATE_DIALOG in first template to open the second one. It opens, but it presents data from query B, not from query A, it is actually based on. I have no idea how it works and what could be a reason. Do you have any hint?
A.

I have a web template and I want to open another web template by button item. The second web template contains analysis grid and navigation pane, but based on the different query than the first one. When I run the web application from WAD, it presents correct data, sourced in the query I assigned to. When I run this web application from the original web template, by pressing button, it presents the data sourced in the query which is a basis for a main web template.

Similar Messages

  • Error while opening web template through WAD 3.X

    Hi all,
    The below error is getting displayed while opening web template through WAD (Sap BW 3.X):
    " Internal error - No Template property standard item. "
    What needs to be done now.
    Please reply.

    Hi,
    Check the below thread...
    Web Application Designer Opening Error

  • Error while Opening the report  from template builder

    hi all,
    After log in in the BI publisher template builder, tried to Open the report from the report Template . Then the message is displayed as Error occurred: ‘Please check the settings and try again’.
    I am using the OBIEE 10.1.3.3 version and Ms-Office 2000......
    Please give me the solution very urgent............
    Regards

    Hi,
    I am having the same issue. I am not able to import Crystal Report.
    the error is "No matching records found  'Queries' (OUQR) (ODBC -2028)  [Message 131-183]"
    I have previewed the report using Preview external crystal report option and is running perfect.
    please guide ASAP.
    Regards
    Sonil

  • Opening a template ... ignoring personalization

    Hi there
    As part of our web templates delivered in the portal, we provide users with a button to open the template in a new window. This opens the BW template in its own window, without any of the portal menus and sidebars, thus giving the user more space to work on their report.
    I have done this using the following command:
    <bi:TRANSFER_STATE >
      <bi:OPEN_IN_NEW_WINDOW value="X" />
      <bi:ALL_DATA_PROVIDERS value="X" />
      <bi:ALL_ITEMS value="X" />
      <bi:TEMPLATE value="ZD_TML_TML_03" text="ZD_TML_TML_03 - Master Template (New Window)" />
    </bi:TRANSFER_STATE>
    I had some problems implementing this initially, because my WAD didn't give me the option to specify the OPEN_IN_NEW_WINDOW parameter, and it was only through SDN that I found out this parameter could be used.
    In addition, personalisation is allowed on the template, so the user can play around with the report, then choose to save personalisation, which means the next time they open that report, the view they currenly see is what will be rendered. Again, I have had some uphill, but have gotten this functionality to work nicely.
    Now comes the problem ... if a user opens a template, plays around with the report, then saves personalisation, continues playing around (sets additional filters or something like that), then chooses to open in a new window, the report that is opened in the new window is the PERSONALISED report, and not the current view of the report. I can confirm this by re-opening the report, selecting another view from the QueryView dropdown box, then choosing to open in new window, and the PERSONALISED view is the one that opens.
    I can remedy this by saying that the template into the TRANSFER_STATE is done doesn't support Personalisation, but then user's can't save their settings as personalised ... not ideal, but I guess in the long term I could convince the project manager.
    Any ideas on how to open a template ignoring any personalisation settings, or better still, how to transfer exactly the state of the current template into a new window?
    Does anyone have documentation on what parameters are available for the TRANSFER_STATE command, as I feel I may be missing out on something quite simple here.
    Cheers,
    Andrew

    Sample code:
    VariableType vtDocument = myApp.open(VariableTypeUtils.createFile("c:\\myfile.indd"));
    myDocument = DocumentHelper.narrow(vtDocument.asObject());
    Thanks
    -arun

  • Unable to open WAD (web application designer) in BW 3.5!

    Hi,
    when i open WAD through menu path (start->programs       
    ->Business explorer->Web application designer), i am getting the following error!
    WADConst
    Please log on to a Netweaver BI 7.x system. System J2E does not have the minimum version required 70005.
    I just can`t understand from where i got this BI 7.x system, when my system is BW 3.5 (NW04 platform).
    can any one expalin me what is this problem? and suggest me to over come this problem?
    Thanks,
    Ravi

    Hi Ravi!
    I assume that you installed the SAP GUI 6.40 with BI Addin (which contains the BI Frontend for SAP NetWeaver 2004s BI).
    In this case, you have a sub folder underneath "Business Explorer" in your startmenu named "Business Explorer (SAP BW 3.x)".
    You have to use this version of the BEx Web Application Designer.
    If this is not the case, please create a Support Message with all detailed information (backend and frontend versions).
    Thank you,
       Tobias

  • Office 2013 - Unable to open word template

    Hi,
    I have windows service written in VC++ and trying to open a word template xxx.dotx located on the server. however, I am geting below error code while opening the same template. I have written a sample application and it is opening the template.
    my windows service is 32 bit and I have installed office 2013 64bit and OS win 7 64bit.
    <hr=-2147467259>
    working code
    #import "MSO.DLL" rename_namespace("MSOFFICE") rename("RGB", "ofRGB") rename("DocumentProperties", "ofDocumentProperties")
    #import "VBE6EXT.OLB" rename_namespace("MSVBEXT") rename("Application", "ApplicationVBExt") raw_interfaces_only
    #import "msword.olb" rename_namespace("MSWORD") rename("DialogBox", "DialogBoxWRD") rename("RGB", "RGBWRD") rename("DocumentProperties", "DocumentPropertiesWRD") rename("ExitWindows", "ExitWindowsWRD") named_guidsvoid CWordTestDlg::OnButton1()
    // TODO: Add your control notification handler code here
    MSWORD::_ApplicationPtr m_pWordApp;
    HRESULT hr = m_pWordApp.CreateInstance("Word.Application");
    if(FAILED(hr))
    AfxMessageBox("Unable to start MS Word.", hr);
    return;
    AfxMessageBox("Successfully Created");
    m_pWordApp->DisplayAlerts = MSWORD::wdAlertsNone;
    // Make sure the application is not visible.
    m_pWordApp->Visible = VARIANT_FALSE;
    MSWORD::_DocumentPtr m_pWordDoc = NULL;;
    MSWORD::DocumentsPtr pDocs = m_pWordApp->Documents;
    if(pDocs == NULL)
    AfxMessageBox("Unable to retrieve the documents collection from MS Word.", pDocs);
    return;
    // Open the template.
    CComVariant varTemplateName(_T("\\\\xxx.xxx.xxx.xxx\\kx.dotx"));
    m_pWordDoc = pDocs->Open(&varTemplateName);
    if(m_pWordDoc == NULL)
    CString msg;
    msg.Format("Unable to open %s.", _T("\\\\xxx.xxx.xxx.xxx\\kx.dotx"));
    AfxMessageBox(msg);
    return;
    AfxMessageBox("Successfully Opened");
    m_pWordApp.Detach();
    // Reset the MSWord Document ptr.
    m_pWordDoc.Detach();
    thanks,
    Krishna

    Hi,
    Interop is not supported on a Server or with in a services.
    But if you want to this, you have to set up the Environment. I follow this Guideline with my Word and I'm able to start Word on a Server.
    1) Goto Control panel -> Administrative Tools -> Component Services
    2) Expand Tree by clicking on Component Services -> Computers -> My Computer -> DCOM Config
    3) Search CLSId 00020906-0000-0000-C000-000000000046 (which is for Word 97-2003 application)
    4) By selecting 00020906-0000-0000-C000-000000000046 this CLSId now right click on Properties
    5) In the Propeties area, click on Security TAB
    6) Select Customize option from all (Launch and Activations Permissions, Access Pemissions, Configuration Permissions)
    7) Take the User of the Services and Allow all permissions for this user
    8) Go to Identity TAB in the same properties area, select option as a This user and then add username (the user must be administrator of this machine) and password. Click on Apply, Ok
     Locale Profile: True
    9) Refresh Component Services and check your application is working fine or not.
    10) set Folder, if not present:
       C:\Windows\SysWOW64\config\systemprofile\Desktop
    This article gives some insights.
    http://theether.net/download/Microsoft/kb/288367.html
    Hope this helps.
    Kind Regards
    Thomas

  • I have just updated to Pages 5.1 and now the templares which I have saved do not displat the header and footer which they were saved with in the previous version.  How can I have the header and footer included when I open a template?

    I have just updated to Pages 5.1 and now the templares which I have saved do not displat the header and footer which they were saved with in the previous version.  How can I have the header and footer included when I open a template?

    That is becuase Pages 5.1 has numerous unnounced surprises for the unwary user.  Among the surprises:
    - it strips out images from headers and footers without warning
    - it strips out bookmarks without wanring (yes, all those bookamrks you laboriously put into a document: poof! Gone.)
    - it strips out alternating left/right margins, without warning.
    There are many more suprises, as you'll see from glancing through these discussions. They fall into two main categories: things that are present in version 4.3 but that are missing in 5.1, things like
    -mail merge
    -meaningful Applescript/Services support
    -non-contiguous text selection
    -ability to set defaul zoom
    -ability to see comments while editing
    -ability to print comments
    -ability to read RTF files
    -ability to drag in hyperlinked ted from a browser
    These about about 90 other features are gone.
    Then there are the bugs.  Hyperlinks do not reliably export to a PDF file any longer. There have been multiple problems with printing report. Some fonts place stray characters in the headers.  Many reports of the program crashing, courrupting files, etc.
    Fortunately for you, the previous version of Pages is still on your system.  Export any documents you may have created or edited with Pages 5.1 (another great surprise: files created with version 5.1 cannot be read by any previous version of Pages: not just 4.3 but even 5.01!).  Then trash 5.1 and use 4.3 until (unless?) it is stable and has a reasonably robust feature set.

  • When using a template the 'Save As' opens the templates folder to save to, not the last used folder

    I used to open a file from the templates folder,
    add details then click 'Save As' to save it the folder I was using.
    Now I have downloaded Fireworks CS6 it always opens the 'Templates' folder when I click 'Save As'
    I don't want to make a new template each time,
    I want it to open the folder I was last using.
    I have tried uninstalling and reinstalling but I can't get it to open the folder I was last using whan I click 'Save As',
    which is what it did before when I was using Fireworks CS5.
    Are there any Settings to change this?
    Of course I can click 'Recent Places' but it was easier before when the right folder to save to just came up first time.

    Saved files seem to remember their last saved location. So if you create a new file based on a Template, the first time you choose Save As, the location of the source (template) file will appear. However, once you've saved the file to a new location, that new location should become the new default for any subsequent iterations of that file.
    New files (not created from a template) pick up the location of the last saved file.
    All this is to say, the file saving issue you're experiencing should only be a problem the first time you save a file based on a template. Every time you open that file afterward, it should default to its current folder location. But yes, every time you create a file based on a template, the default location will be the Templates folder. If this feels like a big problem, I believe you have the option of opening a template file from any location... so you could copy or move the template into a more desireable folder location, and create your new file(s) based on the template in that location.
    Hope this gives you some ideas!

  • Group/Ungroup outline & Run macro automatically once open excel templates

    Hi all,
    Would need your advise for the following queries.
    1. May we have a protected sheets with Group/Ungrouped features?
    2. Is there a way to auto-run the macro once we open excel template?
    Looking forward to hear from you all! Thank you very much!

    Hi Tim,
    Thanks for your feedback! I did tried this before, but it remain the same. Please look at the code as below. I'm looking something that can execute the macro once open up the workbook,like  "Call onFileOpenMacro".
    Private Sub Workbook_Open()
        With Sheet1
           .Protect Password:="Secret", userinterfaceonly:=True
           .EnableOutlining = True
        End With
        'Call onFileOpenMacro
    End Sub
    Please advise.
    Thank you!

  • Unable to open WAD (Web Application Designer) 3.x

    Hi experts
    In my computer I don´t open WAD (SAP BW 3.x)
    i make click start-> programs -> Business Explorer-> Business Explorer(SAP BW 3.x)-> Web Application Designer(SAP BW 3.x)
    appears following error:
    This application requires Internet Explorer 5 or higher
    but I have installed the Internet Explorer 8 version
    then I do not understand because can´t run the WAD 3.x
    Can anyone help me? please
    Thanks

    HI,
    Please run the installation check as per note 1229206 and attach the result to the message.This is typically a front end installation issue May be dhtmled.ocx is not registered on this PC This is a typical front end issue where you have to look at your GUI patch and front end patch.I recommend you deinstalling your frontend installation as follows:
    - Remove your frontend via 'START' - 'PROGRAMS' - 'SAP FRONTEND' -
       'REMOVE SAP FRONTEND'
    - Install the newest frontend and GUI patch and check the installation
       again with sapbexc.xla
    Please run the front-end checktool SAPBEXC.XLA as per Note 197460 and
    ensure there are no errors.
    Please refer to following Notes for GUI patch and front end patch:
    578944     Expected release dates for SAP GUI for Windows
    558994     General information on BW front-end patches
    535308     How to apply a SAP Front End patch?
    96885      Downloading frontend patches
    You can download the latest patches from the following url,
    Goto URL: http://www.service.sap.com/swdc
    SAP Software Distribution Center -> Download -> Support Packages and
    Patches -> Browse our Download Catalog -> SAP Frontend Components ->
    SAP GUI FOR WINDOWS -> SAP GUI FOR WINDOWS 7.20 CORE -> win32 ->
    patch 9.
    Also you can download the latest BI addon and BW addon from the
    following url,
    Please goto
    -> service.sap.com/patches
    -> entry by application group
    -> SAP Frontend Components
    For BI add-on,                          For BW add-on,
         -> BI ADDON FOR SAP GUI 7.20       -> BI ADDON FOR SAP GUI 7.20
         -> BI 7.0 ADDON FOR SAP GUI 7.20   -> BW 3.5 addon for GUI 7.20
         -> BI 7.0 ADDON FOR SAP GUI 7.20   -> BW 3.5 addon for GUI 7.20
         -> Win32                           -> Win32
         -> Apply the latest frontend       -> Apply the latest frontend
            patch 500                         patch 8
    Please install the GUI and Business Explorer patches in this sequence:
    1. SAP GUI
    2. BI 7.0 ADDON FOR SAP GUI 7.20
    3. BW 3.5 add for GUI 7.20
    https://service.sap.com/swdc
      Installations and Upgrades
        Browse our Download Catalog
          SAP Frontend Components
             SAP GUI FOR WINDOWS
                SAP GUI FOR WINDOWS 7.20 CORE
                  Installation
           50105790_4 NW 7.0 Presentation - 7.20 Compilation 3 Present.1/2
    Regards,
    Naveen.

  • How to open a Template when Pages is already open

    I have just copied and pasted some text into a blank pages document.  I want to convert this doc. to a letter head that I made a template for.
    I would like to open the template, then copy/paste the first doc info into the template doc.
    I haven't been able to figure out how to open a template when a document is already open.

    Sorry,  P5.2, Mavericks.
    I did set the preferences to New Documents> Use Template: Blank, to stop endlessly having to choose a template when I don't need one.
    When I pull down File, there is no New from Template Chooser.  File>New just opens another blank file.
    To check, I went back and enabled "Show Template Chooser".  Now it demands I choose a template whether I want to or not.
    OK, it seems Apple is forcing you into either/or.  I want both/and.  I don't want to be forced to choose a template when 99% of the time I don't want anything but a blank file.  It is a nuisance.  But the occasional time I am composing something and decide it would be better off as a universal doc with letter head, I am stuck and cannot choose open a template so I can stick the material in it.
    The options are lousy.  Close/save the doc, reset the preferences to templates, shut down Pages, restart pages, select template, open old doc, copy/past old text into new template.  Or, while the original doc is open the first time, I could go find a stored doc with the right letter head template, open it, copy/paste the previous text into the letter head doc (and delete everything else).
    Neither of these options is worth a wooden nickel.  Apple needs to think this one through again.  Like have multiiple buttons with View on it, doing different things.  At least they got rid of using the paragraph symbol for two or three different functions.

  • Looking for a PP or Open Office template, does anybody know where to find t

    long ago, I found a free template with the following background.
    http://img411.imageshack.us/content_round.php?page=done&l=img411/2770/screenshot 20100218at115.png&via=mupload
    for the title slide
    and
    http://img192.imageshack.us/content_round.php?page=done&l=img192/4778/screenshot 20100218at120.png&via=mupload
    for the follow on slides
    I am not sure if it was a PP or Open Office template, but I would like to get my hands on it again as I lost the original. Of course I spend time on Google etc but did not find it. Anybody know where I can find a copy? Or someone has a copy?
    Thanks

    ChangeAgent wrote:
    Most presentation programs allow you to create a gradient (a smooth transition from one color to another across the slide) as a slide background. What program are you using?
    Powerpoint
    Check out the information in this link. It shows how to create gradient for the slide background. That covers one image.
    BTW do you remember any keywords, terms, or any other words in either the template, the file name, or the webpage where you downloaded it from?
    no I do not know as said I did a long search to no avail.
    Looking at the cover image, I'm getting the hunch that it was created in OpenOffice. Does OpenOffice have a template browser? Try that if you haven't.
    Besides that, I'm afraid that's about all I've got. It's like looking for a single grain of sand in a desert.
    I just found this: http://blogs.oreilly.com/digitalmedia/uploads/2008/05/OpenOffice3BetaMenu.jpg
    The gradient is the same, and the "swirls" are the same as well. It might easily be a default template or a template available with OpenOffice. Try that.

  • Cannot open visio template in visual studio 2012 COM Exception "An exception occurred"

    Hi,
     I have following piece of code
    DocumentnewDocument =
    null;
    if
    (visioApplication ==
    null)
    visioApplication = newVisio.Application();
    newDocument = visioApplication.Documents.OpenEx(fileTemplate, (
    short)Visio.VisOpenSaveArgs.visOpenCopy);
    This works fine in visual studio 2008 and server 2008. But after migration to visual studio 2012 and windows server 2012(this code runs in a windows service in server) it is no longer working throwing COM Exception - "An Exception occurred" while
    opening a template. Visio 2013 is installed on both server and client. Tried changing the file extension from vst to vstx. but no use.

    Hi
    SM_CT,
    According to the error message “Exception from HRESULT: 0x800706BE”, you can refer to this article.
    http://support.microsoft.com/kb/2461206
    If there is anything I can do for you regarding this issue, feel free to post back.
    Best regards,
    Greta Ge
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • Getting Run time error when trying to open WAD

    I get the following message when opening WAD either from Business Explorer or from the start menu of the window.
    run time error '438'.
    Object does not support this property or method.
    Any Insights? I was able to do this earlier.
    Thanks
    Amit.

    Stefan,
    What is your front end patch level ? to find out , open the Logon pad ad right click on the icon on the status bar and select about , you will know the patch level for the same , that might give you some idea , what you have to possibly do is implement a front end patch.
    Arun

  • Dump error when I click on 'open dynamic template' in Etools(BPC EXCEL)

    Hi ,
    I'm having this strange issue:
    We are using BPC7.5 NW sp04
    when user click on the option 'open Dynamic template' or 'save Dynamic template' in Etools it throws the dump error and when he/she click on OK then it'll let them open/save the template.
    I tried different options like:
    1) I dont get the error when I logon from the users laptop (using my userid)
    2) User dont get the error when he\she logon from my laptop (with his/her users id)
    Please suggest twe have this issue with three users as of now.
    Thanks

    Hi Nilanjan,
    Thanks a lot for the response, yes I did tried that but still same issue.
    we are getting the error only with one Application.
    Please suggest. Thanks

  • My contribute crashed when opening a template

    My contribute crashed when opening a template what should I do?
    This is the Error details:
    Process:         Adobe Contribute CS5 [333]
    Path:            /Applications/Adobe Contribute CS5/Adobe Contribute CS5.app/Contents/MacOS/Adobe Contribute CS5
    Identifier:      com.adobe.Contribute
    Version:         6,0,0, 3688 (6,0,0)
    Code Type:       X86 (Native)
    Parent Process:  launchd [146]
    Responsible:     Adobe Contribute CS5 [333]
    User ID:         505
    Date/Time:       2014-02-07 13:49:17.871 -0500
    OS Version:      Mac OS X 10.9.1 (13B42)
    Report Version:  11
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x000000000000000e
    VM Regions Near 0xe:
    --> __PAGEZERO             0000000000000000-0000000000001000 [    4K] ---/--- SM=NUL  /Applications/Adobe Contribute CS5/Adobe Contribute CS5.app/Contents/MacOS/Adobe Contribute CS5
        __TEXT                 0000000000001000-0000000000e43000 [ 14.3M] r-x/rwx SM=COW  /Applications/Adobe Contribute CS5/Adobe Contribute CS5.app/Contents/MacOS/Adobe Contribute CS5
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.adobe.Contribute                    0x00999b14 js_Execute + 198
    1   com.adobe.Contribute                    0x009687ec JS_ExecuteScript + 60
    2   com.adobe.Contribute                    0x0048372d ExecuteTemplateScript(ParsedTemplateInfo&, TemplateInstanceData*, CString const&) + 487
    3   com.adobe.Contribute                    0x00490616 VTE_ApplyTemplateCore(CString const&, CString&, MMNotesTemplateData&, unsigned long&, unsigned short const*, unsigned short const*, unsigned short const*, int&, int&, int, TemplateInstanceData*, CString const*, TemplateInstanceData*, CStringList_*, TemplateInstanceData*, int*, bool) + 3072
    4   com.adobe.Contribute                    0x0009fc6e FileStateManager::NewFile(CString const&, CString const&, CString const&, int, CString const&, CString const&, int, int, UPDATE_RESULT*, int, CString) + 662
    5   com.adobe.Contribute                    0x000a2898 FileStateManager::NewFile(CString const&, CString const&, CString const&, int, int, UPDATE_RESULT*, CString) + 162
    6   com.adobe.Contribute                    0x00183a26 NewCCDocCore::OnOKCore(CString&, bool&) + 8048
    7   com.adobe.Contribute                    0x001859bf NewCCDocumentDialog::OnOK() + 147
    8   com.adobe.Contribute                    0x00a37527 CCmdTarget::OnCmdMsg(unsigned int, int, void*, AFX_CMDHANDLERINFO*) + 567
    9   com.adobe.Contribute                    0x00a00fad CDialog::OnCmdMsg(unsigned int, int, void*, AFX_CMDHANDLERINFO*) + 45
    10  com.adobe.Contribute                    0x00a8cd19 CWnd::OnCommand(unsigned int, long) + 105
    11  com.adobe.Contribute                    0x007736f3 TitanDialog::OnCommand(unsigned int, long) + 95
    12  com.adobe.Contribute                    0x00a8e6f7 CWnd::OnWndMsg(unsigned int, unsigned int, long, long*) + 423
    13  com.adobe.Contribute                    0x00a8969f CWnd::WindowProc(unsigned int, unsigned int, long) + 143
    14  com.adobe.Contribute                    0x00a89548 CWnd::WinSendMessage(unsigned int, unsigned int, long) + 56
    15  com.adobe.Contribute                    0x00a9c29f CImplBase::SendCommandMessageToParent(unsigned short) const + 111
    16  com.adobe.Contribute                    0x00a527ff CButtonImpl::HotSpotResult(short) + 95
    17  com.adobe.Contribute                    0x00a9851f CImplBase::CallClick(EventRecord const&, LPane*) + 111
    18  com.adobe.Contribute                    0x00a9bcb4 CImplBase::SendMouseMessage(EventRecord const&, LPane*, unsigned int) + 1636
    19  com.adobe.Contribute                    0x00a3ffac CImplMacWindow::ClickInContentImpl(EventRecord const&) + 1036
    20  com.adobe.Contribute                    0x00a47364 CWindowEventHandlers::ClickContentRgn(OpaqueEventHandlerCallRef*, OpaqueEventRef*) + 292
    21  com.adobe.Contribute                    0x00b29dfa LEventHandler::EventHandlerCallback(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 32
    22  com.apple.HIToolbox                     0x97100eb9 _InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) + 36
    23  com.apple.HIToolbox                     0x96f5464f DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1452
    24  com.apple.HIToolbox                     0x96f53968 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 386
    25  com.apple.HIToolbox                     0x96f66af1 SendEventToEventTarget + 88
    26  com.apple.HIToolbox                     0x9710d148 SendEventFromMouseDown(OpaqueWindowPtr*, unsigned long, OpaqueEventRef*) + 167
    27  com.apple.HIToolbox                     0x9710d4ec HandleWindowClick(OpaqueWindowPtr*, Point, short, unsigned long, OpaqueEventRef*) + 554
    28  com.apple.HIToolbox                     0x9710ca06 HandleMouseEvent(OpaqueEventHandlerCallRef*, OpaqueEventRef*) + 545
    29  com.apple.HIToolbox                     0x96fc68d8 StandardWindowEventHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 857
    30  com.apple.HIToolbox                     0x97100eb9 _InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) + 36
    31  com.apple.HIToolbox                     0x96f5464f DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1452
    32  com.apple.HIToolbox                     0x96f53968 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 386
    33  com.apple.HIToolbox                     0x96fc5b57 CallNextEventHandler + 84
    34  com.adobe.Contribute                    0x00a45958 CWindowEventHandlers::HandleMouseDown(OpaqueEventHandlerCallRef*, OpaqueEventRef*) + 72
    35  com.adobe.Contribute                    0x00b29dfa LEventHandler::EventHandlerCallback(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 32
    36  com.apple.HIToolbox                     0x97100eb9 _InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) + 36
    37  com.apple.HIToolbox                     0x96f5464f DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1452
    38  com.apple.HIToolbox                     0x96f53968 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 386
    39  com.apple.HIToolbox                     0x96f66af1 SendEventToEventTarget + 88
    40  com.apple.HIToolbox                     0x96f87bb2 ToolboxEventDispatcherHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 3046
    41  com.apple.HIToolbox                     0x96f54a95 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 2546
    42  com.apple.HIToolbox                     0x96f53968 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 386
    43  com.apple.HIToolbox                     0x96f66af1 SendEventToEventTarget + 88
    44  com.adobe.Contribute                    0x00a13f81 CEventDispatcher::ProcessEvent(int) + 177
    45  com.adobe.Contribute                    0x00a017da CDialog::DoModal() + 858
    46  com.adobe.Contribute                    0x00773ae9 TitanDialog::DoModal() + 95
    47  com.adobe.Contribute                    0x00187263 NewCCDocumentDialog::Invoke(CString&, int) + 483
    48  com.adobe.Contribute                    0x0018732d InvokeNewCCDocumentDialog(CString&, bool) + 25
    49  com.adobe.Contribute                    0x00073e4e NewDialogOp::operator()() const + 28
    50  com.adobe.Contribute                    0x000206e7 DoProtectedFSMOp(FSMOp const&, int) + 125
    51  com.adobe.Contribute                    0x0004b31d WorkspaceManager::DoWevCreate() + 121
    52  com.adobe.Contribute                    0x0006418e WorkspaceManager::DoProcessEventSwitchCase(WorkspaceManager::Event, CString&, CString&) + 144
    53  com.adobe.Contribute                    0x000648f2 WorkspaceManager::ProcessEvent(WorkspaceManager::Event) + 1042
    54  com.adobe.Contribute                    0x000153ab JSObjCCWorkspaceManager::ProcessEvent(JSContext*, JSObject*, unsigned int, long*, long*) + 259
    55  com.adobe.Contribute                    0x009defa5 JSCallNative(int (*)(JSContext*, JSObject*, unsigned int, long*, long*), JSContext*, JSObject*, unsigned int, long*, long*) + 37
    56  com.adobe.Contribute                    0x009defec JSCallNativeSafe + 52
    57  com.adobe.Contribute                    0x0099a697 js_Invoke + 2446
    58  com.adobe.Contribute                    0x00993ec6 js_Interpret + 28798
    59  com.adobe.Contribute                    0x00999c4e js_Execute + 512
    60  com.adobe.Contribute                    0x0096a112 JS_EvaluateUCScriptForPrincipals + 143
    61  com.adobe.Contribute                    0x0096a198 JS_EvaluateUCScript + 67
    62  com.adobe.Contribute                    0x005e31cf JSInterp::EvaluateScript(JSContext*, JSObject*, unsigned short const*, unsigned int, unsigned short const*, unsigned int, long*) + 121
    63  com.adobe.Contribute                    0x005e07ef JSInterp::ExecuteScript(Run*, TitanDoc*, unsigned short const*, unsigned short const*, unsigned short const*, long, unsigned short const*, CString*, JSInterp::ScriptMode, int, int, int, int, int, int) + 1153
    64  com.adobe.Contribute                    0x005a9f55 JSUICommand::Execute(TitanDoc*, int, unsigned short const*) + 1457
    65  com.adobe.Contribute                    0x005b51ac JSToolbarButton::OnExecuteInternal() + 164
    66  com.adobe.Contribute                    0x00a37527 CCmdTarget::OnCmdMsg(unsigned int, int, void*, AFX_CMDHANDLERINFO*) + 567
    67  com.adobe.Contribute                    0x00a8f287 CWnd::OnChildNotify(unsigned int, unsigned int, long, long*) + 279
    68  com.adobe.Contribute                    0x00a8cda9 CWnd::OnCommand(unsigned int, long) + 249
    69  com.adobe.Contribute                    0x00a8e6f7 CWnd::OnWndMsg(unsigned int, unsigned int, long, long*) + 423
    70  com.adobe.Contribute                    0x00a8969f CWnd::WindowProc(unsigned int, unsigned int, long) + 143
    71  com.adobe.Contribute                    0x00a89548 CWnd::WinSendMessage(unsigned int, unsigned int, long) + 56
    72  com.adobe.Contribute                    0x00a9c29f CImplBase::SendCommandMessageToParent(unsigned short) const + 111
    73  com.adobe.Contribute                    0x00a9851f CImplBase::CallClick(EventRecord const&, LPane*) + 111
    74  com.adobe.Contribute                    0x008612d3 CButtonBitmapMasked::OnLButtonDown(unsigned int, CPoint) + 241
    75  com.adobe.Contribute                    0x00a9bcb4 CImplBase::SendMouseMessage(EventRecord const&, LPane*, unsigned int) + 1636
    76  com.adobe.Contribute                    0x00a3ffac CImplMacWindow::ClickInContentImpl(EventRecord const&) + 1036
    77  com.adobe.Contribute                    0x00a47364 CWindowEventHandlers::ClickContentRgn(OpaqueEventHandlerCallRef*, OpaqueEventRef*) + 292
    78  com.adobe.Contribute                    0x00b29dfa LEventHandler::EventHandlerCallback(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 32
    79  com.apple.HIToolbox                     0x97100eb9 _InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) + 36
    80  com.apple.HIToolbox                     0x96f5464f DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1452
    81  com.apple.HIToolbox                     0x96f53968 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 386
    82  com.apple.HIToolbox                     0x96f66af1 SendEventToEventTarget + 88
    83  com.apple.HIToolbox                     0x9710d148 SendEventFromMouseDown(OpaqueWindowPtr*, unsigned long, OpaqueEventRef*) + 167
    84  com.apple.HIToolbox                     0x9710d4ec HandleWindowClick(OpaqueWindowPtr*, Point, short, unsigned long, OpaqueEventRef*) + 554
    85  com.apple.HIToolbox                     0x9710ca06 HandleMouseEvent(OpaqueEventHandlerCallRef*, OpaqueEventRef*) + 545
    86  com.apple.HIToolbox                     0x96fc68d8 StandardWindowEventHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 857
    87  com.apple.HIToolbox                     0x97100eb9 _InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) + 36
    88  com.apple.HIToolbox                     0x96f5464f DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1452
    89  com.apple.HIToolbox                     0x96f53968 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 386
    90  com.apple.HIToolbox                     0x96fc5b57 CallNextEventHandler + 84
    91  com.adobe.Contribute                    0x00a45958 CWindowEventHandlers::HandleMouseDown(OpaqueEventHandlerCallRef*, OpaqueEventRef*) + 72
    92  com.adobe.Contribute                    0x00b29dfa LEventHandler::EventHandlerCallback(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 32
    93  com.apple.HIToolbox                     0x97100eb9 _InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) + 36
    94  com.apple.HIToolbox                     0x96f5464f DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1452
    95  com.apple.HIToolbox                     0x96f53968 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 386
    96  com.apple.HIToolbox                     0x96f66af1 SendEventToEventTarget + 88
    97  com.apple.HIToolbox                     0x96f87bb2 ToolboxEventDispatcherHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 3046
    98  com.apple.HIToolbox                     0x96f54a95 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 2546
    99  com.apple.HIToolbox                     0x96f53968 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 386
    100 com.apple.HIToolbox                     0x96f66af1 SendEventToEventTarget + 88
    101 com.apple.HIToolbox                     0x971005a3 ToolboxEventDispatcher + 82
    102 com.apple.HIToolbox                     0x97100463 RunApplicationEventLoop + 240
    103 com.adobe.Contribute                    0x00a7d6c5 CRealApp::Run() + 421
    104 com.adobe.Contribute                    0x00a4affc main + 300
    105 com.adobe.Contribute                    0x00003c16 start + 54
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x92d4c992 kevent64 + 10
    1   libdispatch.dylib                       0x992328bd _dispatch_mgr_invoke + 238
    2   libdispatch.dylib                       0x99232556 _dispatch_mgr_thread + 52
    Thread 2:
    0   libsystem_kernel.dylib                  0x92d4b7ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x9bb3bd8a _pthread_cond_wait + 837
    2   libsystem_pthread.dylib                 0x9bb3dfa3 pthread_cond_wait + 48
    3   com.adobe.amt.services                  0x0d871126 AMTConditionLock::LockWhenCondition(int) + 46
    4   com.adobe.amt.services                  0x0d869db0 _AMTThreadedPCDService::PCDThreadWorker(_AMTThreadedPCDService*) + 116
    5   com.adobe.amt.services                  0x0d87118c AMTThread::Worker(void*) + 24
    6   libsystem_pthread.dylib                 0x9bb395fb _pthread_body + 144
    7   libsystem_pthread.dylib                 0x9bb39485 _pthread_start + 130
    8   libsystem_pthread.dylib                 0x9bb3ecf2 thread_start + 34
    Thread 3:
    0   libsystem_kernel.dylib                  0x92d4bb76 __semwait_signal + 10
    1   libsystem_c.dylib                       0x9ab8e05b nanosleep$UNIX2003 + 219
    2   com.apple.carbonbundletemplate          0x10369ecb ScObjects::Thread::sleep(unsigned int) + 59
    3   com.apple.carbonbundletemplate          0x10364453 ScObjects::BridgeTalkThread::run() + 163
    4   com.apple.carbonbundletemplate          0x10369fd8 ScObjects::Thread::go(void*) + 168
    5   libsystem_pthread.dylib                 0x9bb395fb _pthread_body + 144
    6   libsystem_pthread.dylib                 0x9bb39485 _pthread_start + 130
    7   libsystem_pthread.dylib                 0x9bb3ecf2 thread_start + 34
    Thread 4:
    0   libsystem_kernel.dylib                  0x92d4ba26 __recvfrom + 10
    1   libsystem_c.dylib                       0x9ab8e16d recv$UNIX2003 + 54
    2   ServiceManager-Launcher.dylib           0x1a7706cf Invoke + 54887
    3   ServiceManager-Launcher.dylib           0x1a76f76e Invoke + 50950
    4   ServiceManager-Launcher.dylib           0x1a76e61f Invoke + 46519
    5   ServiceManager-Launcher.dylib           0x1a76e671 Invoke + 46601
    6   ServiceManager-Launcher.dylib           0x1a76e6fb Invoke + 46739
    7   ServiceManager-Launcher.dylib           0x1a768afe Invoke + 23190
    8   ServiceManager-Launcher.dylib           0x1a768ce7 Invoke + 23679
    9   ServiceManager-Launcher.dylib           0x1a7698c7 Invoke + 26719
    10  ServiceManager-Launcher.dylib           0x1a7699c5 Invoke + 26973
    11  ServiceManager-Launcher.dylib           0x1a76cdb0 Invoke + 40264
    12  ServiceManager-Launcher.dylib           0x1a76d059 Invoke + 40945
    13  ServiceManager-Launcher.dylib           0x1a76d687 Invoke + 42527
    14  ServiceManager-Launcher.dylib           0x1a76d884 Invoke + 43036
    15  ServiceManager-Launcher.dylib           0x1a75f826 Login + 1654
    16  ServiceManager-Launcher.dylib           0x1a760c71 Login + 6849
    17  ServiceManager-Launcher.dylib           0x1a76ddf3 Invoke + 44427
    18  ServiceManager-Launcher.dylib           0x1a770341 Invoke + 53977
    19  libsystem_pthread.dylib                 0x9bb395fb _pthread_body + 144
    20  libsystem_pthread.dylib                 0x9bb39485 _pthread_start + 130
    21  libsystem_pthread.dylib                 0x9bb3ecf2 thread_start + 34
    Thread 5:
    0   libsystem_kernel.dylib                  0x92d4b7ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x9bb3bd8a _pthread_cond_wait + 837
    2   libsystem_pthread.dylib                 0x9bb3dfa3 pthread_cond_wait + 48
    3   com.adobe.adobeswfl                     0x1b3321af APXGetHostAPI + 2599055
    4   com.adobe.adobeswfl                     0x1b0cbb0f APXGetHostAPI + 82415
    5   com.adobe.adobeswfl                     0x1b33229c APXGetHostAPI + 2599292
    6   com.adobe.adobeswfl                     0x1b332307 APXGetHostAPI + 2599399
    7   com.adobe.adobeswfl                     0x1b332426 APXGetHostAPI + 2599686
    8   libsystem_pthread.dylib                 0x9bb395fb _pthread_body + 144
    9   libsystem_pthread.dylib                 0x9bb39485 _pthread_start + 130
    10  libsystem_pthread.dylib                 0x9bb3ecf2 thread_start + 34
    Thread 6:
    0   libsystem_kernel.dylib                  0x92d4b7ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x9bb3bd8a _pthread_cond_wait + 837
    2   libsystem_pthread.dylib                 0x9bb3dfa3 pthread_cond_wait + 48
    3   com.adobe.adobeswfl                     0x1b3321af APXGetHostAPI + 2599055
    4   com.adobe.adobeswfl                     0x1b0cbb0f APXGetHostAPI + 82415
    5   com.adobe.adobeswfl                     0x1b33229c APXGetHostAPI + 2599292
    6   com.adobe.adobeswfl                     0x1b332307 APXGetHostAPI + 2599399
    7   com.adobe.adobeswfl                     0x1b332426 APXGetHostAPI + 2599686
    8   libsystem_pthread.dylib                 0x9bb395fb _pthread_body + 144
    9   libsystem_pthread.dylib                 0x9bb39485 _pthread_start + 130
    10  libsystem_pthread.dylib                 0x9bb3ecf2 thread_start + 34
    Thread 7:
    0   libsystem_kernel.dylib                  0x92d4b7ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x9bb3bd8a _pthread_cond_wait + 837
    2   libsystem_pthread.dylib                 0x9bb3dfa3 pthread_cond_wait + 48
    3   com.adobe.adobeswfl                     0x1b3321af APXGetHostAPI + 2599055
    4   com.adobe.adobeswfl                     0x1b0cbb0f APXGetHostAPI + 82415
    5   com.adobe.adobeswfl                     0x1b33229c APXGetHostAPI + 2599292
    6   com.adobe.adobeswfl                     0x1b332307 APXGetHostAPI + 2599399
    7   com.adobe.adobeswfl                     0x1b332426 APXGetHostAPI + 2599686
    8   libsystem_pthread.dylib                 0x9bb395fb _pthread_body + 144
    9   libsystem_pthread.dylib                 0x9bb39485 _pthread_start + 130
    10  libsystem_pthread.dylib                 0x9bb3ecf2 thread_start + 34
    Thread 8:
    0   libsystem_kernel.dylib                  0x92d4b7ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x9bb3bd8a _pthread_cond_wait + 837
    2   libsystem_pthread.dylib                 0x9bb3dfa3 pthread_cond_wait + 48
    3   com.adobe.adobeswfl                     0x1b3321af APXGetHostAPI + 2599055
    4   com.adobe.adobeswfl                     0x1b0cbb0f APXGetHostAPI + 82415
    5   com.adobe.adobeswfl                     0x1b33229c APXGetHostAPI + 2599292
    6   com.adobe.adobeswfl                     0x1b332307 APXGetHostAPI + 2599399
    7   com.adobe.adobeswfl                     0x1b332426 APXGetHostAPI + 2599686
    8   libsystem_pthread.dylib                 0x9bb395fb _pthread_body + 144
    9   libsystem_pthread.dylib                 0x9bb39485 _pthread_start + 130
    10  libsystem_pthread.dylib                 0x9bb3ecf2 thread_start + 34
    Thread 9:
    0   libsystem_kernel.dylib                  0x92d4b7ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x9bb3bd8a _pthread_cond_wait + 837
    2   libsystem_pthread.dylib                 0x9bb3c042 pthread_cond_timedwait_relative_np + 47
    3   com.adobe.adobeswfl                     0x1b332039 APXGetHostAPI + 2598681
    4   com.adobe.adobeswfl                     0x1b12857c APXGetHostAPI + 461916
    5   com.adobe.adobeswfl                     0x1b1285ca APXGetHostAPI + 461994
    6   com.adobe.adobeswfl                     0x1b33229c APXGetHostAPI + 2599292
    7   com.adobe.adobeswfl                     0x1b332307 APXGetHostAPI + 2599399
    8   com.adobe.adobeswfl                     0x1b332426 APXGetHostAPI + 2599686
    9   libsystem_pthread.dylib                 0x9bb395fb _pthread_body + 144
    10  libsystem_pthread.dylib                 0x9bb39485 _pthread_start + 130
    11  libsystem_pthread.dylib                 0x9bb3ecf2 thread_start + 34
    Thread 10:
    0   libsystem_kernel.dylib                  0x92d4b7ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x9bb3bd8a _pthread_cond_wait + 837
    2   libsystem_pthread.dylib                 0x9bb3c042 pthread_cond_timedwait_relative_np + 47
    3   com.adobe.adobeswfl                     0x1b332177 APXGetHostAPI + 2598999
    4   com.adobe.adobeswfl                     0x1b34d0ee APXGetHostAPI + 2709454
    5   com.adobe.adobeswfl                     0x1b33229c APXGetHostAPI + 2599292
    6   com.adobe.adobeswfl                     0x1b332307 APXGetHostAPI + 2599399
    7   com.adobe.adobeswfl                     0x1b332426 APXGetHostAPI + 2599686
    8   libsystem_pthread.dylib                 0x9bb395fb _pthread_body + 144
    9   libsystem_pthread.dylib                 0x9bb39485 _pthread_start + 130
    10  libsystem_pthread.dylib                 0x9bb3ecf2 thread_start + 34
    Thread 11:
    0   libsystem_kernel.dylib                  0x92d4b7ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x9bb3bd8a _pthread_cond_wait + 837
    2   libsystem_pthread.dylib                 0x9bb3c042 pthread_cond_timedwait_relative_np + 47
    3   com.adobe.adobeswfl                     0x1b332177 APXGetHostAPI + 2598999
    4   com.adobe.adobeswfl                     0x1b4a94b8 APXGetHostAPI + 4135832
    5   com.adobe.adobeswfl                     0x1b33229c APXGetHostAPI + 2599292
    6   com.adobe.adobeswfl                     0x1b332307 APXGetHostAPI + 2599399
    7   com.adobe.adobeswfl                     0x1b332426 APXGetHostAPI + 2599686
    8   libsystem_pthread.dylib                 0x9bb395fb _pthread_body + 144
    9   libsystem_pthread.dylib                 0x9bb39485 _pthread_start + 130
    10  libsystem_pthread.dylib                 0x9bb3ecf2 thread_start + 34
    Thread 12:
    0   libsystem_kernel.dylib                  0x92d4b7ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x9bb3bd1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib                 0x9bb3dbd9 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.carbonbundletemplate          0x1d5ae5d1 MMNetIO::RequestProcessor<MMNetIO::LANNetChannel, MMNetIO::LANNetChannel, MMNetIO::NetIOException>::MutexState::Wait() + 49
    4   com.apple.carbonbundletemplate          0x1d5aeaf7 MMNetIO::RequestProcessor<MMNetIO::LANNetChannel, MMNetIO::LANNetChannel, MMNetIO::NetIOException>::ProcessRequests() + 81
    5   com.apple.carbonbundletemplate          0x1d5aeec7 MMNetIO::RequestProcessor<MMNetIO::LANNetChannel, MMNetIO::LANNetChannel, MMNetIO::NetIOException>::RequestProcessorTrampoline(void*) + 17
    6   libsystem_pthread.dylib                 0x9bb395fb _pthread_body + 144
    7   libsystem_pthread.dylib                 0x9bb39485 _pthread_start + 130
    8   libsystem_pthread.dylib                 0x9bb3ecf2 thread_start + 34
    Thread 13:
    0   libsystem_kernel.dylib                  0x92d4bb76 __semwait_signal + 10
    1   libsystem_c.dylib                       0x9ab8e05b nanosleep$UNIX2003 + 219
    2   libsystem_c.dylib                       0x9ab8de66 sleep$UNIX2003 + 45
    3   com.adobe.Contribute                    0x007e9093 TitanApp::BackgroundThreadProc(void*) + 93
    4   libsystem_pthread.dylib                 0x9bb395fb _pthread_body + 144
    5   libsystem_pthread.dylib                 0x9bb39485 _pthread_start + 130
    6   libsystem_pthread.dylib                 0x9bb3ecf2 thread_start + 34
    Thread 14:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x92d46f7a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x92d4616c mach_msg + 68
    2   com.apple.CoreFoundation                0x9007ef69 __CFRunLoopServiceMachPort + 169
    3   com.apple.CoreFoundation                0x9007e541 __CFRunLoopRun + 1393
    4   com.apple.CoreFoundation                0x9007dd5a CFRunLoopRunSpecific + 394
    5   com.apple.CoreFoundation                0x9007dbbb CFRunLoopRunInMode + 123
    6   com.apple.Foundation                    0x93b850b5 +[NSURLConnection(Loader) _resourceLoadLoop:] + 381
    7   com.apple.Foundation                    0x93b84f2e -[NSThread main] + 45
    8   com.apple.Foundation                    0x93b84e86 __NSThread__main__ + 1426
    9   libsystem_pthread.dylib                 0x9bb395fb _pthread_body + 144
    10  libsystem_pthread.dylib                 0x9bb39485 _pthread_start + 130
    11  libsystem_pthread.dylib                 0x9bb3ecf2 thread_start + 34
    Thread 15:: JavaScriptCore::BlockFree
    0   libsystem_kernel.dylib                  0x92d4b7ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x9bb3bd1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib                 0x9bb3dbd9 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.JavaScriptCore                0x9abb6694 JSC::BlockAllocator::blockFreeingThreadMain() + 276
    4   com.apple.JavaScriptCore                0x9abad9cc WTF::threadEntryPoint(void*) + 76
    5   com.apple.JavaScriptCore                0x9abad960 WTF::wtfThreadEntryPoint(void*) + 16

    Are you "sure" it's a template (.dwt) or is it simply an HTML file you are opening and using as a template?
    Also, you've had this problem before and realized it was a syntax error. What's different about this one?
    Your older thread from last year: http://forums.adobe.com/message/6098332

Maybe you are looking for

  • How do I go from using a single Apple ID with multiple libraries to using home sharing?

    Until now my wife and I have opted to share our iTunes/Apple ID and use multiple libraries to manage our iPhones. This has become increasingly difficult...with issues such as having apps I've downloaded that she doesn't want automatically downloading

  • How do I create a connection with a special character (!) in the password ?

    Oracle 11.2.0.3 EE on Solaris SQL*Developer 3.1.0.6 on Windows 7 Due to security requirements our passwords contain an exclamation mark (!) but I can't get SQL*Developer to recognize it. I've tried to put it in quotes, escaping it and even swearing a

  • Hide content id field

    Hi,, anyone knows how to hide the content id field from the "Content Check id form (Folder)". which comes under link Browse Content->any of the folder -> Actions (situated top right corner) -> New Content. Tell me how to hide the meta data from there

  • Adobe Reader will not switch settings when I try to print something.

    I have a product created using Adobe AIR. I have a portion where a pdf is loaded into a window, and they print it. When we change what paper they are going to print on (different dimensions), it does not take effect. We have to load it in a native PD

  • Washing Machine FAIL

    I just dropped my iPod 4g in the washing machine and I left it in rice for a couple weeks. Now the touch screen works and the sound dose too, but the backlight wont work at all. If you get a glare off of the screen you can see the homepage. I dont ha