Dreamweaver crashes with ASP

I am unable to edit any ASP files in Dreamweaver (CS3 and 8).
Whenever I select anything, code or objects, the program hangs.
This does not only happen on my computer but on other people's
computers as well. If the file extension is changed to .aspx or
.php then it behaves normally but if it has the extension .asp it
crashes.
This seems related to the previously mentioned problem
"Dreamweaver CS3 crashes after Daylight Savings Time ends" because
it just started this week. Before that editing .asp files was fine.
However, the solution offered for the daylight savings time bug
(delete the WinFileCache-AD76BB20.dat file from the Dreamweaver
user configuration folder) does not solve this problem.
Can anyone throw some light on this?

This bug nearly drove me crazy (and to Expression Web). It
might not be your
issue, but it very well might :-)
http://kb.adobe.com/selfservice/viewContent.do?externalId=kb402776&sliceId=2
Al Sparber - PVII
http://www.projectseven.com
Fully Automated Menu Systems | Galleries | Widgets
http://www.projectseven.com/go/Elevators
"TeePee" <[email protected]> wrote in
message
news:g0ef5f$pgs$[email protected]..
>I am unable to edit any ASP files in Dreamweaver (CS3 and
8). Whenever I
>select
> anything, code or objects, the program hangs. This does
not only happen on
> my
> computer but on other people's computers as well. If the
file extension is
> changed to .aspx or .php then it behaves normally but if
it has the
> extension
> .asp it crashes.
>
> This seems related to the previously mentioned problem
"Dreamweaver CS3
> crashes after Daylight Savings Time ends" because it
just started this
> week.
> Before that editing .asp files was fine. However, the
solution offered for
> the
> daylight savings time bug (delete the
WinFileCache-AD76BB20.dat file from
> the
> Dreamweaver user configuration folder) does not solve
this problem.
>
> Can anyone throw some light on this?
>

