UndefinedException when working with RL-facts and testing at design time

Hi,
I'm performing some tests with JDeveloper Rules Designer on a very basic level. I'm defining rl facts (fact types), define a rule and write a test function to test this rule at design time. When executing my test function with the "Test Function" function an error occurs:
UndefinedException: symbol 'Person' is undefined in main...
Person is a fact type (RL Fact) that is the output parameter type of the decision function. If I don't use an output parameter everything works fine.
If I use XML Facts instead of RL Facts and define an output parameter for the decision function everything works fine, too.
Are there any restrictions for rl facts?
//Mike

Sure you can read and write at the same time. But normally you would be reading from one place and writing to another place.
I rather regret avoiding the OP's earlier post asking how to combine two classes. I looked at the two classes posted and realized the best thing to do was actually to break them into more classes. But I also realized it was going to be a big job explaining why and how, and I just don't have the patience for that sort of thing.
So now we have a Big Ball Of Tar™ and I feel partly responsible.

Similar Messages

  • Problem when displaying images when working  with PHP, mysql and dreamweaver in a brower

    Hey Guys
    I am new to dynamic development but I already did some
    research and tutorials about how to get a dynamic web site working
    with PHP and Mysql in Dreamweaver. I set up a test page to view
    some content on it directly from the mysql database and it worked
    just fine in dreamweaver only when I pressed the
    live data view.
    When I tried to view the same page using the browser preview
    with firefox and internet explorer, plain text from the database
    was correctly displayed on the brower but the images were absent.
    In the mysql database I used the varchar as my picture data
    type field so that I will refer in dreamweaver in the data binding
    panel in the img.src to the picture column of my database.
    I anyone can tell me what am I doing wrong so that my
    pictures are not displayed in the browser when i click the browser
    preview facility in dreamweaver I would be very very and very
    pleased ! :)

    The odds are that it is the way that you have referenced the
    images rather
    than an issue with the database. If you have the images root
    relative like
    this "/images" then they will work in preview, and on the
    webserver, but
    will not view when looking at the file via localhost.
    If possible make the links page relative and then they should
    work fine.
    Paul Whitham
    Certified Dreamweaver MX2004 Professional
    Adobe Community Expert - Dreamweaver
    Valleybiz Internet Design
    www.valleybiz.net
    "mariosal026" <[email protected]> wrote in
    message
    news:ea3nq2$9ol$[email protected]..
    > Hey Guys
    >
    > I am new to dynamic development but I already did some
    research and
    > tutorials
    > about how to get a dynamic web site working with PHP and
    Mysql in
    > Dreamweaver.
    > I set up a test page to view some content on it directly
    from the mysql
    > database and it worked just fine in dreamweaver only
    when I pressed the
    >
    live
    > data view.
    >
    > When I tried to view the same page using the browser
    preview with firefox
    > and
    > internet explorer, plain text from the database was
    correctly displayed on
    > the
    > brower but the images were absent.
    >
    > In the mysql database I used the varchar as my picture
    data type field so
    > that
    > I will refer in dreamweaver in the data binding panel in
    the img.src to
    > the
    > picture column of my database.
    >
    > I anyone can tell me what am I doing wrong so that my
    pictures are not
    > displayed in the browser when i click the browser
    preview facility in
    > dreamweaver I would be very very and very pleased ! :)
    >

  • How to avoid error "HTP 404" when working with "Google Suggest" and Apex 3?

    Hi,
    I am trying to implement the GOOGLE SUGGEST function in an APEX application (a sample of Google Suggest + APEX can be found in http://htmldb.oracle.com/pls/otn/f?p=22777:6:4312817919732414 or http://teradata.weizheng.net/2009/08/using-google-suggest-in-apex.html).
    The release of APEX is 3.2.1 and of RDBMS is 9.2.0.8 (64 bits). They are installed on a SOLARIS 9 SPARC 64-bits server, where i have an EBS 11.5.9 application. So, i´m using RDBMS and Apache of EBS 11.5.9 to work with APEX 3.2.1.
    I can see the list generated by javascript function when i type in P2_REPORT_SEARCH, but when i SELECT an item (pressing ENTER), i have got an "HTP 404 error". Looking in the logs in the apache, i have found this error:
    http://prigaudi1.sote.tasa.com.ar:8002/pls/apex/wwv_flow.accept
    [Tue Jul 26 10:12:53 2011] [error] mod_plsql: /pls/apex/wwv_flow.accept ORA-0
    wwv_flow.accept: SIGNATURE (parameter names) MISMATCH
    VARIABLES IN FORM NOT IN PROCEDURE: AQ,OQ
    NON-DEFAULT VARIABLES IN PROCEDURE NOT IN FORM:
    I think that "AQ" and "OQ" are variables of "ac.js" javascript.
    The JAVASCRIPT procedure that is situated on HTML HEADER of PAGE 2 is :
    <script src="/i/BASE_CONOCIMIENTO/ac_google/ac.js" type="text/javascript"> </script>
    <script language="Javascript" type="text/javascript">
    function iac()
    { InstallAC(document.wwv_flow,document.getElementById
    ('P2_REPORT_SEARCH'),"","ASKTOM.incsearch_articulo","en"); }
    </script>
    The JAVASCRIPT function that is situated on HTML BODY ATTRIBUTE is:
    onLoad="iac()"
    My "INCSEARCH" procedure is described below:
    CREATE OR REPLACE PROCEDURE IncSearch_ARTICULO(qu VARCHAR2, hl VARCHAR2, js VARCHAR2,
    client VARCHAR2 default null) AS
    l_List1 varchar2(10000);
    l_Query varchar2(255);
    l_separator varchar2(10) default '';
    BEGIN
    l_Query := qu || '%';
    FOR x IN (select TIT_TOPICO,NULL AS COMPLEMENTO from BAC_TOPICO where Upper(TIT_TOPICO) like Upper
    (l_Query) order by 1)
    LOOP
    l_list1 := l_List1 || l_separator || '"' || x.TIT_TOPICO || '"';
    l_separator := ',';
    END LOOP;
    owa_util.mime_header('text/html', false);
    owa_util.http_header_close;
    htp.p('sendRPCDone(frameElement, "'|| qu ||'", new Array(' || l_List1 || '), new Array(""), new Array(""));');
    END INCSEARCH_ARTICULO;
    I think this procedure is working fine on Apache Server:
    Example:
    http://prigaudi1.sote.tasa.com.ar:8002/pls/apex/asktom.incsearch_articulo?qu=A&hl=A&js=a <enter>
    sendRPCDone(frameElement, "A", new Array("Ayuda Como crear un topico en la base de conocimiento"), new Array
    (""), new Array(""));
    I would like to know how i can solve this problem of HTP 404 and "SIGNATURE (parameter names) MISMATCH"
    Best regards,
    Sergio Coutinho

    Hi,
    Maybe i provided too much information about my problem,
    Well, i tried to implement the solution "Google Suggest" in my APEX 3.2 application, but i´m having now an "HTTP 404 error" when i select an iten in the list buided by "google suggest".
    Can anybody make a suggestion of how i could analize this error and fix it?
    Best regards,
    Sergio Coutinho

  • Dreamweaver crashes when working with BC-Site and pause for more then 10 Min

    Hi,
    absolutely annoying and drives me crazy: when working at a BC-Site in DW and pausing for approx 10 min. DW crashes regularly (always!) when saving or uploading (which is the same). This sucks so deeply! Could you pleeeeease take care of this issue, because it seems easy to solve.
    If you want me to send crash reports, I do, but only to Apple, because Adobes own crash report is never showing up and I dont know how to install. Otherwise I would bomb you with crash reports, it happens dozent of times per day.
    I am also paid partner of BC, maybe this speeds up the whole thing...
    Regards
    Citzwerth

    Hi Alex,
    here is the crash report.
    Regards,
    Dennis
    Process:         Dreamweaver
    Path:            /Applications/Adobe Dreamweaver CS6/Adobe Dreamweaver CS6.app/Contents/MacOS/Dreamweaver
    Identifier:      com.adobe.dreamweaver-12.1
    Version:         12.1.1.5966 (12.1.1)
    Code Type:       X86 (Native)
    Parent Process:  launchd
    User ID:         501
    Date/Time:       2013-02-14 11:28:43.083 +0100
    OS Version:      Mac OS X 10.8.2 (12C60)
    Report Version:  10
    Interval Since Last Report:          233853 sec
    Crashes Since Last Report:           13
    Per-App Interval Since Last Report:  119982 sec
    Per-App Crashes Since Last Report:   1
    Anonymous UUID:                      8D8BAEE8-F567-511F-B2CD-86495221EFED
    Crashed Thread:  0  Dispatch queue: NSPersistentUI Work
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000000
    VM Regions Near 0:
    --> __PAGEZERO             0000000000000000-0000000000001000 -/- SM=NUL  /Applications/Adobe Dreamweaver CS6/Adobe Dreamweaver CS6.app/Contents/MacOS/Dreamweaver
        __TEXT                 0000000000001000-00000000019ce000 r-x/rwx SM=COW  /Applications/Adobe Dreamweaver CS6/Adobe Dreamweaver CS6.app/Contents/MacOS/Dreamweaver
    Application Specific Information:
    Performing @selector(dispatchMenuSelection:) from sender DVAMacMenuItem 0x14ad5b70
    Thread 0 Crashed:: Dispatch queue: NSPersistentUI Work
    0   com.apple.CoreFoundation           0x96cf30cd __CFBinaryPlistWrite + 317
    1   com.apple.CoreFoundation           0x96d561be __CFBinaryPlistWriteToStreamWithOptions + 46
    2   com.apple.Foundation               0x941a06fc -[NSKeyedArchiver finishEncoding] + 628
    3   com.apple.AppKit                   0x94d3e5ea -[NSPersistentUIRecord generateArchive:] + 204
    4   com.apple.AppKit                   0x94d3e358 -[NSPersistentUIBucket encodeInvalidPersistentStateIntoRecords:] + 186
    5   com.apple.AppKit                   0x94d3de34 __85-[NSPersistentUIManager flushAllChangesOptionallyWaitingUntilDone:updatingSnapshots:]_block_invoke_0 + 707
    6   libdispatch.dylib                  0x977aac82 dispatchclient_callout + 46
    7   libdispatch.dylib                  0x977ac456 dispatchbarrier_sync_f_invoke + 39
    8   libdispatch.dylib                  0x977ac42d dispatch_barrier_sync_f + 87
    9   libdispatch.dylib                  0x977aec3e dispatch_sync + 45
    10  com.apple.AppKit                   0x94d3d7ee -[NSPersistentUIManager flushAllChangesOptionallyWaitingUntilDone:updatingSnapshots:] + 697
    11  com.apple.AppKit                   0x94d3d507 -[NSPersistentUIManager flushPersistentStateAndClose:waitingUntilDone:] + 198
    12  com.apple.AppKit                   0x94d3d396 __42-[NSPersistentUIManager acquireDirtyState]_block_invoke_0 + 106
    13  com.apple.AppKit                   0x94c6430e ____NSHysteresisBlock_block_invoke_0 + 258
    14  libdispatch.dylib                  0x977aac82 dispatchclient_callout + 46
    15  libdispatch.dylib                  0x977ad007 dispatchsource_invoke + 699
    16  libdispatch.dylib                  0x977ac00a dispatchqueue_invoke + 66
    17  libdispatch.dylib                  0x977b02af dispatchmain_queue_callback_4CF + 171
    18  com.apple.CoreFoundation           0x96cf61d5 __CFRunLoopRun + 1845
    19  com.apple.CoreFoundation           0x96cf563a CFRunLoopRunSpecific + 378
    20  com.apple.CoreFoundation           0x96cf54ab CFRunLoopRunInMode + 123
    21  com.apple.HIToolbox                0x9919f15a RunCurrentEventLoopInMode + 242
    22  com.apple.HIToolbox                0x9919eec9 ReceiveNextEventCommon + 374
    23  com.apple.HIToolbox                0x9919ed44 BlockUntilNextEventMatchingListInMode + 88
    24  com.apple.AppKit                   0x94b7ea3a _DPSNextEvent + 724
    25  com.apple.AppKit                   0x94b7e26c -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 119
    26  com.adobe.dreamweaver-12.1         0x003ea4d7 CEventDispatcher::ProcessEvent(int, unsigned long) + 529
    27  com.adobe.dreamweaver-12.1         0x00ff4f33 DWNetCallback::ProcessAppMessages() + 49
    28  com.adobe.dreamweaver-12.1         0x00ff56ee DWNetCallback::WaitUntilDone() + 1974
    29  com.adobe.dreamweaver-12.1         0x00c733c0 CNetIOAgent::ChDir(unsigned short const, CSiteInfo) + 2170
    30  com.adobe.dreamweaver-12.1         0x00311277 CFileTransfer::GetRemoteFileInfo(CString, CString, unsigned long, _FILETIME, int, int, CSiteInfo) + 875
    31  com.adobe.dreamweaver-12.1         0x0032f8d7 SiteNet::GetRemoteFileInfo(CString, CString, unsigned long, _FILETIME, int, int, CSiteInfo) + 105
    32  com.adobe.dreamweaver-12.1         0x00c7b025 CNetIOAgent::CheckLockFileOwner(unsigned short const, CString&, CString, CSiteInfo*) + 205
    33  com.adobe.dreamweaver-12.1         0x00d24a0f CTransferAgent::GetFileLockInfo(unsigned short const, bool&, CString&, CString&, CSiteInfo) + 379
    34  com.adobe.dreamweaver-12.1         0x00c7198c CNetIOAgent::GetFileLockInfo(unsigned short const, bool&, CString&, CString&, CSiteInfo) + 1340
    35  com.adobe.dreamweaver-12.1         0x0030678d CFileTransfer::UploadOK(CString, CString, CString, CString, int, int&, int&, int&, CSiteInfo, CString, int, std::vector<std::pair<CString, CSiteInfo>, std::allocator<std::pair<CString, CSiteInfo> > >) + 1177
    36  com.adobe.dreamweaver-12.1         0x0031d26e CFileTransfer::UploadAFile(CString, CString, CString, unsigned long, CString, int, int, _FILETIME, int&, int&, int&, int, int, int, int, int, CSiteInfo, int, int, std::vector<std::pair<CString, CSiteInfo>, std::allocator<std::pair<CString, CSiteInfo> > >, CStringList*) + 3904
    37  com.adobe.dreamweaver-12.1         0x0032ff0b SiteNet::UploadAFile(CString, CString, CString, unsigned long, CString, int, int, _FILETIME, int&, int&, int&, int, int, int, int, int, CSiteInfo, int, int, std::vector<std::pair<CString, CSiteInfo>, std::allocator<std::pair<CString, CSiteInfo> > >, bool, CStringList*) + 539
    38  com.adobe.dreamweaver-12.1         0x00c296da CFileView::Process(REQUEST&) + 1290
    39  com.adobe.dreamweaver-12.1         0x0039cdf3 CAppFTPOpQueue::ProcessRefreshRequests() + 113
    40  com.adobe.dreamweaver-12.1         0x0039d032 CAppFTPOpQueue::Process() + 100
    41  com.adobe.dreamweaver-12.1         0x001c61b1 CFileView::UploadOpenDoc(CString, CString, CString, CString, unsigned long, CString, int, int, int&, int&, int&, int, int, int, CSiteInfo, int, int) + 681
    42  com.adobe.dreamweaver-12.1         0x001ea37e CSiteInfo::Put(CString const&, int) + 2272
    43  com.adobe.dreamweaver-12.1         0x001f2c07 SiteServices::Put(CString const&, bool) + 285
    44  com.adobe.dreamweaver-12.1         0x0055d7a8 TitanDoc::OnSaveDocument(unsigned short const*, int) + 2636
    45  com.adobe.dreamweaver-12.1         0x00b697cb TitanDoc::OnSaveDocument(unsigned short const*) + 35
    46  com.adobe.dreamweaver-12.1         0x01157b07 CDocument::DoSave(unsigned short const*, int) + 471
    47  com.adobe.dreamweaver-12.1         0x00559195 TitanDoc::DoSave(unsigned short const*, int) + 73
    48  com.adobe.dreamweaver-12.1         0x01157301 CDocument::DoFileSave() + 51
    49  com.adobe.dreamweaver-12.1         0x00559e6b TitanDoc::DoFileSave() + 395
    50  com.adobe.dreamweaver-12.1         0x0055ad3d TitanDoc::DoFileSave(int) + 137
    51  com.adobe.dreamweaver-12.1         0x0055b1ad TitanDoc::OnFileSave() + 41
    52  com.adobe.dreamweaver-12.1         0x0115f261 CCmdTarget::OnCmdMsg(unsigned int, int, void, AFX_CMDHANDLERINFO) + 271
    53  com.adobe.dreamweaver-12.1         0x01156f5b CDocument::OnCmdMsg(unsigned int, int, void, AFX_CMDHANDLERINFO) + 51
    54  com.adobe.dreamweaver-12.1         0x0114e973 CView::OnCmdMsg(unsigned int, int, void, AFX_CMDHANDLERINFO) + 103
    55  com.adobe.dreamweaver-12.1         0x0115fa9c CFrameWnd::OnCmdMsg(unsigned int, int, void, AFX_CMDHANDLERINFO) + 84
    56  com.adobe.dreamweaver-12.1         0x0114c551 CWnd::OnCommand(unsigned int, long) + 239
    57  com.adobe.dreamweaver-12.1         0x0114aa10 CWnd::OnWndMsg(unsigned int, unsigned int, long, long*) + 60
    58  com.adobe.dreamweaver-12.1         0x0114a082 CWnd::WindowProc(unsigned int, unsigned int, long) + 58
    59  com.adobe.dreamweaver-12.1         0x003ac68e CWnd::WinSendMessage(unsigned int, unsigned int, long) + 44
    60  com.adobe.dreamweaver-12.1         0x00942299 JSMenuCaller::CallMenuHandler(JSContext, JSObject, unsigned short const*, unsigned int) + 221
    61  com.adobe.dreamweaver-12.1         0x00956685 JSObjDreamweaver::saveDocument(JSContext, JSObject, unsigned int, long, long) + 537
    62  com.adobe.dreamweaver-12.1         0x004ccab8 JSCallNativeSafe + 52
    63  com.adobe.dreamweaver-12.1         0x0040517d js_Invoke + 2440
    64  com.adobe.dreamweaver-12.1         0x0044e936 js_Interpret + 300471
    65  com.adobe.dreamweaver-12.1         0x004a09fb js_Execute + 502
    66  com.adobe.dreamweaver-12.1         0x003ed301 JS_EvaluateUCScriptForPrincipals + 130
    67  com.adobe.dreamweaver-12.1         0x003ed385 JS_EvaluateUCScript + 67
    68  com.adobe.dreamweaver-12.1         0x000f84d2 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) + 1670
    69  com.adobe.dreamweaver-12.1         0x000e42e8 JSCommand::RunCommand(JSMfcDoc, unsigned short const, int, long*, JSCommand::CommandContext) + 616
    70  com.adobe.dreamweaver-12.1         0x009ee72f JSUICommand::CallExecuteOrKillFocusHandler(TitanDoc, int, unsigned short const, bool) + 991
    71  com.adobe.dreamweaver-12.1         0x009eeb43 JSUICommand::Execute(TitanDoc, int, unsigned short const) + 215
    72  com.adobe.dreamweaver-12.1         0x009cca30 JSMenusCommands::Execute(unsigned int) const + 312
    73  com.adobe.dreamweaver-12.1         0x009c8595 JSMenus::ExecuteCommand(unsigned int) const + 27
    74  com.adobe.dreamweaver-12.1         0x00613ce9 NTECodeView::OnExecuteJSMenuItem(unsigned int) + 101
    75  com.adobe.dreamweaver-12.1         0x0115f261 CCmdTarget::OnCmdMsg(unsigned int, int, void, AFX_CMDHANDLERINFO) + 271
    76  com.adobe.dreamweaver-12.1         0x0114e93c CView::OnCmdMsg(unsigned int, int, void, AFX_CMDHANDLERINFO) + 48
    77  com.adobe.dreamweaver-12.1         0x0115fa9c CFrameWnd::OnCmdMsg(unsigned int, int, void, AFX_CMDHANDLERINFO) + 84
    78  com.adobe.dreamweaver-12.1         0x0114c551 CWnd::OnCommand(unsigned int, long) + 239
    79  com.adobe.dreamweaver-12.1         0x0114aa10 CWnd::OnWndMsg(unsigned int, unsigned int, long, long*) + 60
    80  com.adobe.dreamweaver-12.1         0x0114a082 CWnd::WindowProc(unsigned int, unsigned int, long) + 58
    81  com.adobe.dreamweaver-12.1         0x003ac68e CWnd::WinSendMessage(unsigned int, unsigned int, long) + 44
    82  com.adobe.dreamweaver-12.1         0x0124950b MMUI::COwlFrameWnd::OnCommand(unsigned int, long) + 65
    83  com.adobe.dreamweaver-12.1         0x0058285c TitanMainFrame::OnCommand(unsigned int, long) + 60
    84  com.adobe.dreamweaver-12.1         0x0114aa10 CWnd::OnWndMsg(unsigned int, unsigned int, long, long*) + 60
    85  com.adobe.dreamweaver-12.1         0x0114a082 CWnd::WindowProc(unsigned int, unsigned int, long) + 58
    86  com.adobe.dreamweaver-12.1         0x003ac68e CWnd::WinSendMessage(unsigned int, unsigned int, long) + 44
    87  com.adobe.dreamweaver-12.1         0x0116c4b5 CRealApp::DoHandleCommand(int) + 369
    88  com.adobe.dreamweaver-12.1         0x0116c33b non-virtual thunk to CRealApp::DoHandleCommand(int) + 27
    89  com.adobe.exo.framework            0x04199658 exo::uisupport::CommandHandler::HandleCommand(int) + 84
    90  com.adobe.exo.framework            0x04198a53 exo::uisupport::CommandHandler::DoCallMyCommandChain(int) + 49
    91  com.adobe.exo.framework            0x04197d65 exo::uisupport::CommandHandlerBase::CallCommandChain(int) + 65
    92  com.adobe.exo.framework            0x04152324 exo::app::OS_AppBase::DispatchMenuCommand(int) + 146
    93  com.adobe.exo.framework            0x04152c9f boost::detail::function::void_function_obj_invoker0, void) + 36
    95  com.adobe.dvacore.framework        0x034660f8 boost::detail::function::function_obj_invoker0<boost::_bi::bind_t<int, int ()(boost::function0<void>, void), boost::_bi::list2<boost::_bi::value<boost::function0<void>>, boost::_bi::value, bool*) + 129
    99  com.adobe.exo.framework            0x04150e0e -[ExoMacApplication handleMenuCommand:] + 174
    100 com.adobe.dvaui.framework          0x03a1db42 -[DVAMacMenuItem dispatchMenuSelection:] + 66
    101 libobjc.A.dylib                    0x93a335d3 -[NSObject performSelector:withObject:] + 70
    102 com.apple.AppKit                   0x94c6abd2 -[NSApplication sendAction:to:from:] + 436
    103 com.apple.AppKit                   0x94da73dc -[NSMenuItem _corePerformAction] + 529
    104 com.apple.AppKit                   0x94da706b -[NSCarbonMenuImpl performActionWithHighlightingForItemAtIndex:] + 163
    105 com.apple.AppKit                   0x94da66f4 -[NSMenu _performActionWithHighlightingForItemAtIndex:sendAccessibilityNotification:] + 79
    106 com.apple.AppKit                   0x94da66a0 -[NSMenu _performActionWithHighlightingForItemAtIndex:] + 48
    107 com.apple.AppKit                   0x94da5ba5 -[NSMenu performKeyEquivalent:] + 306
    108 com.apple.AppKit                   0x94da4f5c -[NSApplication _handleKeyEquivalent:] + 915
    109 com.apple.AppKit                   0x94c5aee1 -[NSApplication sendEvent:] + 5512
    110 com.adobe.dvaui.framework          0x039eeeb4 -[DVAMacApplication sendEvent:] + 852
    111 com.adobe.exo.framework            0x0415171f -[ExoMacApplication sendEvent:] + 559
    112 com.apple.AppKit                   0x94b7472c -[NSApplication run] + 951
    113 com.adobe.exo.framework            0x04150b73 exo::app::OS_AppBase::RunEventLoop() + 67
    114 com.adobe.dreamweaver-12.1         0x0116c83f CRealApp::Run() + 395
    115 com.adobe.dreamweaver-12.1         0x0114fef0 CWinAppImpl::Run() + 36
    116 com.adobe.dreamweaver-12.1         0x011501df main + 95
    117 com.adobe.dreamweaver-12.1         0x004e27f5 start + 53
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib             0x937a69ae kevent + 10
    1   libdispatch.dylib                  0x977adc71 dispatchmgr_invoke + 993
    2   libdispatch.dylib                  0x977ad7a9 dispatchmgr_thread + 53
    Thread 2:
    0   libsystem_kernel.dylib             0x937a58e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                  0x983d2220 pthreadcond_wait + 833
    2   libsystem_c.dylib                  0x984580ec pthread_cond_timedwait$UNIX2003 + 70
    3   com.adobe.boost_threads.framework     0x028a926e boost::condition_variable::timed_wait(boost::unique_lock::run() + 64
    9   com.adobe.boost_threads.framework     0x028a1737 thread_proxy + 167
    10  libsystem_c.dylib                  0x983cd557 pthreadstart + 344
    11  libsystem_c.dylib                  0x983b7cee thread_start + 34
    Thread 3:
    0   libsystem_kernel.dylib             0x937a5c72 __semwait_signal + 10
    1   libsystem_c.dylib                  0x98457a61 nanosleep$UNIX2003 + 189
    2   com.apple.carbonbundletemplate     0x119d94db ScObjects::Thread::sleep(unsigned int) + 59
    3   com.apple.carbonbundletemplate     0x119d5339 ScObjects::BridgeTalkThread::run() + 185
    4   com.apple.carbonbundletemplate     0x119d9848 ScObjects::Thread::go(void*) + 168
    5   libsystem_c.dylib                  0x983cd557 pthreadstart + 344
    6   libsystem_c.dylib                  0x983b7cee thread_start + 34
    Thread 4:
    0   libsystem_kernel.dylib             0x937a5b3e __recvfrom + 10
    1   libsystem_c.dylib                  0x98457bcb recv$UNIX2003 + 54
    2   ServiceManager-Launcher.dylib      0x11bb3733 Invoke + 47867
    3   ServiceManager-Launcher.dylib      0x11bb2846 Invoke + 44046
    4   ServiceManager-Launcher.dylib      0x11bb1988 Invoke + 40272
    5   ServiceManager-Launcher.dylib      0x11bb1a0f Invoke + 40407
    6   ServiceManager-Launcher.dylib      0x11bacbaf Invoke + 20343
    7   ServiceManager-Launcher.dylib      0x11bacea7 Invoke + 21103
    8   ServiceManager-Launcher.dylib      0x11bad685 Invoke + 23117
    9   ServiceManager-Launcher.dylib      0x11bad8f9 Invoke + 23745
    10  ServiceManager-Launcher.dylib      0x11bb02a0 Invoke + 34408
    11  ServiceManager-Launcher.dylib      0x11bb03fd Invoke + 34757
    12  ServiceManager-Launcher.dylib      0x11bb0c91 Invoke + 36953
    13  ServiceManager-Launcher.dylib      0x11bb0db2 Invoke + 37242
    14  ServiceManager-Launcher.dylib      0x11ba3656 Login + 461
    15  ServiceManager-Launcher.dylib      0x11ba709a Login + 15377
    16  ServiceManager-Launcher.dylib      0x11bb1165 Invoke + 38189
    17  ServiceManager-Launcher.dylib      0x11bb32eb Invoke + 46771
    18  libsystem_c.dylib                  0x983cd557 pthreadstart + 344
    19  libsystem_c.dylib                  0x983b7cee thread_start + 34
    Thread 5:
    0   libsystem_kernel.dylib             0x937a58e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                  0x983d2220 pthreadcond_wait + 833
    2   libsystem_c.dylib                  0x984580a1 pthread_cond_wait$UNIX2003 + 71
    3   com.adobe.ape.engine               0x1252504f APXGetHostAPI + 2633743
    4   com.adobe.ape.engine               0x122b662f APXGetHostAPI + 83439
    5   com.adobe.ape.engine               0x1252513e APXGetHostAPI + 2633982
    6   com.adobe.ape.engine               0x125251a7 APXGetHostAPI + 2634087
    7   com.adobe.ape.engine               0x125252c6 APXGetHostAPI + 2634374
    8   libsystem_c.dylib                  0x983cd557 pthreadstart + 344
    9   libsystem_c.dylib                  0x983b7cee thread_start + 34
    Thread 6:
    0   libsystem_kernel.dylib             0x937a58e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                  0x983d2220 pthreadcond_wait + 833
    2   libsystem_c.dylib                  0x984580a1 pthread_cond_wait$UNIX2003 + 71
    3   com.adobe.ape.engine               0x1252504f APXGetHostAPI + 2633743
    4   com.adobe.ape.engine               0x122b662f APXGetHostAPI + 83439
    5   com.adobe.ape.engine               0x1252513e APXGetHostAPI + 2633982
    6   com.adobe.ape.engine               0x125251a7 APXGetHostAPI + 2634087
    7   com.adobe.ape.engine               0x125252c6 APXGetHostAPI + 2634374
    8   libsystem_c.dylib                  0x983cd557 pthreadstart + 344
    9   libsystem_c.dylib                  0x983b7cee thread_start + 34
    Thread 7:
    0   libsystem_kernel.dylib             0x937a58e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                  0x983d2220 pthreadcond_wait + 833
    2   libsystem_c.dylib                  0x984580a1 pthread_cond_wait$UNIX2003 + 71
    3   com.adobe.ape.engine               0x1252504f APXGetHostAPI + 2633743
    4   com.adobe.ape.engine               0x122b662f APXGetHostAPI + 83439
    5   com.adobe.ape.engine               0x1252513e APXGetHostAPI + 2633982
    6   com.adobe.ape.engine               0x125251a7 APXGetHostAPI + 2634087
    7   com.adobe.ape.engine               0x125252c6 APXGetHostAPI + 2634374
    8   libsystem_c.dylib                  0x983cd557 pthreadstart + 344
    9   libsystem_c.dylib                  0x983b7cee thread_start + 34
    Thread 8:
    0   libsystem_kernel.dylib             0x937a58e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                  0x983d2220 pthreadcond_wait + 833
    2   libsystem_c.dylib                  0x984580a1 pthread_cond_wait$UNIX2003 + 71
    3   com.adobe.ape.engine               0x1252504f APXGetHostAPI + 2633743
    4   com.adobe.ape.engine               0x122b662f APXGetHostAPI + 83439
    5   com.adobe.ape.engine               0x1252513e APXGetHostAPI + 2633982
    6   com.adobe.ape.engine               0x125251a7 APXGetHostAPI + 2634087
    7   com.adobe.ape.engine               0x125252c6 APXGetHostAPI + 2634374
    8   libsystem_c.dylib                  0x983cd557 pthreadstart + 344
    9   libsystem_c.dylib                  0x983b7cee thread_start + 34
    Thread 9:
    0   libsystem_kernel.dylib             0x937a58e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                  0x983d2289 pthreadcond_wait + 938
    2   libsystem_c.dylib                  0x983d2512 pthread_cond_timedwait_relative_np + 47
    3   com.adobe.ape.engine               0x12525017 APXGetHostAPI + 2633687
    4   com.adobe.ape.engine               0x1253e20e APXGetHostAPI + 2736590
    5   com.adobe.ape.engine               0x1252513e APXGetHostAPI + 2633982
    6   com.adobe.ape.engine               0x125251a7 APXGetHostAPI + 2634087
    7   com.adobe.ape.engine               0x125252c6 APXGetHostAPI + 2634374
    8   libsystem_c.dylib                  0x983cd557 pthreadstart + 344
    9   libsystem_c.dylib                  0x983b7cee thread_start + 34
    Thread 10:
    0   libsystem_kernel.dylib             0x937a58e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                  0x983d2289 pthreadcond_wait + 938
    2   libsystem_c.dylib                  0x983d2512 pthread_cond_timedwait_relative_np + 47
    3   com.adobe.ape.engine               0x12525017 APXGetHostAPI + 2633687
    4   com.adobe.ape.engine               0x126b30c8 APXGetHostAPI + 4264072
    5   com.adobe.ape.engine               0x1252513e APXGetHostAPI + 2633982
    6   com.adobe.ape.engine               0x125251a7 APXGetHostAPI + 2634087
    7   com.adobe.ape.engine               0x125252c6 APXGetHostAPI + 2634374
    8   libsystem_c.dylib                  0x983cd557 pthreadstart + 344
    9   libsystem_c.dylib                  0x983b7cee thread_start + 34
    Thread 11:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib             0x937a37d2 mach_msg_trap + 10
    1   libsystem_kernel.dylib             0x937a2cb0 mach_msg + 68
    2   com.apple.CoreFoundation           0x96cf0599 __CFRunLoopServiceMachPort + 185
    3   com.apple.CoreFoundation           0x96cf5f7f __CFRunLoopRun + 1247
    4   com.apple.CoreFoundation           0x96cf563a CFRunLoopRunSpecific + 378
    5   com.apple.CoreFoundation           0x96cf54ab CFRunLoopRunInMode + 123
    6   com.apple.Foundation               0x9413013a +NSURLConnection(Loader) _resourceLoadLoop: + 395
    7   com.apple.Foundation               0x941941d8 -[NSThread main] + 45
    8   com.apple.Foundation               0x9419415b __NSThread__main__ + 1396
    9   libsystem_c.dylib                  0x983cd557 pthreadstart + 344
    10  libsystem_c.dylib                  0x983b7cee thread_start + 34
    Thread 12:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib             0x937a5be6 __select + 10
    1   com.apple.CoreFoundation           0x96d39c00 __CFSocketManager + 1632
    2   libsystem_c.dylib                  0x983cd557 pthreadstart + 344
    3   libsystem_c.dylib                  0x983b7cee thread_start + 34
    Thread 13:
    0   libsystem_kernel.dylib             0x937a58e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                  0x983d2220 pthreadcond_wait + 833
    2   libsystem_c.dylib                  0x984580a1 pthread_cond_wait$UNIX2003 + 71
    3   WebKitDw.dylib                     0x17981273 WTF::TCMalloc_PageHeap::scavengerThread() + 179
    4   WebKitDw.dylib                     0x179812e1 WTF::TCMalloc_PageHeap::runScavengerThread(void*) + 17
    5   libsystem_c.dylib                  0x983cd557 pthreadstart + 344
    6   libsystem_c.dylib                  0x983b7cee thread_start + 34
    Thread 14:
    0   libsystem_kernel.dylib             0x937a5c72 __semwait_signal + 10
    1   libsystem_c.dylib                  0x98457a61 nanosleep$UNIX2003 + 189
    2   libsystem_c.dylib                  0x9845792a usleep$UNIX2003 + 60
    3   com.adobe.dreamweaver-12.1         0x003ab1d5 Sleep + 21
    4   com.adobe.dreamweaver-12.1         0x00f591b6 CodeViewTypingMonitorThread::MonitorThread() + 184
    5   com.adobe.dreamweaver-12.1         0x00f59253 CodeViewTypingMonitorThread::tramp(void*) + 17
    6   libsystem_c.dylib                  0x983cd557 pthreadstart + 344
    7   libsystem_c.dylib                  0x983b7cee thread_start + 34
    Thread 15:
    0   libsystem_kernel.dylib             0x937a5672 __mmap + 10
    1   libsystem_c.dylib                  0x983e963b allocate_pages + 163
    2   libsystem_c.dylib                  0x983f518c allocate_pages_securely + 77
    3   libsystem_c.dylib                  0x983f49dd szone_malloc_should_clear + 3219
    4   libsystem_c.dylib                  0x983e9a3e szone_malloc + 24
    5   libsystem_c.dylib                  0x983e754b malloc_zone_malloc + 75
    6   libsystem_c.dylib                  0x983e7f87 malloc + 53
    7   com.apple.carbonbundletemplate     0x11891e42 xmalloc + 47
    8   com.apple.carbonbundletemplate     0x1189c769 buffer_init + 29
    9   com.apple.carbonbundletemplate     0x118b2ca6 send_path_request + 33
    10  com.apple.carbonbundletemplate     0x118b35ae do_realpath + 51
    11  com.apple.carbonbundletemplate     0x1187df5c MMNetIO::SFTPNetChannelProcessor::ResolvePathAndEnsureConnected(MM::URI const&, MM::URI&, bool) + 600
    12  com.apple.carbonbundletemplate     0x1187f7bb MMNetIO::SFTPNetChannelProcessor::ChDir(MM::URI const&, MMNetIO::NetCallback*, bool) + 159
    13  com.apple.carbonbundletemplate     0x11877d01 MMNetIO::RequestDelegator<MMNetIO::SFTPNetChannel, MMNetIO::SFTPNetChannelProcessor>::ChDirRequest::operator()(MMNetIO::SFTPNetChannel*) + 43
    14  com.apple.carbonbundletemplate     0x1187d03d MMNetIO::RequestProcessor<MMNetIO::SFTPNetChannel, MMNetIO::SFTPNetChannel, MMNetIO::NetIOException>::ProcessRequests() + 309
    15  com.apple.carbonbundletemplate     0x1187d322 MMNetIO::RequestProcessor<MMNetIO::SFTPNetChannel, MMNetIO::SFTPNetChannel, MMNetIO::NetIOException>::RequestProcessorTrampoline(void*) + 29
    16  libsystem_c.dylib                  0x983cd557 pthreadstart + 344
    17  libsystem_c.dylib                  0x983b7cee thread_start + 34
    Thread 16:
    0   libsystem_kernel.dylib             0x937a60ee __workq_kernreturn + 10
    1   libsystem_c.dylib                  0x983d004c pthreadworkq_return + 45
    2   libsystem_c.dylib                  0x983cfe19 pthreadwqthread + 448
    3   libsystem_c.dylib                  0x983b7cca start_wqthread + 30
    Thread 17:
    0   libsystem_kernel.dylib             0x937a60ee __workq_kernreturn + 10
    1   libsystem_c.dylib                  0x983d004c pthreadworkq_return + 45
    2   libsystem_c.dylib                  0x983cfe19 pthreadwqthread + 448
    3   libsystem_c.dylib                  0x983b7cca start_wqthread + 30
    Thread 18:
    0   libsystem_kernel.dylib             0x937a60ee __workq_kernreturn + 10
    1   libsystem_c.dylib                  0x983d004c pthreadworkq_return + 45
    2   libsystem_c.dylib                  0x983cfe19 pthreadwqthread + 448
    3   libsystem_c.dylib                  0x983b7cca start_wqthread + 30
    Thread 19:
    0   libsystem_kernel.dylib             0x937a60ee __workq_kernreturn + 10
    1   libsystem_c.dylib                  0x983d004c pthreadworkq_return + 45
    2   libsystem_c.dylib                  0x983cfe19 pthreadwqthread + 448
    3   libsystem_c.dylib                  0x983b7cca start_wqthread + 30
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x1c2c6bf0  ebx: 0x96cf2f9e  ecx: 0x094bd000  edx: 0xffffff00
      edi: 0x00000026  esi: 0x00000000  ebp: 0xbfff9488  esp: 0xbfff9410
       ss: 0x00000023  efl: 0x00010286  eip: 0x96cf30cd   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0x00000000
    Logical CPU: 3
    Binary Images:
        0x1000 -  0x19cdfef +com.adobe.dreamweaver-12.1 (12.1.1.5966 - 12.1.1) <2598CE2D-12C5-3D07-5ADF-7BB0158D2EDE> /Applications/Adobe Dreamweaver CS6/Adobe Dreamweaver CS6.app/Contents/MacOS/Dreamweaver
    0x28a0000 -  0x28aeff3 +com.adobe.boost_threads.framework (5.0.0 - 5.0.0.0) <67CFF2D8-EECE-F07D-6F18-0FBB4F4DAACF> /Applications/Adobe Dreamweaver CS6/Adobe Dreamweaver CS6.app/Contents/Frameworks/boost_threads.framework/Versions/A/boost_threads
    0x28d3000 -  0x28ddffb +com.adobe.boost_signals.framework (5.0.0 - 5.0.0.0) <26B524FA-76CB-214E-6EC8-AA9F6A01078F> /Applications/Adobe Dreamweaver CS6/Adobe Dreamweaver CS6.app/Contents/Frameworks/boost_signals.framework/Versions/A/boost_signals
    0x28f6000 -  0x28fcff7 +com.adobe.boost_date_time.framework (5.0.0 - 5.0.0.0) <84117AD5-70A2-8A57-B30E-731AADF22165> /Applications/Adobe Dreamweaver CS6/Adobe Dreamweaver CS6.app/Contents/Frameworks/boost_date_time.framework/Versions/A/boost_date_time
    0x291c000 -  0x291ffff +com.adobe.boost_system.framework (5.0.0 - 5.0.0.0) <CB368F0D-A050-6444-86DD-D4B2D6E6BDBA> /Applications/Adobe Dreamweaver CS6/Adobe Dreamweaver CS6.app/Contents/Frameworks/boost_system.framework/Versions/A/boost_system
    0x2927000 -  0x2c57ffb +com.adobe.dvaadameve.framework (5.0.0 - 5.0.0.0) <DE1BB1F1-4BC6-7957-EAF6-5AE155A15982> /Applications/Adobe Dreamweaver CS6/Adobe Dreamweaver CS6.app/Contents/Frameworks/dvaadameve.framework/Versions/A/dvaadameve
    0x33ff000 -  0x3413ff3 +com.adobe.boost_filesystem.framework (5.0.0 - 5.0.0.0) <3F47E640-1789-D9D3-8CEC-21F17AFD0B13> /Applications/Adobe Dreamweaver CS6/Adobe Dreamweaver CS6.app/Contents/Frameworks/boost_filesystem.framework/Versions/A/boost_filesystem
    0x343e000 -  0x35beff3 +com.adobe.dvacore.framework (5.0.0 - 5.0.0.0) <C25BFCAF-3BFB-4FB4-4C51-072AF674BC33> /Applications/Adobe Dreamweaver CS6/Adobe Dreamweaver CS6.app/Contents/Frameworks/dvacore.framework/Versions/A/dvacore
    0x375a000 -  0x3b7cfef +com.adobe.dvaui.framework (5.0.0 - 5.0.0.0) <3A5BE23D-8FC4-7DDF-C40E-7483C2398D20> /Applications/Adobe Dreamweaver CS6/Adobe Dreamweaver CS6.app/Contents/Frameworks/dvaui.framework/Versions/A/dvaui
    0x4148000 -  0x41edfff +com.adobe.exo.framework (5.0.0 - 5.0.0.0) <974E1C54-7055-9C1A-49C2-00672E5CB5D0> /Applications/Adobe Dreamweaver CS6/Adobe Dreamweaver CS6.app/Contents/Frameworks/exo.framework/Versions/A/exo
    0x432a000 -  0x43d8fff +com.adobe.dvaworkspace.framework (5.0.0 - 5.0.0.0) <AB5BAB1A-AB8E-3C60-CE92-055B8326BFEB> /Applications/Adobe Dreamweaver CS6/Adobe Dreamweaver CS6.app/Contents/Frameworks/dvaworkspace.framework/Versions/A/dvaworkspace
    0x44ff000 -  0x46d9feb +com.adobe.owl (AdobeOwl version 4.0.93 - 4.0.93) <9E6B8841-D4FA-A2B7-2B0A-1D2DE2219B00> /Applications/Adobe Dreamweaver CS6/Adobe Dreamweaver CS6.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
    0x4707000 -  0x470effb +com.adobe.ape.shim (3.3.8.19346 - 3.3.8.19346) <B711CAA7-29D6-D5CF-CE1B-A611896C8D87> /Applications/Adobe Dreamweaver CS6/Adobe Dreamweaver CS6.app/Contents/Frameworks/adbeape.framework/Versions/A/adbeape
    0x4717000 -  0x4730fe7 +libChar16.dylib (1) <56CA72CF-B4F6-5A6B-3CAA-64BE2AD16FFD> /Applications/Adobe Dreamweaver CS6/Adobe Dreamweaver CS6.app/Contents/MacOS/libChar16.dylib
    0x474d000 -  0x476fff7 +libCoreTypes.dylib (1) <53CC8708-E962-ACB5-C713-C6D356B0D7C6> /Applications/Adobe Dreamweaver CS6/Adobe Dreamweaver CS6.app/Contents/MacOS/libCoreTypes.dylib
    0x4788000 -  0x47d0ff7 +libCurl.dylib (1) <83FB1960-36AD-DA6B-B864-A07D2CBF2D0B> /Applications/Adobe Dreamweaver CS6/Adobe Dreamweaver CS6.app/Contents/MacOS/libCurl.dylib
    0x47ec000 -  0x47f9ff7 +libZ.dylib (1) <4818FD4E-E6B0-84CE-CA68-B456AD40875C> /Applications/Adobe Dreamweaver CS6/Adobe Dreamweaver CS6.app/Contents/MacOS/libZ.dylib
    0x4801000 -  0x48adff7 +libCrypto.dylib (1) <55CC7B8B-B817-E3B4-ABB2-9900DFA39787> /Applications/Adobe Dreamweaver CS6/Adobe Dreamweaver CS6.app/Contents/MacOS/libCrypto.dylib
    0x4950000 -  0x4973ff7 +libSSL.dylib (1) <811AB643-D40C-A9F0-63C3-886B76AB7D7B> /Applications/Adobe Dreamweaver CS6/Adobe Dreamweaver CS6.app/Contents/MacOS/libSSL.dylib
    0x498b000 -  0x498cff7 +libCocoa.dylib (1) <DCDB2597-90DA-9DE8-D61C-DA9DEA9A7004> /Applications/Adobe Dreamweaver CS6/Adobe Dreamweaver CS6.app/Contents/MacOS/libCocoa.dylib
    0x4992000 -  0x4bddfff  com.apple.carbonframeworktemplate (1.0 - 1.0) <57FE035C-0CDF-C1A4-54FA-A0FCDA54677C> /Applications/Adobe Dreamweaver CS6/Adobe Dreamweaver CS6.app/Contents/Frameworks/Xerces.framework/Versions/A/Xerces
    0x4ea8000 -  0x4eb3ff3  com.apple.carbonframeworktemplate (1.0 - 1.0) <19D66CE4-2F01-A903-1629-5979E8A6D8CC> /Applications/Adobe Dreamweaver CS6/Adobe Dreamweaver CS6.app/Contents/Frameworks/NetIO.framework/Versions/A/NetIO
    0x4ec3000 -  0x4ec6ffb +com.adobe.AdobeCrashReporter (6.0 - 6.0.20120720) <A6503206-E545-4C47-B725-D6658C3E0BF5> /Applications/Adobe Dreamweaver CS6/Adobe Dreamweaver CS6.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCrashReporter
    0x4ecd000 -  0x5049ff3 +com.adobe.ACE (AdobeACE 2.19.18.19243 - 2.19.18.19243) <464E11C2-11BF-EED9-445F-B110D65E1944> /Applications/Adobe Dreamweaver CS6/Adobe Dreamweaver CS6.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
    0x5059000 -  0x5620fef +com.adobe.AGM (AdobeAGM 4.26.17.19243 - 4.26.17.19243) <895F58FE-CF43-B09B-336E-C7725860E6AF> /Applications/Adobe Dreamweaver CS6/Adobe Dreamweaver CS6.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
    0x5693000 -  0x56aefff +com.adobe.BIB (AdobeBIB 1.2.02.19243 - 1.2.02.19243) <147A128F-ACC3-A4AB-C003-20CEAD8AE1CC> /Applications/Adobe Dreamweaver CS6/Adobe Dreamweaver CS6.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
    0x56b4000 -  0x56dafff +com.adobe.BIBUtils (AdobeBIBUtils 1.1.01 - 1.1.01) <55E00096-6399-E2FD-021E-A15B8CF15ABB> /Applications/Adobe Dreamweaver CS6/Adobe Dreamweaver CS6.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
    0x56e0000 -  0x5a07ffb +com.adobe.CoolType (AdobeCoolType 5.10.31.19243 - 5.10.31.19243) <4DB6A24B-C380-EF7A-B9A1-BF373C6F0AAD> /Applications/Adobe Dreamweaver CS6/Adobe Dreamweaver CS6.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
    0x5a3f000 -  0x6aebff3 +com.adobe.psl (AdobePSL 13.0.0.19655 - 13.0.0.19655) <47A9AAEC-43CD-17C9-6E58-6312315FC15D> /Applications/Adobe Dreamweaver CS6/Adobe Dreamweaver CS6.app/Contents/Frameworks/AdobePSL.framework/Versions/A/AdobePSL
    0x6c64000 -  0x6c8cfeb +com.adobe.AXE8SharedExpat (AdobeAXE8SharedExpat 3.7.101.18636 - 3.7.101.18636) <C38ACBCE-04AA-DF40-FF79-29377F25CDAF> /Applications/Adobe Dreamweaver CS6/Adobe Dreamweaver CS6.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8SharedExpa t
    0x6cab000 -  0x6d07fef +com.adobe.AdobeXMPCore (Adobe XMP Core 5.3 -c 11 - 66.145661) <123A0829-A85B-6E67-0E48-4F37B08E4C03> /Applications/Adobe Dreamweaver CS6/Adobe Dreamweaver CS6.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
    0x6d10000 -  0x6d7dffb +com.adobe.headlights.LogSessionFramework (2.1.2.1652) <82DA9279-45D2-AD40-C86C-F5A94B9DAAFF> /Applications/Adobe Dreamweaver CS6/Adobe Dreamweaver CS6.app/Contents/Frameworks/LogSession.framework/Versions/A/LogSession
    0x6dcc000 -  0x6eaeff3 +com.adobe.amtlib (amtlib 6.0.0.75 - 6.0.0.75) <808CABA8-E8E6-AC45-4905-A6AA59E8C41C> /Applications/Adobe Dreamweaver CS6/Adobe Dreamweaver CS6.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib
    0x6ebe000 -  0x6fa6fe3 +com.adobe.AXEDOMCore (AdobeAXEDOMCore 3.7.101.18636 - 3.7.101.18636) <2540764B-C2F2-61D7-EFBA-6663171FD19A> /Applications/Adobe Dreamweaver CS6/Adobe Dreamweaver CS6.app/Contents/Frameworks/AdobeAXEDOMCore.framework/Versions/A/AdobeAXEDOMCore
    0x7037000 -  0x703bffd  com.apple.JavaVM (14.5.0 - 14.5.0) <1163556C-5C1D-3C5A-8767-682DAE7D3174> /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaVM
    0x7043000 -  0x7059ffc  libexpat.1.dylib (12) <D4F1FD2B-F75A-322C-843E-113EF5F8EEAF> /usr/lib/libexpat.1.dylib
    0x7062000 -  0x714dff3 +com.adobe.linguistic.LinguisticManager (6.0.0 - 17018) <8CA89B59-BCD4-58A2-D40E-C41F1621EAD1> /Applications/Adobe Dreamweaver CS6/Adobe Dreamweaver CS6.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeLinguistic
    0x71d6000 -  0x7f1bff7 +libicudata.40.0.dylib (40) <015E6351-4F42-00C1-2096-BEE385B275B1> /Applications/Adobe Dreamweaver CS6/Adobe Dreamweaver CS6.app/Contents/Frameworks/ICUData.framework/Versions/4.0/libicudata.40.0.dylib
    0x7f2f000 -  0x7fcdfe3 +libicucnv.40.0.dylib (40) <D11DC46F-D58E-B17C-9356-46F593D5A7CF> /Applications/Adobe Dreamweaver CS6/Adobe Dreamweaver CS6.app/Contents/Frameworks/ICUConverter.framework/Versions/4.0/libicucnv.40.0.dylib
    0x7ff0000 -  0x8125fe7 +libicui18n.40.0.dylib (40) <8BE3FE71-0CE6-2B93-B5F2-B4F0DD274B91> /Applications/Adobe Dreamweaver CS6/Adobe Dreamweaver CS6.app/Contents/Frameworks/ICUInternationalization.framework/Versions/4.0/libicui18n.40. 0.dylib
    0x819a000 -  0x828bfef +libicuuc.40.0.dylib (40) <4CF7066A-6E82-FF80-93E6-6849149FBB98> /Applications/Adobe Dreamweaver CS6/Adobe Dreamweaver CS6.app/Contents/Frameworks/ICUUnicode.framework/Versions/4.0/libicuuc.40.0.dylib
    0x82c9000 -  0x887ffe7 +com.adobe.dw.imageoptimization.engine (Dreamweaver Image Optimization CS6 Library version "12.0.0.043" - "12.0.0.043") <932726A9-6ECC-4BE5-9271-3482F6025679> /Applications/Adobe Dreamweaver CS6/Adobe Dreamweaver CS6.app/Contents/Frameworks/ImageOptimization.framework/Versions/A/ImageOptimization
    0x8e9f000 -  0x8fdffeb +com.winsoft.wrservices (WRServices 5.0.0 - 5.0.0) <6D085279-1185-E7F0-B0D8-FBADBA062516> /Applications/Adobe Dreamweaver CS6/Adobe Dreamweaver CS6.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices
    0x9052000 -  0x9095ff3 +com.adobe.AAM.AdobeUpdaterNotificationFramework (UpdaterNotifications 6.0.0.24 - 6.0.0.24) <4B40551F-5306-C836-02AD-109826BD580C> /Applications/Adobe Dreamweaver CS6/Adobe Dreamweaver CS6.app/Contents/Frameworks/UpdaterNotifications.framework/Versions/A/UpdaterNotification s
    0x90ae000 -  0x9242fff +com.adobe.PlugPlug (3.0.0.383 - 3.0.0.383) <2205B6E1-7C9E-1892-EC68-C1B326C727A8> /Applications/Adobe Dreamweaver CS6/Adobe Dreamweaver CS6.app/Contents/Frameworks/PlugPlug.framework/Versions/A/PlugPlug
    0x92ea000 -  0x937fffb +com.adobe.boost_regex.framework (5.0.0 - 5.0.0.0) <CDE64B45-1DAE-0459-BE2C-5E229A86E19B> /Applications/Adobe Dreamweaver CS6/Adobe Dreamweaver CS6.app/Contents/Frameworks/boost_regex.framework/Versions/A/boost_regex
    0x9438000 -  0x9451ff7  com.apple.ScriptingBridge (1.3 - 61.2) <74397541-E4DD-3DCA-BA5F-F7AAF145819A> /System/Library/Frameworks/ScriptingBridge.framework/Versions/A/ScriptingBridge
    0x9460000 -  0x9460ff7  libffi.dylib (18) <362F6C27-6407-388E-9521-8A2A0845188C> /usr/lib/libffi.dylib
    0x9464000 -  0x9483fff +libtbb.dylib (0) <6EA19434-60D6-505D-CB6F-5CA562A0F2A7> /Applications/Adobe Dreamweaver CS6/Adobe Dreamweaver CS6.app/Contents/Frameworks/libtbb.dylib
    0x949a000 -  0x94a2fef +libtbbmalloc.dylib (0) <7A79ED70-A4AC-737A-2FAA-63B6FB29D4ED> /Applications/Adobe Dreamweaver CS6/Adobe Dreamweaver CS6.app/Contents/Frameworks/libtbbmalloc.dylib
    0x94b1000 -  0x94b5fff  JavaLaunching (1) <D457DAD6-EEA5-375B-AA96-0D1B2CD08253> /System/Library/PrivateFrameworks/JavaLaunching.framework/Versions/A/JavaLaunching
    0x94f8000 -  0x94f9ffd  com.apple.textencoding.unicode (2.5 - 2.5) <4E2ABBEB-1F0D-3C06-BA0C-C3CEDDF17BD2> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0xa3af000 -  0xa3b3ffb  libFontRegistryUI.dylib (100) <10CAC446-A500-3291-A144-7FAFA57D6720> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framework/Resourc es/libFontRegistryUI.dylib
    0xa3de000 -  0xa3ebff3  com.apple.Librarian (1.1 - 1) <88A55A5E-40FF-3234-8394-2317120B79AB> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
    0xd3dc000 -  0xd3e4ff3  com.apple.URLMount.AFPPlugin (5.0 - 5.0) <4346DC40-1299-35FC-9059-25959910DC07> /System/Library/Filesystems/NetFSPlugins/afp.bundle/Contents/MacOS/afp
    0xd3eb000 -  0xd3f8ffb  com.apple.KerberosHelper (4.0 - 1.0) <6CB4B091-3415-301A-87B2-D9D374D0FC17> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosHelper
    0xd402000 -  0xd40bfff  com.apple.AppleSRP (5.0 - 1) <3B64757C-2F3F-327D-A7C1-9FCBAC4AB684> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
    0xd59b000 -  0xd59cff8  ATSHI.dylib (341.1) <7FD74F4D-E42A-30CB-8863-1832BFADFE5D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/ATSHI.dylib
    0xd5a1000 -  0xd5affff  libSimplifiedChineseConverter.dylib (61) <60899F9C-A79F-3BC2-855E-DC5C78B98FEB> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0xd5b3000 -  0xd5c5ffd  libTraditionalChineseConverter.dylib (61) <519CAA3F-715E-3CAE-B158-57EC95D916B1> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0xd728000 -  0xd729ffb  com.apple.carbonbundletemplate (12,1,1, 5966 - 12,1,1) <64A22745-4F4A-269D-6E4D-3BEFAED2B0AC> /Applications/Adobe Dreamweaver CS6/*/MM.bundle/Contents/MacOS/MM
    0xd72f000 -  0xd730ff7  com.apple.carbonbundletemplate (12,1,1, 5966 - 12,1,1) <2C4AD2B8-7068-284F-B405-7E76C3BF7524> /Applications/Adobe Dreamweaver CS6/*/DWfile.bundle/Contents/MacOS/DWfile
    0xd747000 -  0xd74cfff  com.apple.audio.AppleHDAHALPlugIn (2.3.1 - 2.3.1f2) <58BDA15D-2B2D-3E77-BC8C-D14AB1E4AC4E> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Conten ts/MacOS/AppleHDAHALPlugIn
    0x11876000 - 0x118d1ffb  com.apple.carbonbundletemplate (1.0 - 1.0) <E9FA144B-7149-06A5-1818-114158A1348C> /Applications/Adobe Dreamweaver CS6/Adobe Dreamweaver CS6.app/Contents/PlugIns/NetIOSFTP.bundle/Contents/MacOS/NetIOSFTP
    0x11976000 - 0x11994fe3  com.apple.carbonbundletemplate (3.0.2,5966 - 3.0.2) <DF503B82-0805-33BE-41C4-087FDA005879> /Applications/Adobe Dreamweaver CS6/*/MMNotes.bundle/Contents/MacOS/MMNotes
    0x119ba000 - 0x119feff7  com.apple.carbonbundletemplate (1.0.0,5966 - 1.0.0) <8C2D3FAC-2C20-D9B9-6C07-45A0E9313147> /Applications/Adobe Dreamweaver CS6/*/JSBridge.bundle/Contents/MacOS/JSBridge
    0x11b1e000 - 0x11b90fef +com.adobe.adobe_caps (adobe_caps 6.0.29.0 - 6.0.29.0) <E4ADECD5-05B4-E78B-09D8-E45FD640E84D> /Applications/Adobe Dreamweaver CS6/Adobe Dreamweaver CS6.app/Contents/Frameworks/adobe_caps.framework/adobe_caps
    0x11b9e000 - 0x11bc5ffb +ServiceManager-Launcher.dylib (389) <4EEAF886-0B48-9FF4-BE65-41E222123A50> /Library/Application Support/Adobe/*/ServiceManager-Launcher.dylib
    0x11d00000 - 0x11d47ff3  com.apple.AppleShareClientCore (3.0 - 3.0) <51846A19-3354-34FD-8AEF-C4247B800B13> /System/Library/Frameworks/AppleShareClientCore.framework/Versions/A/AppleShareClientCore
    0x12200000 - 0x12254fe7 +com.adobe.ape (3.3.8.19346 - 3.3.8.19346) <0B80F7A7-EC10-A7C7-5E6E-787953553C55> /Library/Application Support/Adobe/*/adbeapecore.framework/adbeapecore
    0x1226d000 - 0x131b5fcb +com.adobe.ape.engine (3.3.8.19346 - 3.3.8.19346) <FB642021-E854-27B0-9C15-E3567B4F56B9> /Library/Application Support/Adobe/*/adbeapecore.framework/Libraries/adbeapeengine.bundle/Contents/MacOS/adbea peengine
    0x133b0000 - 0x1345bfff  libcrypto.0.9.7.dylib (106) <041B3399-5033-3395-9A71-6693F3A33D94> /usr/lib/libcrypto.0.9.7.dylib
    0x139a3000 - 0x13a61ff3  ColorSyncDeprecated.dylib (400) <35E3054C-5DF1-30D4-A368-C4FDB0992373> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x13aa5000 - 0x13ad9ff7 +com.adobe.pip (6.0.0.1654) <21A87289-747E-A0BD-2692-F9E844932E26> /Applications/Adobe Dreamweaver CS6/Adobe Dreamweaver CS6.app/Contents/Frameworks/AdobePIP.framework/AdobePIP
    0x1416c000 - 0x141a2ff3  com.apple.carbonbundletemplate (1.0 - 1.0) <EF55459C-7A94-B732-57CA-637980F73046> /Applications/Adobe Dreamweaver CS6/Adobe Dreamweaver CS6.app/Contents/PlugIns/NetIOFTP.bundle/Contents/MacOS/NetIOFTP
    0x17867000 - 0x17fceff7 +WebKitDw.dylib (1) <C2B5C513-4CDD-E33F-C60E-FA61C54BE7D3> /Applications/Adobe Dreamweaver CS6/*/WebKitDw.dylib
    0x19300000 - 0x19422ff3  com.apple.carbonbundletemplate (1.0 - 1.0) <987D482C-3B7C-E708-6A68-F5DC376CF5C5> /Applications/Adobe Dreamweaver CS6/*/JS_KnowledgeEngine.bundle/Contents/MacOS/JS_KnowledgeEngine
    0x1946c000 - 0x19507ff3  com.apple.carbonbundletemplate (1.0 - 1.0) <BC4C9A0D-0563-F6AF-41CC-EA9CDD28DE39> /Applications/Adobe Dreamweaver CS6/*/PHP_KE.bundle/Contents/MacOS/PHP_KE
    0x40000000 - 0x400c4fe3 +com.adobe.JP2K (2.0.0 - 2.0.0.20946) <A6551B2A-78C7-611B-4BC2-2F55DEFE1C84> /Applications/Adobe Dreamweaver CS6/Adobe Dreamweaver CS6.app/Contents/Frameworks/AdobeJP2K.framework/Versions/A/AdobeJP2K
    0x8fe4f000 - 0x8fe81e57  dyld (210.2.3) <23516BE4-29BE-350C-91C9-F36E7999F0F1> /usr/lib/dyld
    0x90007000 - 0x90007ffd  com.apple.audio.units.AudioUnit (1.8 - 1.8) <4C13DEA2-1EB0-3D06-901A-DB93184C06F0> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x90008000 - 0x900a8ff7  com.apple.QD (3.42 - 285) <1B8307C6-AFA8-312E-BA5B-679070EF2CA1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framewo rk/Versions/A/QD
    0x900a9000 - 0x900cbfff  libc+abi.dylib (24.4) <06479DA4-BC23-34B6-BAFC-A885814261D0> /usr/lib/libc+abi.dylib
    0x900f8000 - 0x900f8fff  com.apple.Accelerate (1.8 - Accelerate 1.8) <4EC0548E-3A3F-310D-A366-47B51D5B6398> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x90976000 - 0x909dcfff  com.apple.print.framework.PrintCore (8.1 - 387.1) <F8CF762B-B707-3021-958F-BB8D33DB3576> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore. framework/Versions/A/PrintCore
    0x90c77000 - 0x90ca8fff  com.apple.DictionaryServices (1.2 - 184.4) <0D5BE86F-F40A-3E39-8569-19FCA5EDF9D3> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryService s.framework/Versions/A/DictionaryServices
    0x90ca9000 - 0x90cb7fff  com.apple.opengl (1.8.6 - 1.8.6) <1AD1AE7B-B57B-35B5-B571-32A34F0DA737> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x90cb8000 - 0x90cbcff7  libmacho.dylib (829) <5280A013-4F74-3F74-BE0C-7F612C49F1DC> /usr/lib/system/libmacho.dylib
    0x90cc7000 - 0x90de5ff7  com.apple.MediaControlSender (1.4.5 - 145.3) <E0931EE7-4ACA-3538-9658-B9B2AC1E6A80> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/MediaControlSen der
    0x90de6000 - 0x90df6ff2  com.apple.LangAnalysis (1.7.0 - 1.7.0) <875363E7-6D02-3229-A9DD-E5A5568A7D61> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalys is.framework/Versions/A/LangAnalysis
    0x90df7000 - 0x90dfefff  liblaunch.dylib (442.26.2) <310C99F8-0811-314D-9BB9-D0ED6DFA024B> /usr/lib/system/liblaunch.dylib
    0x90dff000 - 0x90e74ff7  com.apple.ApplicationServices.ATS (332 - 341.1) <95206704-F9C9-33C4-AF25-FE9890E160B2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/ATS
    0x90e75000 - 0x90eaafff  libTrueTypeScaler.dylib (84.5) <2598F930-5E6B-37D7-B1E6-18181A972C6E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libTrueTypeScaler.dylib
    0x90eab000 - 0x910c2fff  com.apple.CoreData (106.1 - 407.7) <17FD06D6-AD7C-345A-8FA4-1F0FBFF4DAE1> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x910c3000 - 0x911ceff7  libJP2.dylib (845) <D409C913-6FA4-3D60-BFE0-B9FC6A02FEE0> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x911cf000 - 0x911d3fff  com.apple.OpenDirectory (10.8 - 151.10) <A1858D81-086F-3BF5-87E3-9B70409FFDF6> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x911d4000 - 0x911d8fff  com.apple.IOSurface (86.0.3 - 86.0.3) <E3A4DB0A-1C1A-31E3-A550-5C0E1C874509> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x911e0000 - 0x911e8fff  libcopyfile.dylib (89) <4963541B-0254-371B-B29A-B6806888949B> /usr/lib/system/libcopyfile.dylib
    0x911e9000 - 0x911f0ffb  libunwind.dylib (35.1) <E1E8D8B3-3C78-3AB1-B398-C180DC6DCF05> /usr/lib/system/libunwind.dylib
    0x911f1000 - 0x9124afff  com.apple.QuickLookFramework (4.0 - 555.4) <96911441-FDD4-3B68-9E0C-51BA11A97C2E> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x91953000 - 0x919c2ffb  com.apple.Heimdal (3.0 - 2.0) <1ABF438B-30E6-3165-968C-E2EA1A9DF1FD> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x919c3000 - 0x919d0fff  libGL.dylib (8.6.1) <C7A3917A-C444-33CC-8599-BB9CD8C12BC4> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x91a02000 - 0x91a51ff6  libTIFF.dylib (845) <989A2EB9-3A49-3157-8E9C-B16E6005BC64> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91a52000 - 0x91a69ff4  com.apple.CoreMediaAuthoring (2.1 - 914) <37C0A2C7-73B3-39BC-8DE1-4A6B75F115FC> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreMediaAuthor ing
    0x91a6a000 - 0x91a6afff  com.apple.CoreServices (57 - 57) <956C6C6D-A5DD-314F-9C57-4A61D41F30CE> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x91a6b000 - 0x91a90ffb  com.apple.framework.familycontrols (4.1 - 410) <5A8504E7-D95D-3101-8E20-38EADE8DEAE1> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
    0x91a91000 - 0x91aaeff7  libresolv.9.dylib (51) <B9742A2A-DF15-3F6E-8FCE-778A58214B3A> /usr/lib/libresolv.9.dylib
    0x91afb000 - 0x91b17ff7  libPng.dylib (845) <14C43094-C670-3575-BF9B-3A967E05EAC0> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91b18000 - 0x91b18fff  com.apple.Cocoa (6.7 - 19) <354094F0-F36B-36F9-BF5F-FD60590FBEB9> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x91b19000 - 0x91babffb  libvMisc.dylib (380.6) <6DA3A03F-20BE-300D-A664-B50A7B4E4B1A> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvMisc.dylib
    0x91bac000 - 0x91bc1fff  com.apple.speech.synthesis.framework (4.1.12 - 4.1.12) <DE68CEB5-4959-3652-83B8-D2B00D3B932D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynt hesis.framework/Versions/A/SpeechSynthesis
    0x91bc2000 - 0x91c3bff0  com.apple.CorePDF (2.0 - 2) <6B5BF755-F336-359C-9A99-F006F61442CF> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x91c3c000 - 0x91c93ff3  com.apple.HIServices (1.20 - 417) <561A770B-8523-3D09-A763-11F872779A4C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices .framework/Versions/A/HIServices
    0x91c94000 - 0x91d75fff  libcrypto.0.9.8.dylib (47) <D4EFFCFB-206D-3E3D-ADB5-CBAF04EB8838> /usr/lib/libcrypto.0.9.8.dylib
    0x91d76000 - 0x91da3ffb  com.apple.CoreServicesInternal (154.2 - 154.2) <DCCF604B-1DB8-3F09-8122-545E2E7F466D> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesI nternal
    0x91da4000 - 0x91e78fff  com.apple.backup.framework (1.4.1 - 1.4.1) <55F2A679-9B21-3F43-A580-4C2ECF6A5FC5> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x91e85000 - 0x91edeff7  com.apple.ImageCaptureCore (5.0.1 - 5.0.1) <541529F7-063E-370B-9EB2-DF5BE39073E6> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore
    0x91edf000 - 0x91f3cfff  com.apple.audio.CoreAudio (4.1.0 - 4.1.0) <9549B81F-4425-34EE-802B-F462068DC0C5> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x91f80000 - 0x91ffcffb  libType1Scaler.dylib (101.1) <0D94D786-29F7-33DB-B64B-B264FA5EACD2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libType1Scaler.dylib
    0x91ffd000 - 0x92044ff3  com.apple.CoreMedia (1.0 - 926.62) <69B3835E-C02F-3935-AD39-83F8E81FB780> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x92045000 - 0x92062fff  libxpc.dylib (140.41) <1BFE3149-C242-3A77-9729-B00DEDC8CCF2> /usr/lib/system/libxpc.dylib
    0x92063000 - 0x9206affe  com.apple.agl (3.2.1 - AGL-3.2.1) <8E0411D3-19F7-30E1-92A2-337F7F0EBCDA> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x9206b000 - 0x920cdfff  libc+.1.dylib (65.1) <C0CFF9FF-5D52-3EAE-B921-6AE1DA00A135> /usr/lib/libc+.1.dylib
    0x920ce000 - 0x92136fe7  libvDSP.dylib (380.6) <55780308-4DCA-3B10-9703-EAFC3E13A3FA> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvDSP.dylib
    0x92139000 - 0x9213bfff  com.apple.securityhi (4.0 - 55002) <62E3AE75-61CB-341E-B2A0-CFC985A2BF7F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Ve rsions/A/SecurityHI
    0x9213c000 - 0x923c8ffb  com.apple.RawCamera.bundle (4.03 - 676) <53F1CD12-96E9-3E41-BEA9-46B75FC707D4> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x92406000 - 0x9240affc  libGIF.dylib (845) <714E9F0D-D7A3-3F58-B46E-FCBE0F144B23> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x9240b000 - 0x92413fff  com.apple.CommerceCore (1.0 - 26) <AF0D1990-8CBF-3AB4-99DF-8B7AE14FB0D5> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCor e.framework/Versions/A/CommerceCore
    0x92414000 - 0x92415ffd  com.apple.TrustEvaluationAgent (2.0 - 23) <E42347C0-2D3C-36A4-9200-757FFA61B388> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluati onAgent
    0x92416000 - 0x92443ffe  libsystem_m.dylib (3022.6) <9975D9C3-3B71-38E3-AA21-C5C5F9D9C431> /usr/lib/system/libsystem_m.dylib
    0x92444000 - 0x924beff7  com.apple.securityfoundation (6.0 - 55115.4) <A959B2F5-9D9D-3C93-A62A-7399594CF238> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
    0x931f8000 - 0x932e9ffc  libiconv.2.dylib (34) <B096A9B7-83A6-31B3-8D2F-87D91910BF4C> /usr/lib/libiconv.2.dylib
    0x932ea000 - 0x932f3ff9  com.apple.CommonAuth (3.0 - 2.0) <A1A6CC3D-AA88-3519-A305-9B5D76C5D63B> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x932f4000 - 0x93339ff7  com.apple.NavigationServices (3.7 - 200) <F6531764-6E43-3AF3-ACDD-8A5551EF016A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationServices.fram ework/Versions/A/NavigationServices
    0x9333a000 - 0x93340fff  libGFXShared.dylib (8.6.1) <E32A7266-FCDD-352C-9C2A-8939265974AF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
    0x93341000 - 0x933ffff3  com.apple.ColorSync (4.8.0 - 4.8.0) <EFEDCB37-4F20-3CEC-A185-5D2976E11BAC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/ColorSync
    0x93400000 - 0x93401ffd  libunc.dylib (25) <58599CBF-E262-3CEA-AFE1-35560E0177DC> /usr/lib/system/libunc.dylib
    0x93402000 - 0x93466fff  com.apple.datadetectorscore (4.0 - 269.1) <4D155F09-1A60-325A-BCAC-1B858C2C051B> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCor e
    0x93467000 - 0x9348bfff  com.apple.PerformanceAnalysis (1.16 - 16) <18DE0F9F-1264-394D-AC56-6B2A1771DFBE> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAna lysis
    0x9348c000 - 0x9348dfff  libDiagnosticMessagesClient.dylib (8) <39B3D25A-148A-3936-B800-0D393A00E64F> /usr/lib/libDiagnosticMessagesClient.dylib
    0x9348e000 - 0x936befff  com.apple.QuartzComposer (5.1 - 284) <4E8682B7-EBAE-3C40-ABDB-8705

  • Problem occurs when working with the struts and mYsql database

    Hi all,
    I am working on Struts and using database mysql. I am getting this error when i tries to modify the values of jsp page and after modify when i submit a page ,the values are modifying but it is showing this error.
    After modifying the values i am forwarding the controller to the Display page where all records from the databse will be displayed.Please tell me how to solve.this..
    Thanks
    javax.servlet.ServletException: Cannot find bean employees in any scope
         at org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:495)
         at org.apache.jsp.viewEmployee_jsp._jspService(viewEmployee_jsp.java:208)
         at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:92)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:809)
         at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:162)
         at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:240)
         at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:187)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:809)
         at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:627)
         at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:382)
         at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:306)
         at org.apache.struts.action.RequestProcessor.doForward(RequestProcessor.java:1069)
         at org.apache.struts.action.RequestProcessor.processForwardConfig(RequestProcessor.java:455)
         at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:279)
         at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1482)
         at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:525)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:716)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:809)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:200)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:146)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:209)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:596)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:433)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:948)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:144)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:596)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:433)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:948)
         at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2358)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:133)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:596)
         at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:118)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:594)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:116)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:594)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:433)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:948)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:127)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:596)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:433)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:948)
         at org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:152)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:799)
         at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:705)
         at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:577)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:683)
         at java.lang.Thread.run(Thread.java:534)
    root cause
    javax.servlet.jsp.JspException: Cannot find bean employees in any scope
         at org.apache.struts.util.RequestUtils.lookup(RequestUtils.java:938)
         at org.apache.struts.taglib.logic.IterateTag.doStartTag(IterateTag.java:277)
         at org.apache.jsp.viewEmployee_jsp._jspService(viewEmployee_jsp.java:124)
         at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:92)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:809)
         at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:162)
         at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:240)
         at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:187)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:809)
         at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:627)
         at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:382)
         at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:306)
         at org.apache.struts.action.RequestProcessor.doForward(RequestProcessor.java:1069)
         at org.apache.struts.action.RequestProcessor.processForwardConfig(RequestProcessor.java:455)
         at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:279)
         at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1482)
         at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:525)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:716)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:809)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:200)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:146)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:209)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:596)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:433)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:948)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:144)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:596)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:433)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:948)
         at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2358)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:133)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:596)
         at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:118)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:594)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:116)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:594)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:433)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:948)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:127)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:596)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:433)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:948)
         at org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:152)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:799)
         at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:705)
         at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:577)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:683)
         at java.lang.Thread.run(Thread.java:534)
    Apache Tomcat/4.1.31

    Hi,
    i think you have got this sample application from Mastering Jakarta Struts book.
    Try the following changes, you can escape from this exception:
    1) In the employeelist.jsp, change the name attribute to "USER instead of "employees" as follows
    <logic:iterate id="employee" name="USER">
    and also <logic:present name="USER"> </logic:present> before and after the iterate tags.
    2)In the EmployeeList Action.java,add the following in the excute method...
              EmployeesActionMapping employeesMapping =
                   (EmployeesActionMapping)mapping;
                   if ( employeesMapping.isLoginRequired() ) {
                        HttpSession session = request.getSession();
                             if ( session.getAttribute("USER") == null ) {
                                  System.out.println("session.getAttribute is NULL");
                                  target = "login";
                             ActionErrors errors = new ActionErrors();
                             errors.add(ActionErrors.GLOBAL_ERROR,
                             new ActionError("errors.login.required"));
                             if (!errors.empty()) {
                             saveErrors(request, errors);
                        }else{
                   session.setAttribute("USER",getEmployees());
    Thanks,
    Shanmu

  • Disable updating of the menu widget when working with Muse file?

    First of all thank you Adobe for creating Muse - I really like it a lot!
    My question:
    when I work on my website with 250+ pages, it strains the performance to make even the slightest changes to the page structure. I work with two Masters each with much the same horisontal menu widget.
    Adding, deleting and rearranging pages makes the PC (Windows 7 laptop of some but not awesome power) make a halt and take a deep breathe for some seconds. It really interupts the flow of working.
    A crude work around for this is to removing the menu widget in the two masters and put it into a new master page, containing only the copied menu from the two other masters and keeping the rest of the header in place on the original masters to use for aligning on the pages. This way, only one page has to update when working with adding, deleting and rearranging pages.
    I have tried to look for a preference to disable updating the Menu widget when working on the page structures and just enable it the update again when the work is done? does it exist? else I would recommend it strongly :-) Since my work around is a bit tricky/risky to use after publishing ;-)
    Again, thanks a lot for this nice program. Being a selftought CS (now CCC) user I like the ease of control of the webdesign you can get with Muse (at the dispence of other features of course - if you ever wanted to add some sort of database-lookup feature it would be MUCH appreciated. One workaround is to use iframe and an external search/lookup page, that returns results with links back to parent pages. A bit funny construction though :-) ).
    BR
    M. Hecquet

    Glad to know you are enjoying Muse.
    It can be very processor intensive if you have multiple Master pages with their own All Pages menu widget. Take a look at the following threads and refer to Zak's response.
    http://forums.adobe.com/thread/1423767
    http://forums.adobe.com/message/6166722
    See if you are able to use just one All Pages menu widget at your site while taking advantage of the hierarchical Master page feature.
    http://tv.adobe.com/watch/muse-feature-tour/adobe-muse-hierarchical-master-pages/
    We are aware of the performance issues caused by the Menu widget (All pages type) and is something being looked upon by the engineering in one of the upcoming releases.
    Thanks,
    Vinayak

  • I am working with Acrobat XI and when I try to add text to geopdf file I get a popup screen that says this is a secured document and editing is not permitted. How do I fix this?

    I am working with Acrobat XI and when I try to add text to a geopdf file I get a popup screen that says this is a secured document and editing is not permitted. How do I fix this?

    I figured it out...needed to use comment tool set, not the editing tool set.

  • Error message an error occurred while signing in " when I worked with Create PDF and at the signed

    Error message "an error occurred while signing in " when I worked with Create PDF and at the signed in status. Please help so that I can continu my work.

    Hi Stacy,
    Thank you for your attention.
    I have been working with Create PFD under normal procedures including
    sign-in and several documents had been finished. However, when continued
    creating another document the computer took a long time to pprocess and
    finally a mesage appeared: "An error occurred while signing in" and stopped
    there. I clicked the OK button and start creating again and the same
    message appeared once more. I tried to log off and log in again in no
    avail. So I went to the help site and called for help.
    Later, I decided to reboot the computer and tried once more. This time it
    worked and I continued creating. Thanks.
    laozhao39

  • FCPX 10.0.7 collapses when working with 25p and 23,98p clips in the same timeline.

    FCPX 10.0.7 collapses when working with 25p and 23,98p clips in the same timeline.
    Did anybody reported this? never happened to me in previous versions.
    It seems to be solved when transcoding the 25p clips to 23,98p (both Canon EOS 5dMKII clips)
    But *** it must work!
    Thanx

    FCPX 10.0.7 collapses when working with 25p and 23,98p clips in the same timeline.
    Did anybody reported this? never happened to me in previous versions.
    It seems to be solved when transcoding the 25p clips to 23,98p (both Canon EOS 5dMKII clips)
    But *** it must work!
    Thanx

  • Quicklook does not work with WMV files and quick look no longer maintains resized views when viewing from a folder using the up/down arrows

    Quicklook does not work with WMV files and quick look no longer maintains resized views when viewing from a folder using the up/down arrows. Any fixes?

    Same problem here...

  • Keymapping problem when working with emacs and openbox

    I have an apple keyboard and I had to do some remapping of the keys to make the mod-4 key the first key to the left of the space bar for when working with Emacs.  The below script worked fine when I was using the dwm window manager, but after switching to openbox I have found that instead of swapping keycodes between the option and command keys, only the command key seems to be working since the initial openbox command-space doesn't work when pressing option-space.
    One odd thing I noticed, was on the new setup when I click run `showkey` and press the option and command keys I get 56 and 125 respectively, but these keys don't work at all when inserting them into the below script instead of the 64 and 133.
    I must admit I created the script below by continually tweaking it until it worked so there could be a much better way of doing it.
    //.xmodmap
    ### capslock => ctrl
    xmodmap -e "clear Lock"
    xmodmap -e "add Control = Caps_Lock"
    ### switch alt and command
    xmodmap -e "keycode 64 = Alt_L"
    xmodmap -e "keycode 133 = Meta_L"
    ### remap of mod 4
    xmodmap -e "clear Mod4"
    xmodmap -e "add Mod4 = Super_L"
    ** Update:  The Alt key is not being swapped with the command key, but is not just a duplicate.  So no M-x can be done by both Alt-x and Command-x
    Last edited by iso (2011-02-19 19:21:01)

    java -cp "E:\Java Programmes\class" mygame.server.Server

  • HT1551 Atv3 doesnt want to finish installing update although ive tried several times, now the remote wont work with it either and when I press the remote the light on the box flashes several times, I unplugged everything but nothing works and I cant reset

    my Atv3 is due for an update and ive tried several times to install it but although it downloads it never finishes installing and tells me that it wasnt possible to update and to try another time. I try every other day and it only inches forward in the progress but it never completes the installation. I was tired of waiting and I decided to keep on trying in a period of time one night until it would finally install, that never happened and Im not sure what is going on but the remote stopped working with the atv3 and when I press a button the box light flashes several times but does nothing, ive disconnected it and left it that way for over 24 hrs, ive disconnected everything (tv, internet etc) and nothing. I cant reset the atv3 through the remote either...i dont know what else to do

    Hi Brian,
    Thanks restoring and restarting didn't fix my problem - i have started it fresh and still it doesn't work. Basically I press ONCE on the remote, after the machine has not had any commands for 10 minutes, and the cursor skips from one end of the menu to the other - so I can't choose network or update software etc - I sometimes manage to stop it randomly in the middle of the menu if I press on a command in the middle of the cursor skipping all the menu steps...not sure what the problem is but I have basically not used my brand new apple tv since I bought it for that reason! I should call Apple support I suppose! grrrr hate wasting time with stuff like this!
    Thanks for your help though!
    Pernille

  • I have had my Ipad for approx 4 years.  When working with an app, the screen will go black and then back to the home page.

    I have had a IPad for 4 years, for several months when working with apps, the screen will go black and then return to the home page

    Hi sjeure,
    Thanks for using Apple Support Communities.  I would recommend restarting and resetting your device to see if the unexpected app closing still happens:
    iPhone, iPad, iPod touch: Turning off and on (restarting) and resetting
    http://support.apple.com/kb/HT1430
    Cheers,
    - Ari

  • Iphone 4 the mike does not work when making a call.  it does work with speaker phone and face time

    Just activated new Iphone 4 and the mike does not work when making a call.  it does work with speaker phone and face time. Any known fixes?

    My wife's iphone 4 also has your same no ring problem as does my iphone 5 just less often.  I called her iphone 4 at home from where I work 20 miles away on my iphone 5.  With her phone in 3G mode ONE call went through and 9 went to voice mail in 10 tries.  This is a 10% sucess rate!!  I also could listen in real time from the wired work phone and the wired home phone.  She turned off 3G mode and it went to "O" mode at  the top left of the screen after the ATT.  In this mode it rang on the first ring tone 5 times out of 5 tries which is 100% of the time.  I have learned that the calling party will hear up to 4 ring tones when placing a call on the ATT network.  If the ring tone changes volume slightly before the 4th ring then and only then will the cell phone start to ring.  If the ring tone does not change after the 4th ring you get voice mail.  If the calling party does not leave a voice message there is never a missed call displayed on the iphone.  If the calling party does leave a voice message a few minutes later the iphone dings for arriving voice mail but still no missed call indication. 
    This appears to be related to the time of day and the ATT tower that the receiving caller is using.  Tried other towers and it works in 3G mode 10 times out of 10 tries.  Apple replaced the first iphone 4 with a new phone, no improvement.  ATT replaced the SIM card and no improvement.  ATT so far is clue less.  This has been going on every since we got the new iphones which is 4 months.  The ATT web site also describes this same problem from several years ago.  Has anyone got better information?
    Thanks

  • Very slow responce when working with Office file on DFS-Share

    Very slow responce when working with Office file on DFS-Share
    We have implemented the following configuration
    Domain level Windows 2000. Two member servers with Windows Server 2008 R2, sharing the same DFS namespace with, at the moment, one folder target called Home.
    Users complaining that the access to different MS Office files is very slow. Even creating a new MS Word document using right click context menu takes up to 4 minutes to open. Saving, for example, one singe Excel sheet takes also few minutes.
    Tested with both, MS Office 2007 and MS Office 2010. Makes no difference. When using Office 2010 you can see the message like contacting:
    \\DomainName\Root\Home\UserName. Other files like TXT, JPG or PDF are not affected.
     What makes the thing really weird is the fact, that the behavior described above can absolutely change after client machine being rebooted, suddenly everything becomes very fast and this condition can revert back again just after the next
    reboot.
    Considerations until now:
    1. This has nothing to do with the file size. Even tiny files are affected.
    2. AD Sites are configured correctly and the client workstations see themselves in the correct sites.
    3. This is not an Office issue. If I map my folder target not as DFS, but directly as shared network drive
    \\ServerName\Root\Home\UserName , everything functions as expected
    What makes me suspicious: when using f.e. TCPView to monitor connections, I can see, that each time I make any operation on an office file, there will be a connection established to one of the domain controllers, sometimes to remote ones,
    located in other countries. But on the other side, even if the connection is established to the nearest DC, operations are still very very slow!
    Just forget to say. All clients are Windows 7
    Thanks to all who respond.

    Dear all,
    sorry for the delayed reply. The problem has been solved now and since September 19<sup>th</sup>. everything is functioning as expected.
    What was done:
    Deleted replication targets excepting the initial ones
    Carefully recreated folder targets
    Deleted and recreated  replication groups
    Disabled SNP features on both namespace servers
    Created EnableTCPA registry entry
    Checked that the following Updates are installed
    http://support.microsoft.com/kb/2688074
    http://support.microsoft.com/kb/2647452
    Concering Office File validation KB2553065 - This Update was already declined on our WSUS server
    Kind Regards
    Eduard

Maybe you are looking for

  • How to get users' login logout time for user IDs for a specific date?

    Dear All, There is a case I being requested to retrieve the Userid, User Name, User Group, User Dept, Date, Login Time, Logout Time in a specific date, for example, 21.05.2009. How should I retrieve the information? The user want to input specific da

  • Issue with the presence indicator in list/library web part.

    When viewing a user field (Created By, Modified By or a custom People column) through the list web part (either through the default page /Forms/AllItems.aspx or a custom web part page using a list/library) the presence indicator always says presence

  • Hang while installing OS X Mavericks

    Hi, my MacBook Air is currently hanging while installing OS X Mavericks. I got stuck after the installer asked me about my iCloud account, which I forgot, so I clicked 'Forgot Password'. It's been showing a gray loading screen ever since. I tried to

  • CANNOT ACCESS CLASS JAVA....

    I use Jdevelopper 10.1.2 and I make a little application for authentication against users in a table (Account in HR schema). (see loginapp.zip) I don't understand why just one java file don't compile in my Workspace!!!! Help please!!! Luc

  • I can't start Firefox.

    I get a message that I must reboot since Firefox was upgraded, but when you reboot and try and start firefox, you get the same message again. How do I solve this problem?