Dreamweaver 4 - Audio

I am using Dreamweaver 4. I have audio files embedded in my
pages and I want to know how to turn autoplay off. I would like for
my users to have the option of playing the file instead of it
playing as soon as the page is active. Any ideas? Thanks!!

This goes inside the object code:
<param name="autostart" value="false">
This goes inside the embed code:
autostart="0"
--Nancy O.
Alt-Web Design & Publishing
www.alt-web.com
"lwcaputo" <[email protected]> wrote in
message
news:ft2rdn$7mf$[email protected]..
> I am using Dreamweaver 4. I have audio files embedded in
my pages and I
want
> to know how to turn autoplay off. I would like for my
users to have the
option
> of playing the file instead of it playing as soon as the
page is active.
Any
> ideas? Thanks!!
>

Similar Messages

  • Flash Audio Player inserted via Dreamweaver

    I am looking for a flash solution to insert easily into a dreamweaver html page. I need a small audio player with a start and stop button. It should have a white background (no text). To work like the example in www.spolin.com/about.html
    I would like to have a flash plug in that allows me to insert into another webpage and use an FLV file or other audio format.
    Dreamweaver's player does not look good inserted into any webpage.

    This information and tutorial assumes I have knowledge of programming and flash pro. I have no knowledge of programming.
    Is there a tool or an existing simple player I can modify easily without knowing much about Flash Pro or programming?
    I bought Flash Pro because a tech support person from Dreamweaver told me I needed it in order to convert my flv to something that would work in Dreamweaver. I am only an intermediate user of Dreamweaver and Flash Pro is overwhelming in its capacity. I have no idea how to use it.
    The player included in Dreamweaver is terrible. It assumes the sound file must be played as a video and inserts a black default video screen with the player controls.
    There is no way to simply insert a play, stop button player using Dreamweaver's insert flv player.

  • How to make an audio file on Dreamweaver not auto play?

    hi,
    ive been trying to make my audio file on dreamweaver not play when the webpage is opened.
    i have tired the 'autoplay, false' however this dosent seem to work for me. im using Dreamweaver CS6
    im hoping for some help as this is becoming frustrating!
    and i am using a music file which has been downloaded!

    At a minimum, you need MP3 and OGG audio files.  If you don't have them, use the online converter below: http://media.io/
    With an HTML5 doc type, your code should look like this:
    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>HTML5 Audio Demo</title>
    <!--[if lt IE 9]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
    </head>
    <body>
    <p>This works in all modern browsers. </p>
    <audio controls>
    <source src="path/yourSong.ogg" type="audio/ogg">
    <source src="path/yourSong.mp3" type="audio/mp3">
    <p>Your browser doesn't support audio.</p>
    </audio>
    </body>
    </html>
    Nancy O.

  • Can Dreamweaver Load More Than One Audio Player?

    Hi,
    I have audio files on my site, and they are in Quicktime,  but clients are complaining that they can't hear the audio because they don't have Quicktime installed...
    Is it possible for me to load more that one media player and how?
    I found this site, but not sure if it's old, or I don't understand all the instructions.
    http://www.happydays-mk.co.uk/WebpageDesign/SoundPlayers/Sound%20with%20Dreamweaver/Sound% 20and%20Media%20Objects.pdf
    This is my site:
    http://www.estevanfaithlutheran.com/listentosermons.html
    Thanks!
    Em.

    Don't use WAV!  Some mac people won't be able to hear them.  Almost everyone has an MP3 player, be it  iPod, iTunes, QuickTime, or something else.
    Don't test media in Dreamweaver.  Test media in your web browser. 
    Not to beat a dead horse here but to reach the widest audience, you really should use MP3 and embed a Flash MP3 player on your page.
    FREE FLASH MP3 PLAYERS
    http://www.premiumbeat.com/flash_resources/free_flash_music_player/
    WIMPY MP3 PLAYER OR WIMPY BUTTONS
    http://www.wimpyplayer.com/
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb

  • Dreamweaver Help | Insert HTML5 audio | Creative Cloud

    This question was posted in response to the following article: http://helpx.adobe.com/dreamweaver/using/insert-html5-audio.html

    HTML5 media options are Cloud only features in DW - not yet available for Creative Suite perpetual license versions.
    http://helpx.adobe.com/dreamweaver/using/whats-new-dreamweaver-ccm.html
    http://helpx.adobe.com/content/help/en/dreamweaver/using/insert-html5-video.html
    You must be running version 12.1 or greater (Cloud only).

  • Dreamweaver CS4: Audio plugings no longer work on any browser---as they used to Is there an update?

    CS4 audio Plugin Update?

    We don't use player plugins anymore.  Not since HTML5 <audio> tags were introduced into the W3C spec.
    Browser plugins are prone to failure unless the end user has the necessary player app and browser plugins installed on their device -- which many people don't have.
    If you want to play audio files, just save them MP3 & OGG files.  Use the HTML5 audio tag as shown below.  All modern browsers and mobile devices support this method.
    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>HTML5 Audio Demo</title>
    <!--[if lt IE 9]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
    <style>
    header {
        width: 500px;
        margin: 0 auto;
        text-align: center
    audio { color: red }
    figure {
        margin: 20px auto;
        padding: 20px;
        width: 500px;
        text-align: center;
        border: 1px #ccc dashed;
        clear: both;
    figcaption {
        display: block;
        clear: both;
        text-align: center;
        font-style: italic;
        padding-top: 15px;
    dl {
        text-align: left;
        margin-left: 40%
    dt {
        clear: both;
        float: left;
        width: 4.5em;
        font-weight: bold;
        line-height: 150%;
    dd {
        line-height:150%;
        color:maroon
    </style>
    </head>
    <body>
    <header> <h1>HTML5 Audio Demo</h1>
    <p><a href="http://www.w3schools.com/html/html5_audio.asp">HTML5 Audio Tutorial</a></p>
    </header>
    <figure>
    <audio preload="auto" controls >
    <!--replace demo audio files with your own-->
    <source src="http://alt-web.com/Media/Fake-Empire.ogg" type="audio/ogg">
    <source src="http://alt-web.com/Media/Fake-Empire.mp3" type="audio/mp3">
    Looks like your browser is outdated and doesn't support the audio element.
    Please upgrade to a modern browser that does. </audio>
    <figcaption>HTML5 Audio using OGG &amp; MP3 files. <br>
    Works in all current browsers &amp; mobile devices.<br>
    </figcaption>
    </figure>
    <dl>
    <dt>Title:</dt>
    <dd>Fake Empire</dd>
    <dt>Year:</dt>
    <dd>2007</dd>
    <dt>Artist:</dt>
    <dd>The National</dd>
    <dt>Album:</dt>
    <dd>Boxer</dd>
    </dl>
    </body>
    </html>
    Nancy O.

  • Audio in dreamweaver - How?

    How do I insert an mp3 audio into my page? I also want
    buttons that says "play","pause" and "stop". It shouldn't play
    automatic.
    Can someone help?
    I use MX 2004
    Regards

    Use Flash.
    Dan Mode
    *THE online Radio*
    http://www.tornadostream.com
    *Must Read*
    http://www.smithmediafusion.com/blog
    *Flash Helps*
    http://www.smithmediafusion.com/blog/?cat=11
    "galloe123" <[email protected]> wrote in
    message
    news:e64t6e$609$[email protected]..
    > How do I insert an mp3 audio into my page? I also want
    buttons that says
    > "play","pause" and "stop". It shouldn't play automatic.
    >
    > Can someone help?
    >
    > I use MX 2004
    >
    > Regards

  • Why is my flash content not working on my dreamweaver created html site?

    This is a problem that's happening on my website I'm creating.  I created a quick test website to show you the problem on the fourm.  It's the same problem, and if you can provide the solution to this test website I can apply it to my main website.
    Test website on server:
    test331754952.net23.net
    What I did:
    -launched flash
    -typed "test" and made it spin 360 degrees
    -published swf
    -launched dreamweaver
    -created a site
    -moved swf to site folder
    -saved a html file to the site folder
    -in dreamweaver, went to insert, media, swf, then selected the swf I made
    -it inserted the swf, creating a gray placeholder for it
    -re-saved the html document, at which point dreamweaver created a folder named script and 2 files, an swf, and a javascript file
    Site Directory:
    Scripts Sub-Directory:
    What happens:
    -when I launch the swf on my machine, it plays fine
    -when I open the swf directly on the test website on the server, it plays fine
    -when I open the html with the embended swf on the test website on the server, it shows a gray box, then goes white
    -In dreamweaver, when I go to preview in browser and choose internet explorer, it tells me I don't have new flashplayer(I do: flashplayer 11) 
    Ie also pokes up a box at the bottom that says its not allowing content.  When I click allow content, it creates a gray box
    -In dreamweaver, when I go to preview in borwser and choose google chrome, it tells me flash player has stopped a potentionally unsafe operation.  When I close this dialog box, it gives me a gray box where my swf should be embeded.
    -I've tried changing global flash secuirty setting and it does nothing
    -I've tried visiting the test website on multiple computers in my household to no avail
    -I've tried having friends visit the site on their computer at their house to no avail
    -I did't touch the code on this test website-the code is exactly what dreamweaver generated
    Html Document Code:
    <!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>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Untitled Document</title>
    <script src="Scripts/swfobject_modified.js" type="text/javascript"></script>
    </head>
    <body>
    <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="550" height="400" id="FlashID" title="test">
      <param name="movie" value="test.swf" />
      <param name="quality" value="high" />
      <param name="wmode" value="opaque" />
      <param name="swfversion" value="15.0.0.0" />
      <!-- This param tag prompts users with Flash Player 6.0 r65 and higher to download the latest version of Flash Player. Delete it if you don’t want users to see the prompt. -->
      <param name="expressinstall" value="Scripts/expressInstall.swf" />
      <!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
      <!--[if !IE]>-->
      <object type="application/x-shockwave-flash" data="test.swf" width="550" height="400">
        <!--<![endif]-->
        <param name="quality" value="high" />
        <param name="wmode" value="opaque" />
        <param name="swfversion" value="15.0.0.0" />
        <param name="expressinstall" value="Scripts/expressInstall.swf" />
        <!-- The browser displays the following alternative content for users with Flash Player 6.0 and older. -->
        <div>
          <h4>Content on this page requires a newer version of Adobe Flash Player.</h4>
          <p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" width="112" height="33" /></a></p>
        </div>
        <!--[if !IE]>-->
      </object>
      <!--<![endif]-->
    </object>
    <script type="text/javascript">
    swfobject.registerObject("FlashID");
    </script>
    </body>
    </html>
    Javascript file code(the one dreamweaver made when I inserted swf):
    /*! SWFObject v2.0 <http://code.google.com/p/swfobject/>
    Copyright (c) 2007 Geoff Stearns, Michael Williams, and Bobby van der Sluis
    This software is released under the MIT License <http://www.opensource.org/licenses/mit-license.php>
    var swfobject = function() {
    var UNDEF = "undefined",
      OBJECT = "object",
      SHOCKWAVE_FLASH = "Shockwave Flash",
      SHOCKWAVE_FLASH_AX = "ShockwaveFlash.ShockwaveFlash",
      FLASH_MIME_TYPE = "application/x-shockwave-flash",
      EXPRESS_INSTALL_ID = "SWFObjectExprInst",
      win = window,
      doc = document,
      nav = navigator,
      domLoadFnArr = [],
      regObjArr = [],
      timer = null,
      storedAltContent = null,
      storedAltContentId = null,
      isDomLoaded = false,
      isExpressInstallActive = false;
    /* Centralized function for browser feature detection
      - Proprietary feature detection (conditional compiling) is used to detect Internet Explorer's features
      - User agent string detection is only used when no alternative is possible
      - Is executed directly for optimal performance
    var ua = function() {
      var w3cdom = typeof doc.getElementById != UNDEF && typeof doc.getElementsByTagName != UNDEF && typeof doc.createElement != UNDEF && typeof doc.appendChild != UNDEF && typeof doc.replaceChild != UNDEF && typeof doc.removeChild != UNDEF && typeof doc.cloneNode != UNDEF,
       playerVersion = [0,0,0],
       d = null;
      if (typeof nav.plugins != UNDEF && typeof nav.plugins[SHOCKWAVE_FLASH] == OBJECT) {
       d = nav.plugins[SHOCKWAVE_FLASH].description;
       if (d) {
        d = d.replace(/^.*\s+(\S+\s+\S+$)/, "$1");
        playerVersion[0] = parseInt(d.replace(/^(.*)\..*$/, "$1"), 10);
        playerVersion[1] = parseInt(d.replace(/^.*\.(.*)\s.*$/, "$1"), 10);
        playerVersion[2] = /r/.test(d) ? parseInt(d.replace(/^.*r(.*)$/, "$1"), 10) : 0;
      else if (typeof win.ActiveXObject != UNDEF) {
       var a = null, fp6Crash = false;
       try {
        a = new ActiveXObject(SHOCKWAVE_FLASH_AX + ".7");
       catch(e) {
        try {
         a = new ActiveXObject(SHOCKWAVE_FLASH_AX + ".6");
         playerVersion = [6,0,21];
         a.AllowScriptAccess = "always";  // Introduced in fp6.0.47
        catch(e) {
         if (playerVersion[0] == 6) {
          fp6Crash = true;
        if (!fp6Crash) {
         try {
          a = new ActiveXObject(SHOCKWAVE_FLASH_AX);
         catch(e) {}
       if (!fp6Crash && a) { // a will return null when ActiveX is disabled
        try {
         d = a.GetVariable("$version");  // Will crash fp6.0.21/23/29
         if (d) {
          d = d.split(" ")[1].split(",");
          playerVersion = [parseInt(d[0], 10), parseInt(d[1], 10), parseInt(d[2], 10)];
        catch(e) {}
      var u = nav.userAgent.toLowerCase(),
       p = nav.platform.toLowerCase(),
       webkit = /webkit/.test(u) ? parseFloat(u.replace(/^.*webkit\/(\d+(\.\d+)?).*$/, "$1")) : false, // returns either the webkit version or false if not webkit
       ie = false,
       windows = p ? /win/.test(p) : /win/.test(u),
       mac = p ? /mac/.test(p) : /mac/.test(u);
      /*@cc_on
       ie = true;
       @if (@_win32)
        windows = true;
       @elif (@_mac)
        mac = true;
       @end
      return { w3cdom:w3cdom, pv:playerVersion, webkit:webkit, ie:ie, win:windows, mac:mac };
    /* Cross-browser onDomLoad
      - Based on Dean Edwards' solution: http://dean.edwards.name/weblog/2006/06/again/
      - Will fire an event as soon as the DOM of a page is loaded (supported by Gecko based browsers - like Firefox -, IE, Opera9+, Safari)
    var onDomLoad = function() {
      if (!ua.w3cdom) {
       return;
      addDomLoadEvent(main);
      if (ua.ie && ua.win) {
       try {  // Avoid a possible Operation Aborted error
        doc.write("<scr" + "ipt id=__ie_ondomload defer=true src=//:></scr" + "ipt>"); // String is split into pieces to avoid Norton AV to add code that can cause errors
        var s = getElementById("__ie_ondomload");
        if (s) {
         s.onreadystatechange = function() {
          if (this.readyState == "complete") {
           this.parentNode.removeChild(this);
           callDomLoadFunctions();
       catch(e) {}
      if (ua.webkit && typeof doc.readyState != UNDEF) {
       timer = setInterval(function() { if (/loaded|complete/.test(doc.readyState)) { callDomLoadFunctions(); }}, 10);
      if (typeof doc.addEventListener != UNDEF) {
       doc.addEventListener("DOMContentLoaded", callDomLoadFunctions, null);
      addLoadEvent(callDomLoadFunctions);
    function callDomLoadFunctions() {
      if (isDomLoaded) {
       return;
      if (ua.ie && ua.win) { // Test if we can really add elements to the DOM; we don't want to fire it too early
       var s = createElement("span");
       try { // Avoid a possible Operation Aborted error
        var t = doc.getElementsByTagName("body")[0].appendChild(s);
        t.parentNode.removeChild(t);
       catch (e) {
        return;
      isDomLoaded = true;
      if (timer) {
       clearInterval(timer);
       timer = null;
      var dl = domLoadFnArr.length;
      for (var i = 0; i < dl; i++) {
       domLoadFnArr[i]();
    function addDomLoadEvent(fn) {
      if (isDomLoaded) {
       fn();
      else {
       domLoadFnArr[domLoadFnArr.length] = fn; // Array.push() is only available in IE5.5+
    /* Cross-browser onload
      - Based on James Edwards' solution: http://brothercake.com/site/resources/scripts/onload/
      - Will fire an event as soon as a web page including all of its assets are loaded
    function addLoadEvent(fn) {
      if (typeof win.addEventListener != UNDEF) {
       win.addEventListener("load", fn, false);
      else if (typeof doc.addEventListener != UNDEF) {
       doc.addEventListener("load", fn, false);
      else if (typeof win.attachEvent != UNDEF) {
       win.attachEvent("onload", fn);
      else if (typeof win.onload == "function") {
       var fnOld = win.onload;
       win.onload = function() {
        fnOld();
        fn();
      else {
       win.onload = fn;
    /* Main function
      - Will preferably execute onDomLoad, otherwise onload (as a fallback)
    function main() { // Static publishing only
      var rl = regObjArr.length;
      for (var i = 0; i < rl; i++) { // For each registered object element
       var id = regObjArr[i].id;
       if (ua.pv[0] > 0) {
        var obj = getElementById(id);
        if (obj) {
         regObjArr[i].width = obj.getAttribute("width") ? obj.getAttribute("width") : "0";
         regObjArr[i].height = obj.getAttribute("height") ? obj.getAttribute("height") : "0";
         if (hasPlayerVersion(regObjArr[i].swfVersion)) { // Flash plug-in version >= Flash content version: Houston, we have a match!
          if (ua.webkit && ua.webkit < 312) { // Older webkit engines ignore the object element's nested param elements
           fixParams(obj);
          setVisibility(id, true);
         else if (regObjArr[i].expressInstall && !isExpressInstallActive && hasPlayerVersion("6.0.65") && (ua.win || ua.mac)) { // Show the Adobe Express Install dialog if set by the web page author and if supported (fp6.0.65+ on Win/Mac OS only)
          showExpressInstall(regObjArr[i]);
         else { // Flash plug-in and Flash content version mismatch: display alternative content instead of Flash content
          displayAltContent(obj);
       else {  // If no fp is installed, we let the object element do its job (show alternative content)
        setVisibility(id, true);
    /* Fix nested param elements, which are ignored by older webkit engines
      - This includes Safari up to and including version 1.2.2 on Mac OS 10.3
      - Fall back to the proprietary embed element
    function fixParams(obj) {
      var nestedObj = obj.getElementsByTagName(OBJECT)[0];
      if (nestedObj) {
       var e = createElement("embed"), a = nestedObj.attributes;
       if (a) {
        var al = a.length;
        for (var i = 0; i < al; i++) {
         if (a[i].nodeName.toLowerCase() == "data") {
          e.setAttribute("src", a[i].nodeValue);
         else {
          e.setAttribute(a[i].nodeName, a[i].nodeValue);
       var c = nestedObj.childNodes;
       if (c) {
        var cl = c.length;
        for (var j = 0; j < cl; j++) {
         if (c[j].nodeType == 1 && c[j].nodeName.toLowerCase() == "param") {
          e.setAttribute(c[j].getAttribute("name"), c[j].getAttribute("value"));
       obj.parentNode.replaceChild(e, obj);
    /* Fix hanging audio/video threads and force open sockets and NetConnections to disconnect
      - Occurs when unloading a web page in IE using fp8+ and innerHTML/outerHTML
      - Dynamic publishing only
    function fixObjectLeaks(id) {
      if (ua.ie && ua.win && hasPlayerVersion("8.0.0")) {
       win.attachEvent("onunload", function () {
        var obj = getElementById(id);
        if (obj) {
         for (var i in obj) {
          if (typeof obj[i] == "function") {
           obj[i] = function() {};
         obj.parentNode.removeChild(obj);
    /* Show the Adobe Express Install dialog
      - Reference: http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=6a253b75
    function showExpressInstall(regObj) {
      isExpressInstallActive = true;
      var obj = getElementById(regObj.id);
      if (obj) {
       if (regObj.altContentId) {
        var ac = getElementById(regObj.altContentId);
        if (ac) {
         storedAltContent = ac;
         storedAltContentId = regObj.altContentId;
       else {
        storedAltContent = abstractAltContent(obj);
       if (!(/%$/.test(regObj.width)) && parseInt(regObj.width, 10) < 310) {
        regObj.width = "310";
       if (!(/%$/.test(regObj.height)) && parseInt(regObj.height, 10) < 137) {
        regObj.height = "137";
       doc.title = doc.title.slice(0, 47) + " - Flash Player Installation";
       var pt = ua.ie && ua.win ? "ActiveX" : "PlugIn",
        dt = doc.title,
        fv = "MMredirectURL=" + win.location + "&MMplayerType=" + pt + "&MMdoctitle=" + dt,
        replaceId = regObj.id;
       // For IE when a SWF is loading (AND: not available in cache) wait for the onload event to fire to remove the original object element
       // In IE you cannot properly cancel a loading SWF file without breaking browser load references, also obj.onreadystatechange doesn't work
       if (ua.ie && ua.win && obj.readyState != 4) {
        var newObj = createElement("div");
        replaceId += "SWFObjectNew";
        newObj.setAttribute("id", replaceId);
        obj.parentNode.insertBefore(newObj, obj); // Insert placeholder div that will be replaced by the object element that loads expressinstall.swf
        obj.style.display = "none";
        win.attachEvent("onload", function() { obj.parentNode.removeChild(obj); });
       createSWF({ data:regObj.expressInstall, id:EXPRESS_INSTALL_ID, width:regObj.width, height:regObj.height }, { flashvars:fv }, replaceId);
    /* Functions to abstract and display alternative content
    function displayAltContent(obj) {
      if (ua.ie && ua.win && obj.readyState != 4) {
       // For IE when a SWF is loading (AND: not available in cache) wait for the onload event to fire to remove the original object element
       // In IE you cannot properly cancel a loading SWF file without breaking browser load references, also obj.onreadystatechange doesn't work
       var el = createElement("div");
       obj.parentNode.insertBefore(el, obj); // Insert placeholder div that will be replaced by the alternative content
       el.parentNode.replaceChild(abstractAltContent(obj), el);
       obj.style.display = "none";
       win.attachEvent("onload", function() { obj.parentNode.removeChild(obj); });
      else {
       obj.parentNode.replaceChild(abstractAltContent(obj), obj);
    function abstractAltContent(obj) {
      var ac = createElement("div");
      if (ua.win && ua.ie) {
       ac.innerHTML = obj.innerHTML;
      else {
       var nestedObj = obj.getElementsByTagName(OBJECT)[0];
       if (nestedObj) {
        var c = nestedObj.childNodes;
        if (c) {
         var cl = c.length;
         for (var i = 0; i < cl; i++) {
          if (!(c[i].nodeType == 1 && c[i].nodeName.toLowerCase() == "param") && !(c[i].nodeType == 8)) {
           ac.appendChild(c[i].cloneNode(true));
      return ac;
    /* Cross-browser dynamic SWF creation
    function createSWF(attObj, parObj, id) {
      var r, el = getElementById(id);
      if (typeof attObj.id == UNDEF) { // if no 'id' is defined for the object element, it will inherit the 'id' from the alternative content
       attObj.id = id;
      if (ua.ie && ua.win) { // IE, the object element and W3C DOM methods do not combine: fall back to outerHTML
       var att = "";
       for (var i in attObj) {
        if (attObj[i] != Object.prototype[i]) { // Filter out prototype additions from other potential libraries, like Object.prototype.toJSONString = function() {}
         if (i == "data") {
          parObj.movie = attObj[i];
         else if (i.toLowerCase() == "styleclass") { // 'class' is an ECMA4 reserved keyword
          att += ' class=" + attObj[i] + "';
         else if (i != "classid") {
          att += ' ' + i + '="' + attObj[i] + '"';
       var par = "";
       for (var j in parObj) {
        if (parObj[j] != Object.prototype[j]) { // Filter out prototype additions from other potential libraries
         par += '<param name="' + j + '" value="' + parObj[j] + '" />';
       el.outerHTML = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"' + att + '>' + par + '</object>';
       fixObjectLeaks(attObj.id); // This bug affects dynamic publishing only
       r = getElementById(attObj.id);
      else if (ua.webkit && ua.webkit < 312) { // Older webkit engines ignore the object element's nested param elements: fall back to the proprietary embed element
       var e = createElement("embed");
       e.setAttribute("type", FLASH_MIME_TYPE);
       for (var k in attObj) {
        if (attObj[k] != Object.prototype[k]) { // Filter out prototype additions from other potential libraries
         if (k == "data") {
          e.setAttribute("src", attObj[k]);
         else if (k.toLowerCase() == "styleclass") { // 'class' is an ECMA4 reserved keyword
          e.setAttribute("class", attObj[k]);
         else if (k != "classid") { // Filter out IE specific attribute
          e.setAttribute(k, attObj[k]);
       for (var l in parObj) {
        if (parObj[l] != Object.prototype[l]) { // Filter out prototype additions from other potential libraries
         if (l != "movie") { // Filter out IE specific param element
          e.setAttribute(l, parObj[l]);
       el.parentNode.replaceChild(e, el);
       r = e;
      else { // Well-behaving browsers
       var o = createElement(OBJECT);
       o.setAttribute("type", FLASH_MIME_TYPE);
       for (var m in attObj) {
        if (attObj[m] != Object.prototype[m]) { // Filter out prototype additions from other potential libraries
         if (m.toLowerCase() == "styleclass") { // 'class' is an ECMA4 reserved keyword
          o.setAttribute("class", attObj[m]);
         else if (m != "classid") { // Filter out IE specific attribute
          o.setAttribute(m, attObj[m]);
       for (var n in parObj) {
        if (parObj[n] != Object.prototype[n] && n != "movie") { // Filter out prototype additions from other potential libraries and IE specific param element
         createObjParam(o, n, parObj[n]);
       el.parentNode.replaceChild(o, el);
       r = o;
      return r;
    function createObjParam(el, pName, pValue) {
      var p = createElement("param");
      p.setAttribute("name", pName);
      p.setAttribute("value", pValue);
      el.appendChild(p);
    function getElementById(id) {
      return doc.getElementById(id);
    function createElement(el) {
      return doc.createElement(el);
    function hasPlayerVersion(rv) {
      var pv = ua.pv, v = rv.split(".");
      v[0] = parseInt(v[0], 10);
      v[1] = parseInt(v[1], 10);
      v[2] = parseInt(v[2], 10);
      return (pv[0] > v[0] || (pv[0] == v[0] && pv[1] > v[1]) || (pv[0] == v[0] && pv[1] == v[1] && pv[2] >= v[2])) ? true : false;
    /* Cross-browser dynamic CSS creation
      - Based on Bobby van der Sluis' solution: http://www.bobbyvandersluis.com/articles/dynamicCSS.php
    function createCSS(sel, decl) {
      if (ua.ie && ua.mac) {
       return;
      var h = doc.getElementsByTagName("head")[0], s = createElement("style");
      s.setAttribute("type", "text/css");
      s.setAttribute("media", "screen");
      if (!(ua.ie && ua.win) && typeof doc.createTextNode != UNDEF) {
       s.appendChild(doc.createTextNode(sel + " {" + decl + "}"));
      h.appendChild(s);
      if (ua.ie && ua.win && typeof doc.styleSheets != UNDEF && doc.styleSheets.length > 0) {
       var ls = doc.styleSheets[doc.styleSheets.length - 1];
       if (typeof ls.addRule == OBJECT) {
        ls.addRule(sel, decl);
    function setVisibility(id, isVisible) {
      var v = isVisible ? "inherit" : "hidden";
      if (isDomLoaded) {
       getElementById(id).style.visibility = v;
      else {
       createCSS("#" + id, "visibility:" + v);
    function getTargetVersion(obj) {
         if (!obj)
             return 0;
      var c = obj.childNodes;
      var cl = c.length;
      for (var i = 0; i < cl; i++) {
       if (c[i].nodeType == 1 && c[i].nodeName.toLowerCase() == "object") {
           c = c[i].childNodes;
           cl = c.length;
           i = 0;
       if (c[i].nodeType == 1 && c[i].nodeName.toLowerCase() == "param" && c[i].getAttribute("name") == "swfversion") {
          return c[i].getAttribute("value");
      return 0;
    function getExpressInstall(obj) {
         if (!obj)
             return "";
      var c = obj.childNodes;
      var cl = c.length;
      for (var i = 0; i < cl; i++) {
       if (c[i].nodeType == 1 && c[i].nodeName.toLowerCase() == "object") {
           c = c[i].childNodes;
           cl = c.length;
           i = 0;
       if (c[i].nodeType == 1 && c[i].nodeName.toLowerCase() == "param" && c[i].getAttribute("name") == "expressinstall") {
           return c[i].getAttribute("value");
      return "";
    return {
      /* Public API
       - Reference: http://code.google.com/p/swfobject/wiki/SWFObject_2_0_documentation
      registerObject: function(objectIdStr, swfVersionStr, xiSwfUrlStr) {
       if (!ua.w3cdom || !objectIdStr) {
        return;
       var obj = document.getElementById(objectIdStr);
       var xi = getExpressInstall(obj);
       var regObj = {};
       regObj.id = objectIdStr;
       regObj.swfVersion = swfVersionStr ? swfVersionStr : getTargetVersion(obj);
       regObj.expressInstall = xiSwfUrlStr ? xiSwfUrlStr : ((xi != "") ? xi : false);
       regObjArr[regObjArr.length] = regObj;
       setVisibility(objectIdStr, false);
      getObjectById: function(objectIdStr) {
       var r = null;
       if (ua.w3cdom && isDomLoaded) {
        var o = getElementById(objectIdStr);
        if (o) {
         var n = o.getElementsByTagName(OBJECT)[0];
         if (!n || (n && typeof o.SetVariable != UNDEF)) {
             r = o;
         else if (typeof n.SetVariable != UNDEF) {
          r = n;
       return r;
      embedSWF: function(swfUrlStr, replaceElemIdStr, widthStr, heightStr, swfVersionStr, xiSwfUrlStr, flashvarsObj, parObj, attObj) {
       if (!ua.w3cdom || !swfUrlStr || !replaceElemIdStr || !widthStr || !heightStr || !swfVersionStr) {
        return;
       widthStr += ""; // Auto-convert to string to make it idiot proof
       heightStr += "";
       if (hasPlayerVersion(swfVersionStr)) {
        setVisibility(replaceElemIdStr, false);
        var att = (typeof attObj == OBJECT) ? attObj : {};
        att.data = swfUrlStr;
        att.width = widthStr;
        att.height = heightStr;
        var par = (typeof parObj == OBJECT) ? parObj : {};
        if (typeof flashvarsObj == OBJECT) {
         for (var i in flashvarsObj) {
          if (flashvarsObj[i] != Object.prototype[i]) { // Filter out prototype additions from other potential libraries
           if (typeof par.flashvars != UNDEF) {
            par.flashvars += "&" + i + "=" + flashvarsObj[i];
           else {
            par.flashvars = i + "=" + flashvarsObj[i];
        addDomLoadEvent(function() {
         createSWF(att, par, replaceElemIdStr);
         if (att.id == replaceElemIdStr) {
          setVisibility(replaceElemIdStr, true);
       else if (xiSwfUrlStr && !isExpressInstallActive && hasPlayerVersion("6.0.65") && (ua.win || ua.mac)) {
        setVisibility(replaceElemIdStr, false);
        addDomLoadEvent(function() {
         var regObj = {};
         regObj.id = regObj.altContentId = replaceElemIdStr;
         regObj.width = widthStr;
         regObj.height = heightStr;
         regObj.expressInstall = xiSwfUrlStr;
         showExpressInstall(regObj);
      getFlashPlayerVersion: function() {
       return { major:ua.pv[0], minor:ua.pv[1], release:ua.pv[2] };
      hasFlashPlayerVersion:hasPlayerVersion,
      createSWF: function(attObj, parObj, replaceElemIdStr) {
       if (ua.w3cdom && isDomLoaded) {
        return createSWF(attObj, parObj, replaceElemIdStr);
       else {
        return undefined;
      createCSS: function(sel, decl) {
       if (ua.w3cdom) {
        createCSS(sel, decl);
      addDomLoadEvent:addDomLoadEvent,
      addLoadEvent:addLoadEvent,
      getQueryParamValue: function(param) {
       var q = doc.location.search || doc.location.hash;
       if (param == null) {
        return q;
        if(q) {
        var pairs = q.substring(1).split("&");
        for (var i = 0; i < pairs.length; i++) {
         if (pairs[i].substring(0, pairs[i].indexOf("=")) == param) {
          return pairs[i].substring((pairs[i].indexOf("=") + 1));
       return "";
      // For internal usage only
      expressInstallCallback: function() {
       if (isExpressInstallActive && storedAltContent) {
        var obj = getElementById(EXPRESS_INSTALL_ID);
        if (obj) {
         obj.parentNode.replaceChild(storedAltContent, obj);
         if (storedAltContentId) {
          setVisibility(storedAltContentId, true);
          if (ua.ie && ua.win) {
           storedAltContent.style.display = "block";
         storedAltContent = null;
         storedAltContentId = null;
         isExpressInstallActive = false;
    Can someone please help!  I've looked and tried prety much everything.  If you can provide a solution I would GREATLY apreciate it!

    There is no Flash player version 15... as in your code:
    <param name="swfversion" value="15.0.0.0" />
    For some reason Adobe thought it would be a good idea to target a Flash player version (15) as default.....which may be out a couple years in the future. Go figure!!!
    If you don't like player version 9, change to 10 or 11.... just not 15 (yet).
    Best wishes,
    Adninjastrator

  • Dreamweaver 12.0.1 Crashes when Opening Complex HTML5

    I'm getting a consistent crash when opening HTML5 documents with the latest general release and patched version of Dreamweaver.
    I open a document, switch to the split code and design view... bam. Immediate crash.
    If I'm in Code view, it's fine. Switch to design and it crashes.
    Any ideas?
    Process:         Dreamweaver [33459]
    Path:            /Applications/Adobe Dreamweaver CS6/Adobe Dreamweaver CS6.app/Contents/MacOS/Dreamweaver
    Identifier:      com.adobe.dreamweaver-12.0
    Version:         12.0.1.5842 (12.0.1)
    Code Type:       X86 (Native)
    Parent Process:  launchd [185]
    User ID:         501
    Date/Time:       2012-10-28 20:57:37.243 -0500
    OS Version:      Mac OS X 10.8.2 (12C60)
    Report Version:  10
    Interval Since Last Report:          890573 sec
    Crashes Since Last Report:           11
    Per-App Interval Since Last Report:  12 sec
    Per-App Crashes Since Last Report:   1
    Anonymous UUID:                      37299CCF-EED7-5E12-32C0-EE877539C7B2
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_ARITHMETIC (SIGFPE)
    Exception Codes: EXC_I386_DIV (divide by zero)
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.adobe.dreamweaver-12.0              0x00a43c7b ViewItem::CalcObjectWidthHeight(Run*, int, int, int, BlockState&, int, int, int&, int&) + 2279
    1   com.adobe.dreamweaver-12.0              0x00a43100 ViewItem::GetParentContainerSizeInPixels(BlockState&) + 952
    2   com.adobe.dreamweaver-12.0              0x00a849d0 ViewItemTable::ReadPaginationAttributes(BlockState&) + 1626
    3   com.adobe.dreamweaver-12.0              0x00a85c1a ViewItemTable::PaginateYourself(BlockState&) + 436
    4   com.adobe.dreamweaver-12.0              0x00152536 ViewBlock::AddAnotherItem(BlockState&, CreatorData&, TitanViewLayerManager*) + 11134
    5   com.adobe.dreamweaver-12.0              0x00153b9d ViewBlock::AddAnotherLine(BlockState&, TitanViewLayerManager*) + 1905
    6   com.adobe.dreamweaver-12.0              0x00154286 ViewBlock::PaginateBlockInternal(BlockState&, TitanViewLayerManager*) + 248
    7   com.adobe.dreamweaver-12.0              0x00154677 ViewBlock::PaginateBlock(BlockState&) + 977
    8   com.adobe.dreamweaver-12.0              0x001574bf ViewBlockList::DoTheNextBlock(CDC32*, ViewBlockList::PaginationMode, CRect const*, int) + 205
    9   com.adobe.dreamweaver-12.0              0x00a30a84 ViewBlockList::FullForegroundPaginate(CDC32*) + 70
    10  com.adobe.dreamweaver-12.0              0x00a50fca ViewItemContainer::PaginateForMaximumWidth(BlockState&) + 374
    11  com.adobe.dreamweaver-12.0              0x00a51872 ViewItemContainer::PaginateYourself(BlockState&) + 442
    12  com.adobe.dreamweaver-12.0              0x00152536 ViewBlock::AddAnotherItem(BlockState&, CreatorData&, TitanViewLayerManager*) + 11134
    13  com.adobe.dreamweaver-12.0              0x00153b9d ViewBlock::AddAnotherLine(BlockState&, TitanViewLayerManager*) + 1905
    14  com.adobe.dreamweaver-12.0              0x00154286 ViewBlock::PaginateBlockInternal(BlockState&, TitanViewLayerManager*) + 248
    15  com.adobe.dreamweaver-12.0              0x00154677 ViewBlock::PaginateBlock(BlockState&) + 977
    16  com.adobe.dreamweaver-12.0              0x001574bf ViewBlockList::DoTheNextBlock(CDC32*, ViewBlockList::PaginationMode, CRect const*, int) + 205
    17  com.adobe.dreamweaver-12.0              0x005abae1 TitanView::DoUpdatePagination() + 1627
    18  com.adobe.dreamweaver-12.0              0x005ac1d7 TitanView::OnUpdate(CView*, long, CObject*) + 55
    19  com.adobe.dreamweaver-12.0              0x003ad7f4 CView::OnInitialUpdate() + 44
    20  com.adobe.dreamweaver-12.0              0x0004be67 TitanView::OnInitialUpdate(int) + 1939
    21  com.adobe.dreamweaver-12.0              0x0004c2d2 TitanView::DoDeferredUpdates() + 132
    22  com.adobe.dreamweaver-12.0              0x0112a766 CWnd::OnWndMsg(unsigned int, unsigned int, long, long*) + 258
    23  com.adobe.dreamweaver-12.0              0x0059e6d0 TitanView::OnWndMsg(unsigned int, unsigned int, long, long*) + 176
    24  com.adobe.dreamweaver-12.0              0x01129d12 CWnd::WindowProc(unsigned int, unsigned int, long) + 58
    25  com.adobe.dreamweaver-12.0              0x003ab59e CWnd::WinSendMessage(unsigned int, unsigned int, long) + 44
    26  com.adobe.dreamweaver-12.0              0x0112a4c4 CPostedMessage::SpendTime() + 196
    27  com.adobe.dreamweaver-12.0              0x003ab22f CPostedMessage::PostedMessageHandler(long const&) + 249
    28  com.adobe.dreamweaver-12.0              0x003ab461 CPostedMessage::HandlePostedMessages(bool) + 493
    29  com.adobe.dreamweaver-12.0              0x01149282 -[M2DMacNodeTimer fire:] + 18
    30  com.apple.Foundation                    0x916c27d4 __NSFireTimer + 117
    31  com.apple.CoreFoundation                0x930ad9b6 __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 22
    32  com.apple.CoreFoundation                0x930ad355 __CFRunLoopDoTimer + 709
    33  com.apple.CoreFoundation                0x93092162 __CFRunLoopRun + 1730
    34  com.apple.CoreFoundation                0x9309163a CFRunLoopRunSpecific + 378
    35  com.apple.CoreFoundation                0x930914ab CFRunLoopRunInMode + 123
    36  com.apple.HIToolbox                     0x95ebe15a RunCurrentEventLoopInMode + 242
    37  com.apple.HIToolbox                     0x95ebddf5 ReceiveNextEventCommon + 162
    38  com.apple.HIToolbox                     0x95ebdd44 BlockUntilNextEventMatchingListInMode + 88
    39  com.apple.AppKit                        0x979c8a3a _DPSNextEvent + 724
    40  com.apple.AppKit                        0x979c826c -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 119
    41  com.adobe.dreamweaver-12.0              0x003e9287 CEventDispatcher::ProcessEvent(int, unsigned long) + 529
    42  com.adobe.dreamweaver-12.0              0x011be5b0 CEventDispatcher::ProcessHttpEvent() + 26
    43  com.adobe.dreamweaver-12.0              0x008f3a65 http::startSynch() + 51
    44  com.adobe.dreamweaver-12.0              0x00cdf929 CSiteInfo::TestURLPrefixConnection(CString const&, int&, int) + 1531
    45  com.adobe.dreamweaver-12.0              0x00655aa6 DataSourcesInstructions::GetSetupSteps(CStringArray&, int&) + 1898
    46  com.adobe.dreamweaver-12.0              0x000e5917 InstructionsView::Refresh() + 207
    47  com.adobe.dreamweaver-12.0              0x0065eeb3 DataSourcesView::PopulateTreeControl(int) + 2245
    48  com.adobe.dreamweaver-12.0              0x0008016c DataSourcesView::RefreshTreeControl() + 872
    49  com.adobe.dreamweaver-12.0              0x0007efc2 DataSourcesFloater::RefreshTreeControl() + 70
    50  com.adobe.dreamweaver-12.0              0x000d6e28 ActionFrame::RefreshListControl() + 580
    51  com.adobe.dreamweaver-12.0              0x000da4ad ActionFrame::UpdateServerModel(int, bool) + 1999
    52  com.adobe.dreamweaver-12.0              0x008bc407 ActionFrame::OnDocFocusChanged(unsigned int, long) + 305
    53  com.adobe.dreamweaver-12.0              0x0112a811 CWnd::OnWndMsg(unsigned int, unsigned int, long, long*) + 429
    54  com.adobe.dreamweaver-12.0              0x01129d12 CWnd::WindowProc(unsigned int, unsigned int, long) + 58
    55  com.adobe.dreamweaver-12.0              0x003ab59e CWnd::WinSendMessage(unsigned int, unsigned int, long) + 44
    56  com.adobe.dreamweaver-12.0              0x0112a4c4 CPostedMessage::SpendTime() + 196
    57  com.adobe.dreamweaver-12.0              0x003ab22f CPostedMessage::PostedMessageHandler(long const&) + 249
    58  com.adobe.dreamweaver-12.0              0x003ab461 CPostedMessage::HandlePostedMessages(bool) + 493
    59  com.adobe.dreamweaver-12.0              0x0114c264 CRealApp::DoPreEventProcessing(dvaui::ui::OS_Event const&) + 108
    60  com.adobe.exo.framework                 0x040eefed exo::app::AppBase::PreEventProcessing(dvaui::ui::OS_Event const&) + 27
    61  com.adobe.exo.framework                 0x040f5d9f boost::detail::function::function_obj_invoker0<boost::_bi::bind_t<bool, boost::_mfi::mf1<bool, exo::app::AppBase, dvaui::ui::OS_Event const&>, boost::_bi::list2<boost::_bi::value<exo::app::OS_AppBase*>, boost::_bi::value<dvaui::ui::OS_Event> > >, bool>::invoke(boost::detail::function::function_buffer&) + 47
    62  com.adobe.dreamweaver-12.0              0x0119c3e2 int dvacore::config::ErrorManager::ExecuteFunction<bool>(boost::function0<bool>*, bool*) + 32
    63  com.adobe.dreamweaver-12.0              0x0119c248 boost::detail::function::function_obj_invoker0<boost::_bi::bind_t<int, int (*)(boost::function0<bool>*, bool*), boost::_bi::list2<boost::_bi::value<boost::function0<bool>*>, boost::_bi::value<bool*> > >, int>::invoke(boost::detail::function::function_buffer&) + 24
    64  com.adobe.dreamweaver-12.0              0x0114d888 TestErrorManager::ExecuteFunctionWithTopLevelExceptionHandler(boost::function0<int>) + 50
    65  com.adobe.dreamweaver-12.0              0x0119c2d5 bool dvacore::config::ErrorManager::ExecuteFunctionWithTopLevelExceptionHandler<bool>(boost::f unction0<bool>, bool*) + 127
    66  com.adobe.dreamweaver-12.0              0x0119c5fb bool dvacore::config::ExecuteTopLevelFunction<bool>(boost::function0<bool>, bool*) + 123
    67  com.adobe.exo.framework                 0x040f46be -[ExoMacApplication sendEvent:] + 366
    68  com.apple.AppKit                        0x979be72c -[NSApplication run] + 951
    69  com.adobe.exo.framework                 0x040f3bd3 exo::app::OS_AppBase::RunEventLoop() + 67
    70  com.adobe.dreamweaver-12.0              0x0114bcef CRealApp::Run() + 395
    71  com.adobe.dreamweaver-12.0              0x0112f570 CWinAppImpl::Run() + 36
    72  com.adobe.dreamweaver-12.0              0x0112f85f main + 95
    73  com.adobe.dreamweaver-12.0              0x004e1375 start + 53
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x99d579ae kevent + 10
    1   libdispatch.dylib                       0x959e1c71 _dispatch_mgr_invoke + 993
    2   libdispatch.dylib                       0x959e17a9 _dispatch_mgr_thread + 53
    Thread 2:
    0   libsystem_kernel.dylib                  0x99d570ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x99d7604c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x99d75e19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x99d5dcca start_wqthread + 30
    Thread 3:
    0   libsystem_kernel.dylib                  0x99d570ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x99d7604c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x99d75e19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x99d5dcca start_wqthread + 30
    Thread 4:
    0   libsystem_kernel.dylib                  0x99d570ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x99d7604c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x99d75e19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x99d5dcca start_wqthread + 30
    Thread 5:
    0   libsystem_kernel.dylib                  0x99d568e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x99d78220 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x99dfe0ec pthread_cond_timedwait$UNIX2003 + 70
    3   com.adobe.boost_threads.framework          0x0285026e boost::condition_variable::timed_wait(boost::unique_lock<boost::mutex>&, boost::posix_time::ptime const&) + 812
    4   com.adobe.boost_threads.framework          0x02849680 boost::this_thread::sleep(boost::posix_time::ptime const&) + 128
    5   com.adobe.dreamweaver-12.0              0x00902046 JSInterp::testForINET() + 110
    6   com.adobe.dreamweaver-12.0              0x00902da5 boost::detail::function::void_function_obj_invoker0<boost::_bi::bind_t<void, boost::_mfi::mf0<void, JSInterp>, boost::_bi::list1<boost::_bi::value<JSInterp*> > >, void>::invoke(boost::detail::function::function_buffer&) + 37
    7   com.adobe.dvacore.framework             0x03458b37 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()> const&, boost::function<void ()> const&) + 151
    8   com.adobe.dvacore.framework             0x03458c48 boost::detail::thread_data<boost::_bi::bind_t<void, void (*)(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()> const&, boost::function<void ()> const&), boost::_bi::list5<boost::_bi::value<std::string>, boost::_bi::value<boost::function<void ()> >, boost::_bi::value<dvacore::threads::ThreadPriority>, boost::_bi::value<boost::function<void ()> >, boost::_bi::value<boost::function<void ()> > > > >::run() + 64
    9   com.adobe.boost_threads.framework          0x02848737 thread_proxy + 167
    10  libsystem_c.dylib                       0x99d73557 _pthread_start + 344
    11  libsystem_c.dylib                       0x99d5dcee thread_start + 34
    Thread 6:
    0   libsystem_kernel.dylib                  0x99d56c72 __semwait_signal + 10
    1   libsystem_c.dylib                       0x99dfda61 nanosleep$UNIX2003 + 189
    2   com.apple.carbonbundletemplate          0x11c414db ScObjects::Thread::sleep(unsigned int) + 59
    3   com.apple.carbonbundletemplate          0x11c3d339 ScObjects::BridgeTalkThread::run() + 185
    4   com.apple.carbonbundletemplate          0x11c41848 ScObjects::Thread::go(void*) + 168
    5   libsystem_c.dylib                       0x99d73557 _pthread_start + 344
    6   libsystem_c.dylib                       0x99d5dcee thread_start + 34
    Thread 7:
    0   libsystem_kernel.dylib                  0x99d56b3e __recvfrom + 10
    1   libsystem_c.dylib                       0x99dfdbcb recv$UNIX2003 + 54
    2   ServiceManager-Launcher.dylib           0x11e87733 Invoke + 47867
    3   ServiceManager-Launcher.dylib           0x11e86846 Invoke + 44046
    4   ServiceManager-Launcher.dylib           0x11e85988 Invoke + 40272
    5   ServiceManager-Launcher.dylib           0x11e85a0f Invoke + 40407
    6   ServiceManager-Launcher.dylib           0x11e80baf Invoke + 20343
    7   ServiceManager-Launcher.dylib           0x11e80ea7 Invoke + 21103
    8   ServiceManager-Launcher.dylib           0x11e81685 Invoke + 23117
    9   ServiceManager-Launcher.dylib           0x11e818f9 Invoke + 23745
    10  ServiceManager-Launcher.dylib           0x11e842a0 Invoke + 34408
    11  ServiceManager-Launcher.dylib           0x11e843fd Invoke + 34757
    12  ServiceManager-Launcher.dylib           0x11e84c91 Invoke + 36953
    13  ServiceManager-Launcher.dylib           0x11e84db2 Invoke + 37242
    14  ServiceManager-Launcher.dylib           0x11e77656 Login + 461
    15  ServiceManager-Launcher.dylib           0x11e7b09a Login + 15377
    16  ServiceManager-Launcher.dylib           0x11e85165 Invoke + 38189
    17  ServiceManager-Launcher.dylib           0x11e872eb Invoke + 46771
    18  libsystem_c.dylib                       0x99d73557 _pthread_start + 344
    19  libsystem_c.dylib                       0x99d5dcee thread_start + 34
    Thread 8:
    0   libsystem_kernel.dylib                  0x99d568e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x99d78220 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x99dfe0a1 pthread_cond_wait$UNIX2003 + 71
    3   com.adobe.ape.engine                    0x132b804f APXGetHostAPI + 2633743
    4   com.adobe.ape.engine                    0x1304962f APXGetHostAPI + 83439
    5   com.adobe.ape.engine                    0x132b813e APXGetHostAPI + 2633982
    6   com.adobe.ape.engine                    0x132b81a7 APXGetHostAPI + 2634087
    7   com.adobe.ape.engine                    0x132b82c6 APXGetHostAPI + 2634374
    8   libsystem_c.dylib                       0x99d73557 _pthread_start + 344
    9   libsystem_c.dylib                       0x99d5dcee thread_start + 34
    Thread 9:
    0   libsystem_kernel.dylib                  0x99d568e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x99d78220 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x99dfe0a1 pthread_cond_wait$UNIX2003 + 71
    3   com.adobe.ape.engine                    0x132b804f APXGetHostAPI + 2633743
    4   com.adobe.ape.engine                    0x1304962f APXGetHostAPI + 83439
    5   com.adobe.ape.engine                    0x132b813e APXGetHostAPI + 2633982
    6   com.adobe.ape.engine                    0x132b81a7 APXGetHostAPI + 2634087
    7   com.adobe.ape.engine                    0x132b82c6 APXGetHostAPI + 2634374
    8   libsystem_c.dylib                       0x99d73557 _pthread_start + 344
    9   libsystem_c.dylib                       0x99d5dcee thread_start + 34
    Thread 10:
    0   libsystem_kernel.dylib                  0x99d568e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x99d78220 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x99dfe0a1 pthread_cond_wait$UNIX2003 + 71
    3   com.adobe.ape.engine                    0x132b804f APXGetHostAPI + 2633743
    4   com.adobe.ape.engine                    0x1304962f APXGetHostAPI + 83439
    5   com.adobe.ape.engine                    0x132b813e APXGetHostAPI + 2633982
    6   com.adobe.ape.engine                    0x132b81a7 APXGetHostAPI + 2634087
    7   com.adobe.ape.engine                    0x132b82c6 APXGetHostAPI + 2634374
    8   libsystem_c.dylib                       0x99d73557 _pthread_start + 344
    9   libsystem_c.dylib                       0x99d5dcee thread_start + 34
    Thread 11:
    0   libsystem_kernel.dylib                  0x99d568e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x99d78220 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x99dfe0a1 pthread_cond_wait$UNIX2003 + 71
    3   com.adobe.ape.engine                    0x132b804f APXGetHostAPI + 2633743
    4   com.adobe.ape.engine                    0x1304962f APXGetHostAPI + 83439
    5   com.adobe.ape.engine                    0x132b813e APXGetHostAPI + 2633982
    6   com.adobe.ape.engine                    0x132b81a7 APXGetHostAPI + 2634087
    7   com.adobe.ape.engine                    0x132b82c6 APXGetHostAPI + 2634374
    8   libsystem_c.dylib                       0x99d73557 _pthread_start + 344
    9   libsystem_c.dylib                       0x99d5dcee thread_start + 34
    Thread 12:
    0   libsystem_kernel.dylib                  0x99d568e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x99d78289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x99d78512 pthread_cond_timedwait_relative_np + 47
    3   com.adobe.ape.engine                    0x132b8017 APXGetHostAPI + 2633687
    4   com.adobe.ape.engine                    0x132d120e APXGetHostAPI + 2736590
    5   com.adobe.ape.engine                    0x132b813e APXGetHostAPI + 2633982
    6   com.adobe.ape.engine                    0x132b81a7 APXGetHostAPI + 2634087
    7   com.adobe.ape.engine                    0x132b82c6 APXGetHostAPI + 2634374
    8   libsystem_c.dylib                       0x99d73557 _pthread_start + 344
    9   libsystem_c.dylib                       0x99d5dcee thread_start + 34
    Thread 13:
    0   libsystem_kernel.dylib                  0x99d568e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x99d78289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x99d78512 pthread_cond_timedwait_relative_np + 47
    3   com.adobe.ape.engine                    0x132b8017 APXGetHostAPI + 2633687
    4   com.adobe.ape.engine                    0x13446168 APXGetHostAPI + 4264232
    5   com.adobe.ape.engine                    0x132b813e APXGetHostAPI + 2633982
    6   com.adobe.ape.engine                    0x132b81a7 APXGetHostAPI + 2634087
    7   com.adobe.ape.engine                    0x132b82c6 APXGetHostAPI + 2634374
    8   libsystem_c.dylib                       0x99d73557 _pthread_start + 344
    9   libsystem_c.dylib                       0x99d5dcee thread_start + 34
    Thread 14:
    0   libsystem_kernel.dylib                  0x99d568e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x99d78289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x99e05afc pthread_cond_wait + 48
    3   com.macromedia.Flash Player.authplaylib          0x16ced25f 0x1689d000 + 4522591
    4   com.macromedia.Flash Player.authplaylib          0x168b739f 0x1689d000 + 107423
    5   com.macromedia.Flash Player.authplaylib          0x16ced34c 0x1689d000 + 4522828
    6   com.macromedia.Flash Player.authplaylib          0x16ced390 0x1689d000 + 4522896
    7   com.macromedia.Flash Player.authplaylib          0x16ced4b6 0x1689d000 + 4523190
    8   libsystem_c.dylib                       0x99d73557 _pthread_start + 344
    9   libsystem_c.dylib                       0x99d5dcee thread_start + 34
    Thread 15:
    0   libsystem_kernel.dylib                  0x99d568e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x99d78289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x99e05afc pthread_cond_wait + 48
    3   com.macromedia.Flash Player.authplaylib          0x16ced25f 0x1689d000 + 4522591
    4   com.macromedia.Flash Player.authplaylib          0x168b739f 0x1689d000 + 107423
    5   com.macromedia.Flash Player.authplaylib          0x16ced34c 0x1689d000 + 4522828
    6   com.macromedia.Flash Player.authplaylib          0x16ced390 0x1689d000 + 4522896
    7   com.macromedia.Flash Player.authplaylib          0x16ced4b6 0x1689d000 + 4523190
    8   libsystem_c.dylib                       0x99d73557 _pthread_start + 344
    9   libsystem_c.dylib                       0x99d5dcee thread_start + 34
    Thread 16:
    0   libsystem_kernel.dylib                  0x99d568e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x99d78289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x99e05afc pthread_cond_wait + 48
    3   com.macromedia.Flash Player.authplaylib          0x16ced25f 0x1689d000 + 4522591
    4   com.macromedia.Flash Player.authplaylib          0x168b739f 0x1689d000 + 107423
    5   com.macromedia.Flash Player.authplaylib          0x16ced34c 0x1689d000 + 4522828
    6   com.macromedia.Flash Player.authplaylib          0x16ced390 0x1689d000 + 4522896
    7   com.macromedia.Flash Player.authplaylib          0x16ced4b6 0x1689d000 + 4523190
    8   libsystem_c.dylib                       0x99d73557 _pthread_start + 344
    9   libsystem_c.dylib                       0x99d5dcee thread_start + 34
    Thread 17:
    0   libsystem_kernel.dylib                  0x99d568e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x99d78289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x99e05afc pthread_cond_wait + 48
    3   com.macromedia.Flash Player.authplaylib          0x16ced25f 0x1689d000 + 4522591
    4   com.macromedia.Flash Player.authplaylib          0x168b739f 0x1689d000 + 107423
    5   com.macromedia.Flash Player.authplaylib          0x16ced34c 0x1689d000 + 4522828
    6   com.macromedia.Flash Player.authplaylib          0x16ced390 0x1689d000 + 4522896
    7   com.macromedia.Flash Player.authplaylib          0x16ced4b6 0x1689d000 + 4523190
    8   libsystem_c.dylib                       0x99d73557 _pthread_start + 344
    9   libsystem_c.dylib                       0x99d5dcee thread_start + 34
    Thread 18:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x99d547d2 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x99d53cb0 mach_msg + 68
    2   com.apple.CoreFoundation                0x9308c599 __CFRunLoopServiceMachPort + 185
    3   com.apple.CoreFoundation                0x93091f7f __CFRunLoopRun + 1247
    4   com.apple.CoreFoundation                0x9309163a CFRunLoopRunSpecific + 378
    5   com.apple.CoreFoundation                0x930914ab CFRunLoopRunInMode + 123
    6   com.apple.Foundation                    0x9168313a +[NSURLConnection(Loader) _resourceLoadLoop:] + 395
    7   com.apple.Foundation                    0x916e71d8 -[NSThread main] + 45
    8   com.apple.Foundation                    0x916e715b __NSThread__main__ + 1396
    9   libsystem_c.dylib                       0x99d73557 _pthread_start + 344
    10  libsystem_c.dylib                       0x99d5dcee thread_start + 34
    Thread 19:
    0   libsystem_kernel.dylib                  0x99d570ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x99d7604c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x99d75e19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x99d5dcca start_wqthread + 30
    Thread 20:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x99d56be6 __select + 10
    1   com.apple.CoreFoundation                0x930d5c00 __CFSocketManager + 1632
    2   libsystem_c.dylib                       0x99d73557 _pthread_start + 344
    3   libsystem_c.dylib                       0x99d5dcee thread_start + 34
    Thread 21:
    0   libsystem_kernel.dylib                  0x99d568e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x99d78220 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x99dfe0a1 pthread_cond_wait$UNIX2003 + 71
    3   WebKitDw.dylib                          0x1ae1a273 WTF::TCMalloc_PageHeap::scavengerThread() + 179
    4   WebKitDw.dylib                          0x1ae1a2e1 WTF::TCMalloc_PageHeap::runScavengerThread(void*) + 17
    5   libsystem_c.dylib                       0x99d73557 _pthread_start + 344
    6   libsystem_c.dylib                       0x99d5dcee thread_start + 34
    Thread 22:
    0   libsystem_kernel.dylib                  0x99d56c72 __semwait_signal + 10
    1   libsystem_c.dylib                       0x99dfda61 nanosleep$UNIX2003 + 189
    2   libsystem_c.dylib                       0x99dfd92a usleep$UNIX2003 + 60
    3   com.adobe.dreamweaver-12.0              0x003aa0e5 Sleep + 21
    4   com.adobe.dreamweaver-12.0              0x00f55386 CodeViewTypingMonitorThread::MonitorThread() + 184
    5   com.adobe.dreamweaver-12.0              0x00f55423 CodeViewTypingMonitorThread::tramp(void*) + 17
    6   libsystem_c.dylib                       0x99d73557 _pthread_start + 344
    7   libsystem_c.dylib                       0x99d5dcee thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0x00000000  ecx: 0x00000000  edx: 0x00000000
      edi: 0x00000190  esi: 0xbfffbdf8  ebp: 0xbfffbe48  esp: 0xbfffbd70
       ss: 0x00000023  efl: 0x00010206  eip: 0x00a43c7b   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0x00a84376
    Logical CPU: 3
    Binary Images:
        0x1000 -  0x1997ff3 +com.adobe.dreamweaver-12.0 (12.0.1.5842 - 12.0.1) <29913439-D46C-C332-764C-D06DEB11B66C> /Applications/Adobe Dreamweaver CS6/Adobe Dreamweaver CS6.app/Contents/MacOS/Dreamweaver
    0x2847000 -  0x2855ff3 +com.adobe.boost_threads.framework (5.0.0 - 5.0.0.0) <C5ECA213-7C14-0DD2-6334-1EA67EDCDCAE> /Applications/Adobe Dreamweaver CS6/Adobe Dreamweaver CS6.app/Contents/Frameworks/boost_threads.framework/Versions/A/boost_threads
    0x287a000 -  0x2884ffb +com.adobe.boost_signals.framework (5.0.0 - 5.0.0.0) <074C63C5-7E19-8F31-D72C-127042CC7468> /Applications/Adobe Dreamweaver CS6/Adobe Dreamweaver CS6.app/Contents/Frameworks/boost_signals.framework/Versions/A/boost_signals
    0x289d000 -  0x28a3ff7 +com.adobe.boost_date_time.framework (5.0.0 - 5.0.0.0) <5C589D24-FD4E-6A1B-D115-052DFC629D3A> /Applications/Adobe Dreamweaver CS6/Adobe Dreamweaver CS6.app/Contents/Frameworks/boost_date_time.framework/Versions/A/boost_date_time
    0x28c3000 -  0x28c6fff +com.adobe.boost_system.framework (5.0.0 - 5.0.0.0) <0CFC745C-CB43-4C4B-85A2-BBE60204A09D> /Applications/Adobe Dreamweaver CS6/Adobe Dreamweaver CS6.app/Contents/Frameworks/boost_system.framework/Versions/A/boost_system
    0x28ce000 -  0x2bfefeb +com.adobe.dvaadameve.framework (5.0.0 - 5.0.0.0) <E1A0CB86-20DE-395B-519A-0B02A7783EF3> /Applications/Adobe Dreamweaver CS6/Adobe Dreamweaver CS6.app/Contents/Frameworks/dvaadameve.framework/Versions/A/dvaadameve
    0x33a6000 -  0x33baff3 +com.adobe.boost_filesystem.framework (5.0.0 - 5.0.0.0) <1DD7FD3D-AA32-F2B4-78E4-7372977856F3> /Applications/Adobe Dreamweaver CS6/Adobe Dreamweaver CS6.app/Contents/Frameworks/boost_filesystem.framework/Versions/A/boost_filesystem
    0x33e5000 -  0x3565ff3 +com.adobe.dvacore.framework (5.0.0 - 5.0.0.0) <67A1A918-F107-AA77-BCA9-C919998E9C9C> /Applications/Adobe Dreamweaver CS6/Adobe Dreamweaver CS6.app/Contents/Frameworks/dvacore.framework/Versions/A/dvacore
    0x3700000 -  0x3b20fff +com.adobe.dvaui.framework (5.0.0 - 5.0.0.0) <2B4268D5-110F-E44E-25DD-D501ED4EE7CD> /Applications/Adobe Dreamweaver CS6/Adobe Dreamweaver CS6.app/Contents/Frameworks/dvaui.framework/Versions/A/dvaui
    0x40eb000 -  0x4190fff +com.adobe.exo.framework (5.0.0 - 5.0.0.0) <78ED2229-FC60-9DCB-34C0-B3BC04E74C73> /Applications/Adobe Dreamweaver CS6/Adobe Dreamweaver CS6.app/Contents/Frameworks/exo.framework/Versions/A/exo
    0x42cd000 -  0x437bfff +com.adobe.dvaworkspace.framework (5.0.0 - 5.0.0.0) <B3DDB3EE-930F-A3EB-1AA5-B8463CC5AD7B> /Applications/Adobe Dreamweaver CS6/Adobe Dreamweaver CS6.app/Contents/Frameworks/dvaworkspace.framework/Versions/A/dvaworkspace
    0x44a2000 -  0x467cfeb +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
    0x46a9000 -  0x46b0ffb +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
    0x46b8000 -  0x46d1fe7 +libChar16.dylib (1) <A6CEB90D-0445-9F09-C60D-889D0E4F5E56> /Applications/Adobe Dreamweaver CS6/Adobe Dreamweaver CS6.app/Contents/MacOS/libChar16.dylib
    0x46ee000 -  0x4710ff7 +libCoreTypes.dylib (1) <A1FAF8EC-6459-4654-4149-0FF9A557D70D> /Applications/Adobe Dreamweaver CS6/Adobe Dreamweaver CS6.app/Contents/MacOS/libCoreTypes.dylib
    0x4729000 -  0x4771ff7 +libCurl.dylib (1) <40F485B4-A6EC-75CD-E370-9FDE82271700> /Applications/Adobe Dreamweaver CS6/Adobe Dreamweaver CS6.app/Contents/MacOS/libCurl.dylib
    0x478d000 -  0x479aff7 +libZ.dylib (1) <F129F5D3-8764-9B14-1E22-0DCE54B70E6C> /Applications/Adobe Dreamweaver CS6/Adobe Dreamweaver CS6.app/Contents/MacOS/libZ.dylib
    0x47a2000 -  0x484eff7 +libCrypto.dylib (1) <F4D68DC4-29A8-7E11-A3F2-231FF8462B28> /Applications/Adobe Dreamweaver CS6/Adobe Dreamweaver CS6.app/Contents/MacOS/libCrypto.dylib
    0x48f1000 -  0x4914ff7 +libSSL.dylib (1) <408169A9-1CD1-8841-9A23-AC097F9411B8> /Applications/Adobe Dreamweaver CS6/Adobe Dreamweaver CS6.app/Contents/MacOS/libSSL.dylib
    0x492c000 -  0x492dff7 +libCocoa.dylib (1) <DCDB2597-90DA-9DE8-D61C-DA9DEA9A7004> /Applications/Adobe Dreamweaver CS6/Adobe Dreamweaver CS6.app/Contents/MacOS/libCocoa.dylib
    0x4933000 -  0x4b7efff  com.apple.carbonframeworktemplate (1.0 - 1.0) <522C3C40-8CEA-1071-0BA1-5F5985F08CB1> /Applications/Adobe Dreamweaver CS6/Adobe Dreamweaver CS6.app/Contents/Frameworks/Xerces.framework/Versions/A/Xerces
    0x4e49000 -  0x4e54ff3  com.apple.carbonframeworktemplate (1.0 - 1.0) <2F2E6DD0-60C5-97DF-7DA9-49CF5974A974> /Applications/Adobe Dreamweaver CS6/Adobe Dreamweaver CS6.app/Contents/Frameworks/NetIO.framework/Versions/A/NetIO
    0x4e64000 -  0x4e67ffb +com.adobe.AdobeCrashReporter (6.0 - 6.0.20120201) <6CE1936E-6AC7-6900-769B-876CBB68B5BC> /Applications/Adobe Dreamweaver CS6/Adobe Dreamweaver CS6.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCrashReporter
    0x4e6f000 -  0x4febff3 +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
    0x4ffa000 -  0x55c1fef +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
    0x5634000 -  0x564ffff +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
    0x5655000 -  0x567bfff +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
    0x5681000 -  0x59a8ffb +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
    0x59e0000 -  0x6a8cff3 +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
    0x6c05000 -  0x6c2dfeb +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
    0x6c4c000 -  0x6ca8fef +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
    0x6cb1000 -  0x6d1effb +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
    0x6d6d000 -  0x6e4fff3 +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
    0x6e5e000 -  0x6f46fe3 +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
    0x6fd7000 -  0x6fdbffd  com.apple.JavaVM (14.5.0 - 14.5.0) <1163556C-5C1D-3C5A-8767-682DAE7D3174> /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaVM
    0x6fe3000 -  0x6ff9ffc  libexpat.1.dylib (12) <D4F1FD2B-F75A-322C-843E-113EF5F8EEAF> /usr/lib/libexpat.1.dylib
    0x7002000 -  0x70edff3 +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
    0x7176000 -  0x7ebbff7 +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
    0x7ece000 -  0x7f6cfe3 +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
    0x7f8e000 -  0x80c3fe7 +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
    0x8137000 -  0x8228fef +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
    0x8265000 -  0x881bfe7 +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
    0x8e3b000 -  0x8f7bfeb +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
    0x8fed000 -  0x9030ff3 +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
    0x9049000 -  0x91ddfff +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
    0x9285000 -  0x931affb +com.adobe.boost_regex.framework (5.0.0 - 5.0.0.0) <D0E3DCBB-BFDD-3AEB-A8A7-C28FB6FED5B5> /Applications/Adobe Dreamweaver CS6/Adobe Dreamweaver CS6.app/Contents/Frameworks/boost_regex.framework/Versions/A/boost_regex
    0x93d3000 -  0x93ecff7  com.apple.ScriptingBridge (1.3 - 61.2) <74397541-E4DD-3DCA-BA5F-F7AAF145819A> /System/Library/Frameworks/ScriptingBridge.framework/Versions/A/ScriptingBridge
    0x93fb000 -  0x93fbff7  libffi.dylib (18) <362F6C27-6407-388E-9521-8A2A0845188C> /usr/lib/libffi.dylib
    0x93ff000 -  0x943bff7  com.apple.vmutils (4.2.1 - 108) <6918860D-B24F-356C-9374-025BFFEA66A3> /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x9455000 -  0x9474fff +libtbb.dylib (0) <6EA19434-60D6-505D-CB6F-5CA562A0F2A7> /Applications/Adobe Dreamweaver CS6/Adobe Dreamweaver CS6.app/Contents/Frameworks/libtbb.dylib
    0x948b000 -  0x9493fef +libtbbmalloc.dylib (0) <7A79ED70-A4AC-737A-2FAA-63B6FB29D4ED> /Applications/Adobe Dreamweaver CS6/Adobe Dreamweaver CS6.app/Contents/Frameworks/libtbbmalloc.dylib
    0x94a2000 -  0x94a6fff  JavaLaunching (1) <D457DAD6-EEA5-375B-AA96-0D1B2CD08253> /System/Library/PrivateFrameworks/JavaLaunching.framework/Versions/A/JavaLaunching
    0x94f6000 -  0x94f7ffd  com.apple.textencoding.unicode (2.5 - 2.5) <4E2ABBEB-1F0D-3C06-BA0C-C3CEDDF17BD2> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0xa7cf000 -  0xa7dcff3  com.apple.Librarian (1.1 - 1) <88A55A5E-40FF-3234-8394-2317120B79AB> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
    0xcd24000 -  0xcd25ff8  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
    0xcd2a000 -  0xcd38fff  libSimplifiedChineseConverter.dylib (61) <60899F9C-A79F-3BC2-855E-DC5C78B98FEB> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0xcd3c000 -  0xcd4effd  libTraditionalChineseConverter.dylib (61) <519CAA3F-715E-3CAE-B158-57EC95D916B1> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0xcfd5000 -  0xcfd6ffb  com.apple.carbonbundletemplate (12,0,0, 5808 - 12,0,0) <9A813627-0886-6DB1-B012-A20E1631C8EC> /Applications/Adobe Dreamweaver CS6/*/MM.bundle/Contents/MacOS/MM
    0xcfdc000 -  0xcfddff7  com.apple.carbonbundletemplate (12,0,0, 5808 - 12,0,0) <EF780E97-5C7C-8192-119A-857F7A394B51> /Applications/Adobe Dreamweaver CS6/*/DWfile.bundle/Contents/MacOS/DWfile
    0xcff1000 -  0xcff6fff  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
    0xe20f000 -  0xe213ffb  libFontRegistryUI.dylib (100) <10CAC446-A500-3291-A144-7FAFA57D6720> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framework/Resourc es/libFontRegistryUI.dylib
    0x11bde000 - 0x11bfcfe3  com.apple.carbonbundletemplate (3.0.2,5808 - 3.0.2) <70C51FDF-69D3-638E-B512-C984DD75BD87> /Applications/Adobe Dreamweaver CS6/*/MMNotes.bundle/Contents/MacOS/MMNotes
    0x11c22000 - 0x11c66ff7  com.apple.carbonbundletemplate (1.0.0,5808 - 1.0.0) <DB1BC7D0-5E3C-E7E2-7821-9D36A977A111> /Applications/Adobe Dreamweaver CS6/*/JSBridge.bundle/Contents/MacOS/JSBridge
    0x11cc3000 - 0x11cd1ffb  com.apple.carbonbundletemplate (12,0,0, 5808 - 12,0,0) <C2231A1A-4550-9AA8-36E9-D0F01F713A34> /Applications/Adobe Dreamweaver CS6/*/TSL.bundle/Contents/MacOS/TSL
    0x11d86000 - 0x11df8fef +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
    0x11e05000 - 0x11e59fe7 +com.adobe.ape (3.3.8.19346 - 3.3.8.19346) <0B80F7A7-EC10-A7C7-5E6E-787953553C55> /Library/Application Support/Adobe/*/adbeapecore.framework/adbeapecore
    0x11e72000 - 0x11e99ffb +ServiceManager-Launcher.dylib (389) <4EEAF886-0B48-9FF4-BE65-41E222123A50> /Library/Application Support/Adobe/*/ServiceManager-Launcher.dylib
    0x12200000 - 0x122abfff  libcrypto.0.9.7.dylib (106) <041B3399-5033-3395-9A71-6693F3A33D94> /usr/lib/libcrypto.0.9.7.dylib
    0x13000000 - 0x13f48fcb +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
    0x14143000 - 0x14201ff3  ColorSyncDeprecated.dylib (400) <35E3054C-5DF1-30D4-A368-C4FDB0992373> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x14245000 - 0x14279ff7 +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
    0x1689d000 - 0x1728fff3 +com.macromedia.Flash Player.authplaylib (10.2.152.34 - 10.2.152.34) <F5DEB3D4-4A6A-DDB6-8590-3E98276AE494> /Applications/Adobe Dreamweaver CS6/*/AuthPlayLib.bundle/Contents/MacOS/AuthPlayLib
    0x1ad00000 - 0x1b467ff7 +WebKitDw.dylib (1) <D65DCC25-9F5F-4A61-AD27-DB4ACD1D591F> /Applications/Adobe Dreamweaver CS6/*/WebKitDw.dylib
    0x1c656000 - 0x1c778ff3  com.apple.carbonbundletemplate (1.0 - 1.0) <B3E2C642-787F-5EE9-1CAE-6C73315E323D> /Applications/Adobe Dreamweaver CS6/*/JS_KnowledgeEngine.bundle/Contents/MacOS/JS_KnowledgeEngine
    0x1c7c2000 - 0x1c85dff3  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.18562) <FFA540EA-6CEB-F4D1-E0EF-A844A536D499> /Applications/Adobe Dreamweaver CS6/Adobe Dreamweaver CS6.app/Contents/Frameworks/AdobeJP2K.framework/Versions/A/AdobeJP2K
    0x8fec9000 - 0x8fefbe57  dyld (210.2.3) <23516BE4-29BE-350C-91C9-F36E7999F0F1> /usr/lib/dyld
    0x90007000 - 0x900b6ff7  com.apple.CoreText (260.0 - 275.16) <873ADCD9-D361-3753-A220-CDD289196AD8> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x907bf000 - 0x90803fff  libGLU.dylib (8.6.1) <06BAFDCA-800C-35E3-B1A3-F05E105B86AB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x90804000 - 0x9084dff7  com.apple.framework.CoreWLAN (3.0.1 - 301.11) <ABA6A926-34C2-3C09-AD9F-A87A8A35536A> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x9084e000 - 0x9087aff7  libsystem_info.dylib (406.17) <AA5611DB-A944-3072-B6BE-ACAB08689547> /usr/lib/system/libsystem_info.dylib
    0x9087b000 - 0x908c0ff5  com.apple.opencl (2.1.20 - 2.1.20) <41C4AE6E-67B6-33E2-A9B6-BF6F01580B16> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x908c1000 - 0x90cbdfeb  com.apple.VideoToolbox (1.0 - 926.62) <B09EEF06-CB3C-3EAA-8B0E-22A1801F3CAE> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0x90cbe000 - 0x90d72fff  com.apple.coreui (2.0 - 181.1) <C15ABF35-B7F5-34ED-A461-386DAF65D96B> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x90db4000 - 0x90dddff7  libRIP.A.dylib (324.6) <7976E6A2-A489-33F5-A727-7634DDE3B761> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libRIP.A.dylib
    0x90dde000 - 0x90de7ff3  com.apple.DisplayServicesFW (2.6.1 - 353) <50D0BBF0-F911-380F-B470-E59B5E48E520> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices
    0x90de8000 - 0x90e43fff  com.apple.htmlrendering (77 - 1.1.4) <5C0C669F-AE07-3983-B38F-EB829B5CE609> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering.framework /Versions/A/HTMLRendering
    0x90e44000 - 0x90e44fff  com.apple.vecLib (3.8 - vecLib 3.8) <83160DD1-5614-3E34-80EB-97041016EF1F> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x90e45000 - 0x90e6efff  libxslt.1.dylib (11.3) <0DE17DAA-66FF-3195-AADB-347BEB5E2EFA> /usr/lib/libxslt.1.dylib
    0x9115b000 - 0x9115cfff  libdnsinfo.dylib (453.18) <41C7B8E2-2A81-31DE-BD8B-F0C29E169D4F> /usr/lib/system/libdnsinfo.dylib
    0x9115d000 - 0x911b6ff7  com.apple.ImageCaptureCore (5.0.1 - 5.0.1) <541529F7-063E-370B-9EB2-DF5BE39073E6> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore
    0x911b7000 - 0x911b9fff  libCVMSPluginSupport.dylib (8.6.1) <8A174BD9-992E-351D-8F9A-DF6991723ABE> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dyl ib
    0x911ba000 - 0x91445ff3  com.apple.RawCamera.bundle (4.00 - 658) <53F1DB23-B58B-3EAF-9D1E-95C34E669DDB> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x91446000 - 0x91451fff  libcommonCrypto.dylib (60026) <A6C6EDB8-7E69-3827-81F3-9A74D0935461> /usr/lib/system/libcommonCrypto.dylib
    0x91452000 - 0x91499ff3  com.apple.CoreMedia (1.0 - 926.62) <69B3835E-C02F-3935-AD39-83F8E81FB780> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x9149a000 - 0x914b1ff4  com.apple.CoreMediaAuthoring (2.1 - 914) <37C0A2C7-73B3-39BC-8DE1-4A6B75F115FC> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreMediaAuthor ing
    0x914b2000 - 0x914f4ff7  libauto.dylib (185.1) <B2B5B639-6778-352A-828D-FD8B64A3E8B3> /usr/lib/libauto.dylib
    0x914f5000 - 0x9158ffff  com.apple.CoreSymbolication (3.0 - 87) <6A27BBE5-6EF0-3D5D-A485-2145826B9796> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolicatio n
    0x91590000 - 0x9160cffb  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
    0x9160d000 - 0x9160dfff  libsystem_blocks.dylib (59) <3A743C5D-CFA5-37D8-80A8-B6795A9DB04F> /usr/lib/system/libsystem_blocks.dylib
    0x9160e000 - 0x91633ffb  com.apple.framework.familycontrols (4.1 - 410) <5A8504E7-D95D-3101-8E20-38EADE8DEAE1> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
    0x91635000 - 0x91648ff9  com.apple.MultitouchSupport.framework (235.28 - 235.28) <5C8CFA21-D4FC-32E8-B199-0F7155E6ED9A> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSuppor t
    0x91649000 - 0x91966ff3  com.apple.Foundation (6.8 - 945.11) <03B242AC-519C-3683-AA52-E73536B3D55F> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x91967000 - 0x91974fff  libGL.dylib (8.6.1) <C7A3917A-C444-33CC-8599-BB9CD8C12BC4> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x91975000 - 0x91992fff  libxpc.dylib (140.41) <1BFE3149-C242-3A77-9729-B00DEDC8CCF2> /usr/lib/system/libxpc.dylib
    0x91993000 - 0x91aebffb  com.apple.audio.toolbox.AudioToolbox (1.8 - 1.8) <9205DFC2-8DAE-354E-AD87-46E229B5F2F1> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x91aec000 - 0x91c49ffb  com.apple.QTKit (7.7.1 - 2599.13) <2DC9E2BB-9895-3D02-A318-88431052E70B> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x91c4a000 - 0x91c50fff  com.apple.print.framework.Print (8.0 - 258) <12AEAD24-6924-3923-9E4A-C5D21231E639> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Version s/A/Print
    0x91c51000 - 0x91c5bfff  libsystem_notify.dylib (98.5) <7EEE9475-18F8-3099-B0ED-23A3E528ABE0> /usr/lib/system/libsystem_notify.dylib
    0x91c5c000 - 0x91c5fff7  com.apple.TCC (1.0 - 1) <437D76CD-6437-3B55-BE2C-A53508858256> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x91c60000 - 0x91cb9fff  com.apple.AE (645.3 - 645.3) <6745659F-006D-3F25-94D6-DF944E9A01FD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Vers ions/A/AE
    0x91cba000 - 0x91cbdffd  libCoreVMClient.dylib (24.4) <C54E8FD0-61EC-3DC8-8631-54288AC66AC8> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
    0x91cbe000 - 0x91d33ff7  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
    0x91e45000 - 0x91e51ffe  libkxld.dylib (2050.18.24) <48A75AF6-9D5A-3552-948E-30A1682D3664> /usr/lib/system/libkxld.dylib
    0x91e52000 - 0x91eabfff  com.apple.QuickLookFramework (4.0 - 555.4) <96911441-FDD4-3B68-9E0C-51BA11A97C2E> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x91eac000 - 0x91eaefff  libdyld.dylib (210.2.3) <05D6FF2A-F09B-309D-95F7-7AF10259C707> /usr/lib/system/libdyld.dylib
    0x91eaf000 - 0x91eccfff  libCRFSuite.dylib (33) <C9D72D0C-871A-39A2-8AFB-682D11AE7D0D> /usr/lib/libCRFSuite.dylib
    0x91ecd000 - 0x91efaffe  libsystem_m.dylib (3022.6) <9975D9C3-3B71-38E3-AA21-C5C5F9D9C431> /usr/lib/system/libsystem_m.dylib
    0x91f9d000 - 0x921b4fff  com.apple.CoreData (106.1 - 407.7) <17FD06D6-AD7C-345A-8FA4-1F0FBFF4DAE1> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x921b5000 - 0x921b8fff  com.apple.help (1.3.2 - 42) <AD7EB1F0-A068-3A2C-9D59-38E59CEC0D96> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions /A/Help
    0x921ef000 - 0x92253fff  com.apple.datadetectorscore (4.0 - 269.1) <4D155F09-1A60-325A-BCAC-1B858C2C051B> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCor e
    0x92254000 - 0x922c3ffb  com.apple.Heimdal (3.0 - 2.0) <1ABF438B-30E6-3165-968C-E2EA1A9DF1FD> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x922c4000 - 0x9232cff7  com.apple.framework.IOKit (2.0 - 755.18.10) <9A80E97E-544F-3A45-916D-6DB7ED217E33> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x9232d000 - 0x92388ff7  com.apple.AppleVAFramework (5.0.18 - 5.0.18) <4BA2AAEA-4936-375C-B4D8-4BBE2EDC7FF5> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x92393000 - 0x92484ffc  libiconv.2.dylib (34) <B096A9B7-83A6-31B3-8D2F-87D91910BF4C> /usr/lib/libiconv.2.dylib
    0x92485000 - 0x92488ff9  libCGXType.A.dylib (324.6) <3004616B-51F6-3B9D-8B85-DCCA3DF9BC10> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libCGXType.A.dylib
    0x92489000 - 0x92489ffd  libOpenScriptingUtil.dylib (148.2) <907E25B1-4F50-3461-B8D5-733C687EB534> /usr/lib/libOpenScriptingUtil.dylib
    0x9248a000 - 0x926bafff  com.apple.QuartzComposer (5.1 - 284) <4E8682B7-EBAE-3C40-ABDB-8705EC7952BD> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framewor k/Versions/A/QuartzComposer
    0x926ec000 - 0x9273cff7  com.apple.CoreMediaIO (301.0 - 4147) <F13FA9D4-BD1D-3297-BDD5-5858B231D738> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
    0x92820000 - 0x9293eff7  com.apple.MediaControlSender (1.4.5 - 145.3) <E0931EE7-4ACA-3538-9658-B9B2AC1E6A80> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/MediaControlSen der
    0x9293f000 - 0x929c7fff  com.apple.PDFKit (2.7.2 - 2.7.2) <7AE7BAE9-4C21-3BFB-919E-5C6EEBBDFF75> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framework/Versio ns/A/PDFKit
    0x92a80000 - 0x92bbbff7  libBLAS.dylib (1073.4) <FF74A147-05E1-37C4-BC10-7DEB57FE5326> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libBLAS.dylib
    0x92bfc000 - 0x92c37fe7  libGLImage.dylib (8.6.1) <A3442557-18D5-332E-8859-423D5A20EBBE> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
    0x92c38000 - 0x92ca0fe7  libvDSP.dylib (380.6) <55780308-4DCA-3B10-9703-EAFC3E13A3FA> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvDSP.dylib
    0x92ca1000 - 0x92cc5fff  libJPEG.dylib (845) <547FA9A5-0BBB-3E39-BACA-F3E2DAE57DB0> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x92cc6000 - 0x92cc6fff  com.apple.Cocoa (6.7 - 19) <354094F0-F36B-36F9-BF5F-FD60590FBEB9> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x92cc7000 - 0x92d2dfff  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
    0x92d2e000 - 0x92d31ffc  libpam.2.dylib (20) <FCF74195-A99E-3B07-8E49-688D4A6F1E18> /usr/lib/libpam.2.dylib
    0x92d32000 - 0x92d48fff  com.apple.CFOpenDirectory (10.8 - 151.10) <56C3F276-BD1F-3031-8CF9-8F4F481A534E> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.

    Have you tried any of the standard "possible fixes": restart, delete cache file, reinstall, etc?
    Knowing what you've already tried is also a great help in trying to repair your issue.
    That said, one of the biggest quasi-cure-alls for DW is to delete the cache file: http://forums.adobe.com/thread/494811
    If you've already tried it, or try it and it doesn't help, check back and someone will have another idea for you.

  • Please help me install this audio player!

    Hello anyone reading this,
    I am very new to designing a website, and decided to venture out and add some audio to it.  I am a piano instructor and am VERY determined to do this.
    I recently purchased some files from this site:
    http://www.flashcomponents.net/component/advanced-mp3-player-with-play list-totally-customizable-xml-driven.html
    That is the same exact one I purchased.
    I recently engaged in a little email session with the author / developer and he was sending me emails that had a lot of technical language of which I couldn't understand.  I needed help, and he didn't seem to pay much attention to my problem, just kept repeating the same thing.
    I eventually was able to research his terminology and I finally got around to being able to comprehend his 'steps' listed for me to get this thing up and running.
    He basically said everything I needed was in a folder titled 'deploy' ... and that I just copy that folder into my Dreamweaver site project , along with my images, root folder, etc.  Ok, easy enough.  I did that.
    His next step was to insert the .swf file into my web page in Dreamweaver.  Ok, easy enough.  Did that.  BUT, there is a problem.  A fairly large grey box shows up with an F inside it.  This is in 'design' view.  In 'Live view', I see nothing at all of the player, just a large grey box with no F inside it.
    The peculiar thing is that there are 3 files inside this 'deploy' folder that when I double click them ... a beautiful audio mp3 player pops up and performs perfectly.  It's the real thing.  Just when I insert the .swf file into my site, nothing at all happens.  And this was what the guy told me to do.
    Since then he stopped corresponding with me.  Not sure why.  Here are the files I have in 'Deploy'.
    playlist.xml
    playerstyles.css
    playersettings_v4.xml
    Mp3player_v4.swf
    index.php
    index.html
    BG.jpg
    AC_RunActiveContent.js
    The 2 index files open up a perfect audio player as shown on the site.  So does the Mp3player_f4.swf.
    I also have a folder called 'scripts' that has 2 scripts listed for the audio player.
    swfobject_modified.js
    expressInstall.swf
    Please oh please, if any of this makes any sense and if what I typed is a symptom of something, please help me.  I am desperate as all the research I've done is getting me nowhere!!!

    Your testing confirms my suspicion that it’s a pathing problem
    “Then I tested out the index.html and the index.php files that are located in 'deploy'
    They didn't work.  no image at all ... nothing. “
    That is working correctly. If you path it to work from the Web page, of course it will not work from “index.html” in the deploy folder… it’s not supposed to. It’s supposed to work from the Web page one folder level up. Did you test it from YOUR Web page after changing the paths?
    “I noticed that as I said the index.html and the index.php didn't work ... but the mp3player_v4.swf STILL worked perfectly fine.  All 3 of those files are under 'deploy'”
    This is also to be expected, because when testing the .swf directly (not on YOUR Web page), the paths in the xml file to the mp3s is correct. But remember, when you place that .swf on YOUR Web page, you are removing the .swf from “deploy” and placing it in the same folder as your Web page….. it’s not in deploy anymore.
    “Also, a peculiar thing happened as well as I was playing around with things. “
    Well for testing you could take everthing out of “deploy” and move it into the same folder as YOUR Web page and just change the path on your web page to the .swf (delete the “deploy/” part). Now every thing is in the root folder, there is no deploy folder, only a “sound” folder which holds the mp3s and the palyer would work just fine, because RELATIVE to the location of the .swf on the WEB PAGE, all the paths are correct.
    But then you don’t really learn how to resolve pathing issues.

  • Once I add my .swf to Dreamweaver, the buttons are not clickable, how can I fix this?

    Hello there,
    I'd just like to start out by saying that this is the first time I have posted on these forums, so if I have done anything wrong, I apologize!
    Anyway, about my question, just like the title says, once I import the .swf into Dreamweaver the buttons are not clickable, however when tested outside of Dreamweaver, they work correctly.
    Basically I have an animated banner with some audio and two buttons, the buttons mute and unmute the music.
    The file consists of two layers, one of which has 2 keyframes, the first keyframe has the Audio with the settings; "Effect: None. Sync: Start, Loop" and a button leading to the next frame.
    The next keyframe (still on layer one) has much of the same but the Audio settings are different; "Effect: None. Sync: Stop, repeat x 1" and this will stop the music.
    Now on the other layer (Rocket) I have a movie clip of a space-themed background and a rocket flying across it, the movie clip is made up of a motion tween and another movie clip which is the rocket.
    I am using Flash CS6 and Dreamweaver CS6 on a Windows 7 computer. I am also using Actionscript 2.0
    I apologize for the amount of information and I'm not very briliant at explaining things, so here are some images of the flash file, hopefully they'll help;
    Layer setup - http://i.imgur.com/iZHwfAw.jpg
    The movie clip - http://i.imgur.com/ayvPJUZ.jpg
    Keyframe one sound settings - http://i.imgur.com/LWbnQhO.jpg
    Keyframe two sound settings - http://i.imgur.com/7kS9dO2.jpg
    Actionscript for the first button/first keyframe - http://i.imgur.com/x6ROqPv.jpg   - (The second button/keyframe has the same code, but obviously the instance name and frame number has been changed)
    Again, I apologise if this all seems confusing!
    Thanks in advance for any answers to this question
    Adam.

    If you did not create this swf yourself then you won't be able to do what I am suggesting.  If you did, then open the fla in Flash and go into the Publish Settings and select the option to publish an html file as an output.  That will create an html page that embeds the Flash file.  Test that file in your browser and see if it plays properly.  IF so, then copy that code in place of whatever Dreamweaver did to embed the Flash.
    Dreamweaver is not a reliable tool for embedding Flash content... why it does not do it the same way Flash does it is anyone's guess.

  • How can I create a pop up window for a Windows Media video file in Dreamweaver CS6?

    I have a Windows Media video file on my homepage that plays automatically when you go to the website. I'd like to change my homepage. I now would like to place text that says "click here to play the video" and I'd like a pop up window to open and play the video. I'm using Dreamweaver CS6. Your help will be appreciated. Thanks.

    BlueSapphire777 wrote:
    <!--[if lt IE 9]>
    <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
    <![endif]-->
    Is the code you told me about (above), is it necessary for older browsers such as ie8? I thought you were saying it was for the HTML5 tags and I wasn't sure I'd bother with it. If it helps people with ie8, I probably should add it.
    I include it (or a link to a localized copy of the file) by default now.
    To truly support the ancient browsers out there, you'd likely need something like...
    <video width="500" height="500">
        <source src="video.mp4" type="video/mp4" />
        <source src="video.ogv" type="video/ogg" />
        <source src="video.webm" type="video/webm" />
        <object width="500" height="500">
        <param name="movie" value="video.swf" />
        <embed src="video.swf" width="500" height="500"></embed>
        </object>
    </video>
    I don't bother with a Flash fall back for old browsers though. I just put in text letting the viewer know they're behind the times pretty severely, like...
    <video width="500" height="500">
        <source src="video.mp4" type="video/mp4" />
        <source src="video.ogv" type="video/ogg" />
        <source src="video.webm" type="video/webm" />
        <p>Your browser is horribly, helplessly and hilariously outdated. Visit <a href="firefox.com" target="_blank">www.firefox.com</a> to download something better, more secure, modern, worthwhile, etc, etc...</p>
    </video>
    For junky old browsers that can't see any HTML5 (which the <video> and <audio> tags are), they get a text message to get something better and a link to go there.

  • How do I get my Dreamweaver CS3 for mac to stop crashing

    I have been using my CS3 programs for years now and just in the last two weeks, all of them have been crashing within seconds or moments of launch. I do not understand it. Dreamweaver is the most important one because I must update our company website with our Q1 2010 performance and our investors are already really asking why the info is not on the site.
    As soon as I launch dreamweaver CS3, it crashes and says the message at the bottom of this post. It has done it 20+ times today. I run Mac OS X 10.6.3 and have done all of the software updates from Apple as of 30 minutes ago. I have closed all programs, restarted. I just don't understand it. Please help as soon as you can.
    Thanks so much,
    Scott
    Error report:
    Process:         Dreamweaver [1512]
    Path:            /Applications/Adobe Dreamweaver CS3/Dreamweaver.app/Contents/MacOS/Dreamweaver
    Identifier:      com.adobe.dreamweaver-9.0
    Version:         9.0.0.3481 (9.0.0)
    Code Type:       X86 (Native)
    Parent Process:  launchd [113]
    Date/Time:       2010-04-21 16:16:22.557 -0700
    OS Version:      Mac OS X 10.6.3 (10D573)
    Report Version:  6
    Interval Since Last Report:          411231 sec
    Crashes Since Last Report:           19
    Per-App Interval Since Last Report:  137 sec
    Per-App Crashes Since Last Report:   14
    Anonymous UUID:                      89E3BF7B-2FA4-454D-9E44-F9196447F26F
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000005
    Crashed Thread:  15
    Thread 0:  Dispatch queue: com.apple.main-thread
    0   libSystem.B.dylib             0x98fc12fa mach_msg_trap + 10
    1   libSystem.B.dylib             0x98fc1a67 mach_msg + 68
    2   com.apple.CoreFoundation      0x930eb00f __CFRunLoopRun + 2079
    3   com.apple.CoreFoundation      0x930ea0f4 CFRunLoopRunSpecific + 452
    4   com.apple.CoreFoundation      0x930e9f21 CFRunLoopRunInMode + 97
    5   com.apple.HIToolbox           0x90ffd0fc RunCurrentEventLoopInMode + 392
    6   com.apple.HIToolbox           0x90ffceb1 ReceiveNextEventCommon + 354
    7   com.apple.HIToolbox           0x911851d4 _AcquireNextEvent + 54
    8   com.apple.HIToolbox           0x9117af20 RunApplicationEventLoop + 228
    9   com.adobe.dreamweaver-9.0     0x00a85c1a CRealApp::Run() + 408
    10  com.adobe.dreamweaver-9.0     0x00a5eaeb main + 333
    11  com.adobe.dreamweaver-9.0     0x00003346 _start + 216
    12  com.adobe.dreamweaver-9.0     0x0000326d start + 41
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib             0x98fe7b42 kevent + 10
    1   libSystem.B.dylib             0x98fe825c _dispatch_mgr_invoke + 215
    2   libSystem.B.dylib             0x98fe7719 _dispatch_queue_invoke + 163
    3   libSystem.B.dylib             0x98fe74be _dispatch_worker_thread2 + 240
    4   libSystem.B.dylib             0x98fe6f41 _pthread_wqthread + 390
    5   libSystem.B.dylib             0x98fe6d86 start_wqthread + 30
    Thread 2:
    0   libSystem.B.dylib             0x98fe6bd2 __workq_kernreturn + 10
    1   libSystem.B.dylib             0x98fe7168 _pthread_wqthread + 941
    2   libSystem.B.dylib             0x98fe6d86 start_wqthread + 30
    Thread 3:
    0   libSystem.B.dylib             0x98fc12fa mach_msg_trap + 10
    1   libSystem.B.dylib             0x98fc1a67 mach_msg + 68
    2   ...ple.CoreServices.CarbonCore 0x971a3de8 TS_exception_listener_thread + 160
    3   libSystem.B.dylib             0x98feea19 _pthread_start + 345
    4   libSystem.B.dylib             0x98fee89e thread_start + 34
    Thread 4:
    0   libSystem.B.dylib             0x98fc135a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib             0x98feeea1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib             0x9901da28 pthread_cond_timedwait_relative_np + 47
    3   ...ple.CoreServices.CarbonCore 0x970fc465 TSWaitOnConditionTimedRelative + 242
    4   ...ple.CoreServices.CarbonCore 0x970fc1a3 TSWaitOnSemaphoreCommon + 511
    5   ...ple.CoreServices.CarbonCore 0x971203eb TimerThread + 97
    6   libSystem.B.dylib             0x98feea19 _pthread_start + 345
    7   libSystem.B.dylib             0x98fee89e thread_start + 34
    Thread 5:
    0   libSystem.B.dylib             0x98fc135a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib             0x98feeea1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib             0x9901da28 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation          0x9935ca88 -[NSCondition waitUntilDate:] + 453
    4   com.apple.Foundation          0x993157f9 -[NSConditionLock lockWhenCondition:beforeDate:] + 279
    5   com.apple.Foundation          0x993156dc -[NSConditionLock lockWhenCondition:] + 69
    6   com.adobe.dreamweaver-9.0     0x00b586c1 AMTConditionLock::LockWhenCondition(int) + 43
    7   com.adobe.dreamweaver-9.0     0x00b454fd AMTPCDWorkerThread::HandleRequests(void*) + 87
    8   com.adobe.dreamweaver-9.0     0x00b56bec -[AMTThreadHelper threadWorker:] + 70
    9   com.apple.Foundation          0x993208dc -[NSThread main] + 45
    10  com.apple.Foundation          0x9932088c __NSThread__main__ + 1499
    11  libSystem.B.dylib             0x98feea19 _pthread_start + 345
    12  libSystem.B.dylib             0x98fee89e thread_start + 34
    Thread 6:
    0   libSystem.B.dylib             0x98ff3ff9 syscall + 5
    1   com.apple.OpenTransport       0x1a730851 CarbonSelectThreadFunc + 257
    2   libSystem.B.dylib             0x98feea19 _pthread_start + 345
    3   libSystem.B.dylib             0x98fee89e thread_start + 34
    Thread 7:
    0   libSystem.B.dylib             0x98fef262 __semwait_signal + 10
    1   libSystem.B.dylib             0x98feef1e _pthread_cond_wait + 1191
    2   libSystem.B.dylib             0x98ff0bb8 pthread_cond_wait$UNIX2003 + 73
    3   com.apple.OpenTransport       0x1a72cd73 CarbonOperationThreadFunc + 203
    4   libSystem.B.dylib             0x98feea19 _pthread_start + 345
    5   libSystem.B.dylib             0x98fee89e thread_start + 34
    Thread 8:
    0   libSystem.B.dylib             0x98fc140e mach_wait_until + 10
    1   libSystem.B.dylib             0x990488d5 nanosleep + 345
    2   com.apple.carbonbundletemplate 0x1ac7644b ScObjects::Thread::sleep(unsigned int) + 79
    3   com.apple.carbonbundletemplate 0x1ac668d5 ScObjects::BridgeTalkThread::run() + 153
    4   com.apple.carbonbundletemplate 0x1ac76535 ScObjects::Thread::go(void*) + 167
    5   libSystem.B.dylib             0x98feea19 _pthread_start + 345
    6   libSystem.B.dylib             0x98fee89e thread_start + 34
    Thread 9:
    0   libSystem.B.dylib             0x98fe6bd2 __workq_kernreturn + 10
    1   libSystem.B.dylib             0x98fe7168 _pthread_wqthread + 941
    2   libSystem.B.dylib             0x98fe6d86 start_wqthread + 30
    Thread 10:
    0   libSystem.B.dylib             0x98fc135a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib             0x98feeea1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib             0x9901da28 pthread_cond_timedwait_relative_np + 47
    3   ...ple.CoreServices.CarbonCore 0x970fc465 TSWaitOnConditionTimedRelative + 242
    4   ...ple.CoreServices.CarbonCore 0x970fc1a3 TSWaitOnSemaphoreCommon + 511
    5   ...ickTimeComponents.component 0x97d0891d ReadSchedulerThreadEntryPoint + 4698
    6   libSystem.B.dylib             0x98feea19 _pthread_start + 345
    7   libSystem.B.dylib             0x98fee89e thread_start + 34
    Thread 11:
    0   libSystem.B.dylib             0x98fc135a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib             0x98feeea1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib             0x9901da28 pthread_cond_timedwait_relative_np + 47
    3   ...ple.CoreServices.CarbonCore 0x970fc465 TSWaitOnConditionTimedRelative + 242
    4   ...ple.CoreServices.CarbonCore 0x970fc1a3 TSWaitOnSemaphoreCommon + 511
    5   ...ple.CoreServices.CarbonCore 0x97156a50 AIOFileThread(void*) + 1127
    6   libSystem.B.dylib             0x98feea19 _pthread_start + 345
    7   libSystem.B.dylib             0x98fee89e thread_start + 34
    Thread 12:
    0   libSystem.B.dylib             0x98fc1342 semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib             0x98feeeb8 _pthread_cond_wait + 1089
    2   libSystem.B.dylib             0x9903742f pthread_cond_wait + 48
    3   com.apple.carbonbundletemplate 0x1c621220 MMNetIO::RequestProcessor<MMNetIO::FTPNetChannel, MMNetIO::FTPNetChannel, MMNetIO::NetIOException>::MutexState::Wait() + 42
    4   com.apple.carbonbundletemplate 0x1c62497e MMNetIO::RequestProcessor<MMNetIO::FTPNetChannel, MMNetIO::FTPNetChannel, MMNetIO::NetIOException>::ProcessRequests() + 80
    5   com.apple.carbonbundletemplate 0x1c624d43 MMNetIO::RequestProcessor<MMNetIO::FTPNetChannel, MMNetIO::FTPNetChannel, MMNetIO::NetIOException>::RequestProcessorTrampoline(void*) + 17
    6   libSystem.B.dylib             0x98feea19 _pthread_start + 345
    7   libSystem.B.dylib             0x98fee89e thread_start + 34
    Thread 13:
    0   libSystem.B.dylib             0x98fc12fa mach_msg_trap + 10
    1   libSystem.B.dylib             0x98fc1a67 mach_msg + 68
    2   ...ia.Flash Player.authplaylib 0x1d58de7b ExternalPlayer_Initialize + 292931
    3   libSystem.B.dylib             0x98feea19 _pthread_start + 345
    4   libSystem.B.dylib             0x98fee89e thread_start + 34
    Thread 14:
    0   libSystem.B.dylib             0x98fe0286 select$DARWIN_EXTSN + 10
    1   com.apple.CoreFoundation      0x9312a82d __CFSocketManager + 1085
    2   libSystem.B.dylib             0x98feea19 _pthread_start + 345
    3   libSystem.B.dylib             0x98fee89e thread_start + 34
    Thread 15 Crashed:
    0   com.apple.CoreFoundation      0x930d45d5 CFGetTypeID + 21
    1   AdobeLM_libFNP.dylib          0x1f35a845 TRR_Fixup + 1259471
    2   AdobeLM_libFNP.dylib          0x1f35a997 TRR_Fixup + 1259809
    3   AdobeLM_libFNP.dylib          0x1f2883f4 TRR_Fixup + 398206
    4   AdobeLM_libFNP.dylib          0x1f33c82f TRR_Fixup + 1136569
    5   AdobeLM_libFNP.dylib          0x1f33c8ac TRR_Fixup + 1136694
    6   AdobeLM_libFNP.dylib          0x1f2278fa TRR_Fixup + 2180
    7   AdobeLM_libFNP.dylib          0x1f22922a TRR_Fixup + 8628
    8   AdobeLM_libFNP.dylib          0x1f2c2ca4 TRR_Fixup + 637998
    9   AdobeLM_libFNP.dylib          0x1f2c2fa5 TRR_Fixup + 638767
    10  AdobeLM_libFNP.dylib          0x1f2c706a TRR_Fixup + 655348
    11  AdobeLM_libFNP.dylib          0x1f493e1a 0x1f221000 + 2567706
    12  AdobeLM_libFNP.dylib          0x1f493ea1 0x1f221000 + 2567841
    13  AdobeLM_libFNP.dylib          0x1f2278ae TRR_Fixup + 2104
    14  AdobeLM_libFNP.dylib          0x1f22922a TRR_Fixup + 8628
    15  AdobeLM_libFNP.dylib          0x1f244ff1 TRR_Fixup + 122747
    16  AdobeLM_libFNP.dylib          0x1f3269c3 TRR_Fixup + 1046861
    17  AdobeLM_libFNP.dylib          0x1f327156 TRR_Fixup + 1048800
    18  AdobeLM_libFNP.dylib          0x1f2c0e57 TRR_Fixup + 630241
    19  AdobeLM_libFNP.dylib          0x1f28e4f3 TRR_Fixup + 423037
    20  AdobeLM_libFNP.dylib          0x1f28fea7 TRR_Fixup + 429617
    21  AdobeLM_libFNP.dylib          0x1f23284e TRR_Fixup + 47064
    22  AdobeLM_libFNP.dylib          0x1f43af47 0x1f221000 + 2203463
    23  AdobeLM_libFNP.dylib          0x1f43b485 0x1f221000 + 2204805
    24  AdobeLM_libFNP.dylib          0x1f3a2e2d 0x1f221000 + 1580589
    25  AdobeLM_libFNP.dylib          0x1f3a3c53 0x1f221000 + 1584211
    26  AdobeLM_libFNP.dylib          0x1f4459e2 0x1f221000 + 2247138
    27  com.adobe.dreamweaver-9.0     0x00bbb6ae fnpActManLoadStorage + 133
    28  com.adobe.dreamweaver-9.0     0x00b779d5 sFlxActLicSpcPopulate + 227
    29  com.adobe.dreamweaver-9.0     0x00b77b79 flxActCommonLicSpcPopulateAllFromTS + 40
    30  com.adobe.dreamweaver-9.0     0x00b63f3b adobe::alm::ALM_TrustStorage_AccessTS(flxActHandle*, unsigned short (*)(flxActHandle*, flxActLicSpc*, void*), void*) + 265
    31  com.adobe.dreamweaver-9.0     0x00b65266 ALM_TrustStorage_Scan + 386
    32  com.adobe.dreamweaver-9.0     0x00b58b78 ALM_Pri_SilentLicenseCheck + 142
    33  com.adobe.dreamweaver-9.0     0x00b594a6 ALM_Pri_PrepareToActivate + 428
    34  com.adobe.dreamweaver-9.0     0x00b595fb ALM_License_Check + 157
    35  com.adobe.dreamweaver-9.0     0x00b49480 AMTALMService::IsProductActivated() + 62
    36  com.adobe.dreamweaver-9.0     0x00b0fec2 AMTImpl::DoALMWorkflow(AMTALMService&) + 1330
    37  com.adobe.dreamweaver-9.0     0x00b11322 AMTImpl::DoLaunchWorkflow(AMTImpl::LaunchSequence) + 614
    38  com.adobe.dreamweaver-9.0     0x00b11d39 AMTImpl::DoValidateWorkflow(AMTImpl::LaunchSequence) + 219
    39  com.adobe.dreamweaver-9.0     0x00b12019 AMTImpl::DoPreValidateWorkflow() + 103
    40  com.adobe.dreamweaver-9.0     0x00b56bec -[AMTThreadHelper threadWorker:] + 70
    41  com.apple.Foundation          0x993208dc -[NSThread main] + 45
    42  com.apple.Foundation          0x9932088c __NSThread__main__ + 1499
    43  libSystem.B.dylib             0x98feea19 _pthread_start + 345
    44  libSystem.B.dylib             0x98fee89e thread_start + 34
    Thread 15 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0x930d45d1  ecx: 0xa0b8d4a0  edx: 0x00000000
      edi: 0x00008e07  esi: 0x00000000  ebp: 0xb0857738  esp: 0xb0857720
       ss: 0x0000001f  efl: 0x00010282  eip: 0x930d45d5   cs: 0x00000017
       ds: 0x0000001f   es: 0x0000001f   fs: 0x0000001f   gs: 0x00000037
      cr2: 0x00000005
    Binary Images:
        0x1000 -  0x1060fde +com.adobe.dreamweaver-9.0 9.0.0.3481 (9.0.0) <BF3351F2-0BA2-48FE-BE70-1B2DB46ABE16> /Applications/Adobe Dreamweaver CS3/Dreamweaver.app/Contents/MacOS/Dreamweaver
    0x2337000 -  0x2350fde +libChar16.dylib ??? (???) <54D6A72C-8E95-493E-A3DE-15E472C07AB6> /Applications/Adobe Dreamweaver CS3/Dreamweaver.app/Contents/MacOS/libChar16.dylib
    0x2360000 -  0x2382fc0 +libCoreTypes.dylib ??? (???) <3AC366EA-499B-4508-80FE-4331DE99A7D2> /Applications/Adobe Dreamweaver CS3/Dreamweaver.app/Contents/MacOS/libCoreTypes.dylib
    0x23a1000 -  0x23bffef +libCurl.dylib ??? (???) <E10E63FA-44BE-4142-9869-E3AE59C05B9F> /Applications/Adobe Dreamweaver CS3/Dreamweaver.app/Contents/MacOS/libCurl.dylib
    0x23cd000 -  0x23d6ffb +libZ.dylib ??? (???) <D9B990AB-E460-476B-94E8-CFD8A60B0985> /Applications/Adobe Dreamweaver CS3/Dreamweaver.app/Contents/MacOS/libZ.dylib
    0x23de000 -  0x248efdb +libCrypto.dylib ??? (???) <EC84F308-3008-4E44-968C-9C0CA5E549AD> /Applications/Adobe Dreamweaver CS3/Dreamweaver.app/Contents/MacOS/libCrypto.dylib
    0x252a000 -  0x254cffc +libSSL.dylib ??? (???) <9290A5AE-2032-4654-8F2E-CFF77D29C8D5> /Applications/Adobe Dreamweaver CS3/Dreamweaver.app/Contents/MacOS/libSSL.dylib
    0x2561000 -  0x2774fdf  com.apple.carbonframeworktemplate 1.0 (1.0) <B07E25BB-C4DD-4EFD-BB79-DC17B3C19CDD> /Applications/Adobe Dreamweaver CS3/Dreamweaver.app/Contents/Frameworks/Xerces.framework/Versions/A/Xerces
    0x2ad2000 -  0x2ad9ffc  com.apple.carbonframeworktemplate 1.0 (1.0) <D3766ACC-8C0B-40FE-9F8D-D1A213A866A2> /Applications/Adobe Dreamweaver CS3/Dreamweaver.app/Contents/Frameworks/NetIO.framework/Versions/A/NetIO
    0x2aed000 -  0x2af4ff7  com.apple.JavaVM 13.1.0 (13.1.0) <2842C4EE-869D-81E6-E771-062F583A1044> /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaVM
    0x2afd000 -  0x2b02ff3 +com.adobe.AdobeCrashReporter 1.0 (2.1.03072007) /Applications/Adobe Dreamweaver CS3/Dreamweaver.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCras hReporter
    0x2b09000 -  0x2b25fd7 +LogTransport ??? (???) /Applications/Adobe Dreamweaver CS3/Dreamweaver.app/Contents/Frameworks/LogTransport.framework/Versions/A/LogTransport
    0x2b30000 -  0x2b65fd3 +adobe_epic 2.0.0 (compatibility 2.0.0) /Applications/Adobe Dreamweaver CS3/Dreamweaver.app/Contents/Frameworks/adobe_epic.framework/Versions/A/adobe_epic
    0x2b85000 -  0x2b91fe3 +adobe_eula 2.0.0 (compatibility 2.0.0) /Applications/Adobe Dreamweaver CS3/Dreamweaver.app/Contents/Frameworks/adobe_eula.framework/Versions/A/adobe_eula
    0x2b9a000 -  0x2ba8fc5 +adobe_personalization 2.0.0 (compatibility 2.0.0) /Applications/Adobe Dreamweaver CS3/Dreamweaver.app/Contents/Frameworks/adobe_personalization.framework/Versions/A/adobe_ personalization
    0x2bb1000 -  0x2bc1fe7 +adobe_registration 2.0.0 (compatibility 2.0.0) /Applications/Adobe Dreamweaver CS3/Dreamweaver.app/Contents/Frameworks/adobe_registration.framework/Versions/A/adobe_reg istration
    0x2bca000 -  0x2e1bfde +adobelm ??? (???) /Applications/Adobe Dreamweaver CS3/Dreamweaver.app/Contents/Frameworks/adobelm.framework/Versions/A/adobelm
    0x2fce000 -  0x3026ff2 +AdobeUpdater ??? (???) <CA913CDD-FA7B-4435-8BEB-052BB879AED6> /Applications/Adobe Dreamweaver CS3/Dreamweaver.app/Contents/Frameworks/AdobeUpdater.framework/Versions/A/AdobeUpdater
    0x3063000 -  0x3070ff7 +com.adobe.asneu.framework asneu version 1.6.2f01 (1.6.2) /Applications/Adobe Dreamweaver CS3/Dreamweaver.app/Contents/Frameworks/asneu.framework/Versions/A/asneu
    0x307e000 -  0x317eff7 +AdobeACE ??? (???) /Applications/Adobe Dreamweaver CS3/Dreamweaver.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
    0x319d000 -  0x341dff7 +AdobeAGM ??? (???) /Applications/Adobe Dreamweaver CS3/Dreamweaver.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
    0x34c6000 -  0x34dffff +AdobeBIB ??? (???) /Applications/Adobe Dreamweaver CS3/Dreamweaver.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
    0x34e9000 -  0x350aff7 +AdobeBIBUtils ??? (???) /Applications/Adobe Dreamweaver CS3/Dreamweaver.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
    0x3517000 -  0x3783fe7 +AdobeCoolType ??? (???) /Applications/Adobe Dreamweaver CS3/Dreamweaver.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
    0x3806000 -  0x44a9feb +com.adobe.psl 10.305893.46.307412 (10.305893.46.307412) <54F8C452-8089-4BD3-B3A7-8823F6FB084B> /Applications/Adobe Dreamweaver CS3/Dreamweaver.app/Contents/Frameworks/AdobePSL.framework/Versions/A/AdobePSL
    0x47c7000 -  0x47eaff6 +AdobeAXE8SharedExpat ??? (???) /Applications/Adobe Dreamweaver CS3/Dreamweaver.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAX E8SharedExpat
    0x47fc000 -  0x4851ffd +AdobeXMP ??? (???) /Applications/Adobe Dreamweaver CS3/Dreamweaver.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
    0x485f000 -  0x48a6fc7 +com.adobe.adobe_caps adobe_caps 0.0.120.0 (0.0.120.0) /Applications/Adobe Dreamweaver CS3/Dreamweaver.app/Contents/Frameworks/adobe_caps.framework/Versions/A/adobe_caps
    0x48b6000 -  0x48f6ff7  com.apple.vmutils 4.2 (106) <834EA6B0-C91B-4CF1-ED3C-229C26459578> /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x490f000 -  0x490fff7  libmx.A.dylib 315.0.0 (compatibility 1.0.0) <01401BF8-3FC7-19CF-ACCE-0F292BFD2F25> /usr/lib/libmx.A.dylib
    0x49a6000 -  0x49abff7  com.apple.AppleMPEG2Codec 1.0.1 (220) <6FDFF3C8-7ECE-CB74-1374-9C0230C54F78> /Library/QuickTime/AppleMPEG2Codec.component/Contents/MacOS/AppleMPEG2Codec
    0x4e2c000 -  0x4e2dff7  com.apple.textencoding.unicode 2.3 (2.3) <78A61FD5-70EE-19EA-48D4-3481C640B70D> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x197c3000 - 0x197d1fe7  libSimplifiedChineseConverter.dylib 49.0.0 (compatibility 1.0.0) <4C9CC2D9-2F13-4465-5447-2516FCD9255B> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x197d5000 - 0x197e7ff7  libTraditionalChineseConverter.dylib 49.0.0 (compatibility 1.0.0) <C4E0D62B-4D1A-8DAD-D10B-2C055AA0479C> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0x197f0000 - 0x197f4fc7  com.apple.carbonbundletemplate 1.0 (1.0) <58FF20A6-C10F-48D9-953F-398E1190BF70> /Applications/Adobe Dreamweaver CS3/Configuration/JSExtensions/SWFFile.bundle/Contents/MacOS/SWFFile
    0x197fa000 - 0x197faff3  com.apple.carbonbundletemplate 1.0 (1.0) <6674C04D-4D0D-4D32-AD13-50A467A02AC4> /Applications/Adobe Dreamweaver CS3/Configuration/JSExtensions/MM.bundle/Contents/MacOS/MM
    0x197fe000 - 0x197fffe7  com.apple.carbonbundletemplate 1.0 (1.0) <C48D6C97-0307-4DDF-A26A-260DFA2E739B> /Applications/Adobe Dreamweaver CS3/Configuration/JSExtensions/DWfile.bundle/Contents/MacOS/DWfile
    0x1a729000 - 0x1a744ff7  com.apple.OpenTransport 10.6.0 (10.6.0) <ECA6FEC6-5ECD-51BA-162F-CFC43899196A> /System/Library/PrivateFrameworks/OpenTransport.framework/OpenTransport
    0x1ac00000 - 0x1ac28ff2  com.apple.carbonbundletemplate 1.0 (1.0) <5E39C226-1956-42E4-8A90-52AC120C309B> /Applications/Adobe Dreamweaver CS3/Configuration/JSExtensions/MMNotes.bundle/Contents/MacOS/MMNotes
    0x1ac4e000 - 0x1ac84fe3  com.apple.carbonbundletemplate 1.0 (1.0) <D62FF516-5180-4C08-AA4D-D8BE9CCA180A> /Applications/Adobe Dreamweaver CS3/Configuration/JSExtensions/classes/JSBridge.bundle/Contents/MacOS/JSBridge
    0x1b21b000 - 0x1b235fc3  com.apple.AppleIntermediateCodec 1.2 (145) /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleIntermediateCodec
    0x1b23a000 - 0x1b253fe7  com.apple.applepixletvideo 1.2.19 (1.2d19) <4A68731C-8071-6CF5-012C-40F00CD1333A> /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/ApplePixletVideo
    0x1bf7b000 - 0x1c1bbfd2 +net.telestream.wmv.import 2.2.0.49 (2.2.0.49) /Library/QuickTime/Flip4Mac WMV Import.component/Contents/MacOS/Flip4Mac WMV Import
    0x1c1f3000 - 0x1c3b5fea +net.telestream.wmv.advanced 2.2.0.49 (2.2.0.49) /Library/QuickTime/Flip4Mac WMV Advanced.component/Contents/MacOS/Flip4Mac WMV Advanced
    0x1c3f9000 - 0x1c44efef  com.apple.AppleProResDecoder 2.0 (223) <793BA98A-2E7D-1C39-998D-805B60034DF4> /System/Library/QuickTime/AppleProResDecoder.component/Contents/MacOS/AppleProResDecoder
    0x1c486000 - 0x1c500fe3  com.apple.AppleVAH264HW.component 2.0 (1.0) <0FC65A8D-3E68-BC03-284B-EFACF6915686> /System/Library/QuickTime/AppleVAH264HW.component/Contents/MacOS/AppleVAH264HW
    0x1c5c3000 - 0x1c5fffe3  com.apple.QuickTimeFireWireDV.component 7.6.6 (1729) <E282B44A-AF33-668B-315A-1C18EC25682B> /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTimeFireWireD V
    0x1c60b000 - 0x1c631ffc  com.apple.carbonbundletemplate 1.0 (1.0) <35B3E2D2-CBF8-4B9C-9678-FA4EB36B0557> /Applications/Adobe Dreamweaver CS3/Dreamweaver.app/Contents/PlugIns/NetIOFTP.bundle/Contents/MacOS/NetIOFTP
    0x1d182000 - 0x1d729fd7 +com.macromedia.Flash Player.authplaylib 9.0.45.0 (1.0.4f45) /Applications/Adobe Dreamweaver CS3/Configuration/Flash Player/AuthPlayLib.bundle/Contents/MacOS/AuthPlayLib
    0x1d85f000 - 0x1d888fe3  com.apple.audio.CoreAudioKit 1.6.1 (1.6.1) <7FFBD485-5251-776A-CC44-4470DD84112B> /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
    0x1f221000 - 0x1f699feb +AdobeLM_libFNP.dylib ??? (???) /Applications/Adobe Dreamweaver CS3/Dreamweaver.app/Contents/MacOS/AdobeLM_libFNP.dylib
    0x40000000 - 0x400a6fd0 +AdobeJP2K ??? (???) /Applications/Adobe Dreamweaver CS3/Dreamweaver.app/Contents/Frameworks/AdobeJP2K.framework/Versions/A/AdobeJP2K
    0x8fe00000 - 0x8fe4162b  dyld 132.1 (???) <211AF0DD-42D9-79C8-BB6A-1F4BEEF4B4AB> /usr/lib/dyld
    0x90003000 - 0x90005ff7  com.apple.securityhi 4.0 (36638) <962C66FB-5BE9-634E-0810-036CB340C059> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Ve rsions/A/SecurityHI
    0x90095000 - 0x900adff7  com.apple.CFOpenDirectory 10.6 (10.6) <1537FB4F-C112-5D12-1E5D-3B1002A4038F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory. framework/Versions/A/CFOpenDirectory
    0x900ce000 - 0x900f6ff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <769EF4B2-C1AD-73D5-AAAD-1564DAEA77AF> /usr/lib/libxslt.1.dylib
    0x900f7000 - 0x900f7ff7  com.apple.CoreServices 44 (44) <AC35D112-5FB9-9C8C-6189-5F5945072375> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x900fb000 - 0x9014bff7  com.apple.framework.familycontrols 2.0.1 (2010) <50E74916-19A5-F2FC-AB57-76F2C8DDF0A7> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
    0x9014c000 - 0x9018eff7  libvDSP.dylib 268.0.1 (compatibility 1.0.0) <3F0ED200-741B-4E27-B89F-634B131F5E9E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvDSP.dylib
    0x902e6000 - 0x90307fe7  com.apple.opencl 12.1 (12.1) <1BCA4F60-E612-5C1B-EF50-A810D70CDF05> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x90380000 - 0x903b3ff7  com.apple.AE 496.4 (496.4) <7F34EC47-8429-3077-8158-54F5EA908C66> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Vers ions/A/AE
    0x903ed000 - 0x90402fff  com.apple.ImageCapture 6.0 (6.0) <3F31833A-38A9-444E-02B7-17619CA6F2A0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/ Versions/A/ImageCapture
    0x9045e000 - 0x90d3dff7  com.apple.AppKit 6.6.5 (1038.29) <E76A05A6-27C6-DA02-0961-5C8EEDC5F0A7> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x90f04000 - 0x90f26fef  com.apple.DirectoryService.Framework 3.6 (621.3) <05FFDBDB-F16B-8AC0-DB42-986965FCBD95> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService
    0x90f27000 - 0x90f6bfe7  com.apple.Metadata 10.6.3 (507.8) <53BB360A-1813-170D-827F-C1863EF15537> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framewor k/Versions/A/Metadata
    0x90f96000 - 0x90fc7ff7  libGLImage.dylib ??? (???) <AF110892-B10A-5B61-F898-21FB2BCE63BF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
    0x90fc8000 - 0x912ecfef  com.apple.HIToolbox 1.6.2 (???) <F5F99E78-5377-DD54-6138-9FC84467F938> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox
    0x912ed000 - 0x9139afe7  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <DF8E4CFA-3719-3415-0BF1-E8C5E561C3B1> /usr/lib/libobjc.A.dylib
    0x9139b000 - 0x915fdff3  com.apple.security 6.1.1 (37594) <1AC07F75-7E27-9662-21DA-B05DFF047B26> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x915fe000 - 0x91965ff7  com.apple.QuartzCore 1.6.1 (227.18) <8A65F233-4C77-BA7C-5DDA-2423F5C1B7A1> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x91966000 - 0x91a4aff7  com.apple.WebKit 6531.22 (6531.22.7) <87C81D6F-77B1-C517-93E6-5DEF214326A7> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x91bf7000 - 0x91bf9ff7  libRadiance.dylib ??? (???) <9358E1EF-F802-B76E-8E23-2D0695787CFB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libRadiance.dylib
    0x91bfa000 - 0x92010ff7  libBLAS.dylib 219.0.0 (compatibility 1.0.0) <C4FB303A-DB4D-F9E8-181C-129585E59603> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libBLAS.dylib
    0x9222b000 - 0x922dbff3  com.apple.ColorSync 4.6.3 (4.6.3) <68B6A1B9-86CF-0C5A-7D63-56ED4BB2EB5B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/ColorSync
    0x922e1000 - 0x922e5ff7  IOSurface ??? (???) <4B825ADA-8DBE-6BA2-1AB3-307D2C3AFCA8> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x922e6000 - 0x92ad5537  com.apple.CoreGraphics 1.543.33 (???) <C57E2964-80AF-6346-6D3E-23AED9D26977> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/CoreGraphics
    0x92ad6000 - 0x92ad7ff7  com.apple.TrustEvaluationAgent 1.1 (1) <6C04C4C5-667E-2EBE-EB96-5B67BD4B2185> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluati onAgent
    0x92b5d000 - 0x92b6dff7  libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <C8744EA3-0AB7-CD03-E639-C4F2B910BE5D> /usr/lib/libsasl2.2.dylib
    0x92ba3000 - 0x92c0dfe7  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
    0x92c0e000 - 0x92cebff7  com.apple.vImage 4.0 (4.0) <64597E4B-F144-DBB3-F428-0EC3D9A1219E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Ve rsions/A/vImage
    0x92cec000 - 0x92d2fff7  com.apple.NavigationServices 3.5.4 (182) <753B8906-06C0-3AE0-3D6A-8FF5AC18ED12> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationServices.fram ework/Versions/A/NavigationServices
    0x92d30000 - 0x92d3afe7  com.apple.audio.SoundManager 3.9.3 (3.9.3) <5F494955-7290-2D91-DA94-44B590191771> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.framework/V ersions/A/CarbonSound
    0x92d3b000 - 0x92d81ff7  libauto.dylib ??? (???) <85670A64-3B67-8162-D441-D8E0BE15CA94> /usr/lib/libauto.dylib
    0x92dde000 - 0x92ddeff7  com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <1DEC639C-173D-F808-DE0D-4070CC6F5BC7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/vecLib
    0x92de6000 - 0x92e55ff7  libvMisc.dylib 268.0.1 (compatibility 1.0.0) <2FC2178F-FEF9-6E3F-3289-A6307B1A154C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvMisc.dylib
    0x92e56000 - 0x92f20fef  com.apple.CoreServices.OSServices 357 (357) <764872C3-AE30-7F54-494D-4BA3CE4F4DFB> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framew ork/Versions/A/OSServices
    0x92f21000 - 0x930a1feb  com.apple.MediaToolbox 0.484.5 (484.5) <6996E5E1-18B6-C734-8335-FE43670C1F9C> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbox
    0x930a2000 - 0x930adff7  libGL.dylib ??? (???) <EAD85409-9036-831B-C378-E50780305DA6> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x930ae000 - 0x93227ffb  com.apple.CoreFoundation 6.6.1 (550.19) <1E97FB1E-9E42-B8EB-E463-5C75315FDA31> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x93233000 - 0x933b5fe7  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <96A45E03-2B29-83EB-0FC6-2C932E398722> /usr/lib/libicucore.A.dylib
    0x935fe000 - 0x9360fff7  com.apple.LangAnalysis 1.6.6 (1.6.6) <7A3862F7-3730-8F6E-A5DE-8E2CCEA979EF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalys is.framework/Versions/A/LangAnalysis
    0x93618000 - 0x93e4bfe7  com.apple.WebCore 6531.22 (6531.22.7) <952A0D34-63F5-F7F7-D6E5-D0AD78002F89> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.framework/Versi ons/A/WebCore
    0x93e4c000 - 0x93e8aff7  com.apple.CoreMedia 0.484.5 (484.5) <35725D22-4549-5568-8E8C-62E0AD0E90F7> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x93e8b000 - 0x942c0ff7  libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <5E2D2283-57DE-9A49-1DB0-CD027FEFA6C2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libLAPACK.dylib
    0x942da000 - 0x942ecff7  com.apple.CoreMediaAuthoring 0.700 (700) <446FBB01-279B-2BED-E5A8-D36241B704B1> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreMediaAuthor ing
    0x942ed000 - 0x94331ff3  com.apple.coreui 2 (114) <29F8F1A4-1C96-6A0F-4CC2-9B85CF83209F> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x94332000 - 0x94403fe3  ColorSyncDeprecated.dylib 4.6.0 (compatibility 1.0.0) <0A608513-31AD-D533-8386-10245FD62057> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.framework/V ersions/A/Resources/ColorSyncDeprecated.dylib
    0x9441d000 - 0x9449fffb  SecurityFoundation 36840.0.0 (compatibility 1.0.0) <29C27E0E-B2B3-BF6B-B1F8-5783B8B01535> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
    0x944df000 - 0x944dfff7  com.apple.Accelerate 1.6 (Accelerate 1.6) <BC501C9F-7C20-961A-B135-0A457667D03C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x944f4000 - 0x9454fff7  com.apple.framework.IOKit 2.0 (???) <69E4FE93-376C-565E-650F-04FAD213AA24> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x94550000 - 0x9470cff3  com.apple.ImageIO.framework 3.0.2 (3.0.1) <CB39B067-58B8-70DB-3E40-160604664A6D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/ImageIO
    0x9470d000 - 0x94721fe7  libbsm.0.dylib ??? (???) <14CB053A-7C47-96DA-E415-0906BA1B78C9> /usr/lib/libbsm.0.dylib
    0x94722000 - 0x94722ff7  liblangid.dylib ??? (???) <B99607FC-5646-32C8-2C16-AFB5EA9097C2> /usr/lib/liblangid.dylib
    0x94797000 - 0x94845ff3  com.apple.ink.framework 1.3.3 (107) <57B54F6F-CE35-D546-C7EC-DBC5FDC79938> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/ A/Ink
    0x948c5000 - 0x9496dffb  com.apple.QD 3.35 (???) <B80B64BC-958B-DA9E-50F9-D7E8333CC5A2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framewo rk/Versions/A/QD
    0x9496e000 - 0x9499fff3  libTrueTypeScaler.dylib ??? (???) <F6A32C01-CD82-54F6-218E-0406D40D1D9A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libTrueTypeScaler.dylib
    0x949a0000 - 0x94ad7ff7  com.apple.CoreAUC 6.04.00 (6.04.00) <0551FB8D-0894-B40B-B924-4AF51E3648AF> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x94b52000 - 0x94b52ff7  com.apple.Carbon 150 (152) <608A04AB-F35D-D2EB-6629-16B88FB32074> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x94b53000 - 0x94c09fff  libFontParser.dylib ??? (???) <5935E105-1E45-886C-6420-C1CCA886C375> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontParser.dylib
    0x94c36000 - 0x94c36ff7  com.apple.ApplicationServices 38 (38) <8012B504-3D83-BFBB-DA65-065E061CFE03> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
    0x94c37000 - 0x94d15fef  com.apple.QuickTimeMPEG4.component 7.6.6 (1729) <DBE6399E-AB34-B981-7327-05B993B5A69D> /System/Library/QuickTime/QuickTimeMPEG4.component/Contents/MacOS/QuickTimeMPEG4
    0x94e24000 - 0x94e32ff7  com.apple.opengl 1.6.7 (1.6.7) <3C529790-DEE9-AC27-A879-806E4C23323C> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x94e55000 - 0x94e58fe7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
    0x94e61000 - 0x94e63ff7  com.apple.QuickTimeH264.component 7.6.6 (1729) /System/Library/QuickTime/QuickTimeH264.component/Contents/MacOS/QuickTimeH264
    0x94e64000 - 0x94ee4feb  com.apple.SearchKit 1.3.0 (1.3.0) <9E18AEA5-F4B4-8BE5-EEA9-818FC4F46FD9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framewo rk/Versions/A/SearchKit
    0x9523b000 - 0x9524dff7  com.apple.MultitouchSupport.framework 204.12.1 (204.12.1) <6BB58E90-21FA-C491-F0E4-54B69CCDBBC0> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSuppor t
    0x95254000 - 0x95259ff7  com.apple.OpenDirectory 10.6 (10.6) <92582807-E8F3-3DD9-EB42-4195CFB754A1> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x9525a000 - 0x9525bff7  com.apple.audio.units.AudioUnit 1.6.3 (1.6.3) <959DFFAE-A06B-7FF6-B713-B2076893EBBD> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x9525c000 - 0x95437ff3  libType1Scaler.dylib ??? (???) <944F686E-9CC2-03F0-A139-8F322F0AC49F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libType1Scaler.dylib
    0x95438000 - 0x9545efff  com.apple.DictionaryServices 1.1.1 (1.1.1) <02709230-9B37-C743-6E27-3FCFD18211F8> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryService s.framework/Versions/A/DictionaryServices
    0x9547d000 - 0x95480ff7  libCGXType.A.dylib 543.33.0 (compatibility 64.0.0) <69BE578C-A364-A150-35E3-53EE00F56F05> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libCGXType.A.dylib
    0x95481000 - 0x954beff7  com.apple.SystemConfiguration 1.10.2 (1.10.2) <830FED9E-3E24-004C-35D5-2C1273F79734> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
    0x954bf000 - 0x95510ff7  com.apple.HIServices 1.8.0 (???) <10C85B88-C6AF-91DB-2546-34661BA35AC5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices .framework/Versions/A/HIServices
    0x95511000 - 0x955baff7  com.apple.CFNetwork 454.9.4 (454.9.4) <2F8B5BA5-099F-6CDA-F500-4CA188BBCDBC> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwork.framewo rk/Versions/A/CFNetwork
    0x955bb000 - 0x9564dfe3  com.apple.print.framework.PrintCore 6.2 (312.5) <7729B4D7-D661-D669-FA7E-510F93F685A6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore. framework/Versions/A/PrintCore
    0x9564e000 - 0x95947fef  com.apple.QuickTime 7.6.6 (1729) <4C99ED7D-5A4B-E41E-602D-2D01A99168CD> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x95948000 - 0x95983feb  libFontRegistry.dylib ??? (???) <F50A60E1-3757-D007-A20D-A5504C17334C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontRegistry.dylib
    0x9600a000 - 0x96015ff7  libCSync.A.dylib 543.33.0 (compatibility 64.0.0) <F914F427-98EA-98BC-923D-47274A90D441> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libCSync.A.dylib
    0x96051000 - 0x960ecff7  com.apple.ApplicationServices.ATS 4.2 (???) <3BEB7210-4C85-7309-B22D-695765526524> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/ATS
    0x960ed000 - 0x9613afeb  com.apple.DirectoryService.PasswordServerFramework 6.0 (6.0) <BF66BA5D-BBC8-78A5-DBE2-F9DE3DD1D775> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordServer
    0x9613b000 - 0x9617eff7  libGLU.dylib ??? (???) <CE02968E-930D-E63B-7B21-B87205F8B19A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x9617f000 - 0x96188ff7  com.apple.DiskArbitration 2.3 (2.3) <E9C40767-DA6A-6CCB-8B00-2D5706753000> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x96189000 - 0x96327feb  com.apple.JavaScriptCore 6531.22 (6531.22.5) <3FB9AF5B-17DD-D4C8-C7B1-4F79B404496E> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x96328000 - 0x96389fe7  com.apple.CoreText 3.1.0 (???) <1372DABE-F183-DD03-03C2-64B2464A4FD5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreText.f ramework/Versions/A/CoreText
    0x963ff000 - 0x96448fe7  libTIFF.dylib ??? (???) <E45B169E-253E-E865-1501-97777D2702F2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libTIFF.dylib
    0x96449000 - 0x96575fff  com.apple.audio.toolbox.AudioToolbox 1.6.3 (1.6.3) <F0D7256E-0914-8E77-E37B-9720430422AB> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x96576000 - 0x96582ff7  libkxld.dylib ??? (???) <13F26BB6-C2F7-9D74-933E-09AD8B509ECD> /usr/lib/system/libkxld.dylib
    0x9658e000 - 0x96647fe7  libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <16CEF8E8-8C9A-94CD-EF5D-05477844C005> /usr/lib/libsqlite3.dylib
    0x9668f000 - 0x96790fe7  libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <B4C5CD68-405D-0F1B-59CA-5193D463D0EF> /usr/lib/libxml2.2.dylib
    0x96791000 - 0x9679bffb  com.apple.speech.recognition.framework 3.11.1 (3.11.1) <EC0E69C8-A121-70E8-43CF-E6FC4C7779EC> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.frame work/Versions/A/SpeechRecognition
    0x96845000 - 0x968bffef  com.apple.audio.CoreAudio 3.2.2 (3.2.2) <1F97B48A-327B-89CC-7C01-3865179716E0> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x96a2e000 - 0x96a52ff7  libJPEG.dylib ??? (???) <EDA86712-F49C-760C-BE55-9B899A4A5D1B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libJPEG.dylib
    0x96a53000 - 0x96a88ff7  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <458E819A-4E3F-333E-28CE-671281B318D3> /usr/lib/libcups.2.dylib
    0x96a89000 - 0x96a9dffb  com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <57DD5458-4F24-DA7D-0927-C3321A65D743> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynt hesis.framework/Versions/A/SpeechSynthesis
    0x96a9e000 - 0x96b92ff7  libiconv.2.dylib 7.0.0 (compatibility 7.0.0) <9EC28185-D26F-533F-90C4-FBAA13A15947> /usr/lib/libiconv.2.dylib
    0x96b93000 - 0x96bf7ffb  com.apple.htmlrendering 72 (1.1.4) <4D451A35-FAB6-1288-71F6-F24A4B6E2371> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering.framework /Versions/A/HTMLRendering
    0x96c68000 - 0x96c6bff7  libCoreVMClient.dylib ??? (???) <98CB96B1-85FE-25AF-AB19-ED061912FC3E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
    0x96c6c000 - 0x96c79ff7  com.apple.NetFS 3.2.1 (3.2.1) <5E61A00B-FA16-9D99-A064-47BDC5BC9A2B> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x96cb3000 - 0x96dbfff7  libGLProgrammability.dylib ??? (???) <CA0A975B-2BEE-44E7-CFA6-8105CFE6FE00> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dyl ib
    0x96dc0000 - 0x96ddbff7  libPng.dylib ??? (???) <929FE8EE-277D-F6EB-D672-E6F4CEBF1504> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libPng.dylib
    0x96def000 - 0x96df2ffb  com.apple.help 1.3.1 (41) <67F1F424-3983-7A2A-EC21-867BE838E90B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions /A/Help
    0x96df3000 - 0x96ea3fe3  com.apple.QuickTimeImporters.component 7.6.6 (1729) <6C2372BA-69D9-E713-902F-95E16FD18EFD> /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTimeImporters
    0x96f80000 - 0x97072ff7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <7482933B-4AF6-ED55-AD72-4FBD1E134958> /usr/lib/libcrypto.0.9.8.dylib
    0x97073000 - 0x970b4ff7  libRIP.A.dylib 543.33.0 (compatibility 64.0.0) <C6E50C7E-EBEE-32AF-FF07-8E325E21A838> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libRIP.A.dylib
    0x970b5000 - 0x973d5feb  com.apple.CoreServices.CarbonCore 861.6 (861.6) <D3D5D9F1-01ED-DCAD-6AA9-4ABE60C7A112> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore
    0x973d6000 - 0x973d6ff7  com.apple.vecLib 3.6 (vecLib 3.6) <7362077A-890F-3AEF-A8AB-22247B10E106> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x975b8000 - 0x975befff  com.apple.CommonPanels 1.2.4 (91) <2438AF5D-067B-B9FD-1248-2C9987F360BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/ Versions/A/CommonPanels
    0x97619000 - 0x97627fe7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <82B2C254-6F8D-7BEA-4C18-038E90CAE19B> /usr/lib/libz.1.dylib
    0x97628000 - 0x97646ff7  com.apple.CoreVideo 1.6.1 (45.4) <E0DF044D-BF31-42CE-B690-FD1FCE07E64A> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x9774e000 - 0x9869ffe7  com.apple.QuickTimeComponents.component 7.6.6 (1729) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTimeComponent s
    0x986ac000 - 0x986b3ff3  com.apple.print.framework.Print 6.1 (237.1) <97AB70B6-C653-212F-CFD3-E3816D0F5C22> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Version s/A/Print
    0x98723000 - 0x98743fe7  libresolv.9.dylib 40.0.0 (compatibility 1.0.0) <03019DD7-993D-AC88-6636-179F92F315C4> /usr/lib/libresolv.9.dylib
    0x9891e000 - 0x98925ff7  com.apple.agl 3.0.12 (AGL-3.0.12) <6BF89127-C18C-27A9-F94A-981836A822FE> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x9892d000 - 0x98deaffb  com.apple.VideoToolbox 0.484.5 (484.5) <DA9B4FA8-B91C-43AC-1D84-0BFF46BB5BCE> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0x98e44000 - 0x98f72fe7  com.apple.CoreData 102.1 (251) <E6A457F0-A0A3-32CD-6C69-6286E7C0F063> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x98f9e000 - 0x98fbafe3  com.apple.openscripting 1.3.1 (???) <DA16DE48-59F4-C94B-EBE3-7FAF772211A2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework /Versions/A/OpenScripting
    0x98fbb000 - 0x98fbfff7  libGFXShared.dylib ??? (???) <286F466C-2856-B579-B87F-4E9A35C80263> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
    0x98fc0000 - 0x99165feb  libSystem.B.dylib 125.0.1 (compatibility 1.0.0) <06A5336A-A6F6-4E62-F55F-4909A64631C2> /usr/lib/libSystem.B.dylib
    0x99166000 - 0x9916aff7  libGIF.dylib ??? (???) <03880BA1-7A86-0F2B-617A-C66B1D05DD70> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libGIF.dylib
    0x991bb000 - 0x99296fe7  com.apple.DesktopServices 1.5.5 (1.5.5) <ECEDFDF2-C40E-8DF0-F8FC-249CCA762E62> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopService sPriv
    0x99297000 - 0x99308ff7  com.apple.AppleVAFramework 4.8.11 (4.8.11) <BDDDFA36-4B53-4B57-B3D4-427DA8226A80> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x9930a000 - 0x9957affb  com.apple.Foundation 6.6.2 (751.21) <DA7A173A-4435-ECD6-F4AF-977D722FD2F7> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x99598000 - 0x99630fe7  edu.mit.Kerberos 6.5.9 (6.5.9) <73EC847F-FF44-D542-2AD5-97F6C8D48F0B> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x99631000 - 0x996cefe3  com.apple.LaunchServices 362.1 (362.1) <885D8567-9E40-0105-20BC-42C7FF657583> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.fr amework/Versions/A/LaunchServices
    0x996cf000 - 0x996cfff7  com.apple.Cocoa 6.6 (???) <EA27B428-5904-B00B-397A-185588698BCC> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0xb0000000 - 0xb0004fd8  com.apple.carbonframeworktemplate 1.1 (1.1.0) /Applications/Adobe Dreamweaver CS3/Dreamweaver.app/Contents/Frameworks/ahclient.framework/Versions/A/ahclient
    0xba900000 - 0xba916ff7  libJapaneseConverter.dylib 49.0.0 (compatibility 1.0.0) <4FB5CEEB-8D3E-8C57-1718-81D7CAFBFE69> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0xbab00000 - 0xbab21fe7  libKoreanConverter.dylib 49.0.0 (compatibility 1.0.0) <A23F9980-5CC8-A44D-6FD6-DBFCBFF4FF28> /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
    0xffff0000 - 0xffff1fff  libSystem.B.dylib ??? (???) <06A5336A-A6F6-4E62-F55F-4909A64631C2> /usr/lib/libSystem.B.dylib
    Model: MacBookPro3,1, BootROM MBP31.0070.B07, 2 processors, Intel Core 2 Duo, 2.4 GHz, 4 GB, SMC 1.16f11
    Graphics: NVIDIA GeForce 8600M GT, GeForce 8600M GT, PCIe, 256 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x168C, 0x87), Atheros 5416: 2.0.19.10
    Bluetooth: Version 2.3.1f4, 2 service, 19 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    PCI Card: pci168c,24, sppci_othernetwork, PCI Slot 5
    Serial ATA Device: Hitachi HTS545050B9A300, 465.76 GB
    Parallel ATA Device: HL-DT-ST DVDRW  GSA-S10N
    USB Device: PROExpress-7, 0x11b0  (ATECH FLASH TECHNOLOGY), 0x6138, 0xfa300000
    USB Device: Hub, 0x0424  (SMSC), 0x2504, 0xfd100000
    USB Device: iPhone, 0x05ac  (Apple Inc.), 0x1292, 0xfd110000
    USB Device: Built-in iSight, 0x05ac  (Apple Inc.), 0x8502, 0xfd400000
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac  (Apple Inc.), 0x021a, 0x5d200000
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0x5d100000
    USB Device: USB Receiver, 0x046d  (Logitech Inc.), 0xc526, 0x1a200000
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x8205, 0x1a100000

    Unfortunately you cannot roll back updates with OSX.  Because it is so recent and you say you ran the updates recently I am wondering whether something in the latest 10.6.3 update affected the CS3 suite.  You can try repairing system permissions from the install disc and trashing the permissions file (look in your user library->Preferences folder and it is the .plist file with Dreamweaver in the name).
    Outside of that my fear is that you would have to run the CS3 Clean Script http://www.adobe.com/support/contact/cs3clean.html and then re-install.  Although that would clear all remnants from your system.  Someone had posted not too long ago the location where the site definitions are stored.  I will see if I can find that for a worst case scenario or maybe someone else can shed some light on finding that information quicker.

  • Dreamweaver CS5 Frequent Crash on Mac OS X 10.8 Mountain Lion

    Hi,
    We recently purchased a new Mac Pro for our web designer. It came with Mac OS X 10.8 Mountain Lion, and we installed Adobe CreativeSuite 5 on the computer and applied all the updates. Ever since, she's been having very frequent random crashes from Dreamweaver and Bridge. It can happen anytime. Sometimes while she's saving, sometimgs just moments after started up. I've included the crash log below, and hoping that someone might be able to shed some light on why it's crashing and how I can remedy the problem.
    Thanks.
    Process:         Dreamweaver [587]
    Path:            /Applications/Adobe Dreamweaver CS5/Adobe Dreamweaver CS5.app/Contents/MacOS/Dreamweaver
    Identifier:      com.adobe.dreamweaver-11.0
    Version:         11.0.4.4993 (11.0.4)
    Code Type:       X86 (Native)
    Parent Process:  launchd [168]
    User ID:         502
    Date/Time:       2013-01-23 11:47:07.377 -0800
    OS Version:      Mac OS X 10.8 (12A269)
    Report Version:  10
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x00000000441f0000
    VM Regions Near 0x441f0000:
        MALLOC_LARGE (reused)  0000000043b00000-0000000043d10000 [ 2112K] rw-/rwx SM=PRV 
    -->
        MALLOC_TINY            0000000044200000-0000000044300000 [ 1024K] rw-/rwx SM=PRV 
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.adobe.dreamweaver-11.0              0x000dbb24 TitanSelectionManager::GetSelection(TitanSelection&) + 68
    1   com.adobe.dreamweaver-11.0              0x000dbba6 TitanSelectionManager::GetActiveSelection(ITitanSelection*&) + 28
    2   com.adobe.dreamweaver-11.0              0x0006e865 TitanApp::GetSelectedDoc(ITitanSelectionManager*) + 81
    3   com.adobe.dreamweaver-11.0              0x00333e5b DWPanel::GrayOutFloater(bool, DWPanel::GrayOutReason) + 143
    4   com.adobe.dreamweaver-11.0              0x00336fc3 DWPanelManager::NotifyPanelsOfViewFocusChange(int, int) + 321
    5   com.adobe.dreamweaver-11.0              0x000f14e5 TitanView::OnSetFocus(CWnd*) + 425
    6   com.adobe.dreamweaver-11.0              0x00e01967 CImplBase::BeTargetImpl() + 87
    7   com.adobe.dreamweaver-11.0              0x00d6421d LCommander::ForceTargetSwitch(LCommander*) + 237
    8   com.adobe.dreamweaver-11.0              0x00d64358 LCommander::SwitchTarget(LCommander*) + 120
    9   com.adobe.dreamweaver-11.0              0x00e0518b CImplBase::SetFocusImpl(CImplBase*) + 283
    10  com.adobe.dreamweaver-11.0              0x00df7aa6 CWnd::SetFocus() + 38
    11  com.adobe.dreamweaver-11.0              0x0006c75b MMDocumentFrame::OnSetFocus(CWnd*) + 33
    12  com.adobe.dreamweaver-11.0              0x000ad997 TitanFrame::OnSetFocus(CWnd*) + 231
    13  com.adobe.dreamweaver-11.0              0x00e01997 CImplBase::BeTargetImpl() + 135
    14  com.adobe.dreamweaver-11.0              0x00d6421d LCommander::ForceTargetSwitch(LCommander*) + 237
    15  com.adobe.dreamweaver-11.0              0x00d64358 LCommander::SwitchTarget(LCommander*) + 120
    16  com.adobe.dreamweaver-11.0              0x00e0518b CImplBase::SetFocusImpl(CImplBase*) + 283
    17  com.adobe.dreamweaver-11.0              0x00df742c CWnd::OnActivate(unsigned int, CWnd*, int) + 76
    18  com.adobe.dreamweaver-11.0              0x00d7ba61 CFrameWnd::OnActivate(unsigned int, CWnd*, int) + 49
    19  com.adobe.dreamweaver-11.0              0x000b4404 TitanFrame::OnActivate(unsigned int, CWnd*, int) + 218
    20  com.adobe.dreamweaver-11.0              0x00df8594 CWnd::OnWndMsg(unsigned int, unsigned int, long, long*) + 2612
    21  com.adobe.dreamweaver-11.0              0x00df2fc9 CWnd::WindowProc(unsigned int, unsigned int, long) + 57
    22  com.adobe.dreamweaver-11.0              0x00df2ec8 CWnd::WinSendMessage(unsigned int, unsigned int, long) + 56
    23  com.adobe.dreamweaver-11.0              0x00d6733d UMFC2PPDesktop::ReorderDeskWindow(LWindow*, OpaqueWindowPtr*, bool) + 717
    24  com.adobe.dreamweaver-11.0              0x00e016b7 CImplBase::SetWindowPos(CImplBase*, int, int, int, int, unsigned int) + 183
    25  com.adobe.dreamweaver-11.0              0x00df2c0a CWnd::BringWindowToTop() + 74
    26  com.adobe.dreamweaver-11.0              0x000bc04b TitanFrameManager::ActivateFrame(CFrameWnd*) + 193
    27  com.adobe.dreamweaver-11.0              0x000bd945 TitanFrameManager::DestroyFrame(TitanFrame*) + 719
    28  com.adobe.dreamweaver-11.0              0x000b4655 TitanFrame::OnClose() + 417
    29  com.adobe.dreamweaver-11.0              0x00df7e13 CWnd::OnWndMsg(unsigned int, unsigned int, long, long*) + 691
    30  com.adobe.dreamweaver-11.0              0x00df2fc9 CWnd::WindowProc(unsigned int, unsigned int, long) + 57
    31  com.adobe.dreamweaver-11.0              0x00df2ec8 CWnd::WinSendMessage(unsigned int, unsigned int, long) + 56
    32  com.adobe.dreamweaver-11.0              0x00d87b7d CMDIContainerWnd::OnClose() + 141
    33  com.adobe.dreamweaver-11.0              0x00e3fd2c LWindow::ObeyCommand(long, void*) + 28
    34  com.adobe.dreamweaver-11.0              0x00d7af8f CFrameWndImpl::ObeyCommand(long, void*) + 31
    35  com.adobe.dreamweaver-11.0              0x00d63c39 LCommander::ProcessCommand(long, void*) + 73
    36  com.adobe.dreamweaver-11.0              0x00db2e2f CWindowEventHandlers::Close(OpaqueEventHandlerCallRef*, OpaqueEventRef*) + 95
    37  com.adobe.dreamweaver-11.0              0x00e9e4de LEventHandler::EventHandlerCallback(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 32
    38  com.apple.HIToolbox                     0x907f10cb _InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) + 36
    39  com.apple.HIToolbox                     0x90678cd4 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1343
    40  com.apple.HIToolbox                     0x906780c0 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 430
    41  com.apple.HIToolbox                     0x90677f0a SendEventToEventTargetWithOptions + 94
    42  com.apple.HIToolbox                     0x907fb144 SendWindowEvent(OpaqueWindowPtr*, unsigned long, double, Point*, unsigned long, short, unsigned long) + 230
    43  com.apple.HIToolbox                     0x907fbe5e GenerateWindowButtonClickAction(OpaqueWindowPtr*, Point, unsigned long, short, unsigned long, unsigned long) + 95
    44  com.apple.HIToolbox                     0x9068cec6 HandleWindowEvent(OpaqueEventRef*) + 2047
    45  com.apple.HIToolbox                     0x90664191 StandardWindowEventHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 110
    46  com.apple.HIToolbox                     0x907f10cb _InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) + 36
    47  com.apple.HIToolbox                     0x90678cd4 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1343
    48  com.apple.HIToolbox                     0x906780c0 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 430
    49  com.apple.HIToolbox                     0x9068bf8d SendEventToEventTarget + 88
    50  com.apple.HIToolbox                     0x907fc032 SendEventFromMouseDown(OpaqueWindowPtr*, unsigned long, OpaqueEventRef*) + 167
    51  com.apple.HIToolbox                     0x907fc3d4 HandleWindowClick(OpaqueWindowPtr*, Point, short, unsigned long, OpaqueEventRef*) + 540
    52  com.apple.HIToolbox                     0x907fba03 HandleMouseEvent(OpaqueEventHandlerCallRef*, OpaqueEventRef*) + 826
    53  com.apple.HIToolbox                     0x90664178 StandardWindowEventHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 85
    54  com.apple.HIToolbox                     0x907f10cb _InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) + 36
    55  com.apple.HIToolbox                     0x90678cd4 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1343
    56  com.apple.HIToolbox                     0x906780c0 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 430
    57  com.apple.HIToolbox                     0x9066371a CallNextEventHandler + 84
    58  com.adobe.dreamweaver-11.0              0x00db332d CWindowEventHandlers::HandleMouseDown(OpaqueEventHandlerCallRef*, OpaqueEventRef*) + 317
    59  com.adobe.dreamweaver-11.0              0x00e9e4de LEventHandler::EventHandlerCallback(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 32
    60  com.apple.HIToolbox                     0x907f10cb _InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) + 36
    61  com.apple.HIToolbox                     0x90678cd4 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1343
    62  com.apple.HIToolbox                     0x906780c0 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 430
    63  com.apple.HIToolbox                     0x9068bf8d SendEventToEventTarget + 88
    64  com.apple.HIToolbox                     0x906abd16 ToolboxEventDispatcherHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 2188
    65  com.apple.HIToolbox                     0x9067917f DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 2538
    66  com.apple.HIToolbox                     0x906780c0 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 430
    67  com.apple.HIToolbox                     0x9068bf8d SendEventToEventTarget + 88
    68  com.apple.HIToolbox                     0x907f07c7 ToolboxEventDispatcher + 82
    69  com.apple.HIToolbox                     0x9080164d GetOrPeekEvent + 507
    70  com.apple.HIToolbox                     0x90800d6c GetNextEventMatchingMask + 152
    71  com.apple.HIToolbox                     0x90800adc WNEInternal + 253
    72  com.apple.HIToolbox                     0x908009d7 WaitNextEvent + 49
    73  com.adobe.dreamweaver-11.0              0x0006d770 TitanApp::PumpMessages(int, unsigned long) + 42
    74  com.adobe.dreamweaver-11.0              0x008d927c SiteMgr::RefreshSiteCache() + 938
    75  com.adobe.dreamweaver-11.0              0x008db2f4 SiteMgr::LoadCacheFromFile() + 1570
    76  com.adobe.dreamweaver-11.0              0x008db53c SiteMgr::SiteCacheUpToDate(int, CString const&) + 218
    77  com.adobe.dreamweaver-11.0              0x008db933 SiteMgr::GetAssetFiles(std::set<SiteFile*, less_by_file_name, std::allocator<SiteFile*> >&, CStringList const&) + 59
    78  com.adobe.dreamweaver-11.0              0x0031ab76 CAssetListView::RebuildCatalogLists(SiteMgr*) + 154
    79  com.adobe.dreamweaver-11.0              0x0031f655 CAssetListView::RebuildAssetList(int, CAssets*) + 359
    80  com.adobe.dreamweaver-11.0              0x0032605b AssetPaletteView::RefreshCatalogList(int) + 203
    81  com.adobe.dreamweaver-11.0              0x003276d4 AssetPaletteView::NewDocRoot(unsigned short const*) + 350
    82  com.adobe.dreamweaver-11.0              0x003277a3 AssetPaletteView::OnSelectionChange(unsigned long, ITitanSelection*) + 127
    83  com.adobe.dreamweaver-11.0              0x00320825 AssetPaletteFrame::OnSelectionChange(unsigned long, ITitanSelection*) + 109
    84  com.adobe.dreamweaver-11.0              0x000dbee6 TitanSelectionManager::NotifyUsers(unsigned long) + 602
    85  com.adobe.dreamweaver-11.0              0x000dc220 TitanSelectionManager::SyncSelectionUsers(bool) + 360
    86  com.adobe.dreamweaver-11.0              0x000db447 TitanSelectionManager::SyncSelectionUsers() + 25
    87  com.adobe.dreamweaver-11.0              0x000b471c TitanFrame::OnClose() + 616
    88  com.adobe.dreamweaver-11.0              0x00df7e13 CWnd::OnWndMsg(unsigned int, unsigned int, long, long*) + 691
    89  com.adobe.dreamweaver-11.0              0x00df2fc9 CWnd::WindowProc(unsigned int, unsigned int, long) + 57
    90  com.adobe.dreamweaver-11.0              0x00df2ec8 CWnd::WinSendMessage(unsigned int, unsigned int, long) + 56
    91  com.adobe.dreamweaver-11.0              0x00d87b7d CMDIContainerWnd::OnClose() + 141
    92  com.adobe.dreamweaver-11.0              0x00e3fd2c LWindow::ObeyCommand(long, void*) + 28
    93  com.adobe.dreamweaver-11.0              0x00d7af8f CFrameWndImpl::ObeyCommand(long, void*) + 31
    94  com.adobe.dreamweaver-11.0              0x00d63c39 LCommander::ProcessCommand(long, void*) + 73
    95  com.adobe.dreamweaver-11.0              0x00db2e2f CWindowEventHandlers::Close(OpaqueEventHandlerCallRef*, OpaqueEventRef*) + 95
    96  com.adobe.dreamweaver-11.0              0x00e9e4de LEventHandler::EventHandlerCallback(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 32
    97  com.apple.HIToolbox                     0x907f10cb _InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) + 36
    98  com.apple.HIToolbox                     0x90678cd4 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1343
    99  com.apple.HIToolbox                     0x906780c0 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 430
    100 com.apple.HIToolbox                     0x90677f0a SendEventToEventTargetWithOptions + 94
    101 com.apple.HIToolbox                     0x907fb144 SendWindowEvent(OpaqueWindowPtr*, unsigned long, double, Point*, unsigned long, short, unsigned long) + 230
    102 com.apple.HIToolbox                     0x907fbe5e GenerateWindowButtonClickAction(OpaqueWindowPtr*, Point, unsigned long, short, unsigned long, unsigned long) + 95
    103 com.apple.HIToolbox                     0x9068cec6 HandleWindowEvent(OpaqueEventRef*) + 2047
    104 com.apple.HIToolbox                     0x90664191 StandardWindowEventHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 110
    105 com.apple.HIToolbox                     0x907f10cb _InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) + 36
    106 com.apple.HIToolbox                     0x90678cd4 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1343
    107 com.apple.HIToolbox                     0x906780c0 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 430
    108 com.apple.HIToolbox                     0x9068bf8d SendEventToEventTarget + 88
    109 com.apple.HIToolbox                     0x907fc032 SendEventFromMouseDown(OpaqueWindowPtr*, unsigned long, OpaqueEventRef*) + 167
    110 com.apple.HIToolbox                     0x907fc3d4 HandleWindowClick(OpaqueWindowPtr*, Point, short, unsigned long, OpaqueEventRef*) + 540
    111 com.apple.HIToolbox                     0x907fba03 HandleMouseEvent(OpaqueEventHandlerCallRef*, OpaqueEventRef*) + 826
    112 com.apple.HIToolbox                     0x90664178 StandardWindowEventHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 85
    113 com.apple.HIToolbox                     0x907f10cb _InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) + 36
    114 com.apple.HIToolbox                     0x90678cd4 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1343
    115 com.apple.HIToolbox                     0x906780c0 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 430
    116 com.apple.HIToolbox                     0x9066371a CallNextEventHandler + 84
    117 com.adobe.dreamweaver-11.0              0x00db332d CWindowEventHandlers::HandleMouseDown(OpaqueEventHandlerCallRef*, OpaqueEventRef*) + 317
    118 com.adobe.dreamweaver-11.0              0x00e9e4de LEventHandler::EventHandlerCallback(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 32
    119 com.apple.HIToolbox                     0x907f10cb _InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) + 36
    120 com.apple.HIToolbox                     0x90678cd4 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1343
    121 com.apple.HIToolbox                     0x906780c0 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 430
    122 com.apple.HIToolbox                     0x9068bf8d SendEventToEventTarget + 88
    123 com.apple.HIToolbox                     0x906abd16 ToolboxEventDispatcherHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 2188
    124 com.apple.HIToolbox                     0x9067917f DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 2538
    125 com.apple.HIToolbox                     0x906780c0 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 430
    126 com.apple.HIToolbox                     0x9068bf8d SendEventToEventTarget + 88
    127 com.apple.HIToolbox                     0x907f07c7 ToolboxEventDispatcher + 82
    128 com.apple.HIToolbox                     0x907f0689 RunApplicationEventLoop + 240
    129 com.adobe.dreamweaver-11.0              0x00de7035 CRealApp::Run() + 405
    130 com.adobe.dreamweaver-11.0              0x00db6fe3 main + 339
    131 com.adobe.dreamweaver-11.0              0x00003276 start + 54
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x96a649ae kevent + 10
    1   libdispatch.dylib                       0x92a42cc5 _dispatch_mgr_invoke + 993
    2   libdispatch.dylib                       0x92a427fd _dispatch_mgr_thread + 53
    Thread 2:
    0   libsystem_kernel.dylib                  0x96a638e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9590f289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x9599cb08 pthread_cond_wait + 48
    3   com.adobe.amt.services                  0x11413126 AMTConditionLock::LockWhenCondition(int) + 46
    4   com.adobe.amt.services                  0x1140bdb0 _AMTThreadedPCDService::PCDThreadWorker(_AMTThreadedPCDService*) + 116
    5   com.adobe.amt.services                  0x1141318c AMTThread::Worker(void*) + 24
    6   libsystem_c.dylib                       0x9590a557 _pthread_start + 344
    7   libsystem_c.dylib                       0x958f4cee thread_start + 34
    Thread 3:
    0   libsystem_kernel.dylib                  0x96a63c72 __semwait_signal + 10
    1   libsystem_c.dylib                       0x95994a6d nanosleep$UNIX2003 + 189
    2   com.apple.carbonbundletemplate          0x1691df5b ScObjects::Thread::sleep(unsigned int) + 59
    3   com.apple.carbonbundletemplate          0x169184e3 ScObjects::BridgeTalkThread::run() + 163
    4   com.apple.carbonbundletemplate          0x1691e068 ScObjects::Thread::go(void*) + 168
    5   libsystem_c.dylib                       0x9590a557 _pthread_start + 344
    6   libsystem_c.dylib                       0x958f4cee thread_start + 34
    Thread 4:
    0   libsystem_kernel.dylib                  0x96a63b3e __recvfrom + 10
    1   libsystem_c.dylib                       0x95994bd7 recv$UNIX2003 + 54
    2   ServiceManager-Launcher.dylib           0x0ab196cf Invoke + 54887
    3   ServiceManager-Launcher.dylib           0x0ab1876e Invoke + 50950
    4   ServiceManager-Launcher.dylib           0x0ab1761f Invoke + 46519
    5   ServiceManager-Launcher.dylib           0x0ab17671 Invoke + 46601
    6   ServiceManager-Launcher.dylib           0x0ab176fb Invoke + 46739
    7   ServiceManager-Launcher.dylib           0x0ab11afe Invoke + 23190
    8   ServiceManager-Launcher.dylib           0x0ab11ce7 Invoke + 23679
    9   ServiceManager-Launcher.dylib           0x0ab128c7 Invoke + 26719
    10  ServiceManager-Launcher.dylib           0x0ab129c5 Invoke + 26973
    11  ServiceManager-Launcher.dylib           0x0ab15db0 Invoke + 40264
    12  ServiceManager-Launcher.dylib           0x0ab16059 Invoke + 40945
    13  ServiceManager-Launcher.dylib           0x0ab16687 Invoke + 42527
    14  ServiceManager-Launcher.dylib           0x0ab16884 Invoke + 43036
    15  ServiceManager-Launcher.dylib           0x0ab08826 Login + 1654
    16  ServiceManager-Launcher.dylib           0x0ab09c71 Login + 6849
    17  ServiceManager-Launcher.dylib           0x0ab16df3 Invoke + 44427
    18  ServiceManager-Launcher.dylib           0x0ab19341 Invoke + 53977
    19  libsystem_c.dylib                       0x9590a557 _pthread_start + 344
    20  libsystem_c.dylib                       0x958f4cee thread_start + 34
    Thread 5:
    0   libsystem_kernel.dylib                  0x96a638e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9590f289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x9599cb08 pthread_cond_wait + 48
    3   com.adobe.adobeswfl                     0x1a2111af APXGetHostAPI + 2599055
    4   com.adobe.adobeswfl                     0x19faab0f APXGetHostAPI + 82415
    5   com.adobe.adobeswfl                     0x1a21129c APXGetHostAPI + 2599292
    6   com.adobe.adobeswfl                     0x1a211307 APXGetHostAPI + 2599399
    7   com.adobe.adobeswfl                     0x1a211426 APXGetHostAPI + 2599686
    8   libsystem_c.dylib                       0x9590a557 _pthread_start + 344
    9   libsystem_c.dylib                       0x958f4cee thread_start + 34
    Thread 6:
    0   libsystem_kernel.dylib                  0x96a638e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9590f289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x9599cb08 pthread_cond_wait + 48
    3   com.adobe.adobeswfl                     0x1a2111af APXGetHostAPI + 2599055
    4   com.adobe.adobeswfl                     0x19faab0f APXGetHostAPI + 82415
    5   com.adobe.adobeswfl                     0x1a21129c APXGetHostAPI + 2599292
    6   com.adobe.adobeswfl                     0x1a211307 APXGetHostAPI + 2599399
    7   com.adobe.adobeswfl                     0x1a211426 APXGetHostAPI + 2599686
    8   libsystem_c.dylib                       0x9590a557 _pthread_start + 344
    9   libsystem_c.dylib                       0x958f4cee thread_start + 34
    Thread 7:
    0   libsystem_kernel.dylib                  0x96a638e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9590f289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x9599cb08 pthread_cond_wait + 48
    3   com.adobe.adobeswfl                     0x1a2111af APXGetHostAPI + 2599055
    4   com.adobe.adobeswfl                     0x19faab0f APXGetHostAPI + 82415
    5   com.adobe.adobeswfl                     0x1a21129c APXGetHostAPI + 2599292
    6   com.adobe.adobeswfl                     0x1a211307 APXGetHostAPI + 2599399
    7   com.adobe.adobeswfl                     0x1a211426 APXGetHostAPI + 2599686
    8   libsystem_c.dylib                       0x9590a557 _pthread_start + 344
    9   libsystem_c.dylib                       0x958f4cee thread_start + 34
    Thread 8:
    0   libsystem_kernel.dylib                  0x96a638e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9590f289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x9599cb08 pthread_cond_wait + 48
    3   com.adobe.adobeswfl                     0x1a2111af APXGetHostAPI + 2599055
    4   com.adobe.adobeswfl                     0x19faab0f APXGetHostAPI + 82415
    5   com.adobe.adobeswfl                     0x1a21129c APXGetHostAPI + 2599292
    6   com.adobe.adobeswfl                     0x1a211307 APXGetHostAPI + 2599399
    7   com.adobe.adobeswfl                     0x1a211426 APXGetHostAPI + 2599686
    8   libsystem_c.dylib                       0x9590a557 _pthread_start + 344
    9   libsystem_c.dylib                       0x958f4cee thread_start + 34
    Thread 9:
    0   libsystem_kernel.dylib                  0x96a638e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9590f289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x9590f512 pthread_cond_timedwait_relative_np + 47
    3   com.adobe.adobeswfl                     0x1a211177 APXGetHostAPI + 2598999
    4   com.adobe.adobeswfl                     0x1a22c0ee APXGetHostAPI + 2709454
    5   com.adobe.adobeswfl                     0x1a21129c APXGetHostAPI + 2599292
    6   com.adobe.adobeswfl                     0x1a211307 APXGetHostAPI + 2599399
    7   com.adobe.adobeswfl                     0x1a211426 APXGetHostAPI + 2599686
    8   libsystem_c.dylib                       0x9590a557 _pthread_start + 344
    9   libsystem_c.dylib                       0x958f4cee thread_start + 34
    Thread 10:
    0   libsystem_kernel.dylib                  0x96a638e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9590f289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x9590f512 pthread_cond_timedwait_relative_np + 47
    3   com.adobe.adobeswfl                     0x1a211177 APXGetHostAPI + 2598999
    4   com.adobe.adobeswfl                     0x1a3884b8 APXGetHostAPI + 4135832
    5   com.adobe.adobeswfl                     0x1a21129c APXGetHostAPI + 2599292
    6   com.adobe.adobeswfl                     0x1a211307 APXGetHostAPI + 2599399
    7   com.adobe.adobeswfl                     0x1a211426 APXGetHostAPI + 2599686
    8   libsystem_c.dylib                       0x9590a557 _pthread_start + 344
    9   libsystem_c.dylib                       0x958f4cee thread_start + 34
    Thread 11:
    0   libsystem_kernel.dylib                  0x96a63c72 __semwait_signal + 10
    1   libsystem_c.dylib                       0x95994a6d nanosleep$UNIX2003 + 189
    2   libsystem_c.dylib                       0x95994936 usleep$UNIX2003 + 60
    3   com.adobe.dreamweaver-11.0              0x00b38c8b CodeViewTypingMonitorThread::MonitorThread() + 111
    4   com.adobe.dreamweaver-11.0              0x00b38d0b CodeViewTypingMonitorThread::tramp(void*) + 17
    5   libsystem_c.dylib                       0x9590a557 _pthread_start + 344
    6   libsystem_c.dylib                       0x958f4cee thread_start + 34
    Thread 12:
    0   libsystem_kernel.dylib                  0x96a638e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9590f220 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x959950ad pthread_cond_wait$UNIX2003 + 71
    3   com.apple.carbonbundletemplate          0x19b09939 MMNetIO::RequestProcessor<MMNetIO::FTPNetChannel, MMNetIO::FTPNetChannel, MMNetIO::NetIOException>::MutexState::Wait() + 49
    4   com.apple.carbonbundletemplate          0x19b09fdf MMNetIO::RequestProcessor<MMNetIO::FTPNetChannel, MMNetIO::FTPNetChannel, MMNetIO::NetIOException>::ProcessRequests() + 81
    5   com.apple.carbonbundletemplate          0x19b0a3a9 MMNetIO::RequestProcessor<MMNetIO::FTPNetChannel, MMNetIO::FTPNetChannel, MMNetIO::NetIOException>::RequestProcessorTrampoline(void*) + 23
    6   libsystem_c.dylib                       0x9590a557 _pthread_start + 344
    7   libsystem_c.dylib                       0x958f4cee thread_start + 34
    Thread 13:
    0   libsystem_kernel.dylib                  0x96a638e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9590f289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x9590f512 pthread_cond_timedwait_relative_np + 47
    3   com.apple.CoreServices.CarbonCore          0x964826b9 TSWaitOnConditionTimedRelative + 177
    4   com.apple.CoreServices.CarbonCore          0x96482190 TSWaitOnSemaphoreCommon + 272
    5   com.apple.CoreServices.CarbonCore          0x96482419 TSWaitOnSemaphoreRelative + 24
    6   com.apple.CoreServices.CarbonCore          0x964681af TimerThread + 324
    7   libsystem_c.dylib                       0x9590a557 _pthread_start + 344
    8   libsystem_c.dylib                       0x958f4cee thread_start + 34
    Thread 14:
    0   libsystem_kernel.dylib                  0x96a638e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9590f220 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x959950ad pthread_cond_wait$UNIX2003 + 71
    3   com.apple.carbonbundletemplate          0x19b09939 MMNetIO::RequestProcessor<MMNetIO::FTPNetChannel, MMNetIO::FTPNetChannel, MMNetIO::NetIOException>::MutexState::Wait() + 49
    4   com.apple.carbonbundletemplate          0x19b09fdf MMNetIO::RequestProcessor<MMNetIO::FTPNetChannel, MMNetIO::FTPNetChannel, MMNetIO::NetIOException>::ProcessRequests() + 81
    5   com.apple.carbonbundletemplate          0x19b0a3a9 MMNetIO::RequestProcessor<MMNetIO::FTPNetChannel, MMNetIO::FTPNetChannel, MMNetIO::NetIOException>::RequestProcessorTrampoline(void*) + 23
    6   libsystem_c.dylib                       0x9590a557 _pthread_start + 344
    7   libsystem_c.dylib                       0x958f4cee thread_start + 34
    Thread 15:
    0   libsystem_kernel.dylib                  0x96a638e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9590f220 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x959950ad pthread_cond_wait$UNIX2003 + 71
    3   com.apple.carbonbundletemplate          0x19b09939 MMNetIO::RequestProcessor<MMNetIO::FTPNetChannel, MMNetIO::FTPNetChannel, MMNetIO::NetIOException>::MutexState::Wait() + 49
    4   com.apple.carbonbundletemplate          0x19b09fdf MMNetIO::RequestProcessor<MMNetIO::FTPNetChannel, MMNetIO::FTPNetChannel, MMNetIO::NetIOException>::ProcessRequests() + 81
    5   com.apple.carbonbundletemplate          0x19b0a3a9 MMNetIO::RequestProcessor<MMNetIO::FTPNetChannel, MMNetIO::FTPNetChannel, MMNetIO::NetIOException>::RequestProcessorTrampoline(void*) + 23
    6   libsystem_c.dylib                       0x9590a557 _pthread_start + 344
    7   libsystem_c.dylib                       0x958f4cee thread_start + 34
    Thread 16:: com.apple.CoreAnimation.render-server
    0   libsystem_kernel.dylib                  0x96a617d2 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x96a60cb0 mach_msg + 68
    2   com.apple.QuartzCore                    0x90cb5e24 CA::Render::Server::server_thread(void*) + 441
    3   com.apple.QuartzCore                    0x90d46836 thread_fun + 29
    4   libsystem_c.dylib                       0x9590a557 _pthread_start + 344
    5   libsystem_c.dylib                       0x958f4cee thread_start + 34
    Thread 17:
    0   libsystem_kernel.dylib                  0x96a638e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9590f220 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x959950ad pthread_cond_wait$UNIX2003 + 71
    3   com.apple.carbonbundletemplate          0x19b09939 MMNetIO::RequestProcessor<MMNetIO::FTPNetChannel, MMNetIO::FTPNetChannel, MMNetIO::NetIOException>::MutexState::Wait() + 49
    4   com.apple.carbonbundletemplate          0x19b09fdf MMNetIO::RequestProcessor<MMNetIO::FTPNetChannel, MMNetIO::FTPNetChannel, MMNetIO::NetIOException>::ProcessRequests() + 81
    5   com.apple.carbonbundletemplate          0x19b0a3a9 MMNetIO::RequestProcessor<MMNetIO::FTPNetChannel, MMNetIO::FTPNetChannel, MMNetIO::NetIOException>::RequestProcessorTrampoline(void*) + 23
    6   libsystem_c.dylib                       0x9590a557 _pthread_start + 344
    7   libsystem_c.dylib                       0x958f4cee thread_start + 34
    Thread 18:
    0   libsystem_kernel.dylib                  0x96a638e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9590f220 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x959950ad pthread_cond_wait$UNIX2003 + 71
    3   com.apple.carbonbundletemplate          0x19b09939 MMNetIO::RequestProcessor<MMNetIO::FTPNetChannel, MMNetIO::FTPNetChannel, MMNetIO::NetIOException>::MutexState::Wait() + 49
    4   com.apple.carbonbundletemplate          0x19b09fdf MMNetIO::RequestProcessor<MMNetIO::FTPNetChannel, MMNetIO::FTPNetChannel, MMNetIO::NetIOException>::ProcessRequests() + 81
    5   com.apple.carbonbundletemplate          0x19b0a3a9 MMNetIO::RequestProcessor<MMNetIO::FTPNetChannel, MMNetIO::FTPNetChannel, MMNetIO::NetIOException>::RequestProcessorTrampoline(void*) + 23
    6   libsystem_c.dylib                       0x9590a557 _pthread_start + 344
    7   libsystem_c.dylib                       0x958f4cee thread_start + 34
    Thread 19:
    0   libsystem_kernel.dylib                  0x96a638e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9590f220 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x959950ad pthread_cond_wait$UNIX2003 + 71
    3   com.apple.carbonbundletemplate          0x19b09939 MMNetIO::RequestProcessor<MMNetIO::FTPNetChannel, MMNetIO::FTPNetChannel, MMNetIO::NetIOException>::MutexState::Wait() + 49
    4   com.apple.carbonbundletemplate          0x19b09fdf MMNetIO::RequestProcessor<MMNetIO::FTPNetChannel, MMNetIO::FTPNetChannel, MMNetIO::NetIOException>::ProcessRequests() + 81
    5   com.apple.carbonbundletemplate          0x19b0a3a9 MMNetIO::RequestProcessor<MMNetIO::FTPNetChannel, MMNetIO::FTPNetChannel, MMNetIO::NetIOException>::RequestProcessorTrampoline(void*) + 23
    6   libsystem_c.dylib                       0x9590a557 _pthread_start + 344
    7   libsystem_c.dylib                       0x958f4cee thread_start + 34
    Thread 20:
    0   libsystem_kernel.dylib                  0x96a638e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9590f220 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x959950ad pthread_cond_wait$UNIX2003 + 71
    3   com.apple.carbonbundletemplate          0x19b09939 MMNetIO::RequestProcessor<MMNetIO::FTPNetChannel, MMNetIO::FTPNetChannel, MMNetIO::NetIOException>::MutexState::Wait() + 49
    4   com.apple.carbonbundletemplate          0x19b09fdf MMNetIO::RequestProcessor<MMNetIO::FTPNetChannel, MMNetIO::FTPNetChannel, MMNetIO::NetIOException>::ProcessRequests() + 81
    5   com.apple.carbonbundletemplate          0x19b0a3a9 MMNetIO::RequestProcessor<MMNetIO::FTPNetChannel, MMNetIO::FTPNetChannel, MMNetIO::NetIOException>::RequestProcessorTrampoline(void*) + 23
    6   libsystem_c.dylib                       0x9590a557 _pthread_start + 344
    7   libsystem_c.dylib                       0x958f4cee thread_start + 34
    Thread 21:
    0   libsystem_kernel.dylib                  0x96a638e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9590f220 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x959950ad pthread_cond_wait$UNIX2003 + 71
    3   com.apple.carbonbundletemplate          0x19b09939 MMNetIO::RequestProcessor<MMNetIO::FTPNetChannel, MMNetIO::FTPNetChannel, MMNetIO::NetIOException>::MutexState::Wait() + 49
    4   com.apple.carbonbundletemplate          0x19b09fdf MMNetIO::RequestProcessor<MMNetIO::FTPNetChannel, MMNetIO::FTPNetChannel, MMNetIO::NetIOException>::ProcessRequests() + 81
    5   com.apple.carbonbundletemplate          0x19b0a3a9 MMNetIO::RequestProcessor<MMNetIO::FTPNetChannel, MMNetIO::FTPNetChannel, MMNetIO::NetIOException>::RequestProcessorTrampoline(void*) + 23
    6   libsystem_c.dylib                       0x9590a557 _pthread_start + 344
    7   libsystem_c.dylib                       0x958f4cee thread_start + 34
    Thread 22:
    0   libsystem_kernel.dylib                  0x96a640ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x9590d04c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x9590ce19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x958f4cca start_wqthread + 30
    Thread 23:
    0   libsystem_kernel.dylib                  0x96a640ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x9590d04c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x9590ce19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x958f4cca start_wqthread + 30
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x3790f8b0  ebx: 0x0917e254  ecx: 0x441f0000  edx: 0x3790f8b0
      edi: 0x00000000  esi: 0x0917e180  ebp: 0xbfffb578  esp: 0xbfffb560
       ss: 0x00000023  efl: 0x00010206  eip: 0x000dbb24   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0x441f0000
    Logical CPU: 0
    Binary Images:
        0x1000 -  0x12eefff +com.adobe.dreamweaver-11.0 (11.0.4.4993 - 11.0.4) <B4B6CF4B-EDAA-4A50-8399-7627CB70395D> /Applications/Adobe Dreamweaver CS5/Adobe Dreamweaver CS5.app/Contents/MacOS/Dreamweaver
    0x25ea000 -  0x25fffe4 +libChar16.dylib (1) <324CC7D8-DE80-7060-DF82-A6856C0A9E55> /Applications/Adobe Dreamweaver CS5/Adobe Dreamweaver CS5.app/Contents/MacOS/libChar16.dylib
    0x260e000 -  0x2627fe0 +libCoreTypes.dylib (1) <B91355B9-7B3D-87E5-511B-C5937B5D59A5> /Applications/Adobe Dreamweaver CS5/Adobe Dreamweaver CS5.app/Contents/MacOS/libCoreTypes.dylib
    0x2646000 -  0x2663fef +libCurl.dylib (1) <257E9435-5FF8-0CF9-85E8-B0BAD8F06CAE> /Applications/Adobe Dreamweaver CS5/Adobe Dreamweaver CS5.app/Contents/MacOS/libCurl.dylib
    0x2672000 -  0x2680ff6 +libZ.dylib (1) <A4C958A4-A792-B910-AA8F-3B821858F4D8> /Applications/Adobe Dreamweaver CS5/Adobe Dreamweaver CS5.app/Contents/MacOS/libZ.dylib
    0x2687000 -  0x2737ff7 +libCrypto.dylib (1) <DA63ACB6-43E8-9DDB-0771-C55DFC8A0718> /Applications/Adobe Dreamweaver CS5/Adobe Dreamweaver CS5.app/Contents/MacOS/libCrypto.dylib
    0x27de000 -  0x27ffffc +libSSL.dylib (1) <4CA87169-F680-0C3E-5769-092159669819> /Applications/Adobe Dreamweaver CS5/Adobe Dreamweaver CS5.app/Contents/MacOS/libSSL.dylib
    0x2816000 -  0x2817fff +libCocoa.dylib (1) <3004B895-BC77-14E2-3B6E-641E0305EDB9> /Applications/Adobe Dreamweaver CS5/Adobe Dreamweaver CS5.app/Contents/MacOS/libCocoa.dylib
    0x281c000 -  0x2a1cff7  com.apple.carbonframeworktemplate (1.0 - 1.0) <B60B0E92-44F6-4F40-A141-1846DEA597D6> /Applications/Adobe Dreamweaver CS5/Adobe Dreamweaver CS5.app/Contents/frameworks/Xerces.framework/Versions/A/Xerces
    0x2cce000 -  0x2cd8ffc  com.apple.carbonframeworktemplate (1.0 - 1.0) <8FD97D4F-1BBE-0CA8-88D4-0ED76DCFF2BE> /Applications/Adobe Dreamweaver CS5/Adobe Dreamweaver CS5.app/Contents/frameworks/NetIO.framework/Versions/A/NetIO
    0x2cee000 -  0x2cf2ffc +com.adobe.AdobeCrashReporter (3.0 - 3.0.20100302) <E6437929-0E69-8A56-E69F-F64305E82DD9> /Applications/Adobe Dreamweaver CS5/Adobe Dreamweaver CS5.app/Contents/frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCrashReporter
    0x2cf9000 -  0x2e0dfff +AdobeACE (1) <DD291A17-ECF4-FE20-5837-AC1F5BC76940> /Applications/Adobe Dreamweaver CS5/Adobe Dreamweaver CS5.app/Contents/frameworks/AdobeACE.framework/Versions/A/AdobeACE
    0x2e30000 -  0x3356fff +AdobeAGM (1) <9817824D-3BA9-4E26-3408-2A5ED351ED4B> /Applications/Adobe Dreamweaver CS5/Adobe Dreamweaver CS5.app/Contents/frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
    0x3497000 -  0x34b1fff +AdobeBIB (1) <A6522FAF-52BB-A3E0-F2F0-56C4E59C6C7C> /Applications/Adobe Dreamweaver CS5/Adobe Dreamweaver CS5.app/Contents/frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
    0x34ba000 -  0x34dbff7 +AdobeBIBUtils (1) <DF229ECB-1F43-204F-15BD-18C5601A531D> /Applications/Adobe Dreamweaver CS5/Adobe Dreamweaver CS5.app/Contents/frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
    0x34e7000 -  0x37d9ff7 +AdobeCoolType (1) <9FDD596D-9824-2BB9-5DA2-25DACAB6A324> /Applications/Adobe Dreamweaver CS5/Adobe Dreamweaver CS5.app/Contents/frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
    0x3861000 -  0x45a4fff +com.adobe.psl (AdobePSL 12.0.0.7524 - 12.0.0.7524) <CFBCB19A-03F7-D095-1F48-8D68F05A25C5> /Applications/Adobe Dreamweaver CS5/Adobe Dreamweaver CS5.app/Contents/frameworks/AdobePSL.framework/Versions/A/AdobePSL
    0x48e3000 -  0x4909ff6 +AdobeAXE8SharedExpat (0) <5848BBCE-3A3E-66EE-5527-97A96F0CA4CC> /Applications/Adobe Dreamweaver CS5/Adobe Dreamweaver CS5.app/Contents/frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8SharedExpa t
    0x491a000 -  0x4972ff7 +AdobeXMP (0) <73329999-C364-2451-6574-4D0277057D19> /Applications/Adobe Dreamweaver CS5/Adobe Dreamweaver CS5.app/Contents/frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
    0x4981000 -  0x5137fff +Fireworks (1) <13B35B4B-4C15-9A06-D16F-A01929CDAF9E> /Applications/Adobe Dreamweaver CS5/Adobe Dreamweaver CS5.app/Contents/frameworks/Fireworks.framework/Versions/A/Fireworks
    0x5a8d000 -  0x5c2cfe7 +com.adobe.owl (AdobeOwl version 3.0.89 - 3.0.89) <04CA525C-D4E0-DE62-BF07-D9EF6386AA58> /Applications/Adobe Dreamweaver CS5/Adobe Dreamweaver CS5.app/Contents/frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
    0x5c95000 -  0x5ce8ffb +com.adobe.headlights.LogSessionFramework (2.0.1.011) <4F2BFF03-01D2-A07D-E5E2-7F88D4C2DEC4> /Applications/Adobe Dreamweaver CS5/Adobe Dreamweaver CS5.app/Contents/frameworks/LogSession.framework/Versions/A/LogSession
    0x5d30000 -  0x5d96ffb +com.adobe.amtlib (amtlib 3.0.0.64 - 3.0.0.64) <DD471011-9120-1BC2-F1B5-D6FF09D0859F> /Applications/Adobe Dreamweaver CS5/Adobe Dreamweaver CS5.app/Contents/frameworks/amtlib.framework/Versions/A/amtlib
    0x5dc6000 -  0x5e93fe7 +AdobeAXEDOMCore (0) <F76D74DC-FD5A-9783-C447-2E58773DA7E1> /Applications/Adobe Dreamweaver CS5/Adobe Dreamweaver CS5.app/Contents/frameworks/AdobeAXEDOMCore.framework/Versions/A/AdobeAXEDOMCore
    0x5f02000 -  0x5f06ffd  com.apple.JavaVM (14.5.0 - 14.5.0) <1163556C-5C1D-3C5A-8767-682DAE7D3174> /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaVM
    0x5f0e000 -  0x5f24ffc  libexpat.1.dylib (12) <D4F1FD2B-F75A-322C-843E-113EF5F8EEAF> /usr/lib/libexpat.1.dylib
    0x5f2d000 -  0x5feffe7 +com.adobe.linguistic.LinguisticManager (5.0.0 - 11309) <9841C481-06F4-C783-C941-7F03281AA20E> /Applications/Adobe Dreamweaver CS5/Adobe Dreamweaver CS5.app/Contents/frameworks/AdobeLinguistic.framework/Versions/3/AdobeLinguistic
    0x6089000 -  0x6a39fff +libicudata.dylib.36.0 (36) <02108DEA-3DD2-14BE-DAEB-BE522B619C1D> /Applications/Adobe Dreamweaver CS5/Adobe Dreamweaver CS5.app/Contents/frameworks/ICUData.framework/Versions/3.6/libicudata.dylib.36.0
    0x6a3c000 -  0x6ac92cb +libicucnv.dylib.36.0 (36) /Applications/Adobe Dreamweaver CS5/Adobe Dreamweaver CS5.app/Contents/frameworks/ICUConverter.framework/Versions/3.6/libicucnv.dylib.36.0
    0x6af6000 -  0x6bc523b +libicui18n.dylib.36.0 (36) /Applications/Adobe Dreamweaver CS5/Adobe Dreamweaver CS5.app/Contents/frameworks/ICUInternationalization.framework/Versions/3.6/libicui18n.dyl ib.36.0
    0x6c6e000 -  0x6d42db7 +libicuuc.dylib.36.0 (36) /Applications/Adobe Dreamweaver CS5/Adobe Dreamweaver CS5.app/Contents/frameworks/ICUUnicode.framework/Versions/3.6/libicuuc.dylib.36.0
    0x6da3000 -  0x6dafffd +com.adobe.ape.shim (adbeape version 3.1.65.7508 - 3.1.65.7508) <E2B429C9-C13D-7E96-D18C-F7A6D8933C93> /Applications/Adobe Dreamweaver CS5/Adobe Dreamweaver CS5.app/Contents/frameworks/adbeape.framework/Versions/A/adbeape
    0x6dcb000 -  0x6dd5ffd +com.adobe.boost_signals.framework (boost_signals version 5.0.0 - 5.0.0.0) <640F2209-093D-4A58-879A-28D0D0985ED1> /Applications/Adobe Dreamweaver CS5/Adobe Dreamweaver CS5.app/Contents/frameworks/boost_signals.framework/Versions/A/boost_signals
    0x6de8000 -  0x6de9ffb +com.adobe.boost_system.framework (boost_system version 5.0.0 - 5.0.0.0) <0C51FD72-CEB1-B597-FDE4-8910BE3439A6> /Applications/Adobe Dreamweaver CS5/Adobe Dreamweaver CS5.app/Contents/frameworks/boost_system.framework/Versions/A/boost_system
    0x6df0000 -  0x6f78ff7 +com.adobe.dvacore.framework (dvacore version 5.0.0 - 5.0.0.0) <F993CA15-5107-BB8B-792D-23BB97B61DA9> /Applications/Adobe Dreamweaver CS5/Adobe Dreamweaver CS5.app/Contents/frameworks/dvacore.framework/Versions/A/dvacore
    0x70fe000 -  0x73fdfff +com.adobe.dvaui.framework (dvaui version 5.0.0 - 5.0.0.0) <961439C5-C4AB-22F4-D297-558B5BE21FC6> /Applications/Adobe Dreamweaver CS5/Adobe Dreamweaver CS5.app/Contents/frameworks/dvaui.framework/Versions/A/dvaui
    0x7773000 -  0x7abafff +com.adobe.dvaadameve.framework (dvaadameve version 5.0.0 - 5.0.0.0) <0F30BC16-62CE-899F-920B-7CB64351B497> /Applications/Adobe Dreamweaver CS5/Adobe Dreamweaver CS5.app/Contents/frameworks/dvaadameve.framework/Versions/A/dvaadameve
    0x7feb000 -  0x7ff5ff3 +com.adobe.boost_filesystem.framework (boost_filesystem version 5.0.0 - 5.0.0.0) <1C3DDA48-3C89-5344-1F81-2ED985AE8411> /Applications/Adobe Dreamweaver CS5/Adobe Dreamweaver CS5.app/Contents/frameworks/boost_filesystem.framework/Versions/A/boost_filesystem
    0x8009000 -  0x8141fe7 +WRServices (0) <87183F9D-17F4-6BDC-66A9-8FD34F320118> /Applications/Adobe Dreamweaver CS5/Adobe Dreamweaver CS5.app/Contents/frameworks/WRServices.framework/Versions/A/WRServices
    0x8183000 -  0x81bcffb +com.adobe.AAM.AdobeUpdaterNotificationFramework (UpdaterNotifications 1.0.0.64 - 1.0.0.64) <C64CCBDC-B8E9-45E8-53E7-8577CFE9F2F0> /Applications/Adobe Dreamweaver CS5/Adobe Dreamweaver CS5.app/Contents/frameworks/UpdaterNotifications.framework/Versions/A/UpdaterNotification s
    0x81d7000 -  0x8213ff7  com.apple.vmutils (4.2.1 - 108) <6918860D-B24F-356C-9374-025BFFEA66A3> /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x822d000 -  0x82d8fff  libcrypto.0.9.7.dylib (106) <041B3399-5033-3395-9A71-6693F3A33D94> /usr/lib/libcrypto.0.9.7.dylib
    0x831c000 -  0x8320fff  JavaLaunching (1) <D457DAD6-EEA5-375B-AA96-0D1B2CD08253> /System/Library/PrivateFrameworks/JavaLaunching.framework/Versions/A/JavaLaunching
    0x8328000 -  0x832efef +com.adobe.boost_date_time.framework (boost_date_time version 5.0.0 - 5.0.0.0) <513427E4-980B-4EFD-99B2-16181A8F424A> /Applications/Adobe Dreamweaver CS5/Adobe Dreamweaver CS5.app/Contents/frameworks/boost_date_time.framework/Versions/A/boost_date_time
    0x833f000 -  0x8346ff2 +com.adobe.boost_threads.framework (boost_threads version 5.0.0 - 5.0.0.0) <95766985-B455-FB2E-3C36-4FD53AF952A7> /Applications/Adobe Dreamweaver CS5/Adobe Dreamweaver CS5.app/Contents/frameworks/boost_threads.framework/Versions/A/boost_threads
    0x8356000 -  0x83d3fe2 +com.adobe.boost_regex.framework (boost_regex version 5.0.0 - 5.0.0.0) <45A6C23C-8B06-A47B-618D-680349F87821> /Applications/Adobe Dreamweaver CS5/Adobe Dreamweaver CS5.app/Contents/frameworks/boost_regex.framework/Versions/A/boost_regex
    0x84da000 -  0x84dbffd  com.apple.textencoding.unicode (2.5 - 2.5) <4E2ABBEB-1F0D-3C06-BA0C-C3CEDDF17BD2> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0xab06000 -  0xab29fe7 +ServiceManager-Launcher.dylib (1) <12CEC4C0-8682-A5FD-BAD4-A3E4A4F6218A> /Library/Application Support/Adobe/*/ServiceManager-Launcher.dylib
    0xab36000 -  0xab43ffb  com.apple.Librarian (1.1 - 1) <C8D82AA3-AE5E-3B6D-A8D1-847856057186> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
    0xabfc000 -  0xac01fff  com.apple.audio.AppleHDAHALPlugIn (2.3.0 - 2.3.0f2) <D971DBC9-B1D6-3F20-A6EA-B165C32A4E69> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Conten ts/MacOS/AppleHDAHALPlugIn
    0xac69000 -  0xac6bffc  com.apple.IOAccelerator (19.0.26 - 19.0.26) <6A93A355-1FC9-3E0A-8A4F-B924EC2F2CD8> /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator
    0xac71000 -  0xac7cffb  libGPUSupportMercury.dylib (8.5) <3FA664DE-1C08-3ECE-8F57-19AA040BB05C> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/libGPUSupport Mercury.dylib
    0xac85000 -  0xacb1ffa  GLRendererFloat (8.5) <1E69D3D7-1782-3FF8-AB52-3F23DC4F617B> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GLRendererFl oat
    0xadc0000 -  0xadc1ffd  com.apple.ironwoodcore (1.0.25 - 1.0.25) <269200E5-59BC-3B4A-BCB3-4C70746762D4> /System/Library/PrivateFrameworks/SpeechObjects.framework/Versions/A/Frameworks/Dictation ServicesCore.framework/DictationServicesCore
    0xaf73000 -  0xaf74ff8  ATSHI.dylib (341) <3A73E02F-0EDA-32F8-A768-17C9E417C82C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/ATSHI.dylib
    0xaf79000 -  0xaf87fff  libSimplifiedChineseConverter.dylib (61) <60899F9C-A79F-3BC2-855E-DC5C78B98FEB> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0xaf8b000 -  0xaf9dffd  libTraditionalChineseConverter.dylib (61) <519CAA3F-715E-3CAE-B158-57EC95D916B1> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0x107cf000 - 0x107d7fff +com.adobe.asneu.framework (asneu version 1.7.0.1 - 1.7.0.1) <80195B5C-2C67-D841-232C-74FCAB79D304> /Applications/Adobe Dreamweaver CS5/Adobe Dreamweaver CS5.app/Contents/Frameworks/asneu.framework/Versions/A/asneu
    0x107f6000 - 0x107fafff  com.apple.carbonbundletemplate (11,0,4, 4993 - 11,0,4) <8DC37DA0-5C17-AF5B-7512-3D2BD9D1A467> /Applications/Adobe Dreamweaver CS5/*/SWFFile.bundle/Contents/MacOS/SWFFile
    0x11343000 - 0x11344fff  com.apple.carbonbundletemplate (11,0,4, 4993 - 11,0,4) <EFBE45A7-8657-BF1D-AECC-79D7E2E827C0> /Applications/Adobe Dreamweaver CS5/*/DWfile.bundle/Contents/MacOS/DWfile
    0x11349000 - 0x11372feb +com.adobe.ape (adbeapecore version 3.1.70.10055 - 3.1.70.10055) <F3239526-C171-AD3C-835E-FC9998EEFB28> /Library/Application Support/Adobe/*/adbeapecore.framework/adbeapecore
    0x113ee000 - 0x11455fea +com.adobe.amt.services (AMTServices 3.0.0.64 [BuildVersion: 3.0; BuildDate: Mon Jan 26 2010 21:49:00] - 3.0.0.64) <EE468E2C-A6BD-E2EE-7ABE-69168B143B44> /Applications/Adobe Dreamweaver CS5/Adobe Dreamweaver CS5.app/Contents/Frameworks/amtservices.framework/Versions/A/amtservices
    0x1169b000 - 0x1170bfeb +com.adobe.adobe_caps (adobe_caps 3.0.116.0 - 3.0.116.0) <50675115-BEDC-72F9-C42D-374196E83EC2> /Applications/Adobe Dreamweaver CS5/Adobe Dreamweaver CS5.app/Contents/Frameworks/adobe_caps.framework/Versions/A/adobe_caps
    0x117f2000 - 0x117f2fff  com.apple.carbonbundletemplate (11,0,4, 4993 - 11,0,4) <E2B0891A-BCC4-D491-A7B5-71B81A7337BC> /Applications/Adobe Dreamweaver CS5/*/MM.bundle/Contents/MacOS/MM
    0x1677d000 - 0x167a3ff2  com.apple.carbonbundletemplate (3.0.2,4993 - 3.0.2) <CC91DF64-12FC-92B3-2DBE-4A618C160442> /Applications/Adobe Dreamweaver CS5/*/MMNotes.bundle/Contents/MacOS/MMNotes
    0x16900000 - 0x1693aff3  com.apple.carbonbundletemplate (1.0.0,4993 - 1.0.0) <EC46E447-645C-D96C-D140-43587F599BD6> /Applications/Adobe Dreamweaver CS5/*/JSBridge.bundle/Contents/MacOS/JSBridge
    0x169e9000 - 0x169eaff5 +cl_kernels (???) <94844291-F56F-4891-8680-05DC3F49396C> cl_kernels
    0x169ee000 - 0x169f6ff2  libcldcpuengine.dylib (2.1.16) <61717F57-9AAC-31B4-8894-27A1BF7987B9> /System/Library/Frameworks/OpenCL.framework/Libraries/libcldcpuengine.dylib
    0x169fd000 - 0x169fffff  libCoreFSCache.dylib (24.4) <A089ED2E-0156-3937-BE32-5BED76DF4066> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib
    0x16a15000 - 0x16a15ffd +cl_kernels (???) <D1AB1625-0BCC-4723-8792-CE4470720480> cl_kernels
    0x16a4f000 - 0x16a4fff7 +cl_kernels (???) <E46FAA6F-E183-4A40-AD04-75B5FE9EFC47> cl_kernels
    0x17a00000 - 0x17abeff3  ColorSyncDeprecated.dylib (400) <35E3054C-5DF1-30D4-A368-C4FDB0992373> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x17fce000 - 0x17fdcfff  com.apple.carbonbundletemplate (11,0,4, 4993 - 11,0,4) <7F1B8FD4-FAF1-0F81-AAAE-E15AE7AFB26B> /Applications/Adobe Dreamweaver CS5/*/TSL.bundle/Contents/MacOS/TSL
    0x19ad7000 - 0x19ad7ff1 +cl_kernels (???) <55621060-2F29-4A12-8F65-6F4B9B79B5C2> cl_kernels
    0x19afa000 - 0x19b1effe  com.apple.carbonbundletemplate (1.0 - 1.0) <672AC61B-0BD5-1109-EFE5-0F6CE2CF9BDB> /Applications/Adobe Dreamweaver CS5/Adobe Dreamweaver CS5.app/Contents/PlugIns/NetIOFTP.bundle/Contents/MacOS/NetIOFTP
    0x19ceb000 - 0x19e91ff3 +com.adobe.PlugPlug (2.0.0.746 - 2.0.0.746) <0EE5C99C-3101-5896-D849-3A8E80EABD06> /Applications/Adobe Dreamweaver CS5/*/PlugPlug.bundle/Contents/MacOS/PlugPlug
    0x19f66000 - 0x1adc0feb +com.adobe.adobeswfl (2.0.0.10053) <D591B8C9-2C4A-CF9E-0FCE-B80A844270E0> /Library/Application Support/Adobe/*/adbeapecore.framework/Resources/AdobeSWFL.bundle/Contents/MacOS/AdobeSWFL
    0x1b77f000 - 0x1b8d0ff7  libGLProgrammability.dylib (8.5) <27E2DAE2-DECE-364C-A1C2-138735A3869E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dyl ib
    0x1c500000 - 0x1cbd3feb +WebKit.dylib (1) <5CD152B7-82B1-86C0-24FC-23B6579149B6> /Applications/Adobe Dreamweaver CS5/*/WebKit.dylib
    0x1dc57000 - 0x1dcf0fef  com.apple.carbonbundletemplate (1.0 - 1.0) <2D8B44F5-F995-BCBC-63EE-221DC4B8931D> /Applications/Adobe Dreamweaver CS5/*/JS_KnowledgeEngine.bundle/Contents/MacOS/JS_KnowledgeEngine
    0x1dd39000 - 0x1ddc5ff3  com.apple.carbonbundletemplate (1.0 - 1.0) <E436B9A4-5067-3F7E-7014-B63EB4F5038D> /Applications/Adobe Dreamweaver CS5/*/PHP_KE.bundle/Contents/MacOS/PHP_KE
    0x1e000000 - 0x1e092ff7  unorm8_bgra.dylib (2.1.16) <0F63B53F-4A0A-3485-9645-200572D265F5> /System/Library/Frameworks/OpenCL.framework/Libraries/ImageFormats/unorm8_bgra.dylib
    0x22dfc000 - 0x22e7bff7  com.apple.iLifeMediaBrowser (2.7.1 - 543) <679D1492-6CE0-3A36-85E7-B0B612CED18F> /System/Library/PrivateFram

    F4 shows all the applications.  F3 gives me mission control and the little window for Elements does show the Title Bar and the red, yellow, green icons (if Elements was the active window; otherwise the icons are grey ... but are there).  So, got me thinking, maybe it got stuck part way moving it to the upper screen since you have to move it quickly through the task bar when you drag it with the mouse.  I disconnected the second screen and the Title Bar came back.  I used it to move the Elements window down a bit away from the task bar, reconnected the second display, and was then able to move the Elements windows up to the second display.  Thanks ... all is now well again!

  • EXC_BAD_ACCESS KERN_PROTECTION_FAILURE messages in Dreamweaver

    I know this theme has been posted a billion times, but the problem solving steps are so varied, I'm posting my question hoping to get help or at least a direction to the best topic board.
    In using Dreamweaver 8 in OSX 10.4.8, the program has suddenly become unable to load. I tried rebooting, and even re-installing, but the same problem. I'm attaching the (very long) trouble report below, and hopefully someone can give me some feedback. Thanks in advance.
    Date/Time: 2007-01-27 15:08:46.728 -0500
    OS Version: 10.4.8 (Build 8L2127)
    Report Version: 4
    Command: Dreamweaver
    Path: /Applications/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/Dreamweaver
    Parent: WindowServer [635]
    Rosetta: Yes
    Version: 8.0.0.2734 (8.0.0)
    PID: 851
    Thread: Unknown
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNPROTECTIONFAILURE (0x0002) at 0x000000d0
    Thread 0:
    0 com.macromedia.Dreamweaver 0xb80a5453 0xb8000000 + 676947
    1 com.macromedia.Dreamweaver 0xb809f925 0xb8000000 + 653605
    2 com.macromedia.Dreamweaver 0xb80bd24e 0xb8000000 + 774734
    3 com.macromedia.Dreamweaver 0xb811de0d spinlockwrapper + 1985
    Thread 1:
    0 com.macromedia.Dreamweaver 0xb823369b strchr + 72
    1 com.macromedia.Dreamweaver 0xb81cef17 pthreadcondwait + 3114
    2 com.macromedia.Dreamweaver 0xb816831a catchexception_raise_stateidentity + 318
    3 com.macromedia.Dreamweaver 0xb8167856 CallPPCFunctionAtAddressInt + 177220
    4 com.macromedia.Dreamweaver 0xb816774d CallPPCFunctionAtAddressInt + 176955
    5 com.macromedia.Dreamweaver 0xb8168418 catchexception_raise_stateidentity + 572
    6 com.macromedia.Dreamweaver 0xb820480c pthread_create + 1124
    Thread 2:
    0 com.macromedia.Dreamweaver 0xb813501e spinlockwrapper + 96722
    1 com.macromedia.Dreamweaver 0xb814e1b4 CallPPCFunctionAtAddressInt + 73122
    2 com.macromedia.Dreamweaver 0xb80c7b3a 0xb8000000 + 817978
    Thread 3:
    0 com.macromedia.Dreamweaver 0xb81352b4 spinlockwrapper + 97384
    1 com.macromedia.Dreamweaver 0xb8148d85 CallPPCFunctionAtAddressInt + 51571
    2 com.macromedia.Dreamweaver 0xb80a6073 0xb8000000 + 680051
    3 com.macromedia.Dreamweaver 0xb809f925 0xb8000000 + 653605
    4 com.macromedia.Dreamweaver 0xb80bd24e 0xb8000000 + 774734
    5 com.macromedia.Dreamweaver 0xb811e558 spinlockwrapper + 3852
    Thread 4:
    0 com.macromedia.Dreamweaver 0xb8134fac spinlockwrapper + 96608
    1 com.macromedia.Dreamweaver 0xb814dfdc CallPPCFunctionAtAddressInt + 72650
    2 com.macromedia.Dreamweaver 0xb80a6073 0xb8000000 + 680051
    3 com.macromedia.Dreamweaver 0xb809f925 0xb8000000 + 653605
    4 com.macromedia.Dreamweaver 0xb80bd24e 0xb8000000 + 774734
    5 com.macromedia.Dreamweaver 0xb811e558 spinlockwrapper + 3852
    Thread 5:
    0 com.macromedia.Dreamweaver 0xb813501e spinlockwrapper + 96722
    1 com.macromedia.Dreamweaver 0xb814e1b4 CallPPCFunctionAtAddressInt + 73122
    2 com.macromedia.Dreamweaver 0xb80c7b3a 0xb8000000 + 817978
    Thread 6:
    0 com.macromedia.Dreamweaver 0xb813501e spinlockwrapper + 96722
    1 com.macromedia.Dreamweaver 0xb814e1b4 CallPPCFunctionAtAddressInt + 73122
    2 com.macromedia.Dreamweaver 0xb80c7b3a 0xb8000000 + 817978
    Thread 7:
    0 com.macromedia.Dreamweaver 0xb8134fac spinlockwrapper + 96608
    1 com.macromedia.Dreamweaver 0xb814dfdc CallPPCFunctionAtAddressInt + 72650
    2 com.macromedia.Dreamweaver 0xb80c7b3a 0xb8000000 + 817978
    Unknown thread crashed with unknown flavor: 1
    state_count: 16
    Binary Images Description:
    0x1000 - 0xc1cfff com.macromedia.Dreamweaver 8.0.0.2734 (8.0.0) /Applications/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/Dreamweaver
    0x1655000 - 0x1655fff SystemFrameworkUtils.dylib /Applications/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/SystemFrameworkUtils.dylib
    0x20e2000 - 0x20e3fff com.apple.textencoding.korean 2.1 /System/Library/TextEncodings/Korean Encodings.bundle/Contents/MacOS/Korean Encodings
    0x2205000 - 0x2428fff Fireworks /Applications/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/Frameworks/Fireworks.framework/Versions/A/Fireworks
    0x259f000 - 0x2822fff MMxpt /Applications/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/Frameworks/MMxpt.framework/Versions/A/MMxpt
    0x2b8f000 - 0x2b91fff com.apple.textencoding.unicode 2.1 /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x2d77000 - 0x2ddffff com.DivXInc.DivXDecoder 6.4.0 /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0xf68f000 - 0xf68ffff com.macromedia.extension.mm MM version 1.0 (1.0) /Applications/Macromedia Dreamweaver 8/Configuration/JSExtensions/MM.bundle/Contents/MacOS/MM
    0xf6a4000 - 0xf6a7fff com.apple.textencoding.chinese 2.1 /System/Library/TextEncodings/Chinese Encodings.bundle/Contents/MacOS/Chinese Encodings
    0xf770000 - 0xf7affff com.apple.QuickTimeFireWireDV.component 7.1.3 /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0xf7db000 - 0xf7f5fff com.apple.AppleIntermediateCodec 1.1 (141) /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleInterme diateCodec
    0xf7fa000 - 0xf856fff com.apple.applepixletvideo 1.2.9 (1.2d9) /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/ApplePixlet Video
    0xf88b000 - 0xf8b4fff com.macromedia.extension.mminfo MMNotes version 3.0.3 (3.0.3) /Applications/Macromedia Dreamweaver 8/Configuration/JSExtensions/MMNotes.bundle/Contents/MacOS/MMNotes
    0xf8d9000 - 0xf8e8fff com.macromedia.extension.swffile SWFFile version 1.0 (1.0) /Applications/Macromedia Dreamweaver 8/Configuration/JSExtensions/SWFFile.bundle/Contents/MacOS/SWFFile
    0xfa26000 - 0xfa2ffff com.macromedia.extension.dwfile DWfile version 1.0 (1.0) /Applications/Macromedia Dreamweaver 8/Configuration/JSExtensions/DWfile.bundle/Contents/MacOS/DWfile
    0xfcc8000 - 0xfccafff com.apple.PDFImporter 1.6 (???) /System/Library/Components/PDFImporter.component/Contents/MacOS/PDFImporter
    0x10026000 - 0x1004dfff com.macromedia.NetIOFTP NetIOFTP v1.0 (1.0) /Applications/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/Plug-ins/NetIOFTP.bundle/Contents/MacOS/NetIOFTP
    0x11005000 - 0x111fefff net.telestream.wmv.import 2.1.0.33 /Library/QuickTime/Flip4Mac WMV Import.component/Contents/MacOS/Flip4Mac WMV Import
    0x8fc00000 - 0x8fc50fff dyld 46.9 /usr/lib/dyld
    0x8fe00000 - 0x8fe49fff dyld 46.9 /usr/lib/dyld
    0x90000000 - 0x901c0fff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x90218000 - 0x9021dfff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x9021f000 - 0x90261fff com.apple.CoreText 1.1.1 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90289000 - 0x9036dfff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x90396000 - 0x90757fff com.apple.CoreGraphics 1.258.38 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x907e6000 - 0x908bdfff com.apple.CoreFoundation 6.4.6 (368.27) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x90904000 - 0x90904fff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x90906000 - 0x90a0ffff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x90a60000 - 0x90ae3fff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90b0c000 - 0x90b7efff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x90bf1000 - 0x90bfcfff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x90c01000 - 0x90c76fff com.apple.framework.IOKit 1.4.6 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90c8c000 - 0x90ca0fff libauto.dylib /usr/lib/libauto.dylib
    0x90ca6000 - 0x90f71fff com.apple.CoreServices.CarbonCore 682.15 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90fce000 - 0x91047fff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x9108a000 - 0x910cbfff com.apple.CFNetwork 129.19 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x910df000 - 0x910f3fff com.apple.WebServices 1.1.3 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x910ff000 - 0x91190fff com.apple.SearchKit 1.0.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x911cc000 - 0x911ecfff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x911f9000 - 0x91208fff libz.1.dylib /usr/lib/libz.1.dylib
    0x9120b000 - 0x913c0fff com.apple.security 4.5.2 (29774) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x914bd000 - 0x914c6fff com.apple.DiskArbitration 2.1.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x914cd000 - 0x914f5fff com.apple.SystemConfiguration 1.8.6 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91507000 - 0x9150ffff libbsm.dylib /usr/lib/libbsm.dylib
    0x91513000 - 0x9158cfff com.apple.audio.CoreAudio 3.0.4 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x915d6000 - 0x915d6fff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x915d8000 - 0x9160bfff com.apple.AE 314 (313) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x91621000 - 0x916fefff com.apple.ColorSync 4.4.8 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x9173d000 - 0x917befff com.apple.print.framework.PrintCore 4.6 (177.13) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x917fb000 - 0x918adfff com.apple.QD 3.10.21 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x918e2000 - 0x91938fff com.apple.HIServices 1.5.2 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x91960000 - 0x9197afff com.apple.LangAnalysis 1.6.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91988000 - 0x919a8fff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x919b5000 - 0x919f1fff com.apple.LaunchServices 181 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x91a09000 - 0x91a17fff com.apple.speech.synthesis.framework 3.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x91a1f000 - 0x91a5afff com.apple.ImageIO.framework 1.5.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91a6e000 - 0x91b31fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91b7c000 - 0x91b91fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91b96000 - 0x91bb6fff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91bbb000 - 0x91c1afff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91c2c000 - 0x91c30fff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91c32000 - 0x91c98fff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91c9d000 - 0x91cddfff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91ce3000 - 0x91cfdfff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91d02000 - 0x91d04fff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91d06000 - 0x91d06fff com.apple.Accelerate 1.3.1 (Accelerate 1.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91d08000 - 0x91deefff com.apple.vImage 2.5 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91df6000 - 0x91e15fff com.apple.Accelerate.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91e81000 - 0x91f0dfff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x91f19000 - 0x91fb0fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x91fc9000 - 0x92576fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x925a9000 - 0x928d4fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92904000 - 0x9298afff com.apple.DesktopServices 1.3.5 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x929cc000 - 0x92c00fff com.apple.Foundation 6.4.7 (567.28) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92d15000 - 0x92e03fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x92e22000 - 0x92f11fff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92f22000 - 0x92f42fff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92f4d000 - 0x92fa9fff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92fbf000 - 0x92fbffff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92fc1000 - 0x92fd6fff com.apple.ImageCapture 3.0.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92fe7000 - 0x92ff2fff com.apple.speech.recognition.framework 3.6 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x92ffa000 - 0x93003fff com.apple.securityhi 2.0.1 (24742) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x9300b000 - 0x9309efff com.apple.ink.framework 101.2.1 (71) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x930b3000 - 0x930b8fff com.apple.help 1.0.3 (32.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x930bc000 - 0x930defff com.apple.openscripting 1.2.5 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x930f2000 - 0x930fafff com.apple.print.framework.Print 5.2 (192.4) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x93101000 - 0x9316afff com.apple.htmlrendering 66.1 (1.1.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x93193000 - 0x931dbfff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x93205000 - 0x93216fff com.apple.audio.SoundManager 3.9.1 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x9321f000 - 0x93226fff com.apple.CommonPanels 1.2.3 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x9322c000 - 0x93552fff com.apple.HIToolbox 1.4.8 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x93687000 - 0x93694fff com.apple.opengl 1.4.12 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x936bb000 - 0x936bffff com.apple.JavaVM 11.4.2 /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaVM
    0x936ff000 - 0x936fffff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93701000 - 0x93d6ffff com.apple.AppKit 6.4.8 (824.42) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x940f7000 - 0x94169fff com.apple.CoreData 90 /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x941a2000 - 0x94261fff com.apple.audio.toolbox.AudioToolbox 1.4.3 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x942a4000 - 0x942a4fff com.apple.audio.units.AudioUnit 1.4.2 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x942a6000 - 0x9446ffff com.apple.QuartzCore 1.4.9 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x944c3000 - 0x94503fff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x9450b000 - 0x9454ffff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x946df000 - 0x946f0fff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x946f7000 - 0x94704fff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x94754000 - 0x9476efff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x94775000 - 0x94a44fff com.apple.QuickTime 7.1.3 /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x94b07000 - 0x94b29fff libmx.A.dylib /usr/lib/libmx.A.dylib
    0x94e80000 - 0x94e9efff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x9600f000 - 0x96026fff libJapaneseConverter.dylib /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0x96028000 - 0x96049fff libKoreanConverter.dylib /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
    0x96057000 - 0x96066fff libSimplifiedChineseConverter.dylib /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x9606e000 - 0x96081fff libTraditionalChineseConverter.dylib /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0x969de000 - 0x969fdfff com.apple.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x9713b000 - 0x97148fff com.apple.agl 2.5.9 (AGL-2.5.9) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x98519000 - 0x98ed0fff com.apple.QuickTimeComponents.component 7.1.3 /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x990f7000 - 0x990fbfff com.apple.QuickTimeH264.component 7.1.3 /System/Library/QuickTime/QuickTimeH264.component/Contents/MacOS/QuickTimeH264
    0x990fd000 - 0x991e1fff QuickTimeH264.altivec /System/Library/QuickTime/QuickTimeH264.component/Contents/Resources/QuickTimeH 264.altivec
    0x9932d000 - 0x993f4fff com.apple.QuickTimeMPEG4.component 7.1.3 /System/Library/QuickTime/QuickTimeMPEG4.component/Contents/MacOS/QuickTimeMPEG 4
    0x99bf7000 - 0x99c16fff com.apple.OpenTransport 3.0 /System/Library/PrivateFrameworks/OpenTransport.framework/OpenTransport
    0x9be40000 - 0x9be42fff Interposers.dylib /usr/libexec/oah/Shims/Interposers.dylib
    0xb8000000 - 0xb82d9fff com.macromedia.Dreamweaver 8.0.0.2734 (8.0.0) /Applications/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/Dreamweaver
    0xc0000000 - 0xc0014fff ZLib.dylib /Applications/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/ZLib.dylib
    0xc2000000 - 0xc21c9fff Xerces /Applications/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/Frameworks/Xerces.framework/Versions/A/Xerces
    0xc3000000 - 0xc3016fff com.macromedia.NetIO NetIO v1.0 (1.0) /Applications/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/Frameworks/NetIO.framework/Versions/A/NetIO
    0xc4000000 - 0xc40aefff LibCrypto.dylib /Applications/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/LibCrypto.dylib
    0xc5000000 - 0xc5020fff LibSSL.dylib /Applications/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/LibSSL.dylib
    0xc6000000 - 0xc6020fff LibCURL.dylib /Applications/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/LibCURL.dylib
    0xc7000000 - 0xc7024fff CoreTypes.dylib /Applications/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/CoreTypes.dylib
    Translated Code Information:
    Rosetta Version: 17.15
    Args: /Applications/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/Dreamweaver -psn09437185
    Exception: EXCBADACCESS (0x0001)
    Thread 0: (0xb0099df0, 0xb813501e)
    0x90072e2c: /usr/lib/libSystem.B.dylib : pthread_cond_timedwait_relativenp + 0x1ec
    0x90d14b04: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore : _TSWaitOnSemaphoreCommon + 0xbc
    0x90d1c7a8: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore : _TimerThread + 0x48
    0x9002c4e8: /usr/lib/libSystem.B.dylib : _pthreadbody + 0x60
    0x00000000: /Applications/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/Dreamweaver : + 0x0
    PPC Thread State
    srr0: 0x00000000 srr1: 0x00000000 vrsave: 0x00000000
    cr: 0xXXXXXXXX xer: 0x00000000 lr: 0x90072e68 ctr: 0x90056060
    r00: 0xffffffd9 r01: 0xf0080cb0 r02: 0xa0001fcc r03: 0x00005303
    r04: 0x00004b03 r05: 0x00000000 r06: 0x000f2300 r07: 0x3d68e6c0
    r08: 0x00000000 r09: 0x00000001 r10: 0xf0080dc8 r11: 0xa0006b58
    r12: 0x90056060 r13: 0x00000000 r14: 0x00000000 r15: 0x00000000
    r16: 0x00000000 r17: 0x00000000 r18: 0x00000000 r19: 0x00000000
    r20: 0x00000000 r21: 0x00000000 r22: 0xa0cac770 r23: 0xa0ca6b50
    r24: 0x00000000 r25: 0xa0002c54 r26: 0xa0ca6b84 r27: 0xa0ca6bb8
    r28: 0xf0080dc8 r29: 0xa0001fcc r30: 0xa0001fcc r31: 0x90072c54
    Thread 1: Crashed (0xb7fff9d0, 0xb80a5453)
    0x00799424: /Applications/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/Dreamweaver : _ZN17WYSIWYG_CSSCombo15BeginPopulatingEv + 0x70
    0x00273890: /Applications/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/Dreamweaver : __ZN6PIView18UpdateCSSStyleListEv + 0x24
    0x0026ef5c: /Applications/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/Dreamweaver : __ZN6PIView12InitControlsEv + 0x10
    0x0026ef2c: /Applications/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/Dreamweaver : __ZN6PIView13CreateNewViewEP4CWnd + 0x540
    0x00275f20: /Applications/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/Dreamweaver : __ZN10PIViewText13CreateNewViewEP4CWnd + 0x1c
    0x0026bba8: /Applications/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/Dreamweaver : _ZN9PIFloater12GetInspectorENS_24PROP_INSPECTOR_VIEWTYPEEi + 0x53c
    0x0026bce0: /Applications/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/Dreamweaver : _ZN9PIFloater18SetActiveInspectorENS_24PROP_INSPECTOR_VIEWTYPEEi + 0x120
    0x0026c5b4: /Applications/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/Dreamweaver : __ZN9PIFloater15UpdateSelectionER8RunCaret + 0x1e0
    0x0026c2e8: /Applications/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/Dreamweaver : __ZN9PIFloater17OnSelectionChangeEmP15ITitanSelection + 0x3ec
    0x0004fb40: /Applications/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/Dreamweaver : __ZN21TitanSelectionManager11NotifyUsersEm + 0x64
    0x0004f124: /Applications/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/Dreamweaver : __ZN21TitanSelectionManager18SyncSelectionUsersEv + 0x164
    0x00b35d44: /Applications/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/Dreamweaver : __ZN20SelectionIdleHandler9OnAppIdleEl + 0x20
    0x00007814: /Applications/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/Dreamweaver : __ZN8TitanApp6OnIdleEl + 0x1bc
    0x008bc514: /Applications/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/Dreamweaver : _ZN8CRealApp25EventLoopIdleTimerHandlerEP16_EventLoopTimerPv + 0x124
    0x90809bbc: /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation : _CFRunLoopRunSpecific + 0xac4
    0x93235fa0: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox : _RunCurrentEventLoopInMode + 0x124
    0x9332de08: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox : _GetNextEventMatchingMask + 0x170
    0x9332daec: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox : _WNEInternal + 0x98
    0x9332da30: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox : _WaitNextEvent + 0x4c
    0x0000e7f0: /Applications/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/Dreamweaver : __ZN8TitanApp12PumpMessagesEim + 0x30
    0x008495fc: /Applications/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/Dreamweaver : _ZN15SiteStatusFrame13UserCancelledEu7_bool8 + 0xf0
    0x007a2878: /Applications/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/Dreamweaver : __ZN13DWNetCallback13WaitUntilDoneEv + 0xfc
    0x007a8548: /Applications/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/Dreamweaver : __ZN11CNetIOAgent5MkDirEPKwP9CSiteInfo + 0x234
    0x007a3a5c: /Applications/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/Dreamweaver : _ZN11CNetIOAgent7ConnectEPKwS1_S1_iu7__bool8S1P9CSiteInfo + 0xa4
    0x003d9894: /Applications/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/Dreamweaver : _ZN13CFileTransfer7ConnectEP9CSiteInfo7CStringu7__bool8u7_bool8i + 0x884
    0x003d8c3c: /Applications/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/Dreamweaver : _ZN13CFileTransfer10TryConnectEP9CSiteInfo7CStringu7_bool8ii + 0x198
    0x0041f944: /Applications/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/Dreamweaver : _ZN9CFileView17InsertServerNodesEP9CSiteInfoPKwS3iiiiii + 0x154
    0x0041f798: /Applications/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/Dreamweaver : __ZN9CFileView28InsertConfiguredServersItemsEii + 0x1dc
    0x00413a8c: /Applications/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/Dreamweaver : __ZN9CFileView10ExpandADirEii + 0x580
    0x00422ca4: /Applications/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/Dreamweaver : __ZN9CFileView19PopulateFileBrowserEiR7CString + 0x738
    0x003fb0b4: /Applications/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/Dreamweaver : __ZN9CFileView18PopulateEntireTreeEP7CObject + 0xc4
    0x003faa18: /Applications/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/Dreamweaver : __ZN9CFileView8OnUpdateEP5CViewlP7CObject + 0x214
    0x00406fcc: /Applications/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/Dreamweaver : __ZN9CFileView9OnRefreshEv + 0x90
    0x002b3684: /Applications/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/Dreamweaver : __ZN10CSiteFrame14OnLocalRefreshEv + 0x30
    0x002b4ca8: /Applications/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/Dreamweaver : __ZN10CSiteFrame8OnCreateEP16tagCREATESTRUCTW + 0x2bc
    0x00898698: /Applications/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/Dreamweaver : _ZN4CWnd8CreateExEmPKwS1miiiiP9CImplBaseP13CMenuImplBasePv + 0x1cc
    0x00898908: /Applications/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/Dreamweaver : _ZN4CWnd6CreateEPKwS1_mRK7tagRECTPSjP14CCreateContext + 0x74
    0x002b4e24: /Applications/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/Dreamweaver : __ZN10CSiteFrame14CreateYourselfEP4CWnd + 0x7c
    0x006cc264: /Applications/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/Dreamweaver : __ZN11SiteFloater8OnCreateEP16tagCREATESTRUCTW + 0x140
    0x00898698: /Applications/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/Dreamweaver : _ZN4CWnd8CreateExEmPKwS1miiiiP9CImplBaseP13CMenuImplBasePv + 0x1cc
    0x00898908: /Applications/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/Dreamweaver : _ZN4CWnd6CreateEPKwS1_mRK7tagRECTPSjP14CCreateContext + 0x74
    0x00a56de0: /Applications/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/Dreamweaver : _ZN4MMUI12PanelManager12GetContainerEiPNS_5PanelENS010CreateTypeE + 0x914
    0x00a5641c: /Applications/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/Dreamweaver : _ZN4MMUI12PanelManager8GetPanelEiNS010CreateTypeE + 0x12c
    0x00a55810: /Applications/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/Dreamweaver : _ZN4MMUI12PanelManager9ShowPanelEiNS0_8ShowTypeEu7_bool8 + 0x74
    0x00a552ec: /Applications/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/Dreamweaver : __ZN4MMUI12PanelManager21CreatePanelsFromStateEv + 0x208
    0x00006550: /Applications/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/Dreamweaver : __ZN8TitanApp18InitInstancePublicEv + 0x598
    0x00005858: /Applications/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/Dreamweaver : __ZN8TitanApp12InitInstanceEv + 0x110
    0x008baf48: /Applications/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/Dreamweaver : __ZN8CRealApp10InitializeEv + 0x2d4
    0x008bb104: /Applications/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/Dreamweaver : __ZN8CRealApp3RunEv + 0xc0
    0x008bebb8: /Applications/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/Dreamweaver : __ZN11CWinAppImpl3RunEv + 0x40
    0x008be8d8: /Applications/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/Dreamweaver : _main + 0x1c0
    0x0000474c: /Applications/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/Dreamweaver : __start + 0x1cc
    0x0000457c: /Applications/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/Dreamweaver : __code_start_ + 0x30
    0x702fe18f: No symbol
    PPC Thread State
    srr0: 0x00000000 srr1: 0x00000000 vrsave: 0x00000000
    cr: 0xXXXXXXXX xer: 0x20000000 lr: 0x00799424 ctr: 0x00bbd580
    r00: 0x00799424 r01: 0xbfffa300 r02: 0x116fd2b0 r03: 0x00000000
    r04: 0x00000003 r05: 0x00000000 r06: 0x00000000 r07: 0x11a00c4f
    r08: 0x00000002 r09: 0x02a6b968 r10: 0x00000072 r11: 0x00000001
    r12: 0x00bbd580 r13: 0x00000000 r14: 0x00008a03 r15: 0x90809110
    r16: 0xa07e9110 r17: 0xa07e9110 r18: 0x48002082 r19: 0x22422082
    r20: 0xbfffa9e0 r21: 0x02a04998 r22: 0x02a04aa8 r23: 0x00001e03
    r24: 0x02a04990 r25: 0x02a04aa0 r26: 0xa07eb898 r27: 0x03688a00
    r28: 0x03688a00 r29: 0x11960130 r30: 0x116c01f0 r31: 0x1195c280
    Thread 2: (0xb019bd48, 0xb8134fac)
    0x90031ba0: /usr/lib/libSystem.B.dylib : pthread_condwait + 0x1b4
    0x99bfb184: /System/Library/PrivateFrameworks/OpenTransport.framework/Versions/A/OpenTransp ort : _CarbonOperationThreadFunc + 0x88
    0x9002c4e8: /usr/lib/libSystem.B.dylib : _pthreadbody + 0x60
    0x00000000: /Applications/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/Dreamweaver : + 0x0
    PPC Thread State
    srr0: 0x00000000 srr1: 0x00000000 vrsave: 0x00000000
    cr: 0xXXXXXXXX xer: 0x00000000 lr: 0x90031bd0 ctr: 0x9002cb80
    r00: 0xffffffdb r01: 0xf0182a00 r02: 0xa0001fcc r03: 0x00004d03
    r04: 0x00004e03 r05: 0x00000000 r06: 0x00000000 r07: 0x00000000
    r08: 0x00000000 r09: 0x00000001 r10: 0x00000000 r11: 0xa0006b6c
    r12: 0x9002cb80 r13: 0xf0182a9c r14: 0xf0182a98 r15: 0xa9bfb108
    r16: 0xf0182c68 r17: 0x99c1b108 r18: 0xf0182b14 r19: 0x00000000
    r20: 0x00000000 r21: 0x00000000 r22: 0x00000000 r23: 0xa9bfb108
    r24: 0x00000000 r25: 0x00000000 r26: 0xa00019fc r27: 0x02afd140
    r28: 0xa0001fcc r29: 0x02afcdd8 r30: 0xa0001fcc r31: 0x900319fc
    Thread 3: (0xb031edf8, 0xb8134fac)
    0x90031ba0: /usr/lib/libSystem.B.dylib : pthread_condwait + 0x1b4
    0x100453dc: No symbol
    0x10044c64: No symbol
    0x9002c4e8: /usr/lib/libSystem.B.dylib : _pthreadbody + 0x60
    0x00000000: /Applications/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/Dreamweaver : + 0x0
    PPC Thread State
    srr0: 0x00000000 srr1: 0x00000000 vrsave: 0x00000000
    cr: 0xXXXXXXXX xer: 0x00000000 lr: 0x90031bd0 ctr: 0x9002cb80
    r00: 0xffffffdb r01: 0xf03059b0 r02: 0xa0001fcc r03: 0x00005403
    r04: 0x00004c03 r05: 0x00000002 r06: 0x11931e11 r07: 0x00000001
    r08: 0x00000001 r09: 0x00000001 r10: 0xa00068c0 r11: 0xa0006b6c
    r12: 0x9002cb80 r13: 0x00000000 r14: 0x00000000 r15: 0x00000000
    r16: 0x00000000 r17: 0x00000000 r18: 0x00000000 r19: 0x00000000
    r20: 0x00000000 r21: 0x00000000 r22: 0x00000000 r23: 0x00000000
    r24: 0x00000000 r25: 0x00000002 r26: 0xa00019fc r27: 0x0366de28
    r28: 0xa0001fcc r29: 0x0366de0c r30: 0xa0001fcc r31: 0x900319fc
    Thread 4: (0xb029ddf0, 0xb813501e)
    0x90072e2c: /usr/lib/libSystem.B.dylib : pthread_cond_timedwait_relativenp + 0x1ec
    0x90d14b04: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore : _TSWaitOnSemaphoreCommon + 0xbc
    0x90d1f7f0: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore : __Z13AIOFileThreadPv + 0x418
    0x9002c4e8: /usr/lib/libSystem.B.dylib : _pthreadbody + 0x60
    0x00000000: /Applications/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/Dreamweaver : + 0x0
    PPC Thread State
    srr0: 0x00000000 srr1: 0x00000000 vrsave: 0x00000000
    cr: 0xXXXXXXXX xer: 0x00000000 lr: 0x90072e68 ctr: 0x90056060
    r00: 0xffffffd9 r01: 0xf0284cb0 r02: 0xa0001fcc r03: 0x00005103
    r04: 0x00005203 r05: 0x0000003c r06: 0x00000000 r07: 0x00000003
    r08: 0x00000001 r09: 0x00000001 r10: 0xf0284dc8 r11: 0xa0006b58
    r12: 0x90056060 r13: 0x00000000 r14: 0x00000000 r15: 0xa0caf3ec
    r16: 0xa0caf3ec r17: 0x00000000 r18: 0xa0caf3ec r19: 0xa0caf4a8
    r20: 0xa0caf3ec r21: 0x00000000 r22: 0x11915310 r23: 0x119156e4
    r24: 0x119156fc r25: 0xa0002c54 r26: 0xa0caf4dc r27: 0xa0caf510
    r28: 0xf0284dc8 r29: 0xa0001fcc r30: 0xa0001fcc r31: 0x90072c54
    Thread 5: (0xb011ad48, 0xb81352b4)
    0x00000000: /Applications/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/Dreamweaver : + 0x0
    0x99bfef94: /System/Library/PrivateFrameworks/OpenTransport.framework/Versions/A/OpenTransp ort : _CarbonSelectThreadFunc + 0xc0
    0x9002c4e8: /usr/lib/libSystem.B.dylib : _pthreadbody + 0x60
    PPC Thread State
    srr0: 0x00000000 srr1: 0x00000000 vrsave: 0x00000000
    cr: 0xXXXXXXXX xer: 0x00000000 lr: 0x99bf9fd8 ctr: 0x90006200
    r00: 0x00000000 r01: 0xf0101ce0 r02: 0xa9bf7010 r03: 0x000000e8
    r04: 0xf0101db4 r05: 0x00000000 r06: 0x01000000 r07: 0x01000000
    r08: 0x90bf1ba8 r09: 0x00000000 r10: 0x00000a9e r11: 0xa9bf72b4
    r12: 0x90006200 r13: 0x00000000 r14: 0x00000000 r15: 0xa9bf7010
    r16: 0xa9bf7010 r17: 0xf0101d98 r18: 0xf0101d7c r19: 0xf0101d88
    r20: 0xa9bfeee4 r21: 0xf0101d8c r22: 0xf0101db4 r23: 0x00000000
    r24: 0xa9bfeee4 r25: 0xa9bfeee4 r26: 0x00000000 r27: 0xf0101d84
    r28: 0xf0101db4 r29: 0x00000000 r30: 0x00000000 r31: 0x99bfeee4
    Thread 6: (0xb021cdf0, 0xb813501e)
    0x90072e2c: /usr/lib/libSystem.B.dylib : pthread_cond_timedwait_relativenp + 0x1ec
    0x90d14b04: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore : _TSWaitOnSemaphoreCommon + 0xbc
    0x985307c4: /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents : _ReadSchedulerThreadEntryPoint + 0x14b4
    0x9002c4e8: /usr/lib/libSystem.B.dylib : _pthreadbody + 0x60
    0x00000000: /Applications/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/Dreamweaver : + 0x0
    PPC Thread State
    srr0: 0x00000000 srr1: 0x00000000 vrsave: 0x00000000
    cr: 0xXXXXXXXX xer: 0x20000000 lr: 0x90072e68 ctr: 0x90056060
    r00: 0xffffffd9 r01: 0xf0203c80 r02: 0xa0001fcc r03: 0x00005003
    r04: 0x00004f03 r05: 0x47868c00 r06: 0x00000000 r07: 0x0000d6db
    r08: 0xfa000000 r09: 0x00000001 r10: 0x00000002 r11: 0xa0006b58
    r12: 0x90056060 r13: 0x9852f320 r14: 0x98ddf320 r15: 0x00000000
    r16: 0x00000000 r17: 0x116a747c r18: 0xa868f320 r19: 0x00000000
    r20: 0x00000000 r21: 0x00000000 r22: 0x00000000 r23: 0x00000000
    r24: 0x11914700 r25: 0xa0002c54 r26: 0x116a73f0 r27: 0x116a7424
    r28: 0xf0203d98 r29: 0xa0001fcc r30: 0xa0001fcc r31: 0x90072c54
    Model: iMac6,1, BootROM IM61.0093.B01, 2 processors, Intel Core 2 Duo, 2.16 GHz, 2 GB
    Graphics: NVIDIA GeForce 7300 GT, NVIDIA GeForce 7300 GT, PCIe, 128 MB
    Memory Module: BANK 0/DIMM0, 1 GB, DDR2 SDRAM, 667 MHz
    Memory Module: BANK 1/DIMM1, 1 GB, DDR2 SDRAM, 667 MHz
    AirPort: spairportwireless_card_type_airportextreme (0x14E4, 0x87), 4.80.76.1
    Bluetooth: Version 1.7.9f12, 2 service, 1 devices, 1 incoming serial ports
    Network Service: Built-in Ethernet, Ethernet, en0
    Serial ATA Device: ST3500641AS Q, 465.76 GB
    Parallel ATA Device: MATSHITADVD-R UJ-85J
    USB Device: Built-in iSight, Micron, Up to 480 Mb/sec, 500 mA
    USB Device: Hub in Apple Pro Keyboard, Mitsumi Electric, Up to 12 Mb/sec, 500 mA
    USB Device: Apple Optical USB Mouse, Mitsumi Electric, Up to 1.5 Mb/sec, 100 mA
    USB Device: deskjet 5600, hp, Up to 12 Mb/sec, 100 mA
    USB Device: Apple Pro Keyboard, Mitsumi Electric, Up to 12 Mb/sec, 250 mA
    USB Device: Bluetooth HCI, Up to 12 Mb/sec, 500 mA
    USB Device: IR Receiver, Apple Computer, Inc., Up to 12 Mb/sec, 500 mA
    USB Device: XSKey, Emagic GmbH, Up to 1.5 Mb/sec, 500 mA
    iMac Pro   Mac OS X (10.4.8)  

    I am writing in this way......
    File*fp;
    fp = fopen("userinformation","w");
    fwrite("abc",3,1,fp);
    fclose(fp);
    on above i have write Fread it is fwrite not fread..

Maybe you are looking for

  • How to pass multiple parameters while calling a pl/sql procedure based serv

    Hi, I have a pl/sql procedure based service that needs to be invoked from the bpel console for testing purpose. This procedure accepts multiple input values which are of varchar2,boolean and datetime data types. How can I get the bpel console to thro

  • Saving data after modying in table?

    hi, i've displayed all my data (only 1 row)in a table and then double click to edit the information in 2 cells there. in my interface i have a JButton 'Save' which when clicked should update my data in the database at server which contained the origi

  • Sales Order API Error

    Hiiii When i am running the Sales Order API Script, getting error Plz reply me . where is the problem Below Mentioned error failure process ORDER ret status IS: U process ORDER msg data IS: FND process ORDER msg COUNT IS: 1 header.order_number IS: he

  • VL10B does not pick NB Po

    Hi Have a strange issue, VL10B does not pick the PO, cross company purchases The delivery date is more than 60 dyas, while the delivery creation date is within VL10B std time period of 30 days. Also do not get anything in VETVG If I put route, VL10B

  • HELP - Fireworks 8 is flattening PNG created w/ MX to BMP

    Help please Fireworks 8 is flattening my PNG created with Fireworks MX to a bmp that has no layers. It still SAYS PNG but the layers are gone. Is there some kind of problem with opening png's created with older versions of fireworks? I almost wish I