Similar Messages

  • Missing File - Adobe Dreamweaver CS3 with ASP, Coldfusion, and PHP

    On page 263 of Adobe Dreamweaver CS3 with ASP, Coldfusion,
    and PHP by:Jeffrey Bardzel and Bob Flynn the file called
    countryDetailXML.asp is missing. How can I find that file? Any
    idea?
    Thanks for your help.

    @citaiz,
    That file is created earlier in the lesson in an exercise
    starting on page 257. For the sake of the lesson, you can use
    countryDetail.xml that is included in the lesson 09 start folder.
    It is not important for this lesson that the XML is a static file
    or one generated in real time from the database. The version of
    Spry (1.4) that shipped with DW CS3 used XML data only. The current
    version (1.6.1) can use JSON and HTML tables for the data source as
    well. You can get the latest version of Spry for free at
    http://labs.adobe.com/technologies/spry/,
    including an extension to update your copy of DW to the latest
    version.
    Bob Flynn

  • Adobe Dreamweaver CS3 with ASP coldfusion and PHP search?

    I am working through Adobe Dreamweaver CS3 with ASP
    coldfusion and PHP with the intent of creating a data base site
    that primarily requires a search engine on the index page. The
    search page in the book uses specific search criteria ensuring that
    there will always be a match to the data base but I need to create
    an input text field search engine. My Q, if there is no data within
    the data base that match the variable, will it return with an error
    requiring an argument in the code to respond to no matching data.
    Hopefully there are comprehensive online recourses for these search
    engines as they are so common. I am a complete newby to all aspects
    of web development and code so it will need to be a thorough
    explanation, an idiots guide. ANY HELP GREATLY APPRECIATED

    Rob,
    Let me try to answer your questions, understanding that my
    answers are laced with my experience and therefore my bias.
    1. For the most part the SQL that you write for Access, MS
    SQL or MySQL is going to be the same. I won't make that claim about
    Oracle or PostgreSQL because I have limited or no experience in
    those areas. To be sure when you head down the road with any DBMS
    there are finer points on 'value added' features (to over simplify
    things like MS SQL's Transact SQL), but for the most part when you
    are pulling out, inserting or deleting records the SQL that you
    write will be the same. In fact, I don't think I had to make any of
    the SQL in the book different to deal with the back end db.
    2. As for your host steering you away from MySQL, I don't
    know why that would be. It is MUCH more stable and robust than
    Access for web development. My research showed that you can use
    MySQL just fine with ASP though that clearly wouldn't be
    Microsoft's first choice.
    3. A quick aside, the fact that you are building ASP on a Mac
    would seem to indicate that you are developing on your production
    server. That's never a good idea. Go local if you can. If you have
    a newer Intel Mac you can use VM Fusion, Parallels or even Boot
    Camp to run Windows in a virtual environment and develop there,
    only moving your code to production when you are happy with it.
    There is of course the fact that they two environments would not be
    identical and you may need to change a few references, but it is
    still a better practice than developing on your live site. Some web
    hosts give you the ability to set up a subdomain. If yours does,
    you could set one up with a duplicate of your site and develop
    there.
    4. Let me try to pull your 'rant-let' apart into two issue. I
    begin with a question. I'm not sure what the Mac part has to do
    with it. The primary language I work in at my day job is
    ColdFusion. The majority of the most serious developers I know in
    the CF world work on Macs. I am forced into the PC world because of
    a cultural bias at the business school where I work. Having said
    that, the only time I have felt there was ANY difference in the
    tools, resources, choices I had was in any way affected by platform
    was when Adobe still had not released Flex Builder 2 for the Mac.
    Now that is behind us as well. This reaction of mine may be based
    on the fact that Access never comes into play in the work that I
    do. I regularly work with MS SQL and MySQL. (OK, so SQL Enterprise
    Manager, the MS tool of choice to talk to MS SQL is Windows only,
    but I only use that at the day job. But even there you can find
    cross-platform, free tools like Aqua Data Studio to talk from a Mac
    to MS SQL.) If I'm missing your point on the Mac, please let me
    know. Since the advent of the Intel Mac I think it is hands-down
    the best choice for a web developer. You can have Mac, Windows and
    Unix all on one machine. It doesn't get any better (providing you
    have the RAM :-)).
    As for the security question, it is somewhat analogous to the
    war on viruses and spyware. As the defenses get better, so do the
    attacks. Most languages have developed functions for vetting user
    input variables and best practices for building these things. It is
    mainly a user education issue. When I took over the book you are
    working out of, the one thing Jeffrey told me it needed was more
    security. I did my best to put more in under the constraints of the
    publisher. They didn't want the book to be any longer than the
    previous version. I did my best to modify the code used to include
    "string safe" functions and to add verbiage about the importance of
    security. It was clear that I could not add as much as was needed
    and I said so in the book. Much more is needed for a serious
    treatment of the subject and not acknowledging that would have been
    a disservice to the readers. I've been working as a developer for
    over a decade and I don't know all there is to know about it. It's
    a constantly changing field, just like all of web development. In
    fact next week I'm going through a 2-day SANS Web Application
    Security workshop in hopes of learning more. So at the risk of
    sounding like an industry apologist, I don't think it's a
    shortcoming of the development community. It is, as they say, "a
    developing situation".
    HTH,
    Bob
    http://bobflynn.info/

  • Dreamweaver 8 with ASP, Coldfusion, & PHP

    I am new to php and I am trying to work thru Dreamweaver 8
    with ASP, Coldfusion and PHP Training from the Source. I have a
    real simple form. A user enters their first and last name then
    clicks the submit button. The form is then processed with a script
    using $_GET[first_name]; $_GET[last_name]; and it should display
    "Thank you, first_name last_name, for using my form." But the page
    show the html with a Notice: Undefined index: first_name in
    C:\htdocs\newland\test_form_processor.php on line 9. Line nine is -
    <p>Thank you, <?php echo $_GET['first_name']; ?>
    <?php echo $_GET['last_name']; ?>, for filling out my
    form.</p>. This was accomplished using the binding panel in
    DW. There is not any kind of trouble shooting in the book. Can
    someone tell me what this means? It worked like it is supposed to
    work when I had just the first name.

    Charles67 wrote:
    > I am new to php and I am trying to work thru Dreamweaver
    8 with ASP,
    > Coldfusion and PHP Training from the Source.
    I don't have a copy of that book. I wrote my own instead. ;-)
    > Notice: Undefined index: first_name in
    > C:\htdocs\newland\test_form_processor.php on line 9.
    Line nine is - <p>Thank
    > you, <?php echo $_GET['first_name']; ?> <?php
    echo $_GET['last_name']; ?>, for
    > filling out my form.</p>.
    It means that the first_name variable isn't being passed from
    the form.
    PHP is case-sensitive. Your form needs to look something like
    this:
    <form name="form1" id="form1" method="get"
    action="test_form_processor.php">
    <p>First name: <input type="text" name="first_name"
    id="first_name" /></p>
    <p>Last name: <input type="text" name="last_name"
    id="last_name" /></p>
    <input type="submit" name="submit1" id="submit1"
    value="Send" />
    </form>
    David Powers, Adobe Community Expert
    Author, "Foundation PHP for Dreamweaver 8" (friends of ED)
    Author, "PHP Solutions" (friends of ED)
    http://foundationphp.com/

  • Dreamweaver 8 with ASP, ColdFusion and PHP Downloads

    Hi,
    I wondered if anyone new if there is anywhere to download the accompanying files (off the CDROM)? I can't find anywhere on the Adobe site where you can.
    I purchased the book from Oxfam Bookstore and the CD is snapped in two pieces but I'd obviously like to follow the tutorials.
    Thanks

    That's quite an old book, so I don't know if there's still any support for it. I wrote the most recent version: "Adobe Dreamweaver CS5 with PHP: Training from the Source". The files for my book are not freely available for download, so I suspect the same is true of the Dreamweaver 8 version.
    According to the publisher's website, you can request a replacement CD from [email protected] However, I wouldn't hold out much hope of getting a replacement for an old book that was bought from a charity shop. Sorry.

  • Dreamweaver Crash with Vista

    I installed Vista a few days ago. Every time I run
    Dreamweaver it starts up just fine. Whenever I open a saved file it
    stays open for a few seconds then crashes. I either get a "Blue
    Screen of Death" that shuts my computer off, or it just shuts the
    program down. All other programs are running fine with Vista; it is
    just all programs that are in Stuido 8 that seem to be
    crashing.

    You did check the Adobe site and noted that Vista is not
    supported by DW8
    didn't you? Maybe not it would seem.
    Search the newsgroup, theres a few tricks you can do to have
    a 'nicer'
    experience, otherwise, either put up with it until DW9 is
    released, or
    downgrade your OS back to something that is officially
    supported.
    Brendon
    "Bsuguy114" <[email protected]> wrote in
    message
    news:eqth4d$prq$[email protected]..
    >I installed Vista a few days ago. Every time I run
    Dreamweaver it starts
    >up
    > just fine. Whenever I open a saved file it stays open
    for a few seconds
    > then
    > crashes. I either get a "Blue Screen of Death" that
    shuts my computer
    > off, or
    > it just shuts the program down. All other programs are
    running fine with
    > Vista; it is just all programs that are in Stuido 8 that
    seem to be
    > crashing.
    >

  • Dreamweaver 8 with ASP, ColdFusion, and PHP

    I'm having trouble with diplaying multiple recordsets. I did
    everything that the book told me to do, but it doesn't work. I just
    got done with the tours.asp and it works fine. Now I'm working on
    the index.asp. rs_journal comes up fine, but when I add the
    rs_worldregions, the page won't come up. I even uploaded the
    finished sample of index.asp that came with the book and that
    didn't work.
    Has anyone read this book and have the same troubles?

    This is what the code looks like.
    <%@LANGUAGE="VBSCRIPT"%>
    <!--#include file="Connections/conn_newland.asp" -->
    <%
    Dim rs_journal
    Dim rs_journal_numRows
    Set rs_journal = Server.CreateObject("ADODB.Recordset")
    rs_journal.ActiveConnection = MM_conn_newland_STRING
    rs_journal.Source = "SELECT journalID, journal_entry FROM
    tbl_journal ORDER BY journalID DESC"
    rs_journal.CursorType = 0
    rs_journal.CursorLocation = 2
    rs_journal.LockType = 1
    rs_journal.Open()
    rs_journal_numRows = 0
    %>
    <%
    Dim rs_worldregions
    Dim rs_worldregions_numRows
    Set rs_worldregions = Server.CreateObject("ADODB.Recordset")
    rs_worldregions.ActiveConnection = MM_conn_newland_STRING
    rs_worldregions.Source = "SELECT * FROM tbl_region ORDER BY
    regionName ASC"
    rs_worldregions.CursorType = 0
    rs_worldregions.CursorLocation = 2
    rs_worldregions.LockType = 1
    rs_worldregions.Open()
    rs_worldregions_numRows = 0
    %>
    <%
    Dim Repeat1__numRows
    Dim Repeat1__index
    Repeat1__numRows = -1
    Repeat1__index = 0
    rs_worldregions_numRows = rs_worldregions_numRows +
    Repeat1__numRows
    %>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN" "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="
    http://www.w3.org/1999/xhtml">
    <head>
    <title>Newland Tours</title>
    <meta http-equiv="Content-Type" content="text/html;
    charset=iso-8859-1" />
    <link href="css/newland.css" rel="stylesheet"
    type="text/css" /></head>
    <body>
    <table width="750" border="0" cellpadding="3"
    cellspacing="0">
    <tr>
    <td colspan="2" width="470"><img
    src="images/banner_left.gif" width="451" height="68" alt="Newland
    Tours Banner, Left." /></td>
    <td width="280"><img src="images/banner_right.jpg"
    width="276" height="68" alt="Newland Tour Banner, Right."
    /></td>
    </tr>
    <tr valign="top">
    <td width="180"> </td>
    <td width="290"> </td>
    <td width="280"> </td>
    </tr>
    <tr valign="top">
    <td width="180" bgcolor="#DCDFD9">
    <p class="navhead">Explore the Site</p>
    <p>
    <a href="about.asp">About Newland
    Tours</a><br />
    <a href="tours.asp">Find Tours</a><br />
    <%
    While ((Repeat1__numRows <> 0) AND (NOT
    rs_worldregions.EOF))
    %>
      <a
    href="tours_detail.asp?regionID=<%=(rs_worldregions.Fields.Item("regionID").Value)%>"><%= (rs_worldregions.Fields.Item("regionName").Value)%></a><br
    />
    <%
    Repeat1__index=Repeat1__index+1
    Repeat1__numRows=Repeat1__numRows-1
    rs_worldregions.MoveNext()
    Wend
    %>
    <a href="profiles.asp">Country
    Profiles</a><br />
    <a href="contact.asp">Contact an
    Agent</a></p>
    <p><br />
    &copy; 2003 Newland Tours</p>
    </td>
    <td width="290">
    <p>Operating since 1968, Newland Tours offers an array
    of travel tours. Whether you love hiking in exotic locations or
    want to get the most out of your retirement, Newland Tours has a
    package for you.</p>
    <p><img src="images/title_featured_vacation.gif"
    width="276" height="25" alt="Featured Vacation." /></p>
    <p><img src="images/temple_small.jpg" width="72"
    height="90" align="left" alt="Heian Jingu Shrine, Kyoto
    Prefecture." /><strong>Highlights of
    Japan</strong></p>
    <p class="caption"> Image: Heian Jingu Shrine, Kyoto
    Prefecture</p>
    <p>Get a taste for Japan's diversity, from the
    serenity of its shrines to the chaos of urban life. Meet
    &quot;Fuji-san,&quot; Japan's highest mountain at 12,387
    feet, visit temples, walk through gardens, and browse in Japan's
    most elegant shopping districts.</p>
    <p>
    Only $1,199/adult and $899/child USD.
    </p>
    </td>
    <td width="280"><p><img
    src="images/title_travelers_journal.gif" width="276" height="25"
    alt="Traveler's Journal." /></p>
    <img src="images/icon_tj.gif" width="81" height="81"
    align="right" "Traveler's Journal logo."
    /><%=(rs_journal.Fields.Item("journal_entry").Value)%></td>
    </tr>
    </table>
    <br />
    <br />
    </body>
    </html>
    <%
    rs_journal.Close()
    Set rs_journal = Nothing
    %>
    <%
    rs_worldregions.Close()
    Set rs_worldregions = Nothing
    %>

  • Dreamweaver CS3 with ASP,... by BOB Flynn

    Hi,
    I opened the tours.asp from
    complete folder , uploaded and viewed in my browser. After
    clicking any of the regions (step 5 on page 344) I do not get the
    same view listed on page 344. Instead I get this:
    Tour Descriptions
    Find Tours: Tour Descriptions
    All Photographs © PhotoDisc
    Find Tours: Tour Descriptions
    Thanks for your help

    Hi,
    I opened the tours.asp from
    complete folder , uploaded and viewed in my browser. After
    clicking any of the regions (step 5 on page 344) I do not get the
    same view listed on page 344. Instead I get this:
    Tour Descriptions
    Find Tours: Tour Descriptions
    All Photographs © PhotoDisc
    Find Tours: Tour Descriptions
    Thanks for your help

  • Slight roadblock in "DW 8 with ASP, ColdFusion, and PHP: Training from the Source"

    I'm working my way through Dreamweaver 8 with ASP,
    ColdFusion, and PHP:
    Training from the Source. I've come to the middle of Lesson 6
    and have hit
    my first obstacle in learning PHP. I'm following the
    instructions to format
    the output of the tour price calculator, but my issue is with
    where to place
    the following PHP code: <?php setlocale(LC_MONETARY,
    'en_US'); echo
    money_format('%i', $tourPrice); ?>
    I placed it before the DOCTYPE and when that didn't work, I
    tried inserting
    right before the code that retrieves the tour price (in the
    body of the
    page). That didn't work either.
    I also tried changing money_format to number_format and
    manually inserting
    the $, but when I tested everything, the output printed as
    follows:
    The estimated cost of your tour is
    $0.00000000000000000000000000000000000000000000000000000000000000000000000000000000000000 000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 000000000000000000000000000000000000000000000000000000500.
    I'm not quite sure where I've gone wrong.
    Thanks for any help,
    Heather

    Coach Bob wrote:
    > David,
    >
    > I would like to understand better your comment about the
    money_format. The
    > ability to use it is dependent on the host system's
    support of the C library
    > function strfmon(), correct? So if a user were
    developing on a windows box with
    > a local WAMP install it would not work while it may work
    on their *nix-based
    > Web host?
    Check the PHP documentation - it tells you all you need to
    know:
    http://www.php.net/manual/en/function.money-format.php
    > I will see to it that it gets corrected in the next
    version of the book!
    I've no idea what relationship you have with "Training from
    the Source",
    but I find it interesting - to say the least - that you need
    to the ask
    the author of a rival book.
    David Powers, Adobe Community Expert
    Author, "Foundation PHP for Dreamweaver 8" (friends of ED)
    Author, "PHP Solutions" (friends of ED)
    http://foundationphp.com/

  • Dreamweaver CS5.5, v11.5, Build 5366 keeps crashing with Mac OS 10.7.5

    Dreamweaver CS5.5, v11.5, Build 5366 keeps crashing with Mac OS 10.7.5. This started a few weeks ago.   Dreamweaver crashes at random time so I cannot pinpoint one thing that causes it.  It just crashed as I was trying to adjust margins in a style sheet.   I have tried deleting preferences and reinstalling the software.  Both worked for a day or 2 and then the crashes started again.    I'm at the point now where I have to save after every change so I don't lose them…but that isn't allowing me to experiment before saving.   This is very frustrating.    Were there any releases beyond build 5366 or v11.5?  When I check for updates, I am told that my software is up to date.
    I have no idea what to try next.

    When DW starts acting weird, the first thing to try is Deleting Corrupted Cache in DW. Be sure to turn on hidden files & folders in your Mac Finder.
    http://forums.adobe.com/thread/494811
    If that doesn't help, try Restore Preferences
    http://helpx.adobe.com/dreamweaver/kb/restore-preferences-dreamweaver-cs4-cs5.html
    If all else fails, use the CC Cleaner Tools below followed by a software re-install.
    http://helpx.adobe.com/creative-suite/kb/cs5-cleaner-tool-installation-problems.html
    Nancy O.

  • 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

  • Dreamweaver cs4 spry menus issues with asp

    I am having problems using spry menus with dreamweaver cs4
    and asp pages. When I inset the spry menus they look fine on the
    screen, except when I look at them through a browser the menu is
    displayed as in my attachment. This doens't happen with html, so is
    there an issue in dreamweaver 4 asp. Can anyone help me with this
    one?
    Julie

    Julie,
    Not a asp problem can you post a link or code for the page in
    question?
    Dave
    "JulieThompsonaus" <[email protected]> wrote
    in message
    news:gqovvm$c0g$[email protected]..
    > I am having problems using spry menus with dreamweaver
    cs4 and asp pages.
    > When I inset the spry menus they look fine on the
    screen, except when I
    look at
    > them through a browser the menu is displayed as in my
    attachment. This
    doens't
    > happen with html, so is there an issue in dreamweaver 4
    asp. Can anyone
    help
    > me with this one?
    > Julie
    >
    > * About Us
    > o Our Staff
    > o Testimonials
    > o Customer Survey
    > * Service Requst
    > * Recruitment
    > o Training
    > o Job Descriptions
    > o Job Applications
    > * Contact Us
    >
    > c
    >
    >
    >
    >
    >
    >
    >
    >
    > ? Home Carers 2009 Site Map Email Us
    >

  • Dreamweaver crashes when i drag my div tags in design view

    Hi
    Ive just encountered a problem with dreamweaver cs4 at work.
    I was creating a website using CSS and creating multiple div tags to house my images around the page. I normally position them using the CSS style sheet, but on this occasion, I grabbed the div tag whilst in design view and dragged it manually, and dreamweaver crashed! See image below It does so everytime I try the same thing again. Ive even restarted my PC. Anyone know why?

    I've not see this before, so can't say why it would be happening.  Would the pc be low on resources?  but then again you say it happened even after a restart of the pc.
    Maybe you could try the file cache and the personal configuration folder fix to see if it fixes any issues.
    http://forums.adobe.com/thread/417116#cache
    PS:  While I'm at it, it would be wrong for me to point out that using AP divs is not the optimum way to create a layout....  unless you know the repercussions of using them.
    Here's why:  (from the Dreamweaver FAQ)
    http://forums.adobe.com/thread/477969

  • Dreamweaver crashes on start up

    There are three common causes of Dreamweaver crashing on start up:
    Conflict with security program on Acer computers
    A corrupt Dreamweaver file cache
    The 8KB bug
    The following information describes how to handle each one.
    Acer incomaptibility
    There’s a known conflict between Dreamweaver and Acer eDataSecurity Management v3.0. If you’re on an Acer, and Dreamweaver won’t start, download the patch from http://www.egistec.com/oem-acer001/program-update.html. This should fix the problem.
    Corrupted file cache
    Dreamweaver creates a cache file called WinFileCache-********.dat or MacFileCache-********.dat inside your personal Dreamweaver configuration folder (the asterisks represent a series of letters and numbers that might differ from computer to computer). This occasionally gets corrupted causing instability, unpredictable error messages, and even crashes.
    To solve the problem, close Dreamweaver and delete WinFileCache-********.dat or MacFileCache-********.dat. Sometimes, deleting this file is not sufficient, and you need to delete your personal configuration folder in its entirety.
    WARNING: Do not confuse your personal configuration folder with the main configuration folder in Program Files in Windows or Applications on a Mac. You should never touch the main configuration folder unless you really know what you're doing.
    Locating your personal configuration folder
    The location of the personal configuration folder depends on your operating system and version of Dreamweaver. For Dreamweaver CS4, it’s as follows:
    Vista: C:\Users\<username>\AppData\Roaming\Adobe\Dreamweaver CS4\<language>\Configuration
    Windows XP: C:\Documents and Settings\<username>\Application Data\Adobe\Dreamweaver CS4\<language>\Configuration
    Mac OS X: Macintosh HD:<username>:Library:Application Support:Adobe:Dreamweaver CS4:<language>:Configuration
    In all cases, <username> is the name of your user account on the computer and <language> indicates the language of your operating system. The language is usually represented by two pairs of characters separated by an underscore, as in en_US (English), es_ES (Spanish), or fr_FR (French).
    Earlier versions of Dreamweaver locate the personal configuration folder in a slightly different location. This is where it can be found in Dreamweaver CS3:
    Vista: C:\Users\<username>\AppData\Roaming\Adobe\Dreamweaver 9\Configuration
    Windows XP: C:\Documents and Settings\<username>\Application Data\Adobe\Dreamweaver 9\Configuration
    Mac OS X: Macintosh HD:Users:<username>:Library:Application Support:Adobe:Dreamweaver 9:Configuration
    The Dreamweaver configuration folders are hidden on Windows, so you need to enable the option to view hidden files and folders in order to locate them, as follows:
    In Vista, select Start > Computer > Organize > Folder and Search Options > View. In Advanced settings, choose Show hidden files and folders.
    In Windows XP, select Start > My Computer > Tools > Folder Options > View. In Advanced settings, choose Show hidden files and folders.
    Once you turn on this option, hidden folders are displayed as dimmed icons to remind you to treat them with care.
    The 8KB bug
    This is a very rare bug that causes Dreamweaver to crash during operation, and then crash repeatedly each time you try to restart the program. It normally affects only Dreamweaver CS3 on Windows, and is caused by the presence of a file that's exactly 8,192 bytes (8KB) or a multiple thereof.
    The solution is to open the file in a text editor and add a few extra characters (new lines or a comment will do). Save the file, and restart Dreamweaver.
    If the file causing the problem is an image or other type of media file, edit it so that it's no longer an exact multiple of 8KB.

    Try #12 and #4 and then go through the rest as necessary:
    http://helpx.adobe.com/dreamweaver/kb/troubleshoot-javascript-errors-dreamweaver-cs4.html

  • Help with asp code

    Helleo Everyone
    I have been given a website to ammend and although i am not new to dreamweaver and using asp within dremweaver i sometimes struggle dealing with stuff that may have not been created with the tools i am used to.
    I have a page that displays information relating to different clocks the page gets its info ftom an access table called tblmovements, in that table is column Called KitID and another column called details that has link information that would go to another page.
    Back to the main page all that i need to happen is when the user scrolls down to find the clock that they want i need them to be able to click on more details and for that to link to the page that is referenced in the details column in the table.
    But i am not sure on how to do this.
    The column kitID is a unique column.
    Can anyone assist
    Thanks
    John

    Hi Thanks for the response
    Below is the page that shows the information, then where it says details that would then link to the appropriate page.
    I did do a link using dreamweaver recordset to the column that has the link in it but every details bit went to the same page, so i understand what you are saying about identifying via the ID but thats the bit i am unsure of.
    <%@LANGUAGE="VBSCRIPT"%>
    <!--#include file="Connections/dbConn.asp" --> <% Dim Recordset1 Dim Recordset1_cmd Dim Recordset1_numRows
    Set Recordset1_cmd = Server.CreateObject ("ADODB.Command") Recordset1_cmd.ActiveConnection = MM_dbConn_STRING Recordset1_cmd.CommandText = "SELECT * FROM tblMovements"
    Recordset1_cmd.Prepared = true
    Set Recordset1 = Recordset1_cmd.Execute
    Recordset1_numRows = 0
    %><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <%
    Dim objRS
    Set objRS = Server.CreateObject ("ADODB.Recordset") strSQL = "SELECT * FROM tblMovements ORDER BY KitID ASC"
    objRS.Open strSQL, MM_dbConn_STRING%>
    <title>Oakside Classic Clocks | Clock Makers - Kit Gallery</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <meta name="description" content="Oakside Classic Clocks' Gallery of clock makers Kieninger 'movement, dial, pendulum and accessories' kits." /> <style type="text/css">
    <!--
      @import url(css/global.css);
    .style3 {
          color: #990000;
          font-style: italic;
    .style6 {
          font-family: Georgia, "Times New Roman", Times, serif;
          color: #000066;
          font-style: italic;
    .style9 {color: #990000; font-style: italic; font-weight: bold; }
    .style14 {color: #990000; font-style: italic; font-weight: bold; font-size: small; }
    .style15 {color: #000000}
    -->
    </style>
    </head>
    <body id="gallery">
    <table width="100%" height="56" border="0" cellpadding="0" cellspacing="0">
      <tr>
        <td background="imgs/banner.gif"><img src="imgs/banner_l.gif" width="236" height="56" /></td>
        <td width="12"><img src="imgs/banner_r.gif" width="12" height="56" /></td>
      </tr>
    </table>
    <table width="100%" border="0" cellpadding="0" cellspacing="0">
        <tr>
          <td bgcolor="#000066"><img src="imgs/slogan.gif" width="485" height="24" /></td>
        </tr>
    </table>
    <!--#include file="incl/mainnav.asp" -->
    <div id="content">
      <h1 class="strapline">Kieninger Clock 'Movement, Dial &amp; Pendulum' Sets - For those who insist on the Best! </h1>
      <h2 align="left" class="strapline">Welcome to Oakside's  'Clock Makers' Gallery - On this page Frank has assembled a large selection of comprehensive clock makers sets to suit all styles of clock cabinets - each Set contains  a Kieninger mechanical Clock Movement  and a Dial and where appropriate, a Pendulum, the Weight Shells &amp; Fillings, plus all of the Accessories required to get your clock running. We believe that Oakside now stock the largest range of Kieninger Movements and Accessories in Europe! </h2>
      <h2 align="left" class="style14">  </h2>
      <h2 align="left" class="strapline">Each of Oakside's Clock Makers Sets include every thing you will need to get your clock running, including a Kieninger Mechanical Clock Movement, a Dial, a Pendulum, polished brass weight shells &amp; fillings,  the cable pulleys, the gongs, winding key and the fixings. We also include a drawing showing the primary 'movement,  dial and pendulum' accommodation dimensions and a template for  positioning the mounting holes required to fit these items into your  clock. On the 'Spares &amp; Accessories' page you will find special brass  rebate hinges, mortise locks, escutcheons, keys and brass screws and adjustable cabinet feet for leveling your clock. You may collect your pre-ordered/pre-paid kit and save the postage.</h2>
      <h2 class="style9">  </h2>
      <h2 align="justify" class="strapline">We also stock a huge range of <a href="kit_spares_accessories.asp">replacement parts</a> for Kieninger movements. </h2><h2 align="left" class="strapline">If you require a replacement Kieninger movement without accessories please <a href="movement_gallery.asp">click here</a>. </h2>
       <h2 class="style9">  </h2>
       <h3 class="style6"> You are invited to phone Frank to discuss your project prior to ordering a kit. If you are designing your own clock or are intending to modify an existing design, we suggest that you pre-order  your Movement set with a deposit of &pound;25.  We will then send you the Kieninger installation drawing so that you can ensure that all parts will fit and operate without later cabinet alterations.</h3>
       <h3 align="justify" class="style6">Please  note, when you purchase your mechanical clock parts  from Oakside, you are dealing with  a dedicated Longcase Clock Designer &amp; Maker, not just a shop! We  would happily examine you clock drawings to ensure that your design  will be able to accommodate the Kieninger movement of your choice; we  will also provide telephone assistance when you are installing the mechanicals and commissioning your clock - our expertise will ensure  that your new clock performs perfectly!</h3>
       <h3 class="style6">Thinking about building you first Grandfather Clock - We suggest that you visit the web site of <a href="http://www.van-vliet.org/dempseywoodworking/grandfatherclock.shtml">Dempsey Woodworking</a> in Canada. Frank has coordinated with   the sites owner who has prepared detailed construction plans for a longcase clock, in the style of our Winchester Grandfather clock. Please note that by modifying the depth dimensions on the plan, you can build this clock to accept any of our Kieninger 116cm movements. The web site provides an illustrated  'Step by Step' guide showing each of the constructional stages and you can down-load a free copy of the plans.</h3>
       <h5> For Grandfather Clocks around 80 inches high and taller we suggest a 116cm movement with a 280mm width dial.</h5>
        <h5> For Grandmother Clocks between 60 &amp; 70 inches tall consider a 100 or 93cm pendulum Movement with a 250mm width dial. </h5>
        <h5>For Granddaughter clocks we suggest a 93 or 80CM pendulum Movement and a 200mm width dial. </h5>
        <h5>For  Laterndluhr Style,  Large Wall Regulators with 116cm 'Seconds pendulums, consider Kits 24, 25, 26, 27 28 and 29. </h5>
        <h5>For Medium Height Longcase Wall clocks consider the 65, 80 and 93cm Pendulum Movements.</h5>
        <h5>For Smaller longcase Wall Clocks consider Kits 08, 09 and 09A. </h5>
        <h5>Shaker Wall clocks require a movement of shallow depth and are usually without chimes - Frank suggests Kit 09 .</h5>
        <h5>For Small Mantle Clocks consider Kits 01 and 02. </h5>
        <h5>For Large Mantle or Bracket  Clocks,  consider Kits 04, 05, 06 and 07.. </h5>
        <hr /><hr />
        <div class="clock">
          <p>
            <%
    Do While Not objRS.EOF
      ' Replace character retuns, ' and " characters
        strKitDescriptionShort = objRS("KitDescriptionShort")
        strKitDescriptionShort = Replace(strKitDescriptionShort, vbCRLF & vbCRLF, "</dd><dd>")
        strKitDescriptionShort = Replace(strKitDescriptionShort, chr(34), "&#34;")
        strKitDescriptionShort = Replace(strKitDescriptionShort, chr(39), "&#39;")
          strImgSrc = "imgs/clocks" & objRS("imgKitCatalogue") %>
          <dl>
            <img src="<%="imgs/clocks/movement_images/" & objRS("imgKitCatalogue")%>" alt="<%=objRS("imgKitCatalogueAltText")%>" hspace="10" vspace="10" class="img-gallery" />
            <dt><%=objRS("KitID")%> featuring the Kieninger
              <%=objRS("MovementName")%> </dt>
             <dd class="strapline"><%=objRS("Strapline")%></dd>
            <dd><%=strKitDescriptionShort%></dd>
      <h6 align="center" class="strapline">Price including UK &amp; Ireland delivery £<%=objRS("KitCostStandard")%></h6>
      <h6 align="center" class="style3"> Please note that we ship to Canada, the USA, Australia &amp; New Zealand and you get UK Tax Free Prices.  </h6>
      <dd>
          <h3 class="strapline">  You can view the dials etc available for this kit by <a>clicking here.</a>Details</h3>
      </dd>
      <dt class="strapline">Click to view the </span><%=objRS("KitID")%> <a href="kit_options.asp?KitID=<%=objRS("KitID")%>"> Options &amp; Prices</a> page. </dt>
      </dl>
          <%
    objRS.MoveNext
    Loop
    %>
      </div><!-- clock End -->
      <!--#include file="incl/footer.asp" --> </div>
    <!-- content End -->
    </body>
    </html>
    <%
    Recordset1.Close()
    Set Recordset1 = Nothing
    %>

Maybe you are looking for

  • PhotoShop external editor doesn't show up in Preset file application support. It is listed as the top external editor. But will not go there

    PhotoShop external editor doesn't show up in Preset photoShop file application support. It is listed as the top editor in the Light room preference. But it will not go there. You can use export to Photoshop CC but not as a editor. It stays there. I h

  • Creating HighScores for my game..

    Well, Im kinda new at java and have been working on a game... it is mulitplayer but i need help on making highscores... I know you can use CGI scirpt or something similiar? can anyone help me thanks.. here is where i wanna added it in the middle of t

  • Jsp/java servlet architechture

    i would like to ask about my design programming architechture: because i haven't have html file,i only use jsp file to display the page. and when the user click the button, then i call the dopost method in java file. is it the right method to build m

  • Are apple going to stop updates for the iPhone 3GS

    I was just wondering if anyone could tell me if apple are going to stop the updates for the iPhone 3GS and will the apps always work with this iPhone?

  • Failure to login to PSConsole

    Ehlo all, i have an instance of PS7 running on Solaris 10 SPARC machine. For days before, it work ok. I can login to amconsole as well as psconsole using amadmin account. However, today, i can not. I am still able to login to amconsole, but can not t