Dreamweaver CS6 - CSS Validation?

Hello folks,
I know we have a W3C Validation feature in Dreamweaver CS6 ( which is very nice ), but it only seems to validate HTML code.
What about validating CSS within Dreamweaver?  I can't find this feature anywhere.
Is there a way to validate CSS within Dreamweaver?
Thanks!

The issue is not with building the tool (Adobe has done similar tools in the past).
The issue is with keeping it up to date and relevant so that it's a worthwhile inclusion in the DW toolkit and can be regularly used on a daily basis.
CSS is evolving and updating so fast that many DW users want bleeding edge tools which are up to the minute with every latest development. Adobe cannot keep up - plus it's not their core business - and 3rd parties and online tools do the job so much better.
Why compete? Align instead and point DW users towards reputable online tools.
As Murray says, I'd prefer Adobe invests its engineering hours elsewhere..
Acrually, Adobe switched to incorporating online tool for HTML validation within Dreamweaver, starting with version CS5.5, so they don't need to update anything.  They just access the online tool directly.  This is very efficient.  Now all they need is to do the same for the CSS validator.

Similar Messages

  • How can I bring back image Align options in Dreamweaver CS6 (CSS not an option)?

    Why were the options to align images from the Property bar removed in Dreamweaver CS6? When CSS isn't an option (email, CMSs, etc ), what options are available to better edit the inline HTML code?
    For this purpose, is it better to revert to an older version of Dreamweaver?

    You can write inline code in any version of Dreamweaver, but you need to hand-code it. Versions later than CS2 or Dreamweaver MX don't really support inline code generation, as the idea for websites was to generate external style sheets.
    Here's what I do for emails: I use MailChimp. Their on-line email generators do write good code that is readable in any email application and they also allow the user to subscribe to a text-only email.
    If you still have your old copy of Dreamweaver MX or CS-2 that supports in-line code generation, keep using that. It will coexist nicely with Dreamweaver CS6 and you can have both open at the same time. As long as it continues to work correctly on your operating system, you're good to go.
    -Mark

  • How do I make a box change radius when hovering in Dreamweaver CS6 CSS

    I am trying to make the radius of my box containing text change when I hover over the link. I don't want the link to be the text itself because I need the link to span across each of my images.
    So here is my HTML:
    <div id="contentbox">
        <div id="pageblock">
           <div id="cdphoto">
                 <h2><a href="costumedesign.html"><div class="h2box">COSTUME DESIGN</div></a></h2>
           </div>
           <div id="gdphoto">
           <h2><a href="graphicdesign.html"><div class="h2box">GRAPHIC DESIGN</div></a></h2>
           </div>
           <div id="hmphoto">
           <h2><a href="hairandmakeup.html"><div class="h2box">HAIR &amp; MAKEUP</div></a></h2>
    CSS:
    .h2box {
      height: 20px;
      width: 240;
      margin-top: 272px;
      -moz-box-shadow: inset 0 0 10px #777777;
      -moz-box-shadow: inset 0 0 10px #7777777;
      box-shadow: inset 0 0 10px #777777;
      background-color: #000;
      opacity: 0.8;
    help

    Moved to the main Dreamweaver support forum.
    Without seeing the actual web page, it's difficult to give definitive advice on CSS. However, there are several problems with your HTML markup.
    It looks as though you're using <h2> tags for a navigation menu. <h2> tags are for second-level headings. They're not suitable for menu items.
    You have <div> elements nested inside your <h2> elements. A <div> is a standalone element that forms a block of its own. It cannot be used inside a text element, such as a heading or a paragraph. To apply markup to a part of a text element, you should use <span> instead of <div>.
    The simple answer to your original question, though, is to apply border-radius to .h2box:hover.
    .h2box:hover {
       border-radius: 15px;
    But for better help, post a URL to the page you're working on. Seeing everything in context makes a big difference to the advice that anyone can offer.

  • CSS needs PHP to execute in order to render in Dreamweaver CS6

    When I view my web pages while in Dreamweaver, I need a piece of PHP code ( called ws_general.php ) to execute in order for the CSS to render.
    The pages do look fine when in a browser but I would like to solve this to better test my pages while in Dreaweaver.
    I have looked through various solutions but with no luck.
    I am using:  Windows 7 SP1
    Dreamweaver CS6, build 5842
    Thanks

    Murray,
    The raw code at the top of my page is as follows:
    <!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>Jim Calvert Photographer - My Images</title>
        <meta name="description" content="Photography has been a modest pastime for most of my adult life but recently became a serious passion.  I feel very much at home outdoors in natural surroundings and enjoy the rewards of all-season photography">
        <meta name="keywords" content="Jim Calvert, wildlife, photography, landscapes, Mississauga, Canada ">   
        <meta http-equiv="content-language" content="en-ca">
        <meta name="copyright" content="Jim Calvert Photographer">
        <meta name="company" content="Lanmax Computer Solutions Inc.">
        <meta name="robots" content="index, follow">
        <meta name="Language" content="English">
        <link rel="stylesheet" type="text/css" media="all" href="ws_css/ws_general.php">                     <<<<<<<<<<<< this is the php that needs to run !
        <script type="text/javascript" src="ws_javascripts/rotator.js"></script>
    <style type="text/css">
    .style23 {
        font-size: 1.4em
    </style></head><body onload="rotateImage('RandPic')">
    <div id="wrapper">
        <div id="top">
    ......... etc, etc..
    And the ws_general.php code is:
    <?php
    Burning Foliage Colour Scheme
    Dark Green    #394635
    Green        #6D7D59
    MyGreen        #2AB305
    Light Green    #B8C39E
    Beige        #F1F2DB
    Light Beige    #ECD77A
    Light Brown    #CD9644
    Brown        #8A5823
    Dark Brown    #513311
    Very Dark Brown #1F1306
    header("Content-type: text/css");
    $main_bkgd = '#1F1306';
    $def_text = '#F1F2DB';
    $other_text = '#ECD77A';
    $link_text = '#2AB305';  /* 2010.08.23  */
    $borders = '#8A5823';
    $titles = '#CD9644';
    $def_menu = '#B8C39E';
    ?>
    /* Standard styles */
    body {
        position: relative;
        text-align: left;
        margin: 0;
        padding: 0;
        font:62.5%  Georgia, Lucida Grande, Lucida Sans Unicode, trebuchet ms, Arial,Helvetica,sans-serif;
        color: <?=$def_text?>;
        background-color: <?=$main_bkgd?>;
        background-position: top left;
        background-repeat: repeat-x;
    p {font-size: 1.2em; font-weight: normal; text-decoration: none; line-height: 1.7em; color:<?=$def_text?>; margin: 0; padding: 0 0 .7em 0; }
    h1, h2, h3 {font-weight: normal; }
    h1 {font-size: 1em; paddi..........etc, etc
    Does this help?
    Cheers

  • Creating CSS Transitions in Dreamweaver CS6 | Digital Design CS6 | Adobe TV

    Adobe Evangelist Greg Rewis shows how to create CSS transitions in Dreamweaver CS6.
    http://adobe.ly/Iq6zSH

    I just try one thing, I place a tooltip like here: http://tv.adobe.com/watch/csinsider-design/muse-trigger-target/
    It´s just what I wanted.
    thanks and regards

  • Dreamweaver CS6 Validation Error - No Internet Connection

    I got my Dreamweaver CS6 Student Version installed on my computer, but when I try to activate the product, it said "Please Connect to the Internet and Retry", your computer seems to be offine.
    But I do have Internet connection which works fine. I don't know why I can't activate it. I retried many times, it just keeps saying "Please Connect to the Internet and Retry".
    I am so confused

    Try turning off firewalls that may block be blocking the connection.  If not, try again later to make sure it's not an Adobe server issue and as a last resort contact Adobe.
    http://www.adobe.com/company/contact.html

  • Dreamweaver CS6:  Installation disk won't allow a change in the location of the installation folder

    First, I hope the moderators will cut me some slack for making a duplicate posting.  The comments below were posted in the "Creative Suites" community.  I just noticed that there is a "Dreamweaver" community.  I feel the issues I've raised below are more relevant to the latter.
    I recently purchased a Dreamweaver CS6 installation disk and have a valid registration code.  The Adobe website has recognized this code as valid.
    I started-out  by having the installation disk install into a folder on a high capacity (0.5 tb) external drive.  This was done while my Gateway PC was still working properly.  I did a duplicate installation onto this hard drive (into a separate folder) to accommodate any work I wanted to do on a Dell laptop I also own.  For a few days things seemed to work ok on both computers.  Then the cursor on my Gateway stopped moving.  Several changes of mice failed to resolve the problem.  I've written-off my Gateway as "dead."  However the Dreamweaver CS6 installation MAY (I can't remember) be on a "local" folder on my Gateway and I am concerned I will have trouble installing Dreamweaver on the replacement I've purchased.  I understand one is limited to 2 installations.  If needed, can I purchase a license for a third installation?  And what might that cost?
    After turning-off my Gateway I then went to my Dell laptop to try to work with Dreamweaver there.  I felt it was best to install on a "local" folder so I deleted all the Dreamweaver software from the folders on my external drive.  Unfortunately the installation disk is still "pointed" to the folders on my external drive.  To make matters worse I am now getting an error message which indicates I need to install into a folder on the "local" drive of my Dell laptop.  But the installation disk won't allow me to change the path.  On the installation disk the "path" to my external drive is faded-out and it will not allow me to delete and type-in a new path.
    I've spent what, to me, are big bucks on this Dreamweaver disk.  It's the only website building software that seemed to get consistently good reviews. However, for me, Dreamweaver is becoming a nightmare!  I'm very much of a novice at website building.  I don't know how, in the world, I will be able to a)  Create something, and then  b)  Get Dreamweaver to put it onto what is now a blank webpage.  I recently got "Dreamweaver CS6 The Missing Manual" and "Dreamweaver CS6 For Dummies."  So far I haven't been able to find anything, in either of these two books, which addresses the issues I've raised here.
    Somebody--please help!!
    Don't know if my screen name will show up.  So my name is JACK, near Old Faithfull.

    Have you tried calling Adobe Customer service? They can deactivate one of your installations so that you can install and run on a new system. And perhaps they can help with your other problem, or send you to a tech support rep who can.
    With regard to your use of DW, I'd strongly suggest that you take advantage of this downtime by learning as much HTML and CSS as you can absorb. Multiple sittings would be helpful. The more you know about those two, the easier DW will be for you when you eventually get it going.
    Here are some tutorial sites that may be helpful -
    http://www.w3schools.com
    http://www.html.net

  • Adobe Dreamweaver CS6 has stopped working

    Hello - I am attempting to download and install a trial version of Dreamweaver 6 on my PC running Win7 Pro 32 bit service pack 1 with 4GB RAM and an E6300 processor. I have managed to download and extract the application but once I attempt to launch the program, I get a Dreamweaver panel that says it is installing files, then after a few minutes I receive the error message below and the installation window goes blank.
    I have attempted the installation 3 different times using ADA and the direct download methods described in the FAQ's but in every instance, I have been met with this same error. I have disabled my firewall and antivirus but I still get this error. Between installation attempts, I have removed DW6 via the remove programs function in the control panel and restarted my PC. I seem to be able to download the application fine but every time I attempt to run it, I get this error. Any words of wisdom. Thank you.

    Hey Mylenium I have an update for you. I got the application to start, here is what I did. Thinking the problem might be permissions related, I went to the application directory, C:\Program Files\Adobe\Adobe Dreamweaver CS6, and gave full control to all users and cleared the "read only" for the application directory and all files in the subordinate file structure. Then using Windows Explorer, I navigated to a CSS file that I was working on with a text editor. I right clicked the CSS file and selected "Edit with Dreamweaver 6". To my surprise the file opened in Dreamweaver. Since then, I have used DW to create an HTML website with external JavaScript and CSS files. Dreamweaver now opens when I double click the application icon.
    Even though I got it to work, I captured a related event from event viewer and the installation log for referrence and the benefit of others.
    Windows Event ID 1000, Application Error
      Faulting application name: Dreamweaver.exe, version: 12.0.0.5808, time stamp: 0x4f7617ae
    Faulting module name: ntdll.dll, version: 6.1.7601.17725, time stamp: 0x4ec49b60
    Exception code: 0xc0000374
    Fault offset: 0x000c380b
    Faulting process id: 0x19cc
    Faulting application start time: 0x01cd9f88800aac83
    Faulting application path: C:\Program Files\Adobe\Adobe Dreamweaver CS6\Dreamweaver.exe
    Faulting module path: C:\Windows\SYSTEM32\ntdll.dll
    Report Id: c0887857-0b7b-11e2-bfa7-00232406d8de
    Adobe Installation Log
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Visit http://www.adobe.com/go/loganalyzer/ for more information
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    START - Installer Session
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    RIBS version: 6.0.98.0
    Win OS version: 6.1.1.0  Type: 1
    ::START TIMER:: [Total Timer]
    CHECK: Single instance running
    CHECK : Credentials
    Load Deployment File
    CHECK : Another Native OS installer already running
    Create Required Folders
    Assuming uninstall mode
    Lookup for master payload
    Ready to initialize session to start with ...
    ::START TIMER:: [CreatePayloadSession]
    Supported RIBS version range: [0.0.66.0,6.0.98.0]
    ----------------- CreatePayloadSession: machine is x86 ---------------
    ______ Verify Dependency Subscribers ______
    BEGIN Operation order for all session payloads: mediaGroup (requires,satisfies)
      {354D20E6-A25F-4728-9DA6-C9003D8F2928} Adobe Player for Embedding 3.3 3.3.0.0: 1 (0,3)
      {9E0AF030-AC6B-11E0-8837-00215AEA26C9} Microsoft Visual C++ 2010 Redistributable Package (x86) 10.0.40219.1: 2 (0,5)
      {9AB0EFC0-AC6B-11E0-9E61-00215AEA26C9} Microsoft Visual C++ 2005 Redistributable Package (x86) 6.0.2900.2180: 3 (0,4)
      {9C4AA28F-AC6B-11E0-8997-00215AEA26C9} Microsoft Visual C++ 2008 Redistributable Package (x86) 9.0.30729.4148: 3 (0,4)
      {B8ADDCBD-30D9-4366-AE25-089CEF76C8E1} Suite Shared Configuration CS6 3.0.0.0: 4 (1,1)
      {EB2A8CD4-B247-4810-A294-E3DB8EDC6060} Adobe CSXS Extensions CS6 3.0.0.0: 5 (0,1)
      {C0C7DC90-C8DF-46DA-BA21-848889DAFD11} Adobe Dreamweaver Widget Browser 1.0.0.0: 5 (0,1)
      {DC00A3E1-9C61-4B11-8070-B592E68D2B3C} Adobe Linguistics CS6 6.0.0.0: 5 (0,1)
      {D38116C8-C472-4BB0-AD6F-0C1DD1320D1D} AdobeHelp 4.0.0.0: 5 (0,1)
      {36682D68-3834-487E-BA49-DFA4AB0A2E32} Adobe CSXS Infrastructure CS6 3.0.0.0: 6 (3,1)
      {EFBC1075-F890-4293-A0D1-04BE66EE2AB3} Adobe ExtendScript Toolkit CS6 3.8.0.0: 7 (4,1)
      {83463106-DD1C-4FE5-A61C-DF6715472AD4} Adobe Extension Manager CS6 6.0.0.0: 7 (4,1)
      {A4ED5E53-7AA0-11E1-BF04-B2D4D4A5360E} Adobe Dreamweaver CS6 12.0.0.0: 8 (12,0)
      {8E8021FF-7AA0-11E1-BF04-E98EE5274486} Adobe Dreamweaver CS6_AdobeDreamweaver12ja_JPLanguagePack 12.0.0.0: 9 (0,0)
      {8FDB26FC-7AA0-11E1-BF04-E25246635842} Adobe Dreamweaver CS6_AdobeDreamweaver12en_USLanguagePack 12.0.0.0: 9 (0,0)
    END Operation order for all session payloads: mediaGroup (requires,satisfies)
    Setting property "driverAdobeCode" to: {A4ED5E53-7AA0-11E1-BF04-B2D4D4A5360E}
    Setting property "mediaSignature" to: {A4ED5E53-7AA0-11E1-BF04-B2D4D4A5360E}
    Overwrite property "userASUPath" to: C:\Program Files\Common Files\Adobe\OOBE\PDApp\core\..\D6
    Found payload actions:
    Deciding what installer mode to use...
    {8E8021FF-7AA0-11E1-BF04-E98EE5274486} Adobe Dreamweaver CS6_AdobeDreamweaver12ja_JPLanguagePack 12.0.0.0 not installed
    BEGIN Setting requested payload actions
    Value returned on lookup of payload: {8FDB26FC-7AA0-11E1-BF04-E25246635842} Adobe Dreamweaver CS6_AdobeDreamweaver12en_USLanguagePack 12.0.0.0 is: true
    Action string for {8FDB26FC-7AA0-11E1-BF04-E25246635842} Adobe Dreamweaver CS6_AdobeDreamweaver12en_USLanguagePack 12.0.0.0  is none
    Payload {8FDB26FC-7AA0-11E1-BF04-E25246635842} Adobe Dreamweaver CS6_AdobeDreamweaver12en_USLanguagePack 12.0.0.0 is extension payload. Aligning its action according to parent {A4ED5E53-7AA0-11E1-BF04-B2D4D4A5360E} Adobe Dreamweaver CS6 12.0.0.0
    Value returned on lookup of payload: {8E8021FF-7AA0-11E1-BF04-E98EE5274486} Adobe Dreamweaver CS6_AdobeDreamweaver12ja_JPLanguagePack 12.0.0.0 is: false
    Action string for {8E8021FF-7AA0-11E1-BF04-E98EE5274486} Adobe Dreamweaver CS6_AdobeDreamweaver12ja_JPLanguagePack 12.0.0.0  is none
    Payload {8E8021FF-7AA0-11E1-BF04-E98EE5274486} Adobe Dreamweaver CS6_AdobeDreamweaver12ja_JPLanguagePack 12.0.0.0 is extension payload. Aligning its action according to parent {A4ED5E53-7AA0-11E1-BF04-B2D4D4A5360E} Adobe Dreamweaver CS6 12.0.0.0
    Value returned on lookup of payload: {A4ED5E53-7AA0-11E1-BF04-B2D4D4A5360E} Adobe Dreamweaver CS6 12.0.0.0 is: true
    Action string for {A4ED5E53-7AA0-11E1-BF04-B2D4D4A5360E} Adobe Dreamweaver CS6 12.0.0.0  is remove
    Selection of payload {A4ED5E53-7AA0-11E1-BF04-B2D4D4A5360E} Adobe Dreamweaver CS6 12.0.0.0 is forbidden by the policy. Reason: Free payload
    Value returned on lookup of payload: {83463106-DD1C-4FE5-A61C-DF6715472AD4} Adobe Extension Manager CS6 6.0.0.0 is: true
    Action string for {83463106-DD1C-4FE5-A61C-DF6715472AD4} Adobe Extension Manager CS6 6.0.0.0  is none
    Value returned on lookup of payload: {EFBC1075-F890-4293-A0D1-04BE66EE2AB3} Adobe ExtendScript Toolkit CS6 3.8.0.0 is: true
    Action string for {EFBC1075-F890-4293-A0D1-04BE66EE2AB3} Adobe ExtendScript Toolkit CS6 3.8.0.0  is none
    Value returned on lookup of payload: {36682D68-3834-487E-BA49-DFA4AB0A2E32} Adobe CSXS Infrastructure CS6 3.0.0.0 is: true
    Action string for {36682D68-3834-487E-BA49-DFA4AB0A2E32} Adobe CSXS Infrastructure CS6 3.0.0.0  is none
    Value returned on lookup of payload: {D38116C8-C472-4BB0-AD6F-0C1DD1320D1D} AdobeHelp 4.0.0.0 is: true
    Action string for {D38116C8-C472-4BB0-AD6F-0C1DD1320D1D} AdobeHelp 4.0.0.0  is none
    Value returned on lookup of payload: {DC00A3E1-9C61-4B11-8070-B592E68D2B3C} Adobe Linguistics CS6 6.0.0.0 is: true
    Action string for {DC00A3E1-9C61-4B11-8070-B592E68D2B3C} Adobe Linguistics CS6 6.0.0.0  is none
    Value returned on lookup of payload: {C0C7DC90-C8DF-46DA-BA21-848889DAFD11} Adobe Dreamweaver Widget Browser 1.0.0.0 is: true
    Action string for {C0C7DC90-C8DF-46DA-BA21-848889DAFD11} Adobe Dreamweaver Widget Browser 1.0.0.0  is none
    Value returned on lookup of payload: {EB2A8CD4-B247-4810-A294-E3DB8EDC6060} Adobe CSXS Extensions CS6 3.0.0.0 is: true
    Action string for {EB2A8CD4-B247-4810-A294-E3DB8EDC6060} Adobe CSXS Extensions CS6 3.0.0.0  is none
    Value returned on lookup of payload: {B8ADDCBD-30D9-4366-AE25-089CEF76C8E1} Suite Shared Configuration CS6 3.0.0.0 is: true
    Action string for {B8ADDCBD-30D9-4366-AE25-089CEF76C8E1} Suite Shared Configuration CS6 3.0.0.0  is none
    Value returned on lookup of payload: {9C4AA28F-AC6B-11E0-8997-00215AEA26C9} Microsoft Visual C++ 2008 Redistributable Package (x86) 9.0.30729.4148 is: true
    Action string for {9C4AA28F-AC6B-11E0-8997-00215AEA26C9} Microsoft Visual C++ 2008 Redistributable Package (x86) 9.0.30729.4148  is none
    Value returned on lookup of payload: {9AB0EFC0-AC6B-11E0-9E61-00215AEA26C9} Microsoft Visual C++ 2005 Redistributable Package (x86) 6.0.2900.2180 is: true
    Action string for {9AB0EFC0-AC6B-11E0-9E61-00215AEA26C9} Microsoft Visual C++ 2005 Redistributable Package (x86) 6.0.2900.2180  is none
    Value returned on lookup of payload: {9E0AF030-AC6B-11E0-8837-00215AEA26C9} Microsoft Visual C++ 2010 Redistributable Package (x86) 10.0.40219.1 is: true
    Action string for {9E0AF030-AC6B-11E0-8837-00215AEA26C9} Microsoft Visual C++ 2010 Redistributable Package (x86) 10.0.40219.1  is none
    Value returned on lookup of payload: {354D20E6-A25F-4728-9DA6-C9003D8F2928} Adobe Player for Embedding 3.3 3.3.0.0 is: true
    Action string for {354D20E6-A25F-4728-9DA6-C9003D8F2928} Adobe Player for Embedding 3.3 3.3.0.0  is none
    END Setting requested payload actions
    INSTALLDIR passed path basic path validation: C:\Program Files\Adobe
    [    3128] Sun Sep 30 19:59:15 2012  INFO
    BEGIN InstallOperationsQueue Unordered operations
      {354D20E6-A25F-4728-9DA6-C9003D8F2928} Adobe Player for Embedding 3.3 3.3.0.0:  with operation remove
      {36682D68-3834-487E-BA49-DFA4AB0A2E32} Adobe CSXS Infrastructure CS6 3.0.0.0:  with operation remove
      {83463106-DD1C-4FE5-A61C-DF6715472AD4} Adobe Extension Manager CS6 6.0.0.0:  with operation remove
      {8E8021FF-7AA0-11E1-BF04-E98EE5274486} Adobe Dreamweaver CS6_AdobeDreamweaver12ja_JPLanguagePack 12.0.0.0:  with operation none
      {8FDB26FC-7AA0-11E1-BF04-E25246635842} Adobe Dreamweaver CS6_AdobeDreamweaver12en_USLanguagePack 12.0.0.0:  with operation remove
      {9AB0EFC0-AC6B-11E0-9E61-00215AEA26C9} Microsoft Visual C++ 2005 Redistributable Package (x86) 6.0.2900.2180:  with operation remove
      {9C4AA28F-AC6B-11E0-8997-00215AEA26C9} Microsoft Visual C++ 2008 Redistributable Package (x86) 9.0.30729.4148:  with operation remove
      {9E0AF030-AC6B-11E0-8837-00215AEA26C9} Microsoft Visual C++ 2010 Redistributable Package (x86) 10.0.40219.1:  with operation remove
      {A4ED5E53-7AA0-11E1-BF04-B2D4D4A5360E} Adobe Dreamweaver CS6 12.0.0.0:  with operation remove
      {B8ADDCBD-30D9-4366-AE25-089CEF76C8E1} Suite Shared Configuration CS6 3.0.0.0:  with operation remove
      {C0C7DC90-C8DF-46DA-BA21-848889DAFD11} Adobe Dreamweaver Widget Browser 1.0.0.0:  with operation remove
      {D38116C8-C472-4BB0-AD6F-0C1DD1320D1D} AdobeHelp 4.0.0.0:  with operation remove
      {DC00A3E1-9C61-4B11-8070-B592E68D2B3C} Adobe Linguistics CS6 6.0.0.0:  with operation remove
      {EB2A8CD4-B247-4810-A294-E3DB8EDC6060} Adobe CSXS Extensions CS6 3.0.0.0:  with operation remove
      {EFBC1075-F890-4293-A0D1-04BE66EE2AB3} Adobe ExtendScript Toolkit CS6 3.8.0.0:  with operation remove
    END InstallOperationsQueue Unordered operations
    BEGIN InstallOperationsQueue Ordered operations
      {8FDB26FC-7AA0-11E1-BF04-E25246635842} Adobe Dreamweaver CS6_AdobeDreamweaver12en_USLanguagePack 12.0.0.0:  with operation remove
      {A4ED5E53-7AA0-11E1-BF04-B2D4D4A5360E} Adobe Dreamweaver CS6 12.0.0.0:  with operation remove
      {83463106-DD1C-4FE5-A61C-DF6715472AD4} Adobe Extension Manager CS6 6.0.0.0:  with operation remove
      {EFBC1075-F890-4293-A0D1-04BE66EE2AB3} Adobe ExtendScript Toolkit CS6 3.8.0.0:  with operation remove
      {36682D68-3834-487E-BA49-DFA4AB0A2E32} Adobe CSXS Infrastructure CS6 3.0.0.0:  with operation remove
      {D38116C8-C472-4BB0-AD6F-0C1DD1320D1D} AdobeHelp 4.0.0.0:  with operation remove
      {DC00A3E1-9C61-4B11-8070-B592E68D2B3C} Adobe Linguistics CS6 6.0.0.0:  with operation remove
      {C0C7DC90-C8DF-46DA-BA21-848889DAFD11} Adobe Dreamweaver Widget Browser 1.0.0.0:  with operation remove
      {EB2A8CD4-B247-4810-A294-E3DB8EDC6060} Adobe CSXS Extensions CS6 3.0.0.0:  with operation remove
      {B8ADDCBD-30D9-4366-AE25-089CEF76C8E1} Suite Shared Configuration CS6 3.0.0.0:  with operation remove
      {9C4AA28F-AC6B-11E0-8997-00215AEA26C9} Microsoft Visual C++ 2008 Redistributable Package (x86) 9.0.30729.4148:  with operation remove
      {9AB0EFC0-AC6B-11E0-9E61-00215AEA26C9} Microsoft Visual C++ 2005 Redistributable Package (x86) 6.0.2900.2180:  with operation remove
      {9E0AF030-AC6B-11E0-8837-00215AEA26C9} Microsoft Visual C++ 2010 Redistributable Package (x86) 10.0.40219.1:  with operation remove
      {354D20E6-A25F-4728-9DA6-C9003D8F2928} Adobe Player for Embedding 3.3 3.3.0.0:  with operation remove
    END InstallOperationsQueue Ordered operations
    Payloads passed preflight validation.
    Call PreSession Custom Hook
    BEGIN InstallOperationsQueue Unordered operations
      {354D20E6-A25F-4728-9DA6-C9003D8F2928} Adobe Player for Embedding 3.3 3.3.0.0:  with operation remove
      {36682D68-3834-487E-BA49-DFA4AB0A2E32} Adobe CSXS Infrastructure CS6 3.0.0.0:  with operation remove
      {83463106-DD1C-4FE5-A61C-DF6715472AD4} Adobe Extension Manager CS6 6.0.0.0:  with operation remove
      {8E8021FF-7AA0-11E1-BF04-E98EE5274486} Adobe Dreamweaver CS6_AdobeDreamweaver12ja_JPLanguagePack 12.0.0.0:  with operation none
      {8FDB26FC-7AA0-11E1-BF04-E25246635842} Adobe Dreamweaver CS6_AdobeDreamweaver12en_USLanguagePack 12.0.0.0:  with operation remove
      {9AB0EFC0-AC6B-11E0-9E61-00215AEA26C9} Microsoft Visual C++ 2005 Redistributable Package (x86) 6.0.2900.2180:  with operation remove
      {9C4AA28F-AC6B-11E0-8997-00215AEA26C9} Microsoft Visual C++ 2008 Redistributable Package (x86) 9.0.30729.4148:  with operation remove
      {9E0AF030-AC6B-11E0-8837-00215AEA26C9} Microsoft Visual C++ 2010 Redistributable Package (x86) 10.0.40219.1:  with operation remove
      {A4ED5E53-7AA0-11E1-BF04-B2D4D4A5360E} Adobe Dreamweaver CS6 12.0.0.0:  with operation remove
      {B8ADDCBD-30D9-4366-AE25-089CEF76C8E1} Suite Shared Configuration CS6 3.0.0.0:  with operation remove
      {C0C7DC90-C8DF-46DA-BA21-848889DAFD11} Adobe Dreamweaver Widget Browser 1.0.0.0:  with operation remove
      {D38116C8-C472-4BB0-AD6F-0C1DD1320D1D} AdobeHelp 4.0.0.0:  with operation remove
      {DC00A3E1-9C61-4B11-8070-B592E68D2B3C} Adobe Linguistics CS6 6.0.0.0:  with operation remove
      {EB2A8CD4-B247-4810-A294-E3DB8EDC6060} Adobe CSXS Extensions CS6 3.0.0.0:  with operation remove
      {EFBC1075-F890-4293-A0D1-04BE66EE2AB3} Adobe ExtendScript Toolkit CS6 3.8.0.0:  with operation remove
    END InstallOperationsQueue Unordered operations
    BEGIN InstallOperationsQueue Ordered operations
      {8FDB26FC-7AA0-11E1-BF04-E25246635842} Adobe Dreamweaver CS6_AdobeDreamweaver12en_USLanguagePack 12.0.0.0:  with operation remove
      {A4ED5E53-7AA0-11E1-BF04-B2D4D4A5360E} Adobe Dreamweaver CS6 12.0.0.0:  with operation remove
      {83463106-DD1C-4FE5-A61C-DF6715472AD4} Adobe Extension Manager CS6 6.0.0.0:  with operation remove
      {EFBC1075-F890-4293-A0D1-04BE66EE2AB3} Adobe ExtendScript Toolkit CS6 3.8.0.0:  with operation remove
      {36682D68-3834-487E-BA49-DFA4AB0A2E32} Adobe CSXS Infrastructure CS6 3.0.0.0:  with operation remove
      {D38116C8-C472-4BB0-AD6F-0C1DD1320D1D} AdobeHelp 4.0.0.0:  with operation remove
      {DC00A3E1-9C61-4B11-8070-B592E68D2B3C} Adobe Linguistics CS6 6.0.0.0:  with operation remove
      {C0C7DC90-C8DF-46DA-BA21-848889DAFD11} Adobe Dreamweaver Widget Browser 1.0.0.0:  with operation remove
      {EB2A8CD4-B247-4810-A294-E3DB8EDC6060} Adobe CSXS Extensions CS6 3.0.0.0:  with operation remove
      {B8ADDCBD-30D9-4366-AE25-089CEF76C8E1} Suite Shared Configuration CS6 3.0.0.0:  with operation remove
      {9C4AA28F-AC6B-11E0-8997-00215AEA26C9} Microsoft Visual C++ 2008 Redistributable Package (x86) 9.0.30729.4148:  with operation remove
      {9AB0EFC0-AC6B-11E0-9E61-00215AEA26C9} Microsoft Visual C++ 2005 Redistributable Package (x86) 6.0.2900.2180:  with operation remove
      {9E0AF030-AC6B-11E0-8837-00215AEA26C9} Microsoft Visual C++ 2010 Redistributable Package (x86) 10.0.40219.1:  with operation remove
      {354D20E6-A25F-4728-9DA6-C9003D8F2928} Adobe Player for Embedding 3.3 3.3.0.0:  with operation remove
    END InstallOperationsQueue Ordered operations
    Calling the custom action code for pre-remove for payload {8FDB26FC-7AA0-11E1-BF04-E25246635842} Adobe Dreamweaver CS6_AdobeDreamweaver12en_USLanguagePack 12.0.0.0
    ::START TIMER:: [Payload Operation :{8FDB26FC-7AA0-11E1-BF04-E25246635842}]
    [    2768] Sun Sep 30 19:59:15 2012  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: PayloadUninstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Session {A4ED5E53-7AA0-11E1-BF04-B2D4D4A5360E} modify request for AdobeCode: {8FDB26FC-7AA0-11E1-BF04-E25246635842}
    Effective AdobeCode for: {8FDB26FC-7AA0-11E1-BF04-E25246635842} is {8FDB26FC-7AA0-11E1-BF04-E25246635842}
    Uninstalling payload
    Payload {8FDB26FC-7AA0-11E1-BF04-E25246635842} Adobe Dreamweaver CS6_AdobeDreamweaver12en_USLanguagePack 12.0.0.0: Calling ARKEngine from path C:\Program Files\Common Files\Adobe\OOBE\PDApp\DECore\DE6\resources
    [    2768] Sun Sep 30 19:59:16 2012  INFO
    Beginning un-installation for payload at C:\Program Files\Common Files\Adobe\Installers\uninstall\{8FDB26FC-7AA0-11E1-BF04-E25246635842}.db
    Completing un-installation for payload at C:\Program Files\Common Files\Adobe\Installers\uninstall\{8FDB26FC-7AA0-11E1-BF04-E25246635842}.db
    Physical payload uninstall result:0
    [    3128] Sun Sep 30 19:59:16 2012  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 0 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{8FDB26FC-7AA0-11E1-BF04-E25246635842}] took 1103.89 milliseconds (1.10389 seconds) DTR = 11975.9 KBPS (11.6952 MBPS)
    [    3128] Sun Sep 30 19:59:17 2012  INFO
    User specified overrideFile:
    Successfully updated the csu inventory for {8FDB26FC-7AA0-11E1-BF04-E25246635842} Adobe Dreamweaver CS6_AdobeDreamweaver12en_USLanguagePack 12.0.0.0 return values 0:0
    Calling the custom action code for post-remove for payload {8FDB26FC-7AA0-11E1-BF04-E25246635842} Adobe Dreamweaver CS6_AdobeDreamweaver12en_USLanguagePack 12.0.0.0
    Calling the custom action code for pre-remove for payload {A4ED5E53-7AA0-11E1-BF04-B2D4D4A5360E} Adobe Dreamweaver CS6 12.0.0.0
    ::START TIMER:: [Payload Operation :{A4ED5E53-7AA0-11E1-BF04-B2D4D4A5360E}]
    [    4424] Sun Sep 30 19:59:17 2012  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: PayloadUninstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Session {A4ED5E53-7AA0-11E1-BF04-B2D4D4A5360E} modify request for AdobeCode: {A4ED5E53-7AA0-11E1-BF04-B2D4D4A5360E}
    Effective AdobeCode for: {A4ED5E53-7AA0-11E1-BF04-B2D4D4A5360E} is {A4ED5E53-7AA0-11E1-BF04-B2D4D4A5360E}
    Uninstalling payload
    Payload {A4ED5E53-7AA0-11E1-BF04-B2D4D4A5360E} Adobe Dreamweaver CS6 12.0.0.0: Calling ARKEngine from path C:\Program Files\Common Files\Adobe\OOBE\PDApp\DECore\DE6\resources
    Beginning un-installation for payload at C:\Program Files\Common Files\Adobe\Installers\uninstall\{A4ED5E53-7AA0-11E1-BF04-B2D4D4A5360E}.db
    [    4424] Sun Sep 30 19:59:18 2012  INFO
    Evaluating condition# 1(Seq 57)
    Condition failed(Seq 57)
    Evaluating condition# 2(Seq 58)
    Condition failed(Seq 58)
    [    4424] Sun Sep 30 19:59:55 2012  INFO
    Evaluating condition# 3(Seq 9326)
    Condition failed(Seq 9326)
    Evaluating condition# 4(Seq 9327)
    Condition failed(Seq 9327)
    Completing un-installation for payload at C:\Program Files\Common Files\Adobe\Installers\uninstall\{A4ED5E53-7AA0-11E1-BF04-B2D4D4A5360E}.db
    [    4424] Sun Sep 30 20:00:02 2012  INFO
    Physical payload uninstall result:0
    [    3128] Sun Sep 30 20:00:02 2012  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 0 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{A4ED5E53-7AA0-11E1-BF04-B2D4D4A5360E}] took 45089.3 milliseconds (45.0893 seconds) DTR = 6047.2 KBPS (5.90547 MBPS)
    Updating driver data - Action: Add driver entry
    Updating driver data successful. Driver entry was added. ARP estimated size 0KB
    [    3128] Sun Sep 30 20:00:03 2012  INFO
    User specified overrideFile:
    [    3128] Sun Sep 30 20:00:04 2012  INFO
    Successfully updated the csu inventory for {A4ED5E53-7AA0-11E1-BF04-B2D4D4A5360E} Adobe Dreamweaver CS6 12.0.0.0 return values 0:0
    Calling the custom action code for post-remove for payload {A4ED5E53-7AA0-11E1-BF04-B2D4D4A5360E} Adobe Dreamweaver CS6 12.0.0.0
    Calling the custom action code for pre-remove for payload {83463106-DD1C-4FE5-A61C-DF6715472AD4} Adobe Extension Manager CS6 6.0.0.0
    ::START TIMER:: [Payload Operation :{83463106-DD1C-4FE5-A61C-DF6715472AD4}]
    [    1636] Sun Sep 30 20:00:04 2012  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: PayloadUninstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Session {A4ED5E53-7AA0-11E1-BF04-B2D4D4A5360E} modify request for AdobeCode: {83463106-DD1C-4FE5-A61C-DF6715472AD4}
    Effective AdobeCode for: {83463106-DD1C-4FE5-A61C-DF6715472AD4} is {83463106-DD1C-4FE5-A61C-DF6715472AD4}
    Uninstalling payload
    Payload {83463106-DD1C-4FE5-A61C-DF6715472AD4} Adobe Extension Manager CS6 6.0.0.0: Calling ARKEngine from path C:\Program Files\Common Files\Adobe\OOBE\PDApp\DECore\DE6\resources
    Beginning un-installation for payload at C:\Program Files\Common Files\Adobe\Installers\uninstall\{83463106-DD1C-4FE5-A61C-DF6715472AD4}.db
    [    1636] Sun Sep 30 20:00:06 2012  INFO
    Evaluating condition# 1(Seq 50)
    Condition failed(Seq 50)
    Evaluating condition# 2(Seq 51)
    Condition failed(Seq 51)
    Evaluating condition# 3(Seq 52)
    Condition failed(Seq 52)
    [    1636] Sun Sep 30 20:00:07 2012  INFO
    Completing un-installation for payload at C:\Program Files\Common Files\Adobe\Installers\uninstall\{83463106-DD1C-4FE5-A61C-DF6715472AD4}.db
    Physical payload uninstall result:0
    [    3128] Sun Sep 30 20:00:07 2012  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 0 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{83463106-DD1C-4FE5-A61C-DF6715472AD4}] took 2809.05 milliseconds (2.80905 seconds) DTR = 1728.7 KBPS (1.68818 MBPS)
    User specified overrideFile:
    [    3128] Sun Sep 30 20:00:09 2012  INFO
    Successfully updated the csu inventory for {83463106-DD1C-4FE5-A61C-DF6715472AD4} Adobe Extension Manager CS6 6.0.0.0 return values 0:0
    Calling the custom action code for post-remove for payload {83463106-DD1C-4FE5-A61C-DF6715472AD4} Adobe Extension Manager CS6 6.0.0.0
    Calling the custom action code for pre-remove for payload {EFBC1075-F890-4293-A0D1-04BE66EE2AB3} Adobe ExtendScript Toolkit CS6 3.8.0.0
    ::START TIMER:: [Payload Operation :{EFBC1075-F890-4293-A0D1-04BE66EE2AB3}]
    [    3776] Sun Sep 30 20:00:09 2012  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: PayloadUninstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Session {A4ED5E53-7AA0-11E1-BF04-B2D4D4A5360E} modify request for AdobeCode: {EFBC1075-F890-4293-A0D1-04BE66EE2AB3}
    Effective AdobeCode for: {EFBC1075-F890-4293-A0D1-04BE66EE2AB3} is {EFBC1075-F890-4293-A0D1-04BE66EE2AB3}
    Uninstalling payload
    Payload {EFBC1075-F890-4293-A0D1-04BE66EE2AB3} Adobe ExtendScript Toolkit CS6 3.8.0.0: Calling ARKEngine from path C:\Program Files\Common Files\Adobe\OOBE\PDApp\DECore\DE6\resources
    Beginning un-installation for payload at C:\Program Files\Common Files\Adobe\Installers\uninstall\{EFBC1075-F890-4293-A0D1-04BE66EE2AB3}.db
    [    3776] Sun Sep 30 20:00:11 2012  INFO
    Evaluating condition# 1(Seq 393)
    Condition failed(Seq 393)
    [    3776] Sun Sep 30 20:00:11 2012 ERROR
    DF037: Unable to delete directory "C:\Users\louie\AppData\Roaming\Adobe\ExtendScript Toolkit". Error 145 The directory is not empty.(Seq 394)
    [    3776] Sun Sep 30 20:00:11 2012  WARN
    DW063: Command ARKDeleteDirectoryCommand failed.(Seq 394)
    [    3776] Sun Sep 30 20:00:11 2012  INFO
    Completing un-installation for payload at C:\Program Files\Common Files\Adobe\Installers\uninstall\{EFBC1075-F890-4293-A0D1-04BE66EE2AB3}.db
    UninstallDBPath=C:\Program Files\Common Files\Adobe\Installers\uninstall\CommonUninstall.db
    [    3776] Sun Sep 30 20:00:12 2012  INFO
    Physical payload uninstall result:0
    [    3128] Sun Sep 30 20:00:12 2012  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 0 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{EFBC1075-F890-4293-A0D1-04BE66EE2AB3}] took 2704.13 milliseconds (2.70413 seconds) DTR = 6983.4 KBPS (6.81972 MBPS)
    User specified overrideFile:
    Successfully updated the csu inventory for {EFBC1075-F890-4293-A0D1-04BE66EE2AB3} Adobe ExtendScript Toolkit CS6 3.8.0.0 return values 0:0
    Calling the custom action code for post-remove for payload {EFBC1075-F890-4293-A0D1-04BE66EE2AB3} Adobe ExtendScript Toolkit CS6 3.8.0.0
    Calling the custom action code for pre-remove for payload {36682D68-3834-487E-BA49-DFA4AB0A2E32} Adobe CSXS Infrastructure CS6 3.0.0.0
    ::START TIMER:: [Pre payload :{36682D68-3834-487E-BA49-DFA4AB0A2E32}]
    In PrePayloadUninstallProc
    [    3128] Sun Sep 30 20:00:17 2012  INFO
    Custom action return code: 0
    :: END TIMER :: [Pre payload :{36682D68-3834-487E-BA49-DFA4AB0A2E32}] took 5016.72 milliseconds (5.01672 seconds) DTR = 1492.61 KBPS (1.45763 MBPS)
    ::START TIMER:: [Payload Operation :{36682D68-3834-487E-BA49-DFA4AB0A2E32}]
    [    5680] Sun Sep 30 20:00:17 2012  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: PayloadUninstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Session {A4ED5E53-7AA0-11E1-BF04-B2D4D4A5360E} modify request for AdobeCode: {36682D68-3834-487E-BA49-DFA4AB0A2E32}
    Effective AdobeCode for: {36682D68-3834-487E-BA49-DFA4AB0A2E32} is {36682D68-3834-487E-BA49-DFA4AB0A2E32}
    Uninstalling payload
    Payload {36682D68-3834-487E-BA49-DFA4AB0A2E32} Adobe CSXS Infrastructure CS6 3.0.0.0: Calling ARKEngine from path C:\Program Files\Common Files\Adobe\OOBE\PDApp\DECore\DE6\resources
    Beginning un-installation for payload at C:\Program Files\Common Files\Adobe\Installers\uninstall\{36682D68-3834-487E-BA49-DFA4AB0A2E32}.db
    Evaluating condition# 1(Seq 3)
    Condition failed(Seq 3)
    Evaluating condition# 2(Seq 4)
    Condition failed(Seq 4)
    Evaluating condition# 3(Seq 5)
    Condition failed(Seq 5)
    Evaluating condition# 4(Seq 6)
    Condition failed(Seq 6)
    Evaluating condition# 5(Seq 7)
    Condition failed(Seq 7)
    Completing un-installation for payload at C:\Program Files\Common Files\Adobe\Installers\uninstall\{36682D68-3834-487E-BA49-DFA4AB0A2E32}.db
    Physical payload uninstall result:0
    [    3128] Sun Sep 30 20:00:17 2012  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 0 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{36682D68-3834-487E-BA49-DFA4AB0A2E32}] took 411.968 milliseconds (0.411968 seconds) DTR = 15690.5 KBPS (15.3228 MBPS)
    [    3128] Sun Sep 30 20:00:18 2012  INFO
    User specified overrideFile:
    Successfully updated the csu inventory for {36682D68-3834-487E-BA49-DFA4AB0A2E32} Adobe CSXS Infrastructure CS6 3.0.0.0 return values 0:0
    Calling the custom action code for post-remove for payload {36682D68-3834-487E-BA49-DFA4AB0A2E32} Adobe CSXS Infrastructure CS6 3.0.0.0
    ::START TIMER:: [Post payload :{36682D68-3834-487E-BA49-DFA4AB0A2E32}]
    In PostPayloadUninstallProc
    Custom action return code: 0
    :: END TIMER :: [Post payload :{36682D68-3834-487E-BA49-DFA4AB0A2E32}] took 1.44891 milliseconds (0.00144891 seconds)
    Calling the custom action code for pre-remove for payload {D38116C8-C472-4BB0-AD6F-0C1DD1320D1D} AdobeHelp 4.0.0.0
    ::START TIMER:: [Payload Operation :{D38116C8-C472-4BB0-AD6F-0C1DD1320D1D}]
    [    5036] Sun Sep 30 20:00:18 2012  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: ModifyThirdPartyPayloadOperation
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Modify Thirdparty payload
    Unable to remove payload.
    Third party payload completed.  Testing return code: 0
    [    3128] Sun Sep 30 20:00:18 2012  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 7 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{D38116C8-C472-4BB0-AD6F-0C1DD1320D1D}] took 204.604 milliseconds (0.204604 seconds)
    User specified overrideFile:
    The csu inventory was not updated for payload {D38116C8-C472-4BB0-AD6F-0C1DD1320D1D} AdobeHelp 4.0.0.0, value of local var is -1
    Calling the custom action code for post-remove for payload {D38116C8-C472-4BB0-AD6F-0C1DD1320D1D} AdobeHelp 4.0.0.0
    Calling the custom action code for pre-remove for payload {DC00A3E1-9C61-4B11-8070-B592E68D2B3C} Adobe Linguistics CS6 6.0.0.0
    ::START TIMER:: [Payload Operation :{DC00A3E1-9C61-4B11-8070-B592E68D2B3C}]
    [    5964] Sun Sep 30 20:00:18 2012  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: PayloadUninstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Session {A4ED5E53-7AA0-11E1-BF04-B2D4D4A5360E} modify request for AdobeCode: {DC00A3E1-9C61-4B11-8070-B592E68D2B3C}
    Effective AdobeCode for: {DC00A3E1-9C61-4B11-8070-B592E68D2B3C} is {DC00A3E1-9C61-4B11-8070-B592E68D2B3C}
    Uninstalling payload
    Payload {DC00A3E1-9C61-4B11-8070-B592E68D2B3C} Adobe Linguistics CS6 6.0.0.0: Calling ARKEngine from path C:\Program Files\Common Files\Adobe\OOBE\PDApp\DECore\DE6\resources
    Beginning un-installation for payload at C:\Program Files\Common Files\Adobe\Installers\uninstall\{DC00A3E1-9C61-4B11-8070-B592E68D2B3C}.db
    [    5964] Sun Sep 30 20:00:20 2012  INFO
    Completing un-installation for payload at C:\Program Files\Common Files\Adobe\Installers\uninstall\{DC00A3E1-9C61-4B11-8070-B592E68D2B3C}.db
    [    5964] Sun Sep 30 20:00:21 2012  INFO
    Physical payload uninstall result:0
    [    3128] Sun Sep 30 20:00:21 2012  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 0 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{DC00A3E1-9C61-4B11-8070-B592E68D2B3C}] took 2658.25 milliseconds (2.65825 seconds) DTR = 120857 KBPS (118.024 MBPS)
    User specified overrideFile:
    [    3128] Sun Sep 30 20:00:22 2012  INFO
    Successfully updated the csu inventory for {DC00A3E1-9C61-4B11-8070-B592E68D2B3C} Adobe Linguistics CS6 6.0.0.0 return values 0:0
    Calling the custom action code for post-remove for payload {DC00A3E1-9C61-4B11-8070-B592E68D2B3C} Adobe Linguistics CS6 6.0.0.0
    Calling the custom action code for pre-remove for payload {C0C7DC90-C8DF-46DA-BA21-848889DAFD11} Adobe Dreamweaver Widget Browser 1.0.0.0
    ::START TIMER:: [Payload Operation :{C0C7DC90-C8DF-46DA-BA21-848889DAFD11}]
    [    3732] Sun Sep 30 20:00:22 2012  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: ModifyThirdPartyPayloadOperation
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Modify Thirdparty payload
    Unable to remove payload.
    Third party payload completed.  Testing return code: 0
    [    3128] Sun Sep 30 20:00:22 2012  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 7 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{C0C7DC90-C8DF-46DA-BA21-848889DAFD11}] took 203.863 milliseconds (0.203863 seconds)
    User specified overrideFile:
    Successfully updated the csu inventory for {C0C7DC90-C8DF-46DA-BA21-848889DAFD11} Adobe Dreamweaver Widget Browser 1.0.0.0 return values 0:0
    Calling the custom action code for post-remove for payload {C0C7DC90-C8DF-46DA-BA21-848889DAFD11} Adobe Dreamweaver Widget Browser 1.0.0.0
    Calling the custom action code for pre-remove for payload {EB2A8CD4-B247-4810-A294-E3DB8EDC6060} Adobe CSXS Extensions CS6 3.0.0.0
    ::START TIMER:: [Pre payload :{EB2A8CD4-B247-4810-A294-E3DB8EDC6060}]
    In PrePayloadUninstallProc
    [    3128] Sun Sep 30 20:00:27 2012  INFO
    Custom action return code: 0
    :: END TIMER :: [Pre payload :{EB2A8CD4-B247-4810-A294-E3DB8EDC6060}] took 5022.92 milliseconds (5.02292 seconds)
    ::START TIMER:: [Payload Operation :{EB2A8CD4-B247-4810-A294-E3DB8EDC6060}]
    [    2144] Sun Sep 30 20:00:27 2012  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: PayloadUninstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Session {A4ED5E53-7AA0-11E1-BF04-B2D4D4A5360E} modify request for AdobeCode: {EB2A8CD4-B247-4810-A294-E3DB8EDC6060}
    Effective AdobeCode for: {EB2A8CD4-B247-4810-A294-E3DB8EDC6060} is {EB2A8CD4-B247-4810-A294-E3DB8EDC6060}
    Uninstalling payload
    Payload {EB2A8CD4-B247-4810-A294-E3DB8EDC6060} Adobe CSXS Extensions CS6 3.0.0.0: Calling ARKEngine from path C:\Program Files\Common Files\Adobe\OOBE\PDApp\DECore\DE6\resources
    Beginning un-installation for payload at C:\Program Files\Common Files\Adobe\Installers\uninstall\{EB2A8CD4-B247-4810-A294-E3DB8EDC6060}.db
    Evaluating condition# 1(Seq 1)
    Condition failed(Seq 1)
    [    2144] Sun Sep 30 20:00:27 2012 ERROR
    DF037: Unable to delete directory "C:\Users\louie\AppData\Roaming\Adobe\CS6ServiceManager". Error 145 The directory is not empty.(Seq 2)
    [    2144] Sun Sep 30 20:00:27 2012  WARN
    DW063: Command ARKDeleteDirectoryCommand failed.(Seq 2)
    [    2144] Sun Sep 30 20:00:27 2012  INFO
    Completing un-installation for payload at C:\Program Files\Common Files\Adobe\Installers\uninstall\{EB2A8CD4-B247-4810-A294-E3DB8EDC6060}.db
    UninstallDBPath=C:\Program Files\Common Files\Adobe\Installers\uninstall\CommonUninstall.db
    Physical payload uninstall result:0
    [    3128] Sun Sep 30 20:00:27 2012  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 0 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{EB2A8CD4-B247-4810-A294-E3DB8EDC6060}] took 406.04 milliseconds (0.40604 seconds) DTR = 3300.17 KBPS (3.22282 MBPS)
    User specified overrideFile:
    [    3128] Sun Sep 30 20:00:28 2012  INFO
    Successfully updated the csu inventory for {EB2A8CD4-B247-4810-A294-E3DB8EDC6060} Adobe CSXS Extensions CS6 3.0.0.0 return values 0:0
    Calling the custom action code for post-remove for payload {EB2A8CD4-B247-4810-A294-E3DB8EDC6060} Adobe CSXS Extensions CS6 3.0.0.0
    ::START TIMER:: [Post payload :{EB2A8CD4-B247-4810-A294-E3DB8EDC6060}]
    In PostPayloadUninstallProc
    Custom action return code: 0
    :: END TIMER :: [Post payload :{EB2A8CD4-B247-4810-A294-E3DB8EDC6060}] took 1.43644 milliseconds (0.00143644 seconds)
    Calling the custom action code for pre-remove for payload {B8ADDCBD-30D9-4366-AE25-089CEF76C8E1} Suite Shared Configuration CS6 3.0.0.0
    ::START TIMER:: [Payload Operation :{B8ADDCBD-30D9-4366-AE25-089CEF76C8E1}]
    [    4752] Sun Sep 30 20:00:28 2012  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: PayloadUninstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Session {A4ED5E53-7AA0-11E1-BF04-B2D4D4A5360E} modify request for AdobeCode: {B8ADDCBD-30D9-4366-AE25-089CEF76C8E1}
    Effective AdobeCode for: {B8ADDCBD-30D9-4366-AE25-089CEF76C8E1} is {B8ADDCBD-30D9-4366-AE25-089CEF76C8E1}
    Uninstalling payload
    Payload {B8ADDCBD-30D9-4366-AE25-089CEF76C8E1} Suite Shared Configuration CS6 3.0.0.0: Calling ARKEngine from path C:\Program Files\Common Files\Adobe\OOBE\PDApp\DECore\DE6\resources
    Beginning un-installation for payload at C:\Program Files\Common Files\Adobe\Installers\uninstall\{B8ADDCBD-30D9-4366-AE25-089CEF76C8E1}.db
    Completing un-installation for payload at C:\Program Files\Common Files\Adobe\Installers\uninstall\{B8ADDCBD-30D9-4366-AE25-089CEF76C8E1}.db
    Physical payload uninstall result:0
    [    3128] Sun Sep 30 20:00:28 2012  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 0 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{B8ADDCBD-30D9-4366-AE25-089CEF76C8E1}] took 302.968 milliseconds (0.302968 seconds) DTR = 10667.8 KBPS (10.4178 MBPS)
    User specified overrideFile:
    Successfully updated the csu inventory for {B8ADDCBD-30D9-4366-AE25-089CEF76C8E1} Suite Shared Configuration CS6 3.0.0.0 return values 0:0
    Calling the custom action code for post-remove for payload {B8ADDCBD-30D9-4366-AE25-089CEF76C8E1} Suite Shared Configuration CS6 3.0.0.0
    Calling the custom action code for pre-remove for payload {9C4AA28F-AC6B-11E0-8997-00215AEA26C9} Microsoft Visual C++ 2008 Redistributable Package (x86) 9.0.30729.4148
    ::START TIMER:: [Payload Operation :{9C4AA28F-AC6B-11E0-8997-00215AEA26C9}]
    [    5616] Sun Sep 30 20:00:28 2012  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: ModifyThirdPartyPayloadOperation
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Modify Thirdparty payload
    Unable to remove payload.
    Third party payload completed.  Testing return code: 0
    [    3128] Sun Sep 30 20:00:28 2012  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 7 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{9C4AA28F-AC6B-11E0-8997-00215AEA26C9}] took 103.553 milliseconds (0.103553 seconds)
    [    3128] Sun Sep 30 20:00:29 2012  INFO
    User specified overrideFile:
    The csu inventory was not updated for payload {9C4AA28F-AC6B-11E0-8997-00215AEA26C9} Microsoft Visual C++ 2008 Redistributable Package (x86) 9.0.30729.4148, value of local var is -1
    Calling the custom action code for post-remove for payload {9C4AA28F-AC6B-11E0-8997-00215AEA26C9} Microsoft Visual C++ 2008 Redistributable Package (x86) 9.0.30729.4148
    Calling the custom action code for pre-remove for payload {9AB0EFC0-AC6B-11E0-9E61-00215AEA26C9} Microsoft Visual C++ 2005 Redistributable Package (x86) 6.0.2900.2180
    ::START TIMER:: [Payload Operation :{9AB0EFC0-AC6B-11E0-9E61-00215AEA26C9}]
    [    5924] Sun Sep 30 20:00:29 2012  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: ModifyThirdPartyPayloadOperation
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Modify Thirdparty payload
    Unable to remove payload.
    Third party payload completed.  Testing return code: 0
    [    3128] Sun Sep 30 20:00:29 2012  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 7 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{9AB0EFC0-AC6B-11E0-9E61-00215AEA26C9}] took 104.228 milliseconds (0.104228 seconds)
    User specified overrideFile:
    The csu inventory was not updated for payload {9AB0EFC0-AC6B-11E0-9E61-00215AEA26C9} Microsoft Visual C++ 2005 Redistributable Package (x86) 6.0.2900.2180, value of local var is -1
    Calling the custom action code for post-remove for payload {9AB0EFC0-AC6B-11E0-9E61-00215AEA26C9} Microsoft Visual C++ 2005 Redistributable Package (x86) 6.0.2900.2180
    Calling the custom action code for pre-remove for payload {9E0AF030-AC6B-11E0-8837-00215AEA26C9} Microsoft Visual C++ 2010 Redistributable Package (x86) 10.0.40219.1
    ::START TIMER:: [Payload Operation :{9E0AF030-AC6B-11E0-8837-00215AEA26C9}]
    [    2256] Sun Sep 30 20:00:29 2012  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: ModifyThirdPartyPayloadOperation
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Modify Thirdparty payload
    Unable to remove payload.
    Third party payload completed.  Testing return code: 0
    [    3128] Sun Sep 30 20:00:29 2012  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 7 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{9E0AF030-AC6B-11E0-8837-00215AEA26C9}] took 105.806 milliseconds (0.105806 seconds)
    User specified overrideFile:
    The csu inventory was not updated for payload {9E0AF030-AC6B-11E0-8837-00215AEA26C9} Microsoft Visual C++ 2010 Redistributable Package (x86) 10.0.40219.1, value of local var is -1
    Calling the custom action code for post-remove for payload {9E0AF030-AC6B-11E0-8837-00215AEA26C9} Microsoft Visual C++ 2010 Redistributable Package (x86) 10.0.40219.1
    Calling the custom action code for pre-remove for payload {354D20E6-A25F-4728-9DA6-C9003D8F2928} Adobe Player for Embedding 3.3 3.3.0.0
    ::START TIMER:: [Payload Operation :{354D20E6-A25F-4728-9DA6-C9003D8F2928}]
    [    5152] Sun Sep 30 20:00:29 2012  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: PayloadUninstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Session {A4ED5E53-7AA0-11E1-BF04-B2D4D4A5360E} modify request for AdobeCode: {354D20E6-A25F-4728-9DA6-C9003D8F2928}
    Effective AdobeCode for: {354D20E6-A25F-4728-9DA6-C9003D8F2928} is {354D20E6-A25F-4728-9DA6-C9003D8F2928}
    Uninstalling payload
    Payload {354D20E6-A25F-4728-9DA6-C9003D8F2928} Adobe Player for Embedding 3.3 3.3.0.0: Calling ARKEngine from path C:\Program Files\Common Files\Adobe\OOBE\PDApp\DECore\DE6\resources
    Beginning un-installation for payload at C:\Program Files\Common Files\Adobe\Installers\uninstall\{354D20E6-A25F-4728-9DA6-C9003D8F2928}.db
    Completing un-installation for payload at C:\Program Files\Common Files\Adobe\Installers\uninstall\{354D20E6-A25F-4728-9DA6-C9003D8F2928}.db
    Physical payload uninstall result:0
    [    3128] Sun Sep 30 20:00:29 2012  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 0 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :{354D20E6-A25F-4728-9DA6-C9003D8F2928}] took 203.231 milliseconds (0.203231 seconds) DTR = 96048.4 KBPS (93.7973 MBPS)
    User specified overrideFile:
    [    3128] Sun Sep 30 20:00:30 2012  INFO
    Successfully updated the csu inventory for {354D20E6-A25F-4728-9DA6-C9003D8F2928} Adobe Player for Embedding 3.3 3.3.0.0 return values 0:0
    Calling the custom action code for post-remove for payload {354D20E6-A25F-4728-9DA6-C9003D8F2928} Adobe Player for Embedding 3.3 3.3.0.0
    Calling the custom action code for pre-remove for payload CommonUninstall  6.0.98.0
    ::START TIMER:: [Payload Operation :CommonUninstall]
    [    3644] Sun Sep 30 20:00:30 2012  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Installer Operation: PayloadUninstaller
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Session {A4ED5E53-7AA0-11E1-BF04-B2D4D4A5360E} modify request for AdobeCode: CommonUninstall
    Effective AdobeCode for: CommonUninstall is CommonUninstall
    Uninstalling payload
    Payload CommonUninstall  6.0.98.0: Calling ARKEngine from path C:\Program Files\Common Files\Adobe\OOBE\PDApp\DECore\DE6\resources
    INSTALLDIR property not found in database
    Beginning un-installation for payload at C:\Program Files\Common Files\Adobe\Installers\uninstall\CommonUninstall.db
    UninstallSeq property not found in database
    [    3644] Sun Sep 30 20:00:30 2012 ERROR
    DF037: Unable to delete directory "C:\Users\louie\AppData\Roaming\Adobe\ExtendScript Toolkit". Error 145 The directory is not empty.(Seq 1)
    [    3644] Sun Sep 30 20:00:30 2012  WARN
    DW063: Command ARKDeleteDirectoryCommand failed.(Seq 1)
    [    3644] Sun Sep 30 20:00:30 2012 ERROR
    DF037: Unable to delete directory "C:\Users\louie\AppData\Roaming\Adobe\CS6ServiceManager". Error 145 The directory is not empty.(Seq 2)
    [    3644] Sun Sep 30 20:00:30 2012  WARN
    DW063: Command ARKDeleteDirectoryCommand failed.(Seq 2)
    [    3644] Sun Sep 30 20:00:30 2012  INFO
    Completing un-installation for payload at C:\Program Files\Common Files\Adobe\Installers\uninstall\CommonUninstall.db
    Physical payload uninstall result:0
    [    3128] Sun Sep 30 20:00:30 2012  INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 0 =*=*=*=*=*=*=*=*=*=*=*=*=*
    :: END TIMER :: [Payload Operation :CommonUninstall] took 104.365 milliseconds (0.104365 seconds)
    User specified overrideFile:
    The csu inventory was not updated for payload CommonUninstall  6.0.98.0, value of local var is -1
    Calling the ROLLBACK custom action code for pre-remove for payload CommonUninstall  6.0.98.0
    No operation.  We're done:
    Updating driver data - Action: Remove driver entry
    Updating driver data successful. Driver entry was removed. ARP estimated size 0KB
    [    3128] Sun Sep 30 20:00:32 2012  INFO
    Total components installed: 0
    Total components repaired: 0
    Successfully removed 14 components:
    - Adobe Player for Embedding 3.3
    - Adobe CSXS Infrastructure CS6
    - Adobe Extension Manager CS6
    - Adobe Dreamweaver CS6_AdobeDreamweaver12en_USLanguagePack
    - Microsoft Visual C++ 2005 Redistributable Package (x86)
    - Microsoft Visual C++ 2008 Redistributable Package (x86)
    - Microsoft Visual C++ 2010 Redistributable Package (x86)
    - Adobe Dreamweaver CS6
    - Suite Shared Configuration CS6
    - Adobe Dreamweaver Widget Browser
    - AdobeHelp
    - Adobe Linguistics CS6
    - Adobe CSXS Extensions CS6
    - Adobe ExtendScript Toolkit CS6
    Call PostSession Custom Hook
    Begin cleaning up local media db.
    [    3128] Sun Sep 30 20:00:34 2012  INFO
    Deleting local media db.
    Done cleaning up local media db.
    :: END TIMER :: [Total Timer] took 82346.9 milliseconds (82.3469 seconds) DTR = 8051.99 KBPS (7.86327 MBPS)
    [    3128] Sun Sep 30 20:00:35 2012  INFO
    Uninstalling AAM
    [    3128] Sun Sep 30 20:00:36 2012  INFO
    AAM Uninstall Status: 0 and 0
    -------------------------------------- Summary --------------------------------------
    - 0 fatal error(s), 2 error(s), 2 warning(s)
    ----------- Payload: {EFBC1075-F890-4293-A0D1-04BE66EE2AB3} Adobe ExtendScript Toolkit CS6 3.8.0.0 -----------
    ERROR: DF037: Unable to delete directory "C:\Users\louie\AppData\Roaming\Adobe\ExtendScript Toolkit". Error 145 The directory is not empty.(Seq 394)
    WARNING: DW063: Command ARKDeleteDirectoryCommand failed.(Seq 394)
    ----------- Payload: {EB2A8CD4-B247-4810-A294-E3DB8EDC6060} Adobe CSXS Extensions CS6 3.0.0.0 -----------
    ERROR: DF037: Unable to delete directory "C:\Users\louie\AppData\Roaming\Adobe\CS6ServiceManager". Error 145 The directory is not empty.(Seq 2)
    WARNING: DW063: Command ARKDeleteDirectoryCommand failed.(Seq 2)
    Please search the above error/warning string(s) to find when the error occurred.
    These errors resulted in installer Exit Code mentioned below.
    Exit Code: 0 - No error.
    Please see specific errors and warnings for troubleshooting. For example, ERROR: DF037 ... WARNING: DW063 ...
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    END - Installer Session
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    Visit http://www.adobe.com/go/loganalyzer/ for more information
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    START - Installer Session
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    RIBS version: 6.2.10.0
    Win OS version: 6.1.1.0  Type: 1
    ::START TIMER:: [Total Timer]
    CHECK: Single instance running
    CHECK : Credentials
    Load Deployment File
    CHECK : Another Native OS installer already running
    Create Required Folders
    Assuming install mode
    Looking up install source path
    Sync Media DB ...
    ::START TIMER:: [Sync Media DB]
    Pre check media db sync
    End of Pre check media db sync. Exit code: 0
    :: END TIMER :: [Sync Media DB] took 306.451 milliseconds (0.306451 seconds) DTR = 14997.5 KBPS (14.646 MBPS)
    Ready to initialize session to start with ...
    ::START TIMER:: [CreatePayloadSession]
    -------------------- BEGIN - Updating Media Sources - BEGIN --------------------
    Updated source path: C:\Users\louie\AppData\Local\Temp\{9FB3D865-F5FA-4266-929A-F495403DADA7}\Dreamweaver_12_L S16\Adobe Dreamweaver CS6
    Updating media info for: {354D20E6-A25F-4728-9DA6-C9003D8F2928}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Dreamweaver CS6
      Path: C:\Users\louie\AppData\Local\Temp\{9FB3D865-F5FA-4266-929A-F495403DADA7}\Dreamweaver_12_L S16\Adobe Dreamweaver CS6\payloads\AdobeAPE3.3-mul\Install.db
    Updating media info for: {36682D68-3834-487E-BA49-DFA4AB0A2E32}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Dreamweaver CS6
      Path: C:\Users\louie\AppData\Local\Temp\{9FB3D865-F5FA-4266-929A-F495403DADA7}\Dreamweaver_12_L S16\Adobe Dreamweaver CS6\payloads\AdobeCSXSInfrastructure3-mul\Install.db
    Updating media info for: {83463106-DD1C-4FE5-A61C-DF6715472AD4}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Dreamweaver CS6
      Path: C:\Users\louie\AppData\Local\Temp\{9FB3D865-F5FA-4266-929A-F495403DADA7}\Dreamweaver_12_L S16\Adobe Dreamweaver CS6\payloads\AdobeExtensionManager6.0All\Install.db
    Updating media info for: {8E8021FF-7AA0-11E1-BF04-E98EE5274486}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Dreamweaver CS6
      Path: C:\Users\louie\AppData\Local\Temp\{9FB3D865-F5FA-4266-929A-F495403DADA7}\Dreamweaver_12_L S16\Adobe Dreamweaver CS6\payloads\AdobeDreamweaver12ja_JPLanguagePack\Install.db
    Updating media info for: {8FDB26FC-7AA0-11E1-BF04-E25246635842}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Dreamweaver CS6
      Path: C:\Users\louie\AppData\Local\Temp\{9FB3D865-F5FA-4266-929A-F495403DADA7}\Dreamweaver_12_L S16\Adobe Dreamweaver CS6\payloads\AdobeDreamweaver12en_USLanguagePack\Install.db
    Updating media info for: {9AB0EFC0-AC6B-11E0-9E61-00215AEA26C9}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Dreamweaver CS6
      Path: C:\Users\louie\AppData\Local\Temp\{9FB3D865-F5FA-4266-929A-F495403DADA7}\Dreamweaver_12_L S16\Adobe Dreamweaver CS6\payloads\Microsoft VC 2005 Redist (x86)\vcredist_x86.exe
    Updating media info for: {9C4AA28F-AC6B-11E0-8997-00215AEA26C9}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Dreamweaver CS6
      Path: C:\Users\louie\AppData\Local\Temp\{9FB3D865-F5FA-4266-929A-F495403DADA7}\Dreamweaver_12_L S16\Adobe Dreamweaver CS6\payloads\Microsoft VC 2008 Redist (x86)\vcredist_x86.exe
    Updating media info for: {9E0AF030-AC6B-11E0-8837-00215AEA26C9}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Dreamweaver CS6
      Path: C:\Users\louie\AppData\Local\Temp\{9FB3D865-F5FA-4266-929A-F495403DADA7}\Dreamweaver_12_L S16\Adobe Dreamweaver CS6\payloads\Microsoft VC 2010 Redist (x86)\vcredist_x86.exe
    Updating media info for: {A4ED5E53-7AA0-11E1-BF04-B2D4D4A5360E}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Dreamweaver CS6
      Path: C:\Users\louie\AppData\Local\Temp\{9FB3D865-F5FA-4266-929A-F495403DADA7}\Dreamweaver_12_L S16\Adobe Dreamweaver CS6\payloads\AdobeDreamweaver12-mul\Install.db
    Updating media info for: {B8ADDCBD-30D9-4366-AE25-089CEF76C8E1}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Dreamweaver CS6
      Path: C:\Users\louie\AppData\Local\Temp\{9FB3D865-F5FA-4266-929A-F495403DADA7}\Dreamweaver_12_L S16\Adobe Dreamweaver CS6\payloads\AdobeSuiteSharedConfiguration3-mul\Install.db
    Updating media info for: {C0C7DC90-C8DF-46DA-BA21-848889DAFD11}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Dreamweaver CS6
      Path: C:\Users\louie\AppData\Local\Temp\{9FB3D865-F5FA-4266-929A-F495403DADA7}\Dreamweaver_12_L S16\Adobe Dreamweaver CS6\payloads\AdobeDreamweaverWidgetsBrowser1.0-mul\AdobeAIRInstaller.exe
    Updating media info for: {D38116C8-C472-4BB0-AD6F-0C1DD1320D1D}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Dreamweaver CS6
      Path: C:\Users\louie\AppData\Local\Temp\{9FB3D865-F5FA-4266-929A-F495403DADA7}\Dreamweaver_12_L S16\Adobe Dreamweaver CS6\payloads\AdobeHelp\InstallAdobeHelp.exe
    Updating media info for: {DC00A3E1-9C61-4B11-8070-B592E68D2B3C}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Dreamweaver CS6
      Path: C:\Users\louie\AppData\Local\Temp\{9FB3D865-F5FA-4266-929A-F495403DADA7}\Dreamweaver_12_L S16\Adobe Dreamweaver CS6\payloads\AdobeLinguistics_4_0_All\Install.db
    Updating media info for: {EB2A8CD4-B247-4810-A294-E3DB8EDC6060}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Dreamweaver CS6
      Path: C:\Users\louie\AppData\Local\Temp\{9FB3D865-F5FA-4266-929A-F495403DADA7}\Dreamweaver_12_L S16\Adobe Dreamweaver CS6\payloads\AdobeCSXSExtensions3-mul\Install.db
    Updating media info for: {EFBC1075-F890-4293-A0D1-04BE66EE2AB3}
    Ignoring original data since install source is local
      Type: 0, Volume Order: 1, Media Name: Dreamweaver CS6
      Path: C:\Users\louie\AppData\Local\Temp\{9FB3D865-F5FA-4266-929A-F495403DADA7}\Dreamweaver_12_L S16\Adobe Dreamweaver CS6\payloads\AdobeExtendScriptToolkit3.8.0-mul\Install.db
    --------------------  END  - Updating Media Sources -  END  --------------------
    Supported RIBS version range: [0.0.66.0,6.2.10.0]
    ----------------- CreatePayloadSession: machine is x86 ---------------
    ______ Verify Dependency Subscribers ______
    BEGIN Operation order for all session payloads: mediaGroup (requires,satisfies)
      {354D20E6-A25F-4728-9DA6-C9003D8F2928} Adobe Player for Embedding 3.3 3.3.0.0: 1 (0,3)
      {9E0AF030-AC6B-11E0-8837-00215AEA26C9} Microsoft Visual C++ 2010 Redistributable Package (x86) 10.0.40219.1: 2 (0,5)
      {9AB0EFC0-AC6B-11E0-9E61-00215AEA26C9} Microsoft Visual C++ 2005 Redistributable Package (x86) 6.0.2900.2180: 3 (0,4)
      {9C4AA28F-AC6B-11E0-8997-00215AEA26C9} Microsoft Visual C++ 2008 Redistributable Package (x86) 9.0.30729.4148: 3 (0,4)
      {B8ADDCBD-30D9-4366-AE25-089CEF76C8E1} Suite Shared Configuration CS6 3.0.0.0: 4 (1,1)
      {EB2A8CD4-B247-4810-A294-E3DB8EDC6060} Adobe CSXS Extensions CS6 3.0.0.0: 5 (0,1)
      {C0C7DC90-C8DF-46DA-BA21-848889DAFD11} Adobe Dreamweaver Widget Browser 1.0.0.0: 5 (0,1)
      {DC00A3E1-9C61-4B11-8070-B592E68D2B3C} Adobe Linguistics CS6 6.0.0.0: 5 (0,1)
      {D38116C8-C472-4BB0-AD6F-0C1DD1320D1D} AdobeHelp 4.0.0.0: 5 (0,1)
      {36682D68-3834-487E-BA49-DFA4AB0A2E32} Adobe CSXS Infrastructure CS6 3.0.0.0: 6 (3,1)
      {EFBC1075-F890-4293-A0D1-04BE66EE2AB3} Adobe ExtendScript Toolkit CS6 3.8.0.0: 7 (4,1)
      {83463106-DD1C-4FE5-A61C-DF6715472AD4} Adobe Extension Manager CS6 6.0.0.0: 7 (4,1)
      {A4ED5E53-7AA0-11E1-BF04-B2D4D4A5360E} Adobe Dreamweaver CS6 12.0.0.0: 8 (12,0)
      {8E8021FF-7AA0-11E1-BF04-E98EE5274486} Adobe Dreamweaver CS6_AdobeDreamweaver12ja_JPLanguagePack 12.0.0.0: 9 (0,0)
      {8FDB26FC-7AA0-11E1-BF04-E25246635842} Adobe Dreamweaver CS6_AdobeDreamweaver12en_USLanguagePack 12.0.0.0: 9 (0,0)
    END Operation order for all session payloads: mediaGroup (requires,satisfies)
    Setting property "installLanguage" to: en_US
    Attempting to find the selected language in the set of available payload languages
    Setting property "installSourcePath" to: C:\Users\louie\AppData\Local\Temp\{9FB3D865-F5FA-4266-929A-F495403DADA7}\Dreamweaver_12_L S16\Adobe Dreamweaver CS6
    Overwrite property "DEVersion" to: 6.0
    Overwrite property "selfDelete" to: false
    Overwrite property "skipSync" to: 1
    Overwrite property "userASUPath" to:
    Found payload actions:
    Deciding what installer mode to use...
    BEGIN Setting requested payload actions
    Value returned on lookup of payload: {354D20E6-A25F-4728-9DA6-C9003D8F2928} Adobe Player for Embedding 3.3 3.3.0.0 is: false
    Action string for {354D20E6-A25F-4728-9DA6-C9003D8F2928} Adobe Player for Embedding 3.3 3.3.0.0  is none
    Value returned on lookup of payload: {9E0AF030-AC6B-11E0-8837-00215AEA26C9} Microsoft Visual C++ 2010 Redistributable Package (x86) 10.0.40219.1 is: false
    Action string for {9E0AF030-AC6B-11E0-8837-00215AEA26C9} Microsoft Visual C++ 2010 Redistributable Package (x86) 10.0.40219.1  is none
    Value returned on lookup of payload: {9AB0EFC0-AC6B-11E0-9E61-00215AEA26C9} Microsoft Visual C++ 2005 Redistributable Package (x86) 6.0.2900.2180 is: false
    Action string for {9AB0EFC0-AC6B-11E0-9E61-00215AEA26C9} Microsoft Visual C++ 2005 Redistributable Package (x86) 6.0.2900.2180  is none
    Value returned on lookup of payload: {9C4AA28F-AC6B-11E0-8997-00215AEA26C9} Microsoft Visual C++ 2008 Redistributable Package (x86) 9.0.30729.4148 is: false
    Action string for {9C4AA28F-AC6B-11E0-8997-00215AEA26C9} Microsoft Visual C++ 2008 Redistributable Package (x86) 9.0.30729.4148  is none
    Value returned on lookup of payload: {B8ADDCBD-30D9-4366-AE25-089CEF76C8E1} Suite Shared Configuration CS6 3.0.0.0 is: false
    Action string for {B8ADDCBD-30D9-4366-AE25-089CEF76C8E1} Suite Shared Configuration CS6 3.0.0.0  is none
    Value returned on lookup of payload: {EB2A8CD4-B247-4810-A294-E3DB8EDC6060} Adobe CSXS Extensions CS6 3.0.0.0 is: false
    Action string for {EB2A8CD4-B247-4810-A294-E3DB8EDC6060} Adobe CSXS Extensions CS6 3.0.0.0  is none
    Value returned on lookup of payload: {C0C7DC90-C8DF-46DA-BA21-848889DAFD11} Adobe Dreamweaver Widget Browser 1.0.0.0 is: false
    Action string for {C0C7DC90-C8DF-46DA-BA21-848889DAFD11} Adobe Dreamweaver Widget Browser 1.0.0.0  is none
    Value returned on lookup of payload: {DC00A3E1-9C61-4B11-8070-B592E68D2B3C} Adobe Linguistics CS6 6.0.0.0 is: false
    Action string for {DC00A3E1-9C61-4B11-8070-B592E68D2B3C} Adobe Linguistics CS6 6.0.0.0  is none
    Value returned on lookup of payload: {D38116C8-C472-4BB0-AD6F-0C1DD1320D1D} AdobeHelp 4.0.0.0 is: false
    Action string for {D38116C8-C472-4BB0-AD6F-0C1DD1320D1D} AdobeHelp 4.0.0.0  is none
    Value returned on lookup of payload: {36682D68-3834-487E-BA49-DFA4AB0A2E32} Adobe CSXS Infrastructure CS6 3.0.0.0 is: false
    Action string for {36682D68-3834-487E-BA49-DFA4AB0A2E32} Adobe CSXS Infrastructure CS6 3.0.0.0  is none
    Value returned on lookup of payload: {EFBC1075-F890-4293-A0D1-04BE66EE2AB3} Adobe ExtendScript Toolkit CS6 3.8.0.0 is: false
    Action string for {EFBC1075-F890-4293-A0D1-04BE66EE2AB3} Adobe ExtendScript Toolkit CS6 3.8.0.0  is none
    Value returned on lookup of payload: {83463106-DD1C-4FE5-A61C-DF6715472AD4} Adobe Extension Manager CS6 6.0.0.0 is: false
    Action string for {83463106-DD1C-4FE5-A61C-DF6715472AD4} Adobe Extension Manager CS6 6.0.0.0  is none
    Value returned on lookup of payload: {A4ED5E53-7AA0-11E1-BF04-B2D4D4A5360E} Adobe Dreamweaver CS6 12.0.0.0 is: false
    Action string for {A4ED5E53-7AA0-11E1-BF04-B2D4D4A5360E} Adobe Dreamweaver CS6 12.0.0.0  is install
    Value returned on lookup of payload: {8E8021FF-7AA0-11E1-BF04-E98EE5274486} Adobe Dreamweaver CS6_AdobeDreamweaver12ja_JPLanguagePack 12.0.0.0 is: false
    Action string for {8E8021FF-7AA0-11E1-BF04-E98EE5274486} Adobe Dreamweaver CS6_AdobeDreamweaver12ja_JPLanguagePack 12.0.0.0  is none
    Payload {8E8021FF-7AA0-11E1-BF04-E98EE5274486} Adobe Dreamweaver CS6_AdobeDreamweaver12ja_JPLanguagePack 12.0.0.0 is extension payload. Aligning its action according to parent {A4ED5E53-7AA0-11E1-BF04-B2D4D4A5360E} Adobe Dreamweaver CS6 12.0.0.0
    Value returned on lookup of payload: {8FDB26FC-7AA0-11E1-BF04-E25246635842} Adobe Dreamweaver CS6_AdobeDreamweaver12en_USLanguagePack 12.0.0.0 is: false
    Action string for {8FDB26FC-7AA0-11E1-BF04-E25246635842} Adobe Dreamweaver CS6_AdobeDreamweaver12en_USLanguagePack 12.0.0.0  is none
    Payload {8FDB26FC-7AA0-11E1-BF04-E25246635842} Adobe Dreamweaver CS6_AdobeDreamweaver12en_USLanguagePack 12.0.0.0 is extension payload. Aligning its action according to parent {A4ED5E53-7AA0-11E1-BF04-B2D4D4A5360E} Adobe Dreamweaver CS6 12.0.0.0
    END Setting requested payload actions
    Collected advanced path check information for INSTALLDIR
    INSTALLDIR is a well-formed path
    INSTALLDIR is not the root path
    INSTALLDIR is on a local volume
    INSTALLDIR is on a writable volume
    INSTALLDIR is not on a case sensitive volume
    INSTALLDIR passed path basic path validation: C:\Program Files\Adobe
    [    7356] Sun Sep 30 20:09:35 2012  INFO
    ::START TIMER:: [System check :{EB2A8CD4-B247-4810-A294-E3DB8EDC6060}]
    In InstallPreSystemCheckProc
    Custom action return code: 0
    :: END TIMER :: [System check :{EB2A8CD4-B247-4810-A294-E3DB8EDC6060}] took 147.396 milliseconds (0.147396 seconds) DTR = 54.2756 KBPS (0.0530036 MBPS)
    ::START TIMER:: [System check :{36682D68-3834-487E-BA49-DFA4AB0A2E32}]
    In InstallPreSystemCheckProc
    Custom action return code: 0
    :: END TIMER :: [System check :{36682D68-3834-487E-BA49-DFA4AB0A2E32}] took 62.9117 milliseconds (0.0629117 seconds)
    BEGIN InstallOperationsQueue Unordered operations
      {354D20E6-A25F-4728-9DA6-C9003D8F2928} Adobe Player for Embedding 3.3 3.3.0.0:  with operation install
      {36682D68-3834-487E-BA49-DFA4AB0A2E32} Adobe CSXS Infrastructure CS6 3.0.0.0:  with operation install
      {83463106-DD1C-4FE5-A61C-DF6715472AD4} Adobe Extension Manager CS6 6.0.0.0:  with operation install
      {8E8021FF-7AA0-11E1-BF04-E98EE5274486} Adobe Dreamweaver CS6_AdobeDreamweaver12ja_JPLanguagePack 12.0.0.0:  with operation none
      {8FDB26FC-7AA0-11E1-BF04-E25246635842} Adobe Dreamweaver CS6_AdobeDreamweaver12en_USLanguagePack 12.0.0.0:  with operation install
      {9AB0EFC0-AC6B-11E0-9E61-00215AEA26C9} Microsoft Visual C++ 2005 Redistributable Package (x86) 6.0.2900.2180:  with operation install
      {9C4AA28F-AC6B-11E0-8997-00215AEA26C9} Microsoft Visual C++ 2008 Redistributable Package (x86) 9.0.30729.4148:  with operation install
      {9E0AF030-AC6B-11E0-8837-00215AEA26C9} Microsoft Visual C++ 2010 Redistributable Package (x86) 10.0.40219.1:  with operation install
      {A4ED5E53-7AA0-11E1-BF04-B2D4D4A5360E} Adobe Dreamweaver CS6 12.0.0.0:  with operation install
      {B8ADDCBD-30D9-4366-AE25-089CEF76C8E1} Suite Shared Configuration CS6 3.0.0.0:  with operation install
      {C0C7DC90-C8DF-46DA-BA21-848889DAFD11} Adobe Dreamweaver Widget Browser 1.0.0.0:  with operation install
      {D38116C8-C472-4BB0-AD6F-0C1DD1320D1D} AdobeHelp 4.0.0.0:  with operation install
      {DC00A3E1-9C61-4B11-8070-B592E68D2B3C} Adobe Linguistics CS6 6.0.0.0:  with operation install
      {EB2A8CD4-B247-4810-A294-E3DB8EDC6060} Adobe CSXS Extensions CS6 3.0.0.0:  with operation install
      {EFBC1075-F890-4293-A0D1-04BE66EE2AB3} Adobe ExtendScript Toolkit CS6 3.8.0.0:  with operation install
    END InstallOperationsQueue Unordered operations
    BEGIN InstallOperationsQueue Ordered operations
      {354D20E6-A25F-4728-9DA6-C9003D8F2928} Adobe Player for Embedding 3.3 3.3.0.0:  with

  • "Help" error 404 in Dreamweaver CS6

    I have just purchased Dreamweaver CS6 after more than twelve years of web-site development using NetObjects Fusion and hand-coding.
    Conscious of the step-up in possibilities offered by CS6, I am keen to learn as I go (un-learning my existing bad habits too). 
    Sadly, at the first hurdle, I tried to click on "Help" on the first page and had Error 404 returned.
    I have been looking at the excellent tutorials, but thought all the promises of seamless integration would not trip up so soon.
    My default browser is Firefox - is that the problem?  I don't trust IE which keeps falling over.
    Any help would be happily received!
    NigelHS

    Hi Nigel,
    Welcome to the Dreamweaver forum. 
    Having used NOF for several years, I know what you're going through.
    First, define your local site folder.  Go to Site > New Site.  Tell DW where to find  the folder containing all your site files.  This is an important 1st step, otherwise DW cannot properly manage links and assets for you.  See screenshots.
    You will probably want to define your remote server settings too, but you don't need to do that to work on local files.
    Root directory is where your hosting provider told you to put your files.  This varies by host.  The directory could be public_html, www or htdocs.  Some hosts don't use a directory in which case you should leave this field blank.
    Run a Test.  If you can't connect, click on More Options:
    Chances are you will need to re-build your site with CSS layouts and cleaner HTML code.  Initially, I used Find & Replace to strip out all the old NOF proprietary tags, inline font styles, tables, etc...  It's a tedious task but well worth it in the long run.
    Finally, validate your code with the W3C validation tools and fix all reported errors.
         Code validation tools:
              CSS - http://jigsaw.w3.org/css-validator/
              HTML - http://validator.w3.org/
    Have fun!
    Nancy O.

  • Start up of Adobe Dreamweaver CS6 with the following error message

    I have the following pop-up error message about Javascript error (s) occurred.
    At start up of Adobe Dreamweaver CS6.0 after an Update. Adobe Dreamweaver CS6 12.  2. I am on Windows Vista Home edition.
    It suggest at line 17 of the file “C:\ Program Files \Adobe \ Adobe Dreamweaver CS6\ Configuration \ Shared\ BC \ JS\ bc_ui_utils.js” MM.BC has no properties.
    What is the remedy to this and has there been a recent patch on this Javascript error?  Where can I get this patch. Thanks.
    Please advice.

    <?php require_once('Connections/attending.php');?>
    <?php if (!function_exists("GetSQLValueString"))
    {if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
      if (PHP_VERSION < 6) {
        $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
      $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
      switch ($theType) {
        case "text":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;   
        case "long":
        case "int":
          $theValue = ($theValue != "") ? intval($theValue) : "NULL";
          break;
        case "double":
          $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
          break;
        case "date":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;
        case "defined":
          $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
          break;
      return $theValue;
    mysql_select_db($database_attending, $attending);
    $query_rsattend = "SELECT * FROM attendlist ORDER BY surname ASC";
    $rsattend = mysql_query($query_rsattend, $attending) or die(mysql_error());
    $row_rsattend = mysql_fetch_assoc($rsattend);
    $totalRows_rsattend = mysql_num_rows($rsattend);
    $editFormAction = $_SERVER['PHP_SELF'];
    if (isset($_SERVER['QUERY_STRING'])) {
      $editFormAction .= "?" . htmlentities($_SERVER['QUERY_STRING']);
    if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "form1")) {
      $insertSQL = sprintf("INSERT INTO attendlist (Windowsid, title, firstname, surname, extension, mobile, jobrole, course, cpg, mgrname, room, Adate) VALUES (%s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s)",
                           GetSQLValueString($_POST['Wid'], "text"),
                           GetSQLValueString($_POST['title'], "text"),
                           GetSQLValueString($_POST['firstname'], "text"),
                           GetSQLValueString($_POST['surname'], "text"),
                           GetSQLValueString($_POST['contactno'], "text"),
                           GetSQLValueString($_POST['mobile'], "text"),
                           GetSQLValueString($_POST['jobrole'], "text"),
                           GetSQLValueString($_POST['courses'], "text"),
                           GetSQLValueString($_POST['cpg2'], "text"),
                           GetSQLValueString($_POST['mgrname2'], "text"),
                           GetSQLValueString($_POST['troom'], "text"),
                           GetSQLValueString($_POST['Adate2'], "date"));
      mysql_select_db($database_attending, $attending);
      $Result1 = mysql_query($insertSQL, $attending) or die(mysql_error());
      $insertGoTo = "Listing.php";
      if (isset($_SERVER['QUERY_STRING'])) {
        $insertGoTo .= (strpos($insertGoTo, '?')) ? "&" : "?";
        $insertGoTo .= $_SERVER['QUERY_STRING'];
      header(sprintf("Location: %s", $insertGoTo));
    if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "form1")) {
      $insertSQL = sprintf("INSERT INTO attendlist (title, firstname, surname, extension, mobile, jobrole, course, cpg, mgrname, room, Adate) VALUES (%s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s)",
                           GetSQLValueString($_POST['title'], "text"),
                           GetSQLValueString($_POST['firstname'], "text"),
                           GetSQLValueString($_POST['surname'], "text"),
                           GetSQLValueString($_POST['contactno'], "text"),
                           GetSQLValueString($_POST['mobile'], "text"),
                           GetSQLValueString($_POST['jobrole'], "text"),
                           GetSQLValueString($_POST['courses'], "text"),
                           GetSQLValueString($_POST['cpg2'], "text"),
                           GetSQLValueString($_POST['mgrname2'], "text"),
                           GetSQLValueString($_POST['troom'], "text"),
                           GetSQLValueString($_POST['Adate2'], "date"));
      mysql_select_db($database_attending, $attending);
      $Result1 = mysql_query($insertSQL, $attending) or die(mysql_error());
      $insertGoTo = "Listing.php";
      if (isset($_SERVER['QUERY_STRING'])) {
        $insertGoTo .= (strpos($insertGoTo, '?')) ? "&" : "?";
        $insertGoTo .= $_SERVER['QUERY_STRING'];
      header(sprintf("Location: %s", $insertGoTo));
    } ?>
    <!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>Register</title>
    <style type="text/css">
    <!--
    body {
              font: 100%/0.8 Verdana, Arial, Helvetica, sans-serif;
              background-color: #4E5869;
              margin: 0;
              padding: 0;
              color: #000;
    /* ~~ Element/tag selectors ~~ */
    ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
              padding: 0;
              margin: 0;
    h1, h2, h3, h4, h5, h6, p {
              margin-top: 0;           /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
              padding-right: 15px;
              padding-left: 15px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
    a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
              border: none;
    /* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
    a:link {
              color:#414958;
              text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
    a:visited {
              color: #4E5869;
              text-decoration: underline;
    a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
              text-decoration: none;
    /* ~~ this container surrounds all other divs giving them their percentage-based width ~~ */
    .container {
              width: 80%;
              max-width: 960px;/* a max-width may be desirable to keep this layout from getting too wide on a large monitor. This keeps line length more readable. IE6 does not respect this declaration. */
              min-width: 780px;/* a min-width may be desirable to keep this layout from getting too narrow. This keeps line length more readable in the side columns. IE6 does not respect this declaration. */
              background-color: #FFF;
              margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout. It is not needed if you set the .container's width to 100%. */
    /* ~~the header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo~~ */
    .header {
              background-color: #6F7D94;
    /* ~~ This is the layout information. ~~
    1) Padding is only placed on the top and/or bottom of the div. The elements within this div have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.
    .content {
              padding: 10px 0;
    /* ~~ This grouped selector gives the lists in the .content area space ~~ */
    .content ul, .content ol {
              padding: 0 15px 15px 40px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
    /* ~~ The footer ~~ */
    .footer {
              padding: 10px 0;
              background-color: #6F7D94;
    /* ~~ miscellaneous float/clear classes ~~ */
    .fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
              float: right;
              margin-left: 8px;
    .fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
              float: left;
              margin-right: 8px;
    .clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
              clear:both;
              height:0;
              font-size: 1px;
              line-height: 0px;
    -->
    </style>
    <link href="SpryAssets/SpryValidationTextField.css" rel="stylesheet" type="text/css" />
    <link href="SpryAssets/SpryValidationSelect.css" rel="stylesheet" type="text/css" />
    <script src="SpryAssets/SpryValidationTextField.js" type="text/javascript"></script>
    <script src="SpryAssets/SpryValidationSelect.js" type="text/javascript"></script>
    <script language='JavaScript' type='text/javascript' src='TSScript/yahoo.js'></script>
    <script language='JavaScript' type='text/javascript' src='TSScript/event.js'></script>
    <script language='JavaScript' type='text/javascript' src='TSScript/dom.js'></script>
    <script language='JavaScript' type='text/javascript' src='TSScript/calendar.js'></script>
    <link rel='stylesheet' type='text/css' href='TSScript/TSCalendar/calendar.css' />
    <script language='JavaScript' type='text/javascript' src='TSScript/TSCalendar/TSCalendar.js'></script>
    </head>
    <body>
    <div class="container">
      <div class="header"><!-- end .header --><img src="Cerner At Imperial2.jpg" width="960" height="150" alt="" /></div>
      <div class="content">
        <h3>Attendance Register
        </h3>
        <form action="<?php echo $editFormAction; ?>" id="form1" name="form1" method="POST">
          <table width="780" border="0" cellspacing="10" summary="Cerner@Imperial">
            <tr>
              <td><div align="right">* User ID</div></td>
              <td colspan="2"><span id="sprytextfield1">
                <input name="Wid" type="text" id="Wid" tabindex="1" size="18" maxlength="10" />
              <span class="textfieldRequiredMsg"> a value is required.</span></span></td>
              <td> </td>
            </tr>
            <tr>
              <td><div align="right">* Title</div></td>
              <td colspan="2"><span id="spryselect1">
                <select name="title" id="title" tabindex="2">
                  <option value="0">Select</option>
                  <option value="Ms">Ms</option>
                  <option value="Mrs">Mrs</option>
                  <option value="Mdm">Mdm</option>
                  <option value="Mr">Mr</option>
                  <option value="Dr">Dr</option>
                  <option value="Professor">Prof</option>
                </select>
    <span class="selectRequiredMsg">    Please select an item.</span></span></td>
              <td> </td>
            </tr>
            <tr>
              <td><div align="right">* First name</div></td>
              <td colspan="2"><span id="sprytextfield2">
                <input name="firstname" type="text" id="firstname" tabindex="3" size="40" maxlength="30" />
              <span class="textfieldRequiredMsg"> a value is required.</span></span></td>
              <td> </td>
            </tr>
            <tr>
              <td><div align="right">* Surname</div></td>
              <td colspan="2"><span id="sprytextfield5">
                <input name="surname" type="text" id="surname" tabindex="4" size="40" maxlength="30" />
              <span class="textfieldRequiredMsg"> a value is required.</span></span></td>
              <td> </td>
            </tr>
            <tr>
              <td><div align="right">* Contact/ Bleep</div></td>
              <td colspan="2"><span id="sprytextfield3">
                <input name="contactno" type="text" id="contactno" tabindex="5" size="10" maxlength="6" />
              <span class="textfieldRequiredMsg">A value is required.</span></span></td>
              <td> </td>
            </tr>
            <tr>
              <td><div align="right">Mobile (optional)</div></td>
              <td colspan="2"><input name="mobile" type="text" id="mobile" tabindex="6" size="25" maxlength="18" />          <span class="textfieldRequiredMsg">A value is required.</span><span class="textfieldInvalidFormatMsg">Invalid format.</span></td>
              <td> </td>
            </tr>
            <tr>
              <td> </td>
              <td colspan="2"> </td>
              <td> </td>
            </tr>
            <tr>
              <td><div align="right">* Job role</div></td>
              <td colspan="2"><span id="spryselect2">
                <select name="jobrole" id="jobrole" tabindex="7">
                  <option value="0">Select</option>
                  <option value="Doctor">Doctor</option>
                  <option value="CNS/NP">CNS/NP</option>
                  <option value="Midwife">Midwife</option>
                  <option value="Other Staff">Other Staff</option>
                  <option value="Nurse IP HCA">Nurse IP &amp; HCA</option>
                  <option value="Nurse OP HCA">Nurse OP &amp; HCA</option>
                  <option value="IP Physician Assitant">IP Physician Assistant</option>
                  <option value="OP Phlebotomist">OP Phlebotmist</option>
                  <option value="Pharmacists">Pharmacists</option>
                  <option value="Therapist AHP">Therapist &amp; AHP</option>
                  <option value="Medical Secretary">Medical Secretary</option>
                  <option value="Bed Manager">Bed Manager</option>
                  <option value="Medical Record Staff">Medical Records</option>
                  <option value="Medical Records Manager">Medical Records Mgr</option>
                  <option value="OP Booking Clerk">OP Booking Clerk</option>
                  <option value="OP Receptionist">OP Receptionist</option>
                  <option value="ED Admin">ED Admin</option>
                  <option value="Ward Administrator">Ward Administrator</option>
                  <option value="IP Wait List Clerk/Mgr">IP Wait List Clerk/Mgr</option>
                  <option value="Antenatal Supervisor">Antenatal Supervisor</option>
                  <option value="Clinical Coder">Clinical Coder</option>
                  <option value="Clinical Coding Mgr">Clinical Coding Mgr</option>
                  <option value="Pi Help Desk Backoffice">Pi Help Desk Analyst/Back Office</option>
                </select>
              <span class="selectInvalidMsg">Please select a valid item.</span></span></td>
              <td> </td>
            </tr>
            <tr>
              <td><div align="right">* Manager's Name</div></td>
              <td colspan="2"><span id="sprytextfield4">
              <input name="mgrname2" type="text" id="mgrname2" tabindex="8" size="40" maxlength="30" />
              <span class="textfieldRequiredMsg">A value is required.</span></span></td>
              <td> </td>
            </tr>
            <tr>
              <td><div align="right">* Attendance Data </div></td>
              <td colspan="2">
                <span id="sprytextfield6">
                <input name="Adate2" type="text" id="Adate2" tabindex="9" />
                <span class="textfieldRequiredMsg"> a value is required.</span><span class="textfieldInvalidFormatMsg"> invalid format.</span></span>
    </td>
              <td> </td>
            </tr>
            <tr>
              <td> </td>
              <td colspan="2"> </td>
              <td> </td>
            </tr>
            <tr>
              <td><div align="right">* Course</div></td>
              <td colspan="2">
              <select name="courses" id="courses" tabindex="10">
                <option value="0">Select</option>
                <option value="Doctors">Doctors</option>
                <option value="Nurse IP">Nurse IP</option>
                <option value="Nurse OP">Nurse OP</option>
                <option value="Midwife">Midwife</option>
                <option value="HCA">HCA</option>
                <option value="Pharmacist">Pharmacist</option>
                <option value="Back Office Staff">Back Office Staff</option>
                <option value="AHP">AHP</option>
                <option value="Pi Help Desk Analyst">Pi Help Desk Analyst</option>
                <option value="Medical Secretary">Medical Secretary</option>
                <option value="OP Phlebotmist">OP Phlebotmist</option>
                <option value="Champion Users Doctors">Champion Users Doctors</option>
                <option value="Champion Users Nurse IP">Champion Users Nurse IP</option>
              </select></td>
              <td> </td>
            </tr>
            <tr>
              <td><div align="right">* Location &amp; Room</div></td>
              <td><select name="troom" id="troom" tabindex="11">
                <option value="0">Select</option>
                <option value="CXH">Charing Cross</option>
                <option value="HH">Hammersmith Hammersmith</option>
                <option value="QEH">Queen Charlottee Hospital</option>
                <option value="SMH">St Mary's Hospital</option>
                <option value="WEH">Western Eye Hospital</option>
                <option value="SCC">St Charles Community</option>
              </select></td>
              <td> </td>
              <td> </td>
            </tr>
            <tr>
              <td><div align="right">* CPG</div></td>
              <td><select name="cpg2" id="cpg2" tabindex="12">
                <option value="0">Select</option>
                <option value="CPG 1 Medicine">CPG1 - Medicine</option>
                <option value="CPG 2 Surgery &amp; Cancer">CPG2 - Surgery and Cancer</option>
                <option value="CPG3 Specialist Services">CPG3 - Specialist Services</option>
                <option value="CPG4 Circulatory Services and Renal Medicine">CPG4 - Circulatory Services and Renal Medicine</option>
                <option value="CPG5 Womens and Childrens">CPG5 - Womens and Childrens</option>
                <option value="CPG6 Clinical and Investigative Sciences">CPG6 - Clinical and Investigative Sciences</option>
                <option value="CP7 Private Patients">CPG7 - Private Patients</option>
                <option value="Others">Others</option>
              </select></td>
              <td> </td>
              <td> </td>
            </tr>
            <tr>
              <td> </td>
              <td><input type="submit" name="submitbt" id="submitbt" value="Submit" /></td>
              <td> </td>
              <td> </td>
            </tr>
            <tr>
              <td> </td>
              <td colspan="2"> </td>
              <td> </td>
            </tr>
            <tr>
              <td><div align="center">* Mandatory Fields</div></td>
              <td colspan="2"> </td>
              <td> </td>
            </tr>
            <tr>
              <td> </td>
              <td colspan="2"> </td>
              <td> </td>
            </tr>
            <tr>
              <td> </td>
              <td colspan="2"> </td>
              <td> </td>
            </tr>
          </table>
          <input type="hidden" name="MM_insert" value="form1" />
        </form>
        <p> </p>
        <p> </p>
        <!-- end .content --></div>
      <div class="footer"></div>
    <script type="text/javascript">
    var sprytextfield1 = new Spry.Widget.ValidationTextField("sprytextfield1", "none", {validateOn:["blur", "change"]});
    var spryselect1 = new Spry.Widget.ValidationSelect("spryselect1", {validateOn:["blur", "change"]});
    var sprytextfield2 = new Spry.Widget.ValidationTextField("sprytextfield2", "none", {validateOn:["blur", "change"]});
    var sprytextfield3 = new Spry.Widget.ValidationTextField("sprytextfield3", "none", {validateOn:["blur", "change"]});
    var sprytextfield4 = new Spry.Widget.ValidationTextField("sprytextfield4", "integer", {validateOn:["blur", "change"]});
    var spryselect2 = new Spry.Widget.ValidationSelect("spryselect2", {invalidValue:"-1", isRequired:false, validateOn:["blur", "change"]});
    var sprytextfield4 = new Spry.Widget.ValidationTextField("sprytextfield4", "none", {validateOn:["blur"]});
    var sprytextfield5 = new Spry.Widget.ValidationTextField("sprytextfield5", "none", {validateOn:["blur", "change"]});
    var sprytextfield6 = new Spry.Widget.ValidationTextField("sprytextfield6", "date", {validateOn:["change"], format:"dd/mm/yyyy"});
        </script>
    </body>
    </html>
    <?php
    mysql_free_result($rsattend);
    ?>

  • Styles panel missing in Dreamweaver cs6 (Was: Dreamweaver CS6)

    I have just downloaded Dreamweaver & the CSS Styles panels is missing?

    The Styles panel has been replaced with the CSS Designer panel. Layout mode has been gone for some years, as has drawing AP divs.
    The Styles panel didn't offer good access to the legacy CSS attributes and properties, or to management of selectors or sources. CSS designer does all of these much better.
    Layout mode was removed in favor of the separation of content from presentation approach that CSS provides. Drawing AP divs has never been a good solution for page layout because of the many problems encountered when using these positioned elements as containers for text content.
    CS6 is quite a different beast than its predecessors. It has been built with a strong committment to both producing valid code and the use of good methods. Its productive use will require you to have a fair understanding of both HTML and CSS.

  • ANN: Dreamweaver CS6: Learn by Video now available

    My new video course, Dreamweaver CS6: Learn by Video, is now available for viewing/download from video2brain. It's aimed mainly at the beginner/intermediate level, and is approved as study material for the Adobe Certified Associate exam. There are more than 13 hours of video lessons, going from the basics of HTML and CSS to more advanced techniques, such as CSS transforms and media queries.
    The course is available as a standalone purchase from video2brain, or as part of the v2b subscription service. It will also be released on DVD by Adobe Press in early July.
    More details on my website at http://foundationphp.com/dwcs6/. If you're interested in the standalone version from video2brain, please buy through the link on my site, and use DRLBV20 as the coupon code for a 20% discount (valid until 20 August).

    Hi Guenter
    Just so you know. You should remove the download trial link from the official addt page on this site. It is there for download, but nothing happens. I was expecting a notification as promised on email, when addt was released. But no such email.
    I have after a total reinstall of all my system MAC OSX 10.5.6 finally succeeded in installing all of Design Premium CS4. (Shame on adobe for making this such a hastle!!!).
    But when i install ADDT 1.0.1 downloaded today it appears in my extensionmanager, but nowhere to be found in DW CS4. I have restarted DW before checking and all seems to appear ok in Extension Manager.
    What could this be and are others having same issues
    Atb Sofus

  • Dreamweaver CS6 - Spry Menu for iPhone

    Hi
    Seems that spry menu in CS6 doesn't work on iphone/pad?
    Can't open the submenu
    Greetings
    Philipp

    @c-studio.eu
    I have used all of the Spry framework, partially because they come free of charge with DW and partially because there are very strong components. All this despite their age.
    The strongest of these are the various dataset variations (XML, HTML, JSON, CSV and YQL) and Spry validation widgets.
    The weakest one is the menubar, mainly because it does not support touch screens, or conversely, touch screens do not have a hover event. Spry UI Menubar, also known as version 2.0, does have the ability to be used with touch screens, but because it is not integrated with DW, it is harder to modify once it has left the Widget Browser.
    The original menubar can still be used for touch screens if it is single level, i.e. there are no sub-menus or when a submenu is used, the main menu item does not link to another page as in
    <li><a class="MenuBarItemSubmenu" href="#">About Us</a>
      <ul>
        <li><a href="about.html">Our Company</a></li>
        <li><a href="history.html">Company History</a></li>
        <li><a href="mission.html">Mission Satement</a></li>
      </ul>
    </li>
    The above will work in touch screen devices.
    As David has suggested, no real effort has been made by Adobe to further develop the framework, giving a strong impression that they will not support it in future versions of DW. Much is the pity.
    I tend to use jQuery substitutes, not because they are easier to use, but because they are free of charge and are kept up to date. Adobe has also invested in jQuery, particularly the mobile stuff.
    As far as commercial alternatives are concerned, there are a number of well-formed widgets out there, one that is used by a number of prominent forum users. Other available widgets come from  Webassist, DMXZone and CodeCanyon or if you Google the subject, your sure to find a few others.
    And to join others who have shown their preference, lately I have been using Webassist's CSS Menu Writer, http://www.webassist.com/dreamweaver-extensions/css-menu-writer/
    Gramps

  • Dreamweaver cs6 keeps adding br tags in code view

    Hi
    I've just upgraded to Dreamweaver cs6 and am having trouble with the code view. When typing in <script> tags or <style> tags I keep getting two <br> tags automatically inserted. It is really annoying as it puts them on two lines and takes time to remove them and completely disrupts your flow when typing code or css.
    Any suggestions on how to prevent this happening?
    Thanks.

    Thanks David - I think that may well explain it. It seems to happen mostly when adding a { in code or CSS. I wonder if I'm still holding the shift key when I hit enter for a new line. I'm trying Dreamweaver again after using visual studio for the last 5 years or so. I wonder if I can just change the keyboard shortcut.

  • Output shown in Design view of Dreamweaver CS6 is not same as shown by the browsers

    I have made a yoga website http://ballychohan.co/ in Dreamweaver CS6. I faced this problem while designing the website.The results shown by Design view in Dreamweaver is not correct. It made me very confused at the starting. Please tell me how to overcome this problem of DreamWeaver. Should I install a lower version of Dreamweaver ?

    Bally Chohan wrote:
    I have made a yoga website http://ballychohan.co/ in Dreamweaver CS6. I faced this problem while designing the website.The results shown by Design view in Dreamweaver is not correct. It made me very confused at the starting. Please tell me how to overcome this problem of DreamWeaver. Should I install a lower version of Dreamweaver ?
    Does the page show correctly in a browser?
    Dreamweaver design view is not very reliable  at renedering designs exactly the way you want them to look, especailly if you use more of the complex and up-to-date css, now available. Dreamweaver is always playing catch-up in that area.

Maybe you are looking for