Query on #h-navbar in Dreamweaver

I have created a horizontal menu bar with 5 items.  The text is white for all of them, but when I hover over them I want the text to change to a different colour for each of the 5 items.  I have got this to work in Safari and Firefox by setting up a separate hover CSS code.  However in Internet Explorer it doesn't work, the text stays white when you hover over it.  I suspect my attempt at the code is not quite right or maybe Internet Explorer just can't cope?  Any help would be appreciated!
My code is:-
#h-navbar a1:hover {
          color: #F701e2;
          background-color: #000;
#h-navbar a2:hover {
          color: #Fb001f;
          background-color: #000;
#h-navbar a3:hover {
          color: #18e7df;
          background-color: #000;
#h-navbar a4:hover {
          color: #fefa01;
          background-color: #000;
          color: #fefa01;
#h-navbar a5:hover {
          color: #7b09e5;
          background-color: #000;
and then:-
<div id="h-navbar"><a href="index.html"><a1><strong><strong><strong><strong>H</strong></strong></strong></stron g>ome</a1></a> | <a href="aboutus.html"><a2><strong><strong><strong><strong>A</strong></strong></strong></str ong>bout <strong><strong><strong><strong>U</strong></strong></strong></strong>s</a2></a> | <a href="experience.html"><a3><strong><strong><strong><strong>E</strong></strong></strong></ strong>xperience</a3></a> | <a href="services.html"><a4><strong><strong><strong><strong>S</strong></strong></strong></st rong>ervices</a4></a> | <a href="contacts.html"><a5><strong><strong><strong><strong>C</strong></strong></strong></st rong>ontacts</a5></a>
</div>  
Thanks.

Thank you.  The site is quantexqatar.com.
So, all the CSS code I have now is as below.  I didn't think I would need the bit in bold now, but if I take it out then the text turns grey and is underlined.  I would have expected it to be white because that's what is in the a1-a5 rules, but clearly I'm misunderstanding something?  Please can you explain it to me?  Thank you for your help.
#h-navbar {
          font-family: Candara, "Myriad Pro", Arial, Helvetica;
          font-size: 19pt;
          color: #FFF;
          background-color: #000;
          padding-left: 20px;
          padding-bottom: 15px;
          width: 765px;
          z-index: 1;
#h-navbar a, #h-navbar a:visited {
          text-decoration: none;
          color: #FFF;
          padding-right: 10px;
          padding-left: 10px;
#h-navbar a1:link, #h-navbar a1:visited {
          text-decoration: none;
          color: #FFF;
          padding-right: 10px;
          padding-left: 10px;
#h-navbar a2:link, #h-navbar a2:visited {
          text-decoration: none;
          color: #FFF;
          padding-right: 10px;
          padding-left: 10px;
#h-navbar a3:link, #h-navbar a3:visited {
          text-decoration: none;
          color: #FFF;
          padding-right: 10px;
          padding-left: 10px;
#h-navbar a4:link, #h-navbar a4:visited {
          text-decoration: none;
          color: #FFF;
          padding-right: 10px;
          padding-left: 10px;
#h-navbar a5:link, #h-navbar a5:visited {
          text-decoration: none;
          color: #FFF;
          padding-right: 10px;
          padding-left: 10px;
#h-navbar a1:hover,#h-navbar a1:active {
          color: #F701e2;
          background-color: #000;
#h-navbar a2:hover,#h-navbar a2:active {
          color: #Fb001f;
          background-color: #000;
#h-navbar a3:hover,#h-navbar a3:active {
          color: #18e7df;
          background-color: #000;
#h-navbar a4:hover,#h-navbar a4:active {
          color: #fefa01;
          background-color: #000;
          color: #fefa01;
#h-navbar a5:hover,#h-navbar a5:active {
          color: #7b09e5;
          background-color: #000;

Similar Messages

  • Query on email message via dreamweaver mail form

    Hello All,
    First time I've done a mail form so not sure if this is what is supposed to happen. When an email is received via the mail form it has 'submit submit' at the bottom of the message and I'd like to get rid of it if poss.
    The code is:
    <div id="form"><form id="contactform" name="contactform" method="post" action="FormToEmail.php">
          <label>Your Name:<br />
    <input name="name" type="text" id="name" />
    <br />
    </label>
      <br />
      <label>Your Email Address:<br />
    <input name="email" type="text" id="email" />
      </label>
      <br />
      <br />
      <label>Your Message:<br />
    <textarea name="message" cols="50" rows="10" id="message"></textarea>
      </label>
      <br />
      <br />
      <input type="submit" name="Submit" value="Submit" />
    And the php is:
    $errors = array();
    // Remove $_COOKIE elements from $_REQUEST.
    if(count($_COOKIE)){foreach(array_keys($_COOKIE) as $value){unset($_REQUEST[$value]);}}
    // Check all fields for an email header.
    function recursive_array_check_header($element_value)
    global $set;
    if(!is_array($element_value)){if(preg_match("/(%0A|%0D|\n+|\r+)(content-type:|to:|cc:|bcc: )/i",$element_value)){$set = 1;}}
    else
    foreach($element_value as $value){if($set){break;} recursive_array_check_header($value);}
    recursive_array_check_header($_REQUEST);
    if($set){$errors[] = "You cannot send an email header";}
    unset($set);
    // Validate email field.
    if(isset($_REQUEST['email']) && !empty($_REQUEST['email']))
    if(preg_match("/(%0A|%0D|\n+|\r+|:)/i",$_REQUEST['email'])){$errors[] = "Email address may not contain a new line or a colon";}
    $_REQUEST['email'] = trim($_REQUEST['email']);
    if(substr_count($_REQUEST['email'],"@") != 1 || stristr($_REQUEST['email']," ")){$errors[] = "Email address is invalid";}else{$exploded_email = explode("@",$_REQUEST['email']);if(empty($exploded_email[0]) || strlen($exploded_email[0]) > 64 || empty($exploded_email[1])){$errors[] = "Email address is invalid";}else{if(substr_count($exploded_email[1],".") == 0){$errors[] = "Email address is invalid";}else{$exploded_domain = explode(".",$exploded_email[1]);if(in_array("",$exploded_domain)){$errors[] = "Email address is invalid";}else{foreach($exploded_domain as $value){if(strlen($value) > 63 || !preg_match('/^[a-z0-9-]+$/i',$value)){$errors[] = "Email address is invalid"; break;}}}}}}
    // Check referrer is from same site.
    if(!(isset($_SERVER['HTTP_REFERER']) && !empty($_SERVER['HTTP_REFERER']) && stristr($_SERVER['HTTP_REFERER'],$_SERVER['HTTP_HOST']))){$errors[] = "You must enable referrer logging to use the form";}
    // Check for a blank form.
    function recursive_array_check_blank($element_value)
    global $set;
    if(!is_array($element_value)){if(!empty($element_value)){$set = 1;}}
    else
    foreach($element_value as $value){if($set){break;} recursive_array_check_blank($value);}
    recursive_array_check_blank($_REQUEST);
    if(!$set){$errors[] = "You cannot send a blank form";}
    unset($set);
    // Display any errors and exit if errors exist.
    if(count($errors)){foreach($errors as $value){print "$value<br>";} exit;}
    if(!defined("PHP_EOL")){define("PHP_EOL", strtoupper(substr(PHP_OS,0,3) == "WIN") ? "\r\n" : "\n");}
    // Build message.
    function build_message($request_input){if(!isset($message_output)){$message_output ="";}if(!is_array($request_input)){$message_output = $request_input;}else{foreach($request_input as $key => $value){if(!empty($value)){if(!is_numeric($key)){$message_output .= str_replace("_"," ",ucfirst($key)).": ".build_message($value).PHP_EOL.PHP_EOL;}else{$message_output .= build_message($value).", ";}}}}return rtrim($message_output,", ");}
    $message = build_message($_REQUEST);
    $message = $message . PHP_EOL.PHP_EOL."-- ".PHP_EOL."";
    $message = stripslashes($message);
    $subject = "TOP FLOOR WEBSITE ENQUIRY";
    $headers = "From: " . $_REQUEST['email'];
    mail($my_email,$subject,$message,$headers);
    ?>
    Thanks alot in advance

    Wow. Not much defeats legibilty quite as well as avoiding line feeds and indention in recursive code! (and inserting multiple blank lines? Was that this online editor?)
    Anyway, I did not test this, but try replacing your build_message function,
    function build_message($request_input){if(!isset($message_output)){$message_output ="";}if(!is_array($request_input)){$message_output = $request_input;}else{foreach($request_input as $key => $value){if(!empty($value)){if(!is_numeric($key)){$message_output .= str_replace("_"," ",ucfirst($key)).": ".build_message($value).PHP_EOL.PHP_EOL;}else{$message_output .= build_message($value).", ";}}}}return rtrim($message_output,", ");}
    With this:
    function build_message($request_input) {
      if(!isset($message_output)) {
        $message_output ="";
      if(!is_array($request_input)) {
        $message_output = $request_input;
      else{
        foreach($request_input as $key => $value) {
          if(!empty($value)) {
            if(!is_numeric($key)) {
              $message_output .= str_replace("_"," ",ucfirst($key)).": ".build_message($value).PHP_EOL.PHP_EOL;
            else {
              if ($key != strtolower('submit') {
                $message_output .= build_message($value).", ";
      return rtrim($message_output,", ");
    (Added condition for 'submit')
    Also, I highly recommend replacing all those $_REQUEST with $_POST or $_GET, whichever is appropriate for your form.
    Mark A. Boyd
    Keep-On-Learnin' :-)
    If you are reading this via email, be aware that it may not be an accurate representation of my message. Login to read the actual message and/or to reply.

  • Navbar not proper Safari/IE

    Hello--my first time asking a question:
    I have just started my first site and I created a navbar via
    Dreamweaver's insert navbar command. The navbar and rollovers work
    for every button except for the 'links' button in Safari and IE.
    Though everything works fine in Firefox and Opera. I have looked at
    the code and the 'links' button code looks similar to all the rest
    of the rollovers.
    my website:
    http://studentweb.uwstout.edu/ganrudej/
    Maybe there is a glaring mistake, any help is appreciated.
    Thank you,
    Jared

    > Hell--my first time asking a question:
    ---^^^^
    Bad start. 8)
    > insert navbar command
    Bad continuation.
    That feature is pretty antique, and really offers nothing
    more than simple
    image swap rollovers. I suggest you pull the navbar out and
    redo it with
    ordinary image rollovers - it will make your code easier to
    read, and less
    voluminous.
    Anyhow, Safari seems to have a problem with the image name of
    "links". I
    have changed it to 'xlinks' and uploaded it here - does it
    work for you?
    http://www.murraytestsite.com/ganrudej.html
    (That would be <img name="xlinks")
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "HiFiVictor" <[email protected]> wrote in
    message
    news:er3qv7$8f$[email protected]..
    > Hell--my first time asking a question:
    >
    > I have just started my first site and I created a navbar
    via Dreamweaver's
    > insert navbar command. The navbar and rollovers work for
    every button
    > except
    > for the 'links' button in Safari and IE. Though
    everything works fine in
    > Firefox and Opera. I have looked at the code and the
    'links' button code
    > looks
    > similar to all the rest of the rollovers.
    >
    > my website:
    >
    >
    http://studentweb.uwstout.edu/ganrudej/
    >
    > Maybe there is a glaring mistake, any help is
    appreciated.
    >
    > Thank you,
    > Jared
    >
    >
    >

  • Is this why I and so many others can't install Photoshop CS6 update 13.0.1.2 (Win)?

    I'm well into my third evening trying to figure this one out. Here's what hasn't worked:
    1) downloading and running standalone update patch (not easy to find)
    2) replacing missing language files. I did this by installing Creative Suite CS6 to another computer and then copying missing language files (bloat) to my PS CS6 folder.
    3) trying to reinstall Photoshop from my DVD - nope, it's an all or nothing proposition - would have needed to return everything to initial release state - no Repair available
    4) following various 'expert' threads that for the most part are shots in the dark or from-some-script replies by outsourced support people, many of whom can't spell
    5) researching ambiguous advice... do I reinstall, uninstall/reinstall, or run CS6 cleanup utility before uninstall/reinstall - what would be collateral damage for trying any of these.
    OK, I knew I was fighting badly written installer problems. I remember very well the many evenings I wasted trying to get CS4 Creative Suite installed. In fact it was I who figured out what was broken and passed along the solution to a Senior Tech rep at Adobe.
    Anyway, here's what I found at the end of a very long failed installation log file:
    08/24/13 01:04:30:878 | [INFO] |  | UPDATER | CORE |  |  |  | 8504 | A valid subscription license found for  = Photoshop-CS6-Win-GM
    08/24/13 01:04:30:885 | [INFO] |  | UPDATER | CORE |  |  |  | 8504 | CFU(Webfeed): Patch is meant only for perpetual licenses, but client doesn't have a valid perpetual license.
    08/24/13 01:04:30:885 | [INFO] |  | UPDATER | CORE |  |  |  | 8504 | CheckForManualApplicableUpdates : default Locale was found to be---- = en_US
    08/24/13 01:04:30:886 | [INFO] |  | UPDATER | CORE |  |  |  | 8504 | CheckForManualApplicableUpdates : The update is not applicable as per licensing checks
    08/24/13 01:04:30:886 | [INFO] |  | UPDATER | CORE |  |  |  | 8504 | Returning from << UCInitialize >> call error = 36 retVal = 0
    08/24/13 01:04:31:014 | [INFO] |  | UPDATER | CORE |  |  |  | 5816 | Stepped into << UCGetUserPreferences >> call
    08/24/13 01:04:31:028 | [INFO] |  | UPDATER | CORE |  |  |  | 5816 | Returning from << UCGetUserPreferences >> call error = 0 retVal = 1
    Check out the 1st, 2nd and 4th lines. Why does the brain dead installer think my CS6 is a subscription. It was purchased as a permanent license and remained so until this CC abomination began to enforce totally wrong assumptions. I have subscribed to CC for the new features, not to cripple licenses I already paid for.
    I found these contradictory lines in the middle of this file:
    05/15/13 02:16:01:157 | [INFO] |  | UPDATER | CORE |  |  |  | 53920 | CFU(Webfeed): Patch is meant only for subscription licenses, but client doesn't have a valid subscription license.
    05/15/13 02:16:01:157 | [INFO] |  | UPDATER | CORE |  |  |  | 53920 | Going in waiting state as following Recommendation is no more valid for this update(license mismatch)
    05/15/13 02:16:01:159 | [INFO] |  | UPDATER | CORE |  |  |  | 53920 | CFU(Webfeed): Query licensing type for LEID  = Photoshop-CS6-Win-GM
    05/15/13 02:16:02:070 | [INFO] |  | UPDATER | CORE |  |  |  | 53920 | A valid perpetual license found for  = Photoshop-CS6-Win-GM
    05/15/13 02:16:02:072 | [INFO] |  | UPDATER | CORE |  |  |  | 53920 | CFU(Webfeed): Patch is meant only for subscription licenses, but client doesn't have a valid subscription license.
    05/15/13 02:16:02:072 | [INFO] |  | UPDATER | CORE |  |  |  | 53920 | Going in waiting state as following Recommendation is no more valid for this update(license mismatch)
    Could it be that my having installed CS6 to the D:\ drive is the culprit? I didn't have that option with CC
    This cryptic mess seems to be the concatenation of several logs with Adobe's assorted rationales for failure to work. I wonder if anyone is left in the free support pool who understands these cryptic logs. If there's anyone does, here it is in its entirety:
    12/22/12 04:54:20:610 | [INFO] |  | UPDATER | CORE |  |  |  | 4304 | >>> Adobe Updater Log Begin >>>
    12/22/12 04:54:20:610 | [INFO] |  | UPDATER | CORE |  |  |  | 4304 | UpdaterCoreImpl::InitLogFile : Application Version 7.0.0.27
    12/22/12 04:54:20:610 | [INFO] |  | UPDATER | CORE |  |  |  | 4304 | UpdaterCoreImpl::InitLogFile : cmdline option --> -logFile = C:\Users\klo\AppData\Local\Adobe\AAMUpdater\1.0\aamu.log
    12/22/12 04:54:20:611 | [INFO] |  | UPDATER | CORE |  |  |  | 4304 | UpdaterCoreImpl::InitLogFile : cmdline option --> -logLevel = 2
    12/22/12 04:54:20:611 | [INFO] |  | UPDATER | CORE |  |  |  | 4304 | Stepped into << UCInitialize >> call
    12/22/12 04:54:20:645 | [INFO] |  | UPDATER | CORE |  |  |  | 4304 | UCInitialize : AAM is launched via CCM.
    12/22/12 04:54:20:645 | [INFO] |  | UPDATER | CORE |  |  |  | 4304 | Stepped into << UCSetUpdateEnginePath >> call
    12/22/12 04:54:20:711 | [INFO] |  | UPDATER | CORE |  |  |  | 4304 | Returning from << UCSetUpdateEnginePath >> call error = 0 retVal = 1
    12/22/12 04:54:20:722 | [INFO] |  | UPDATER | CORE |  |  |  | 4304 | Stepped into << UCSetDeploymentEnginePath >> call
    12/22/12 04:54:20:743 | [INFO] |  | UPDATER | CORE |  |  |  | 4304 | Returning from << UCSetDeploymentEnginePath >> call error = 0 retVal = 1
    12/22/12 04:54:20:743 | [INFO] |  | UPDATER | CORE |  |  |  | 4304 | Returning from << UCInitialize >> call error = 0 retVal = 1
    12/22/12 04:54:20:743 | [INFO] |  | UPDATER | CORE |  |  |  | 4304 | Stepped into << UCGetUserPreferences >> call
    12/22/12 04:54:20:748 | [INFO] |  | UPDATER | CORE |  |  |  | 4304 | Returning from << UCGetUserPreferences >> call error = 0 retVal = 1
    12/22/12 04:54:28:272 | [INFO] |  | UPDATER | CORE |  |  |  | 6024 | Stepped into << UCCheckForUpdates >> call
    12/22/12 04:54:28:402 | [INFO] |  | UPDATER | CORE |  |  |  | 6024 | CFU(Webfeed): Query licensing type for LEID  = Illustrator-CS6-Win-GM
    12/22/12 04:54:28:475 | [INFO] |  | UPDATER | CORE |  |  |  | 6024 | A valid perpetual license found for  = Illustrator-CS6-Win-GM
    12/22/12 04:54:28:477 | [INFO] |  | UPDATER | CORE |  |  |  | 6024 | CFU(Webfeed): Patch is meant only for subscription licenses, but client doesn't have a valid subscription license.
    12/22/12 04:54:28:477 | [INFO] |  | UPDATER | CORE |  |  |  | 6024 | Going in waiting state as following Recommendation is no more valid for this update(license mismatch)
    12/22/12 04:54:28:480 | [INFO] |  | UPDATER | CORE |  |  |  | 6024 | CFU(Webfeed): Query licensing type for LEID  = Dreamweaver-CS6-Win-GM
    12/22/12 04:54:28:526 | [INFO] |  | UPDATER | CORE |  |  |  | 6024 | A valid perpetual license found for  = Dreamweaver-CS6-Win-GM
    12/22/12 04:54:28:528 | [INFO] |  | UPDATER | CORE |  |  |  | 6024 | CFU(Webfeed): Patch is meant only for subscription licenses, but client doesn't have a valid subscription license.
    12/22/12 04:54:28:528 | [INFO] |  | UPDATER | CORE |  |  |  | 6024 | CFU(Webfeed): Query licensing type for LEID  = Dreamweaver-CS6-Win-GM
    12/22/12 04:54:28:574 | [INFO] |  | UPDATER | CORE |  |  |  | 6024 | A valid perpetual license found for  = Dreamweaver-CS6-Win-GM
    12/22/12 04:54:28:575 | [INFO] |  | UPDATER | CORE |  |  |  | 6024 | CFU(Webfeed): Patch is meant only for subscription licenses, but client doesn't have a valid subscription license.
    12/22/12 04:54:28:575 | [INFO] |  | UPDATER | CORE |  |  |  | 6024 | Going in waiting state as following Recommendation is no more valid for this update(license mismatch)
    12/22/12 04:54:28:577 | [INFO] |  | UPDATER | CORE |  |  |  | 6024 | CFU(Webfeed): Query licensing type for LEID  = Photoshop-CS6-Win-GM
    12/22/12 04:54:28:628 | [INFO] |  | UPDATER | CORE |  |  |  | 6024 | A valid perpetual license found for  = Photoshop-CS6-Win-GM
    12/22/12 04:54:28:630 | [INFO] |  | UPDATER | CORE |  |  |  | 6024 | CFU(Webfeed): Patch is meant only for subscription licenses, but client doesn't have a valid subscription license.
    12/22/12 04:54:28:630 | [INFO] |  | UPDATER | CORE |  |  |  | 6024 | Going in waiting state as following Recommendation is no more valid for this update(license mismatch)
    12/22/12 04:54:28:693 | [INFO] |  | UPDATER | CORE |  |  |  | 6024 | SetCFUInProgress :  = 1
    12/22/12 04:54:28:693 | [INFO] |  | UPDATER | CORE |  |  |  | 6024 | Returning from << UCCheckForUpdates >> call error = 0 retVal = 1
    12/22/12 04:54:28:695 | [INFO] |  | UPDATER | CORE |  |  |  | 5708 | CFU(Webfeed): Downloading WebFeed
    12/22/12 04:54:28:696 | [INFO] |  | UPDATER | CORE |  |  |  | 5708 | GDEDownloader:: GDEInitialize Successful
    12/22/12 04:54:28:703 | [INFO] |  | UPDATER | CORE |  |  |  | 5708 | GDEDownloader:: GDEInitDownloader Successful
    12/22/12 04:54:28:719 | [INFO] |  | UPDATER | CORE |  |  |  | 5708 | GDEDownloader:: GDESetThreadCount Successful
    12/22/12 04:54:28:901 | [INFO] |  | UPDATER | CORE |  |  |  | 5708 | GDEDownloader:: GDEGetEtag Successful
    12/22/12 04:54:28:901 | [INFO] |  | UPDATER | CORE |  |  |  | 5708 | CFU(Webfeed): Web feed hasn't changed, so no need to download.
    12/22/12 04:54:28:901 | [INFO] |  | UPDATER | CORE |  |  |  | 5708 | GDEDownloader:: GDE Closed
    12/22/12 04:54:28:902 | [INFO] |  | UPDATER | CORE |  |  |  | 5708 | CFU(Webfeed): Webfeed is empty
    12/22/12 04:54:28:902 | [INFO] |  | UPDATER | CORE |  |  |  | 5708 | CFU(Webfeed): MRL is empty
    12/22/12 04:54:29:693 | [INFO] |  | UPDATER | CORE |  |  |  | 6012 | SetCFUInProgress :  = 0
    12/22/12 04:54:29:693 | [INFO] |  | UPDATER | CORE |  |  |  | 6012 | SetCFUInProgress :  = 0
    12/22/12 04:54:29:693 | [INFO] |  | UPDATER | CORE |  |  |  | 6012 | Check for Updates was done successfully.
    12/22/12 04:54:29:705 | [INFO] |  | UPDATER | CORE |  |  |  | 6012 | UCGetprogress : Check for updates returning state for reffId  =
    12/22/12 04:54:29:705 | [INFO] |  | UPDATER | CORE |  |  |  | 6012 | UCGetprogress : Check for updates returning state     = 21
    12/22/12 04:54:29:705 | [INFO] |  | UPDATER | CORE |  |  |  | 6012 | UCGetprogress : Check for updates returning outError  = 0
    12/22/12 04:54:29:705 | [INFO] |  | UPDATER | CORE |  |  |  | 6012 | UCGetprogress : Check for updates returning percent   = 0
    12/22/12 04:54:29:705 | [INFO] |  | UPDATER | CORE |  |  |  | 6012 | UCGetprogress : Check for updates returning unique error code string   = U21M1C0
    12/22/12 04:54:29:705 | [INFO] |  | UPDATER | CORE |  |  |  | 6012 | Stepped into << UCGetAvailableUpdateStatus >> call
    12/22/12 04:54:29:708 | [INFO] |  | UPDATER | CORE |  |  |  | 6012 | Returning from << UCGetAvailableUpdateStatus >> call error = 0 retVal = 1
    12/22/12 04:55:07:213 | [INFO] |  | UPDATER | CORE |  |  |  | 5688 | Stepped into << UCTerminate >> call.
    12/22/12 04:55:07:214 | [INFO] |  | UPDATER | CORE |  |  |  | 5688 | Returning from << UCTerminate >> call with value = 1
    12/22/12 04:55:07:214 | [INFO] |  | UPDATER | CORE |  |  |  | 5688 | UpdaterCoreImpl::ShutdownLogFile : Going to call ShutdownESDLogFile()
    12/22/12 04:55:07:214 | [INFO] |  | UPDATER | CORE |  |  |  | 5688 | <<< Adobe Updater Log End <<<
    01/16/13 21:48:24:581 | [INFO] |  | UPDATER | CORE |  |  |  | 44144 | >>> Adobe Updater Log Begin >>>
    01/16/13 21:48:24:581 | [INFO] |  | UPDATER | CORE |  |  |  | 44144 | UpdaterCoreImpl::InitLogFile : Application Version 7.0.0.27
    01/16/13 21:48:24:581 | [INFO] |  | UPDATER | CORE |  |  |  | 44144 | UpdaterCoreImpl::InitLogFile : cmdline option --> -logFile = C:\Users\klo\AppData\Local\Adobe\AAMUpdater\1.0\aamu.log
    01/16/13 21:48:24:582 | [INFO] |  | UPDATER | CORE |  |  |  | 44144 | UpdaterCoreImpl::InitLogFile : cmdline option --> -logLevel = 2
    01/16/13 21:48:24:582 | [INFO] |  | UPDATER | CORE |  |  |  | 44144 | Stepped into << UCInitialize >> call
    01/16/13 21:48:24:611 | [INFO] |  | UPDATER | CORE |  |  |  | 44144 | UCInitialize : AAM is launched via Updater.
    01/16/13 21:48:24:612 | [INFO] |  | UPDATER | CORE |  |  |  | 44144 | Stepped into << UCSetUpdateEnginePath >> call
    01/16/13 21:48:24:676 | [INFO] |  | UPDATER | CORE |  |  |  | 44144 | Returning from << UCSetUpdateEnginePath >> call error = 0 retVal = 1
    01/16/13 21:48:24:685 | [INFO] |  | UPDATER | CORE |  |  |  | 44144 | Stepped into << UCSetDeploymentEnginePath >> call
    01/16/13 21:48:24:695 | [INFO] |  | UPDATER | CORE |  |  |  | 44144 | Returning from << UCSetDeploymentEnginePath >> call error = 0 retVal = 1
    01/16/13 21:48:24:695 | [INFO] |  | UPDATER | CORE |  |  |  | 44144 | Returning from << UCInitialize >> call error = 0 retVal = 1
    01/16/13 21:48:24:965 | [INFO] |  | UPDATER | CORE |  |  |  | 44168 | Stepped into << UCGetUserPreferences >> call
    01/16/13 21:48:24:973 | [INFO] |  | UPDATER | CORE |  |  |  | 44168 | Returning from << UCGetUserPreferences >> call error = 0 retVal = 1
    01/16/13 21:48:24:978 | [INFO] |  | UPDATER | CORE |  |  |  | 44768 | Stepped into << UCCheckForUpdates >> call
    01/16/13 21:48:25:066 | [INFO] |  | UPDATER | CORE |  |  |  | 44768 | CFU(Webfeed): Query licensing type for LEID  = Illustrator-CS6-Win-GM
    01/16/13 21:48:25:145 | [INFO] |  | UPDATER | CORE |  |  |  | 44768 | A valid perpetual license found for  = Illustrator-CS6-Win-GM
    01/16/13 21:48:25:164 | [INFO] |  | UPDATER | CORE |  |  |  | 44768 | CFU(Webfeed): Patch is meant only for subscription licenses, but client doesn't have a valid subscription license.
    01/16/13 21:48:25:164 | [INFO] |  | UPDATER | CORE |  |  |  | 44768 | Going in waiting state as following Recommendation is no more valid for this update(license mismatch)
    01/16/13 21:48:25:168 | [INFO] |  | UPDATER | CORE |  |  |  | 44768 | CFU(Webfeed): Query licensing type for LEID  = Dreamweaver-CS6-Win-GM
    01/16/13 21:48:25:225 | [INFO] |  | UPDATER | CORE |  |  |  | 44768 | A valid perpetual license found for  = Dreamweaver-CS6-Win-GM
    01/16/13 21:48:25:227 | [INFO] |  | UPDATER | CORE |  |  |  | 44768 | CFU(Webfeed): Patch is meant only for subscription licenses, but client doesn't have a valid subscription license.
    01/16/13 21:48:25:227 | [INFO] |  | UPDATER | CORE |  |  |  | 44768 | CFU(Webfeed): Query licensing type for LEID  = Dreamweaver-CS6-Win-GM
    01/16/13 21:48:25:281 | [INFO] |  | UPDATER | CORE |  |  |  | 44768 | A valid perpetual license found for  = Dreamweaver-CS6-Win-GM
    01/16/13 21:48:25:283 | [INFO] |  | UPDATER | CORE |  |  |  | 44768 | CFU(Webfeed): Patch is meant only for subscription licenses, but client doesn't have a valid subscription license.
    01/16/13 21:48:25:283 | [INFO] |  | UPDATER | CORE |  |  |  | 44768 | Going in waiting state as following Recommendation is no more valid for this update(license mismatch)
    01/16/13 21:48:25:286 | [INFO] |  | UPDATER | CORE |  |  |  | 44768 | CFU(Webfeed): Query licensing type for LEID  = Bridge-CS6-Win-GM
    01/16/13 21:48:25:320 | [INFO] |  | UPDATER | CORE |  |  |  | 44768 | No valid license found for  = Bridge-CS6-Win-GM
    01/16/13 21:48:25:323 | [INFO] |  | UPDATER | CORE |  |  |  | 44768 | CFU(Webfeed): Query licensing type for LEID  = Bridge-CS6-Win-GM
    01/16/13 21:48:25:358 | [INFO] |  | UPDATER | CORE |  |  |  | 44768 | No valid license found for  = Bridge-CS6-Win-GM
    01/16/13 21:48:25:362 | [INFO] |  | UPDATER | CORE |  |  |  | 44768 | CFU(Webfeed): Query licensing type for LEID  = Photoshop-CS6-Win-GM
    01/16/13 21:48:25:425 | [INFO] |  | UPDATER | CORE |  |  |  | 44768 | A valid perpetual license found for  = Photoshop-CS6-Win-GM
    01/16/13 21:48:25:427 | [INFO] |  | UPDATER | CORE |  |  |  | 44768 | CFU(Webfeed): Patch is meant only for subscription licenses, but client doesn't have a valid subscription license.
    01/16/13 21:48:25:427 | [INFO] |  | UPDATER | CORE |  |  |  | 44768 | Going in waiting state as following Recommendation is no more valid for this update(license mismatch)
    01/16/13 21:48:25:493 | [INFO] |  | UPDATER | CORE |  |  |  | 44768 | SetCFUInProgress :  = 1
    01/16/13 21:48:25:493 | [INFO] |  | UPDATER | CORE |  |  |  | 44768 | Returning from << UCCheckForUpdates >> call error = 0 retVal = 1
    01/16/13 21:48:25:494 | [INFO] |  | UPDATER | CORE |  |  |  | 44144 | CFU(Webfeed): Downloading WebFeed
    01/16/13 21:48:25:497 | [INFO] |  | UPDATER | CORE |  |  |  | 44144 | GDEDownloader:: GDEInitialize Successful
    01/16/13 21:48:25:504 | [INFO] |  | UPDATER | CORE |  |  |  | 44144 | GDEDownloader:: GDEInitDownloader Successful
    01/16/13 21:48:25:524 | [INFO] |  | UPDATER | CORE |  |  |  | 44144 | GDEDownloader:: GDESetThreadCount Successful
    01/16/13 21:48:25:630 | [INFO] |  | UPDATER | CORE |  |  |  | 44144 | GDEDownloader:: GDEGetEtag Successful
    01/16/13 21:48:25:630 | [INFO] |  | UPDATER | CORE |  |  |  | 44144 | CFU(Webfeed): Web feed hasn't changed, so no need to download.
    01/16/13 21:48:25:630 | [INFO] |  | UPDATER | CORE |  |  |  | 44144 | GDEDownloader:: GDE Closed
    01/16/13 21:48:25:631 | [INFO] |  | UPDATER | CORE |  |  |  | 44144 | CFU(Webfeed): Webfeed is empty
    01/16/13 21:48:25:631 | [INFO] |  | UPDATER | CORE |  |  |  | 44144 | CFU(Webfeed): MRL is empty
    01/16/13 21:48:25:793 | [INFO] |  | UPDATER | CORE |  |  |  | 43524 | SetCFUInProgress :  = 0
    01/16/13 21:48:25:793 | [INFO] |  | UPDATER | CORE |  |  |  | 43524 | SetCFUInProgress :  = 0
    01/16/13 21:48:25:793 | [INFO] |  | UPDATER | CORE |  |  |  | 43524 | Check for Updates was done successfully.
    01/16/13 21:48:25:805 | [INFO] |  | UPDATER | CORE |  |  |  | 43524 | UCGetprogress : Check for updates returning state for reffId  =
    01/16/13 21:48:25:806 | [INFO] |  | UPDATER | CORE |  |  |  | 43524 | UCGetprogress : Check for updates returning state     = 21
    01/16/13 21:48:25:806 | [INFO] |  | UPDATER | CORE |  |  |  | 43524 | UCGetprogress : Check for updates returning outError  = 0
    01/16/13 21:48:25:806 | [INFO] |  | UPDATER | CORE |  |  |  | 43524 | UCGetprogress : Check for updates returning percent   = 0
    01/16/13 21:48:25:806 | [INFO] |  | UPDATER | CORE |  |  |  | 43524 | UCGetprogress : Check for updates returning unique error code string   = U21M1C0
    01/16/13 21:48:26:005 | [INFO] |  | UPDATER | CORE |  |  |  | 44168 | Stepped into << UCGetUserPreferences >> call
    01/16/13 21:48:26:023 | [INFO] |  | UPDATER | CORE |  |  |  | 44168 | Returning from << UCGetUserPreferences >> call error = 0 retVal = 1
    01/16/13 21:48:26:029 | [INFO] |  | UPDATER | CORE |  |  |  | 44168 | Stepped into << UCGetInstalledChannels >> call
    01/16/13 21:48:26:185 | [INFO] |  | UPDATER | CORE |  |  |  | 44168 | Returning from << UCGetInstalledChannels >> call error = 0 retVal = 1
    01/16/13 21:48:26:799 | [INFO] |  | UPDATER | CORE |  |  |  | 44168 | Stepped into << UCGetInstalledChannels >> call
    01/16/13 21:48:26:842 | [INFO] |  | UPDATER | CORE |  |  |  | 44168 | Returning from << UCGetInstalledChannels >> call error = 0 retVal = 1
    01/16/13 21:48:26:855 | [INFO] |  | UPDATER | CORE |  |  |  | 44168 | Stepped into << UCGetAvailableUpdateStatus >> call
    01/16/13 21:48:26:856 | [INFO] |  | UPDATER | CORE |  |  |  | 44168 | Returning from << UCGetAvailableUpdateStatus >> call error = 0 retVal = 1
    01/16/13 21:48:27:055 | [INFO] |  | UPDATER | CORE |  |  |  | 44168 | SetViewedUpdate: The update is waiting for a product event! Not set to viewed.
    01/16/13 21:48:27:055 | [INFO] |  | UPDATER | CORE |  |  |  | 44168 | SetViewedUpdate: The update is waiting for a product event! Not set to viewed.
    01/16/13 21:48:27:055 | [INFO] |  | UPDATER | CORE |  |  |  | 44168 | SetViewedUpdate: The update is waiting for a product event! Not set to viewed.
    01/16/13 21:49:00:587 | [INFO] |  | UPDATER | CORE |  |  |  | 45080 | Stepped into << UCDownloadUpdates >> call
    01/16/13 21:49:00:655 | [INFO] |  | UPDATER | CORE |  |  |  | 45080 |  Stepped into << AdobeUpdaterCreateThread >> API
    01/16/13 21:49:00:655 | [INFO] |  | UPDATER | CORE |  |  |  | 45080 | Returning from << AdobeUpdaterCreateThread >> API
    01/16/13 21:49:00:655 | [INFO] |  | UPDATER | CORE |  |  |  | 45080 | StartUpdateInstallerSubsystem : LaunchUpdateInstallerAsAdmin before.
    01/16/13 21:49:00:655 | [INFO] |  | UPDATER | CORE |  |  |  | 45080 | LaunchUpdateInstallerAsAdmin: UpdateInstaller utility path is : = C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\core\..\UWA\Adobe Application Manager (Updater).exe
    01/16/13 21:49:00:655 | [INFO] |  | UPDATER | CORE |  |  |  | 45084 | ThreadInstallRequestHandler : Creating new IPC Object for Install control
    01/16/13 21:49:00:655 | [INFO] |  | UPDATER | CORE |  |  |  | 45084 | ThreadInstallRequestHandler : Initializing IPC channel for Install control
    01/16/13 21:49:00:656 | [INFO] |  | UPDATER | CORE |  |  |  | 45084 | ThreadInstallRequestHandler : Releasing kSyncUpdaterCoreIPCInitializationWaitKey Lock after IPC Channel.
    01/16/13 21:49:00:656 | [INFO] |  | UPDATER | CORE |  |  |  | 45084 | ThreadInstallRequestHandler : Acquiring kSyncUpdaterCoreIPCRecvPacketWaitKey Lock before re intializing IPC Channel.
    01/16/13 21:49:00:671 | [INFO] |  | UPDATER | CORE |  |  |  | 45080 | LaunchUpdateInstallerAsAdmin: sCmdLineArgs1 is : = -mode=productupdate
    01/16/13 21:49:00:671 | [INFO] |  | UPDATER | CORE |  |  |  | 45080 | LaunchUpdateInstallerAsAdmin: sCmdLineArgs2 is : = -appDataDir=C:\Users\klo\AppData\Local\Adobe\AAMUpdater\1.0
    01/16/13 21:49:00:671 | [INFO] |  | UPDATER | CORE |  |  |  | 45080 | LaunchUpdateInstallerAsAdmin: sCmdLineArgs3 is : = -deploymentEnginePath=C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\core\..\DECore\Setup.exe
    01/16/13 21:49:00:671 | [INFO] |  | UPDATER | CORE |  |  |  | 45080 | Stepped into << AdobeUpdaterCreateNewProcess >> API
    01/16/13 21:49:00:671 | [INFO] |  | UPDATER | CORE |  |  |  | 45080 | AdobeUpdaterCreateNewProcess :  About to launch executable at  = C
    01/16/13 21:49:00:671 | [INFO] |  | UPDATER | CORE |  |  |  | 45080 | AdobeUpdaterCreateNewProcess :  Working Dir will be   = C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\core\..\UWA
    01/16/13 21:49:00:743 | [INFO] |  | UPDATER | CORE |  |  |  | 45080 | AdobeUpdaterCreateNewProcess :  Executable launch was successful.
    01/16/13 21:49:00:743 | [INFO] |  | UPDATER | CORE |  |  |  | 45080 | Returning from << AdobeUpdaterCreateNewProcess >> API
    01/16/13 21:49:00:743 | [INFO] |  | UPDATER | CORE |  |  |  | 45080 | LaunchUpdateInstallerAsAdmin: UpdateInstaller launch executed successfully.
    01/16/13 21:49:00:743 | [INFO] |  | UPDATER | CORE |  |  |  | 45080 | StartUpdateInstallerSubsystem : Releasing kSyncUpdaterCoreIPCRecvPacketWaitKey Lock.
    01/16/13 21:49:00:743 | [INFO] |  | UPDATER | CORE |  |  |  | 45080 | StartUpdateInstallerSubsystem : Acquiring kSyncUpdaterCoreIPCInitializationWaitKey Lock before intializing IPC Channel.
    01/16/13 21:49:00:743 | [INFO] |  | UPDATER | CORE |  |  |  | 45080 | StartUpdateInstallerSubsystem : Acquiring kSyncUpdaterCoreIPCAckPacketWaitKey Lock before re intializing IPC Channel.
    01/16/13 21:49:00:787 | [INFO] |  | UPDATER | CORE |  |  |  | 45084 | InstallRequest_MessageHandler_kID_Ack : Received kID_Ack packet from Installer sub-system.
    01/16/13 21:49:00:787 | [INFO] |  | UPDATER | CORE |  |  |  | 45084 | NotifyResultToInstallerSubSystem : Sending packet with id  = 9
    01/16/13 21:49:00:886 | [INFO] |  | UPDATER | CORE |  |  |  | 45080 | StartUpdateInstallerSubsystem : Received ACK from Update Installer subsystem for Initialization.
    01/16/13 21:49:00:886 | [INFO] |  | UPDATER | CORE |  |  |  | 45080 | SetDownloadUpdatesInProgress :  = 1
    01/16/13 21:49:00:886 | [INFO] |  | UPDATER | CORE |  |  |  | 45080 | Returning from << UCDownloadUpdates >> call error = 0 retVal = 1
    01/16/13 21:49:00:887 | [INFO] |  | UPDATER | CORE |  |  |  | 45124 | ThreadDownloadUpdates: Downloading installer for update refID: AdobeBridgeCS664Bit-5.0/5.0.2
    01/16/13 21:49:00:887 | [INFO] |  | UPDATER | CORE |  |  |  | 45124 | getValidationType: Going for Code signing check for the downloaded installer
    01/16/13 21:49:00:897 | [INFO] |  | UPDATER | CORE |  |  |  | 45124 | ThreadDownloadUpdates:: Initializing Download
    01/16/13 21:49:00:898 | [INFO] |  | UPDATER | CORE |  |  |  | 45124 | GDEDownloader:: GDEInitialize Successful
    01/16/13 21:49:00:903 | [INFO] |  | UPDATER | CORE |  |  |  | 45124 | GDEDownloader:: GDEInitDownloader Successful
    01/16/13 21:49:01:075 | [INFO] |  | UPDATER | CORE |  |  |  | 45124 | GDEDownloader:: GDEGetFileSize Successful
    01/16/13 21:49:01:075 | [INFO] |  | UPDATER | CORE |  |  |  | 45124 | ThreadDownloadUpdates:: Starting Download
    01/16/13 21:49:01:197 | [INFO] |  | UPDATER | CORE |  |  |  | 45124 | GDEDownloader:: Download Successfully Started
    01/16/13 21:50:37:322 | [INFO] |  | UPDATER | CORE |  |  |  | 45124 | ThreadDownloadUpdates:: Download Complete
    01/16/13 21:50:37:322 | [INFO] |  | UPDATER | CORE |  |  |  | 45124 | GDEDownloader:: GDE Closed
    01/16/13 21:50:37:325 | [INFO] |  | UPDATER | CORE |  |  |  | 45124 | DoValidation: Going for Code signing check for the downloaded installer
    01/16/13 21:50:38:520 | [INFO] |  | UPDATER | CORE |  |  |  | 45124 | ThreadDownloadUpdates: Validation for the downloaded Installer: PASSED
    01/16/13 21:50:38:747 | [INFO] |  | UPDATER | CORE |  |  |  | 43524 | SetDownloadUpdatesInProgress :  = 0
    01/16/13 21:50:38:747 | [INFO] |  | UPDATER | CORE |  |  |  | 43524 | SetDownloadUpdatesInProgress :  = 0
    01/16/13 21:50:38:747 | [INFO] |  | UPDATER | CORE |  |  |  | 43524 | UCGetprogress : (B) Download thread is completed and is closed successfully.
    01/16/13 21:50:38:865 | [INFO] |  | UPDATER | CORE |  |  |  | 43524 | UCGetprogress : Updates download returning state for reffId  = AdobeBridgeCS664Bit-5.0/5.0.2
    01/16/13 21:50:38:865 | [INFO] |  | UPDATER | CORE |  |  |  | 43524 | UCGetprogress : Updates download returning state     = 22
    01/16/13 21:50:38:865 | [INFO] |  | UPDATER | CORE |  |  |  | 43524 | UCGetprogress : Updates download returning outError  = 0
    01/16/13 21:50:38:865 | [INFO] |  | UPDATER | CORE |  |  |  | 43524 | UCGetprogress : Updates download returning percent   = 100
    01/16/13 21:50:38:865 | [INFO] |  | UPDATER | CORE |  |  |  | 43524 | UCGetprogress : Updates download returning unique error code string   = U22M1D0
    01/16/13 21:50:38:979 | [INFO] |  | UPDATER | CORE |  |  |  | 44168 | UCIsSelfUpdateAvailable : Function returned with value =>  = 0
    01/16/13 21:50:38:979 | [INFO] |  | UPDATER | CORE |  |  |  | 44168 | UCIsSelfUpdateAvailable : Is BOB downloaded =>  = 0
    01/16/13 21:50:38:992 | [INFO] |  | UPDATER | CORE |  |  |  | 45828 | Stepped into << UCInstallUpdates >> call
    01/16/13 21:50:38:993 | [INFO] |  | UPDATER | CORE |  |  |  | 45828 | UCIsSelfUpdateAvailable : Function returned with value =>  = 0
    01/16/13 21:50:38:993 | [INFO] |  | UPDATER | CORE |  |  |  | 45828 | UCIsSelfUpdateAvailable : Is BOB downloaded =>  = 0
    01/16/13 21:50:38:993 | [INFO] |  | UPDATER | CORE |  |  |  | 45828 | UCInstallUpdates : (B) UCIsSelfUpdateAvailable API returned value = 0
    01/16/13 21:50:38:995 | [INFO] |  | UPDATER | CORE |  |  |  | 45828 | UCIsCurrentPatchRIBSBased : inside
    01/16/13 21:50:39:000 | [INFO] |  | UPDATER | CORE |  |  |  | 45828 | UCIsCurrentPatchRIBSBased : Function returned with value =>  = 1
    01/16/13 21:50:39:000 | [INFO] |  | UPDATER | CORE |  |  |  | 45828 | UCIsSelfUpdateAvailable : IsRIBSBasedpatch =>  = 1
    01/16/13 21:50:39:000 | [INFO] |  | UPDATER | CORE |  |  |  | 45828 | SetInstallUpdatesInProgress :  = 1
    01/16/13 21:50:39:000 | [INFO] |  | UPDATER | CORE |  |  |  | 45828 | SetInstallUpdatesInProgressCached :  = 1
    01/16/13 21:50:39:000 | [INFO] |  | UPDATER | CORE |  |  |  | 45828 | UCInstallUpdates : Sending install request to Update Installer for reffID = -reffIDs=AdobeBridgeCS664Bit-5.0/5.0.2
    01/16/13 21:50:39:020 | [INFO] |  | UPDATER | CORE |  |  |  | 45828 | Returning from << UCInstallUpdates >> call error = 0 retVal = 1
    01/16/13 21:50:39:782 | [INFO] |  | UPDATER | CORE |  |  |  | 45084 | InstallRequest_MessageHandler_kID_Progress : Received UNPACKING progress percent =  = 3
    01/16/13 21:50:40:491 | [INFO] |  | UPDATER | CORE |  |  |  | 45084 | InstallRequest_MessageHandler_kID_SwitchPipe : UpdateRefID = AdobeBridgeCS664Bit-5.0/5.0.2|Adobe Bridge CS6 5.0.2 Update
    01/16/13 21:50:40:492 | [INFO] |  | UPDATER | CORE |  |  |  | 45084 | InstallRequest_MessageHandler_kID_SwitchPipe : Last UNPACKING percent (after switch) till any further progress =  = 13
    01/16/13 21:50:40:492 | [INFO] |  | UPDATER | CORE |  |  |  | 45084 |  Stepped into << AdobeUpdaterCreateThread >> API
    01/16/13 21:50:40:492 | [INFO] |  | UPDATER | CORE |  |  |  | 45084 | Returning from << AdobeUpdaterCreateThread >> API
    01/16/13 21:50:40:492 | [INFO] |  | UPDATER | CORE |  |  |  | 45860 | ThreadInstallProgressHandler : Creating new IPC Object for Progress for install progress
    01/16/13 21:50:40:492 | [INFO] |  | UPDATER | CORE |  |  |  | 45860 | ThreadInstallProgressHandler : Initializing IPC channel for install progress
    01/16/13 21:50:40:492 | [INFO] |  | UPDATER | CORE |  |  |  | 45860 | ThreadInstallProgressHandler : doContinue  = 1
    01/16/13 21:50:40:492 | [INFO] |  | UPDATER | CORE |  |  |  | 45860 | ThreadInstallProgressHan msg was  = 10
    01/16/13 21:50:40:492 | [INFO] |  | UPDATER | CORE |  |  |  | 45860 | InstallProgress_MessageHandler_kID_Invalid : Got kID_Invalid packets.
    01/16/13 21:50:40:502 | [INFO] |  | UPDATER | CORE |  |  |  | 45860 | ThreadInstallProgressHan msg was  = 10
    01/16/13 21:50:40:512 | [INFO] |  | UPDATER | CORE |  |  |  | 45860 | ThreadInstallProgressHan msg was  = 10
    01/16/13 21:50:40:522 | [INFO] |  | UPDATER | CORE |  |  |  | 45860 | ThreadInstallProgressHan msg was  = 10
    01/16/13 21:50:40:532 | [INFO] |  | UPDATER | CORE |  |  |  | 45860 | ThreadInstallProgressHan msg was  = 10
    01/16/13 21:50:40:542 | [INFO] |  | UPDATER | CORE |  |  |  | 45860 | ThreadInstallProgressHan msg was  = 10
    01/16/13 21:50:40:552 | [INFO] |  | UPDATER | CORE |  |  |  | 45860 | ThreadInstallProgressHan msg was  = 10
    01/16/13 21:50:40:562 | [INFO] |  | UPDATER | CORE |  |  |  | 45860 | ThreadInstallProgressHan msg was  = 10
    01/16/13 21:50:40:572 | [INFO] |  | UPDATER | CORE |  |  |  | 45860 | ThreadInstallProgressHan msg was  = 10
    01/16/13 21:50:40:582 | [INFO] |  | UPDATER | CORE |  |  |  | 45860 | ThreadInstallProgressHan msg was  = 10
    01/16/13 21:50:40:592 | [INFO] |  | UPDATER | CORE |  |  |  | 45860 | ThreadInstallProgressHan msg was  = 10
    01/16/13 21:50:40:602 | [INFO] |  | UPDATER | CORE |  |  |  | 45860 | ThreadInstallProgressHan msg was  = 10
    01/16/13 21:50:40:612 | [INFO] |  | UPDATER | CORE |  |  |  | 45860 | ThreadInstallProgressHan msg was  = 10
    01/16/13 21:50:40:622 | [INFO] |  | UPDATER | CORE |  |  |  | 45860 | ThreadInstallProgressHan msg was  = 10
    01/16/13 21:50:40:632 | [INFO] |  | UPDATER | CORE |  |  |  | 45860 | ThreadInstallProgressHan msg was  = 10
    01/16/13 21:50:40:642 | [INFO] |  | UPDATER | CORE |  |  |  | 45860 | ThreadInstallProgressHan msg was  = 10
    01/16/13 21:50:40:652 | [INFO] |  | UPDATER | CORE |  |  |  | 45860 | ThreadInstallProgressHan msg was  = 10
    01/16/13 21:50:40:662 | [INFO] |  | UPDATER | CORE |  |  |  | 45860 | ThreadInstallProgressHan msg was  = 10
    01/16/13 21:50:40:672 | [INFO] |  | UPDATER | CORE |  |  |  | 45860 | ThreadInstallProgressHan msg was  = 8
    01/16/13 21:50:40:672 | [INFO] |  | UPDATER | CORE |  |  |  | 45860 | InstallProgress_MessageHandler_kID_Progress : Received kID_Progress packet and the progress percent is  = 13
    01/16/13 21:50:40:677 | [INFO] |  | UPDATER | CORE |  |  |  | 45860 | ThreadInstallProgressHan msg was  = 6
    01/16/13 21:50:46:191 | [INFO] |  | UPDATER | CORE |  |  |  | 45860 | ThreadInstallProgressHan msg was  = 6
    01/16/13 21:50:53:699 | [INFO] |  | UPDATER | CORE |  |  |  | 45860 | ThreadInstallProgressHan msg was  = 6
    01/16/13 21:50:55:260 | [INFO] |  | UPDATER | CORE |  |  |  | 45860 | ThreadInstallProgressHan msg was  = 6
    01/16/13 21:50:55:399 | [INFO] |  | UPDATER | CORE |  |  |  | 45860 | ThreadInstallProgressHan msg was  = 0
    01/16/13 21:50:56:305 | [INFO] |  | UPDATER | CORE |  |  |  | 45860 | ThreadInstallProgressHan msg was  = 6
    01/16/13 21:50:56:735 | [INFO] |  | UPDATER | CORE |  |  |  | 45860 | ThreadInstallProgressHan msg was  = 0
    01/16/13 21:50:57:661 | [INFO] |  | UPDATER | CORE |  |  |  | 45860 | ThreadInstallProgressHan msg was  = 6
    01/16/13 21:50:58:561 | [INFO] |  | UPDATER | CORE |  |  |  | 45860 | ThreadInstallProgressHan msg was  = 6
    01/16/13 21:50:59:561 | [INFO] |  | UPDATER | CORE |  |  |  | 45860 | ThreadInstallProgressHan msg was  = 6
    01/16/13 21:50:59:561 | [INFO] |  | UPDATER | CORE |  |  |  | 45860 | InstallProgress_MessageHandler_kID_Progress : Received kID_Progress packet and the progress percent is  = 96
    01/16/13 21:51:00:461 | [INFO] |  | UPDATER | CORE |  |  |  | 45860 | ThreadInstallProgressHan msg was  = 6
    01/16/13 21:51:01:461 | [INFO] |  | UPDATER | CORE |  |  |  | 45860 | ThreadInstallProgressHan msg was  = 6
    01/16/13 21:51:02:461 | [INFO] |  | UPDATER | CORE |  |  |  | 45860 | ThreadInstallProgressHan msg was  = 6
    01/16/13 21:51:03:462 | [INFO] |  | UPDATER | CORE |  |  |  | 45860 | ThreadInstallProgressHan msg was  = 6
    01/16/13 21:51:04:362 | [INFO] |  | UPDATER | CORE |  |  |  | 45860 | ThreadInstallProgressHan msg was  = 6
    01/16/13 21:51:05:362 | [INFO] |  | UPDATER | CORE |  |  |  | 45860 | ThreadInstallProgressHan msg was  = 6
    01/16/13 21:51:06:362 | [INFO] |  | UPDATER | CORE |  |  |  | 45860 | ThreadInstallProgressHan msg was  = 6
    01/16/13 21:51:06:801 | [INFO] |  | UPDATER | CORE |  |  |  | 45860 | ThreadInstallProgressHan msg was  = 0
    01/16/13 21:51:07:801 | [INFO] |  | UPDATER | CORE |  |  |  | 45860 | ThreadInstallProgressHan msg was  = 0
    01/16/13 21:51:08:801 | [INFO] |  | UPDATER | CORE |  |  |  | 45860 | ThreadInstallProgressHan msg was  = 0
    01/16/13 21:51:08:801 | [INFO] |  | UPDATER | CORE |  |  |  | 45860 | ThreadInstallProgressHan msg was  = 0
    01/16/13 21:51:08:801 | [INFO] |  | UPDATER | CORE |  |  |  | 45860 | InstallProgress_MessageHandler_kID_RequestRestart : Received kID_RequestRestart packet from Switched pipe with errcode . = 0
    01/16/13 21:51:08:806 | [INFO] |  | UPDATER | CORE |  |  |  | 45860 | ThreadInstallProgressHan msg was  = 6
    01/16/13 21:51:08:806 | [INFO] |  | UPDATER | CORE |  |  |  | 45860 | ThreadInstallProgressHan msg was  = 6
    01/16/13 21:51:09:806 | [INFO] |  | UPDATER | CORE |  |  |  | 45860 | ThreadInstallProgressHan msg was  = 0
    01/16/13 21:51:09:806 | [INFO] |  | UPDATER | CORE |  |  |  | 45860 | InstallProgress_MessageHandler_kID_Done : The Update installation requires system reboot and error code is  = 0
    01/16/13 21:51:09:869 | [INFO] |  | UPDATER | CORE |  |  |  | 45860 | ThreadInstallProgressHandler : Terminating IPC channel for install progress
    01/16/13 21:51:09:869 | [INFO] |  | UPDATER | CORE |  |  |  | 45860 | ThreadInstallProgressHandler : Releasing IPC Object for install progress
    01/16/13 21:51:09:959 | [INFO] |  | UPDATER | CORE |  |  |  | 45084 | InstallRequest_MessageHandler_kID_Ack_Finish : Received kID_Ack_Finish packet from Installer sub-system.
    01/16/13 21:51:09:959 | [INFO] |  | UPDATER | CORE |  |  |  | 45084 | NotifyResultToInstallerSubSystem : Sending packet with id  = 9
    01/16/13 21:51:10:314 | [INFO] |  | UPDATER | CORE |  |  |  | 45084 | InstallRequest_MessageHandler_kID_Done : Received packet kID_Done from Installer sub-system.
    01/16/13 21:51:10:314 | [INFO] |  | UPDATER | CORE |  |  |  | 45084 | InstallRequest_MessageHandler_kID_Done : ThreadInstallProgressHandler thread is terminated.
    01/16/13 21:51:10:314 | [INFO] |  | UPDATER | CORE |  |  |  | 45084 | InstallRequest_MessageHandler_kID_Done : Setting state in tracker database to success(7)  = AdobeBridgeCS664Bit-5.0/5.0.2
    01/16/13 21:51:10:314 | [INFO] |  | UPDATER | CORE |  |  |  | 45084 | SetInstallUpdatesInProgressCached :  = 0
    01/16/13 21:51:10:520 | [INFO] |  | UPDATER | CORE |  |  |  | 43524 | SetInstallUpdatesInProgress :  = 0
    01/16/13 21:51:10:520 | [INFO] |  | UPDATER | CORE |  |  |  | 43524 | SetInstallUpdatesInProgressCached :  = 0
    01/16/13 21:51:10:520 | [INFO] |  | UPDATER | CORE |  |  |  | 43524 | UCGetprogress : Updates install returning state for reffId  = AdobeBridgeCS664Bit-5.0/5.0.2
    01/16/13 21:51:10:520 | [INFO] |  | UPDATER | CORE |  |  |  | 43524 | UCGetprogress : Updates install returning state     = 46
    01/16/13 21:51:10:520 | [INFO] |  | UPDATER | CORE |  |  |  | 43524 | UCGetprogress : Updates install returning outError  = 0
    01/16/13 21:51:10:520 | [INFO] |  | UPDATER | CORE |  |  |  | 43524 | UCGetprogress : Updates install returning percent   = 100
    01/16/13 21:51:10:520 | [INFO] |  | UPDATER | CORE |  |  |  | 43524 | UCGetprogress : Updates install returning unique error code string   = U46M1P0
    01/16/13 21:51:10:520 | [INFO] |  | UPDATER | CORE |  |  |  | 43524 | UCGetprogress : Updates install returning Error string  =
    01/16/13 21:51:17:881 | [INFO] |  | UPDATER | CORE |  |  |  | 44168 | Stepped into << UCTerminate >> call.
    01/16/13 21:51:17:881 | [INFO] |  | UPDATER | CORE |  |  |  | 44168 | EndUpdateInstallerSubsystem : Sent Packet kID_Done to Installer sub-system.
    01/16/13 21:51:17:881 | [INFO] |  | UPDATER | CORE |  |  |  | 44168 | Entering into <<TerminateUpdaterCoreIPCAndWaitforThread>>.
    01/16/13 21:51:17:881 | [INFO] |  | UPDATER | CORE |  |  |  | 44168 | TerminateUpdaterCoreIPCAndWaitforThread : Setting both IPC loop control variable to false.
    01/16/13 21:51:17:881 | [INFO] |  | UPDATER | CORE |  |  |  | 44168 | TerminateUpdaterCoreIPCAndWaitforThread : Waiting for  ThreadInstallRequestHandler to complete.
    01/16/13 21:51:17:881 | [INFO] |  | UPDATER | CORE |  |  |  | 44168 |  Stepped into << AdobeUpdaterWaitOnThread >> API
    01/16/13 21:51:17:901 | [INFO] |  | UPDATER | CORE |  |  |  | 45084 | InstallRequest_MessageHandler_kID_Invalid : GOT kID_Invalid.
    01/16/13 21:51:17:951 | [INFO] |  | UPDATER | CORE |  |  |  | 45084 | ThreadInstallProgressHandler : Terminating IPC channel for Install control
    01/16/13 21:51:17:951 | [INFO] |  | UPDATER | CORE |  |  |  | 45084 | ThreadInstallProgressHandler : Releasing IPC Object for Install control
    01/16/13 21:51:17:951 | [INFO] |  | UPDATER | CORE |  |  |  | 44168 | Returning from << AdobeUpdaterWaitOnThread >> API
    01/16/13 21:51:17:951 | [INFO] |  | UPDATER | CORE |  |  |  | 44168 | Returning from <<TerminateUpdaterCoreIPCAndWaitforThread>>.
    01/16/13 21:51:17:970 | [INFO] |  | UPDATER | CORE |  |  |  | 44168 | Returning from << UCTerminate >> call with value = 1
    01/16/13 21:51:17:970 | [INFO] |  | UPDATER | CORE |  |  |  | 44168 | UpdaterCoreImpl::ShutdownLogFile : Going to call ShutdownESDLogFile()
    01/16/13 21:51:17:970 | [INFO] |  | UPDATER | CORE |  |  |  | 44168 | <<< Adobe Updater Log End <<<
    01/29/13 04:19:35:862 | [INFO] |  | UPDATER | CORE |  |  |  | 230580 | >>> Adobe Updater Log Begin >>>
    01/29/13 04:19:35:862 | [INFO] |  | UPDATER | CORE |  |  |  | 230580 | UpdaterCoreImpl::InitLogFile : Application Version 7.0.0.27
    01/29/13 04:19:35:862 | [INFO] |  | UPDATER | CORE |  |  |  | 230580 | UpdaterCoreImpl::InitLogFile : cmdline option --> -logFile = C:\Users\klo\AppData\Local\Adobe\AAMUpdater\1.0\aamu.log
    01/29/13 04:19:35:862 | [INFO] |  | UPDATER | CORE |  |  |  | 230580 | UpdaterCoreImpl::InitLogFile : cmdline option --> -logLevel = 2
    01/29/13 04:19:35:863 | [INFO] |  | UPDATER | CORE |  |  |  | 230580 | Stepped into << UCInitialize >> call
    01/29/13 04:19:35:867 | [INFO] |  | UPDATER | CORE |  |  |  | 230580 | UCInitialize : AAM is launched via Updater.
    01/29/13 04:19:35:868 | [INFO] |  | UPDATER | CORE |  |  |  | 230580 | Stepped into << UCSetUpdateEnginePath >> call
    01/29/13 04:19:35:902 | [INFO] |  | UPDATER | CORE |  |  |  | 230580 | Returning from << UCSetUpdateEnginePath >> call error = 0 retVal = 1
    01/29/13 04:19:35:904 | [INFO] |  | UPDATER | CORE |  |  |  | 230580 | Stepped into << UCSetDeploymentEnginePath >> call
    01/29/13 04:19:35:910 | [INFO] |  | UPDATER | CORE |  |  |  | 230580 | Returning from << UCSetDeploymentEnginePath >> call error = 0 retVal = 1
    01/29/13 04:19:35:910 | [INFO] |  | UPDATER | CORE |  |  |  | 230580 | Returning from << UCInitialize >> call error = 0 retVal = 1
    01/29/13 04:19:36:290 | [INFO] |  | UPDATER | CORE |  |  |  | 231268 | Stepped into << UCGetUserPreferences >> call
    01/29/13 04:19:36:298 | [INFO] |  | UPDATER | CORE |  |  |  | 231268 | Returning from << UCGetUserPreferences >> call error = 0 retVal = 1
    01/29/13 04:19:36:304 | [INFO] |  | UPDATER | CORE |  |  |  | 229944 | Stepped into << UCCheckForUpdates >> call
    01/29/13 04:19:36:368 | [INFO] |  | UPDATER | CORE |  |  |  | 229944 | CFU(Webfeed): Query licensing type for LEID  = Illustrator-CS6-Win-GM
    01/29/13 04:19:36:439 | [INFO] |  | UPDATER | CORE |  |  |  | 229944 | A valid perpetual license found for  = Illustrator-CS6-Win-GM
    01/29/13 04:19:36:441 | [INFO] |  | UPDATER | CORE |  |  |  | 229944 | CFU(Webfeed): Patch is meant only for subscription licenses, but client doesn't have a valid subscription license.
    01/29/13 04:19:36:441 | [INFO] |  | UPDATER | CORE |  |  |  | 229944 | Going in waiting state as following Recommendation is no more valid for this update(license mismatch)
    01/29/13 04:19:36:444 | [INFO] |  | UPDATER | CORE |  |  |  | 229944 | CFU(Webfeed): Query licensing type for LEID  = Dreamweaver-CS6-Win-GM
    01/29/13 04:19:36:503 | [INFO] |  | UPDATER | CORE |  |  |  | 229944 | A valid perpetual license found for  = Dreamweaver-CS6-Win-GM
    01/29/13 04:19:36:505 | [INFO] |  | UPDATER | CORE |  |  |  | 229944 | CFU(Webfeed): Patch is meant only for subscription licenses, but client doesn't have a valid subscription license.
    01/29/13 04:19:36:506 | [INFO] |  | UPDATER | CORE |  |  |  | 229944 | CFU(Webfeed): Query licensing type for LEID  = Dreamweaver-CS6-Win-GM
    01/29/13 04:19:36:562 | [INFO] |  | UPDATER | CORE |  |  |  | 229944 | A valid perpetual license found for  = Dreamweaver-CS6-Win-GM
    01/29/13 04:19:36:564 | [INFO] |  | UPDATER | CORE |  |  |  | 229944 | CFU(Webfeed): Patch is meant only for subscription licenses, but client doesn't have a valid subscription license.
    01/29/13 04:19:36:565 | [INFO] |  | UPDATER | CORE |  |  |  | 229944 | Going in waiting state as following Recommendation is no more valid for this update(license mismatch)
    01/29/13 04:19:36:566 | [INFO] |  | UPDATER | CORE |  |  |  | 229944 | CFU(Webfeed): Query licensing type for LEID  = Bridge-CS6-Win-GM
    01/29/13 04:19:36:600 | [INFO] |  | UPDATER | CORE |  |  |  | 229944 | No valid license found for  = Bridge-CS6-Win-GM
    01/29/13 04:19:36:603 | [INFO] |  | UPDATER | CORE |  |  |  | 229944 | CFU(Webfeed): Query licensing type for LEID  = Photoshop-CS6-Win-GM
    01/29/13 04:19:36:676 | [INFO] |  | UPDATER | CORE |  |  |  | 229944 | A valid perpetual license found for  = Photoshop-CS6-Win-GM
    01/29/13 04:19:36:678 | [INFO] |  | UPDATER | CORE |  |  |  | 229944 | CFU(Webfeed): Patch is meant only for subscription licenses, but client doesn't have a valid subscription license.
    01/29/13 04:19:36:678 | [INFO] |  | UPDATER | CORE |  |  |  | 229944 | Going in waiting state as following Recommendation is no more valid for this update(license mismatch)
    01/29/13 04:19:36:730 | [INFO] |  | UPDATER | CORE |  |  |  | 229944 | SetCFUInProgress :  = 1
    01/29/13 04:19:36:730 | [INFO] |  | UPDATER | CORE |  |  |  | 229944 | Returning from << UCCheckForUpdates >> call error = 0 retVal = 1
    01/29/13 04:19:36:732 | [INFO] |  | UPDATER | CORE |  |  |  | 230584 | CFU(Webfeed): Downloading WebFeed
    01/29/13 04:19:36:762 | [INFO] |  | UPDATER | CORE |  |  |  | 230584 | GDEDownloader:: GDEInitialize Successful
    01/29/13 04:19:36:769 | [INFO] |  | UPDATER | CORE |  |  |  | 230584 | GDEDownloader:: GDEInitDownloader Successful
    01/29/13 04:19:36:786 | [INFO] |  | UPDATER | CORE |  |  |  | 230584 | GDEDownloader:: GDESetThreadCount Successful
    01/29/13 04:19:36:879 | [INFO] |  | UPDATER | CORE |  |  |  | 230584 | GDEDownloader:: GDEGetEtag Successful
    01/29/13 04:19:36:879 | [INFO] |  | UPDATER | CORE |  |  |  | 230584 | CFU(Webfeed): Web feed hasn't changed, so no need to download.
    01/29/13 04:19:36:879 | [INFO] |  | UPDATER | CORE |  |  |  | 230584 | GDEDownloader:: GDE Closed
    01/29/13 04:19:36:880 | [INFO] |  | UPDATER | CORE |  |  |  | 230584 | CFU(Webfeed): Webfeed is empty
    01/29/13 04:19:36:880 | [INFO] |  | UPDATER | CORE |  |  |  | 230584 | CFU(Webfeed): MRL is empty
    01/29/13 04:19:37:031 | [INFO] |  | UPDATER | CORE |  |  |  | 230672 | SetCFUInProgress :  = 0
    01/29/13 04:19:37:031 | [INFO] |  | UPDATER | CORE |  |  |  | 230672 | SetCFUInProgress :  = 0
    01/29/13 04:19:37:031 | [INFO] |  | UPDATER | CORE |  |  |  | 230672 | Check for Updates was done successfully.
    01/29/13 04:19:37:036 | [INFO] |  | UPDATER | CORE |  |  |  | 230672 | UCGetprogress : Check for updates returning state for reffId  =
    01/29/13 04:19:37:037 | [INFO] |  | UPDATER | CORE |  |  |  | 230672 | UCGetprogress : Check for updates returning state     = 21
    01/29/13 04:19:37:037 | [INFO] |  | UPDATER | CORE |  |  |  | 230672 | UCGetprogress : Check for updates returning outError  = 0
    01/29/13 04:19:37:037 | [INFO] |  | UPDATER | CORE |  |  |  | 230672 | UCGetprogress : Check for updates returning percent   = 0
    01/29/13 04:19:37:037 | [INFO] |  | UPDATER | CORE |  |  |  | 230672 | UCGetprogress : Check for updates returning unique error code string   = U21M1C0
    01/29/13 04:19:37:327 | [INFO] |  | UPDATER | CORE |  |  |  | 231268 | Stepped into << UCGetUserPreferences >> call
    01/29/13 04:19:37:335 | [INFO] |  | UPDATER | CORE |  |  |  | 231268 | Returning from << UCGetUserPreferences >> call error = 0 retVal = 1
    01/29/13 04:19:37:338 | [INFO] |  | UPDATER | CORE |  |  |  | 231268 | Stepped into << UCGetInstalledChannels >> call
    01/29/13 04:19:37:384 | [INFO] |  | UPDATER | CORE |  |  |  | 231268 | Returning from << UCGetInstalledChannels >> call error = 0 retVal = 1
    01/29/13 04:19:37:998 | [INFO] |  | UPDATER | CORE |  |  |  | 231268 | Stepped into << UCGetInstalledChannels >> call
    01/29/13 04:19:38:044 | [INFO] |  | UPDATER | CORE |  |  |  | 231268 | Returning from << UCGetInstalledChannels >> call error = 0 retVal = 1
    01/29/13 04:19:38:056 | [INFO] |  | UPDATER | CORE |  |  |  | 231268 | Stepped into << UCGetAvailableUpdateStatus >> call
    01/29/13 04:19:38:058 | [INFO] |  | UPDATER | CORE |  |  |  | 231268 | Returning from << UCGetAvailableUpdateStatus >> call error = 0 retVal = 1
    01/29/13 04:19:38:247 | [INFO] |  | UPDATER | CORE |  |  |  | 231268 | SetViewedUpdate: The update is waiting for a product event! Not set to viewed.
    01/29/13 04:19:38:247 | [INFO] |  | UPDATER | CORE |  |  |  | 231268 | SetViewedUpdate: The update is waiting for a product event! Not set to viewed.
    01/29/13 04:19:38:248 | [INFO] |  | UPDATER | CORE |  |  |  | 231268 | SetViewedUpdate: The update is waiting for a product event! Not set to viewed.
    01/29/13 04:19:44:286 | [INFO] |  | UPDATER | CORE |  |  |  | 230960 | Stepped into << UCDownloadUpdates >> call
    01/29/13 04:19:44:331 | [INFO] |  | UPDATER | CORE |  |  |  | 230960 |  Stepped into << AdobeUpdaterCreateThread >> API
    01/29/13 04:19:44:332 | [INFO] |  | UPDATER | CORE |  |  |  | 230960 | Returning from << AdobeUpdaterCreateThread >> API
    01/29/13 04:19:44:332 | [INFO] |  | UPDATER | CORE |  |  |  | 230960 | StartUpdateInstallerSubsystem : LaunchUpdateInstallerAsAdmin before.
    01/29/13 04:19:44:332 | [INFO] |  | UPDATER | CORE |  |  |  | 230960 | LaunchUpdateInstallerAsAdmin: UpdateInstaller utility path is : = C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\core\..\UWA\Adobe Application Manager (Updater).exe
    01/29/13 04:19:44:332 | [INFO] |  | UPDATER | CORE |  |  |  | 230932 | ThreadInstallRequestHandler : Creating new IPC Object for Install control
    01/29/13 04:19:44:332 | [INFO] |  | UPDATER | CORE |  |  |  | 230932 | ThreadInstallRequestHandler : Initializing IPC channel for Install control
    01/29/13 04:19:44:332 | [INFO] |  | UPDATER | CORE |  |  |  | 230932 | ThreadInstallRequestHandler : Releasing kSyncUpdaterCoreIPCInitializationWaitKey Lock after IPC Channel.
    01/29/13 04:19:44:332 | [INFO] |  | UPDATER | CORE |  |  |  | 230932 | ThreadInstallRequestHandler : Acquiring kSyncUpdaterCoreIPCRecvPacketWaitKey Lock before re intializing IPC Channel.
    01/29/13 04:19:44:347 | [INFO] |  | UPDATER | CORE |  |  |  | 230960 | LaunchUpdateInstallerAsAdmin: sCmdLineArgs1 is : = -mode=productupdate
    01/29/13 04:19:44:347 | [INFO] |  | UPDATER | CORE |  |  |  | 230960 | LaunchUpdateInstallerAsAdmin: sCmdLineArgs2 is : = -appDataDir=C:\Users\klo\AppData\Local\Adobe\AAMUpdater\1.0
    01/29/13 04:19:44:347 | [INFO] |  | UPDATER | CORE |  |  |  | 230960 | LaunchUpdateInstallerAsAdmin: sCmdLineArgs3 is : = -deploymentEnginePath=C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\core\..\DECore\Setup.exe
    01/29/13 04:19:44:347 | [INFO] |  | UPDATER | CORE |  |  |  | 230960 | Stepped into << AdobeUpdaterCreateNewProcess >> API
    01/29/13 04:19:44:347 | [INFO] |  | UPDATER | CORE |  |  |  | 230960 | AdobeUpdaterCreateNewProcess :  About to launch executable at  = C
    01/29/13 04:19:44:347 | [INFO] |  | UPDATER | CORE |  |  |  | 230960 | AdobeUpdaterCreateNewProcess :  Working Dir will be   = C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\core\..\UWA
    01/29/13 04:19:44:381 | [INFO] |  | UPDATER | CORE |  |  |  | 230960 | AdobeUpdaterCreateNewProcess :  Executable launch was successful.
    01/29/13 04:19:44:381 | [INFO] |  | UPDATER | CORE |  |  |  | 230960 | Returning from << AdobeUpdaterCreateNewProcess >> API
    01/29/13 04:19:44:381 | [INFO] |  | UPDATER | CORE |  |  |  | 230960 | LaunchUpdateInstallerAsAdmin: UpdateInstaller launch executed successfully.
    01/29/13 04:19:44:381 | [INFO] |  | UPDATER | CORE |  |  |  | 230960 | StartUpdateInstallerSubsystem : Releasing kSyncUpdaterCoreIPCRecvPacketWaitKey Lock.
    01/29/13 04:19:44:381 | [INFO] |  | UPDATER | CORE |  |  |  | 230960 | StartUpdateInstallerSubsystem : Acquiring kSyncUpdaterCoreIPCInitializationWaitKey Lock before intializing IPC Channel.
    01/29/13 04:19:44:381 | [INFO] |  | UPDATER | CORE |  |  |  | 230960 | StartUpdateInstallerSubsystem : Acquiring kSyncUpdaterCoreIPCAckPacketWaitKey Lock before re intializing IPC Channel.
    01/29/13 04:19:44:418 | [INFO] |  | UPDATER | CORE |  |  |  | 230932 | InstallRequest_MessageHandler_kID_Ack : Received kID_Ack packet from Installer sub-system.
    01/29/13 04:19:44:418 | [INFO] |  | UPDATER | CORE |  |  |  | 230932 | NotifyResultToInstallerSubSystem : Sending packet with id  = 9
    01/29/13 04:19:44:518 | [INFO] |  | UPDATER | CORE |  |  |  | 230960 | StartUpdateInstallerSubsystem : Received ACK from Update Installer subsystem for Initialization.
    01/29/13 04:19:44:518 | [INFO] |  | UPDATER | CORE |  |  |  | 230960 | SetDownloadUpdatesInProgress :  = 1
    01/29/13 04:19:44:518 | [INFO] |  | UPDATER | CORE |  |  |  | 230960 | Returning from << UCDownloadUpdates >> call error = 0 retVal = 1
    01/29/13 04:19:44:525 | [INFO] |  | UPDATER | CORE |  |  |  | 230752 | ThreadDownloadUpdates: Downloading installer for update refID: AdobeBridgeCS6-5.0/5.0.2
    01/29/13 04:19:44:526 | [INFO] |  | UPDATER | CORE |  |  |  | 230752 | getValidationType: Going for Code signing check for the downloaded installer
    01/29/13 04:19:44:546 | [INFO] |  | UPDATER | CORE |  |  |  | 230752 | ThreadDownloadUpdates:: Initializing Download
    01/29/13 04:19:44:548 | [INFO] |  | UPDATER | CORE |  |  |  | 230752 | GDEDownloader:: GDEInitialize Successful
    01/29/13 04:19:44:562 | [INFO] |  | UPDATER | CORE |  |  |  | 230752 | GDEDownloader:: GDEInitDownloader Successful
    01/29/13 04:19:44:651 | [INFO] |  | UPDATER | CORE |  |  |  | 230752 | GDEDownloader:: GDEGetFileSize Successful
    01/29/13 04:19:44:651 | [INFO] |  | UPDATER | CORE |  |  |  | 230752 | ThreadDownloadUpdates:: Starting Download
    01/29/13 04:19:44:773 | [INFO] |  | UPDATER | CORE |  |  |  | 230752 | GDEDownloader:: Download Successfully Started
    01/29/13 04:21:00:582 | [INFO] |  | UPDATER | CORE |  |  |  | 230752 | ThreadDownloadUpdates:: Download Complete
    01/29/13 04:21:00:582 | [INFO] |  | UPDATER | CORE |  |  |  | 230752 | GDEDownloader:: GDE Closed
    01/29/13 04:21:00:585 | [INFO] |  | UPDATER | CORE |  |  |  | 230752 | DoValidation: Going for Code signing check for the downloaded installer
    01/29/13 04:21:01:474 | [INFO] |  | UPDATER | CORE |  |  |  | 230752 | ThreadDownloadUpdates: Validation for the downloaded Installer: PASSED
    01/29/13 04:21:01:689 | [INFO] |  | UPDATER | CORE |  |  |  | 230672 | SetDownloadUpdatesInProgress :  = 0
    01/29/13 04:21:01:689 | [INFO] |  | UPDATER | CORE |  |  |  | 230672 | SetDownloadUpdatesInProgress :  = 0
    01/29/13 04:21:01:689 | [INFO] |  | UPDATER | CORE |  |  |  | 230672 | UCGetprogress : (B) Download thread is completed and is closed successfully.
    01/29/13 04:21:01:806 | [INFO] |  | UPDATER | CORE |  |  |  | 230672 | UCGetprogress : Updates download returning state for reffId  = AdobeBridgeCS6-5.0/5.0.2
    01/29/13 04:21:01:806 | [INFO] |  | UPDATER | CORE |  |  |  | 230672 | UCGetprogress : Updates download returning state     = 22
    01/29/13 04:21:01:806 | [INFO] |  | UPDATER | CORE |  |  |  | 230672 | UCGetprogress : Updates download returning outError  = 0
    01/29/13 04:21:01:806 | [INFO] |  | UPDATER | CORE |  |  |  | 230672 | UCGetprogress : Updates download returning percent   = 100
    01/29/13 04:21:01:806 | [INFO] |  | UPDATER | CORE |  |  |  | 230672 | UCGetprogress : Updates download returning unique error code string   = U22M1D0
    01/29/13 04:21:01:847 | [INFO] |  | UPDATER | CORE |  |  |  | 231268 | UCIsSelfUpdateAvailable : Function returned with value =>  = 0
    01/29/13 04:21:01:847 | [INFO] |  | UPDATER | CORE |  |  |  | 231268 | UCIsSelfUpdateAvailable : Is BOB downloaded =>  = 0
    01/29/13 04:21:01:860 | [INFO] |  | UPDATER | CORE |  |  |  | 230788 | Stepped into << UCInstallUpdates >> call
    01/29/13 04:21:01:861 | [INFO] |  | UPDATER | CORE |  |  |  | 230788 | UCIsSelfUpdateAvailable : Function returned with value =>  = 0
    01/29/13 04:21:01:861 | [INFO] |  | UPDATER | CORE |  |  |  | 230788 | UCIsSelfUpdateAvailable : Is BOB downloaded =>  = 0
    01/29/13 04:21:01:861 | [INFO] |  | UPDATER | CORE |  |  |  | 230788 | UCInstallUpdates : (B) UCIsSelfUpdateAvailable API returned value = 0
    01/29/13 04:21:01:863 | [INFO] |  | UPDATER | CORE |  |  |  | 230788 | UCIsCurrentPatchRIBSBased : inside
    01/29/13 04:21:01:867 | [INFO] |  | UPDATER | CORE |  |  |  | 230788 | UCIsCurrentPatchRIBSBased : Function returned with value =>  = 1
    01/29/13 04:21:01:867 | [INFO] |  | UPDATER | CORE |  |  |  | 230788 | UCIsSelfUpdateAvailable : IsRIBSBasedpatch =>  = 1
    01/29/13 04:21:01:867 | [INFO] |  | UPDATER | CORE |  |  |  | 230788 | SetInstallUpdatesInProgress :  = 1
    01/29/13 04:21:01:867 | [INFO] |  | UPDATER | CORE |  |  |  | 230788 | SetInstallUpdatesInProgressCached :  = 1
    01/29/13 04:21:01:867 | [INFO] |  | UPDATER | CORE |  |  |  | 230788 | UCInstallUpdates : Sending install request to Update Installer for reffID = -reffIDs=AdobeBridgeCS6-5.0/5.0.2
    01/29/13 04:21:01:888 | [INFO] |  | UPDATER | CORE |  |  |  | 230788 | Returning from << UCInstallUpdates >> call error = 0 retVal = 1
    01/29/13 04:21:02:454 | [INFO] |  | UPDATER | CORE |  |  |  | 230932 | InstallRequest_MessageHandler_kID_Progress : Received UNPACKING progress percent =  = 3
    01/29/13 04:21:02:994 | [INFO] |  | UPDATER | CORE |  |  |  | 230932 | InstallRequest_MessageHandler_kID_SwitchPipe : UpdateRefID = AdobeBridgeCS6-5.0/5.0.2|Adobe Bridge CS6 5.0.2 Update
    01/29/13 04:21:02:994 | [INFO] |  | UPDATER | CORE |  |  |  | 230932 | InstallRequest_MessageHandler_kID_SwitchPipe : Last UNPACKING percent (after switch) till any further progress =  = 13
    01/29/13 04:21:02:994 | [INFO] |  | UPDATER | CORE |  |  |  | 230932 |  Stepped into << AdobeUpdaterCreateThread >> API
    01/29/13 04:21:02:994 | [INFO] |  | UPDATER | CORE |  |  |  | 230932 | Returning from << AdobeUpdaterCreateThread >> API
    01/29/13 04:21:02:994 | [INFO] |  | UPDATER | CORE |  |  |  | 230804 | ThreadInstallProgressHandler : Creating new IPC Object for Progress for install progress
    01/29/13 04:21:02:994 | [INFO] |  | UPDATER | CORE |  |  |  | 230804 | ThreadInstallProgressHandler : Initializing IPC channel for install progress
    01/29/13 04:21:02:994 | [INFO] |  | UPDATER | CORE |  |  |  | 230804 | ThreadInstallProgressHandler : doContinue  = 1
    01/29/13 04:21:02:994 | [INFO] |  | UPDATER | CORE |  |  |  | 230804 | ThreadInstallProgressHan msg was  = 10
    01/29/13 04:21:02:994 | [INFO] |  | UPDATER | CORE |  |  |  | 230804 | InstallProgress_MessageHandler_kID_Invalid : Got kID_Invalid packets.
    01/29/13 04:21:03:004 | [INFO] |  | UPDATER | CORE |  |  |  | 230804 | ThreadInstallProgressHan msg was  = 10
    01/29/13 04:21:03:014 | [INFO] |  | UPDATER | CORE |  |  |  | 230804 | ThreadInstallProgressHan msg was  = 10
    01/29/13 04:21:03:024 | [INFO] |  | UPDATER | CORE |  |  |  | 230804 | ThreadInstallProgressHan msg was  = 10
    01/29/13 04:21:03:034 | [INFO] |  | UPDATER | CORE |  |  |  | 230804 | ThreadInstallProgressHan msg was  = 10
    01/29/13 04:21:03:044 | [INFO] |  | UPDATER | CORE |  |  |  | 230804 | ThreadInstallProgressHan msg was  = 10
    01/29/13 04:21:03:054 | [INFO] |  | UPDATER | CORE |  |  |  | 230804 | ThreadInstallProgressHan msg was  = 10
    01/29/13 04:21:03:064 | [INFO] |  | UPDATER | CORE |  |  |  | 230804 | ThreadInstallProgressHan msg was  = 10
    01/29/13 04:21:03:074 | [INFO] |  | UPDATER | CORE |  |  |  | 230804 | ThreadInstallProgressHan msg was  = 10
    01/29/13 04:21:03:084 | [INFO] |  | UPDATER | CORE |  |  |  | 230804 | ThreadInstallProgressHan msg was  = 10
    01/29/13 04:21:03:094 | [INFO] |  | UPDATER | CORE |  |  |  | 230804 | ThreadInstallProgressHan msg was  = 10
    01/29/13 04:21:03:104 | [INFO] |  | UPDATER | CORE |  |  |  | 230804 | ThreadInstallProgressHan msg was  = 10
    01/29/13 04:21:03:114 | [INFO] |  | UPDATER | CORE |  |  |  | 230804 | ThreadInstallProgressHan msg was  = 10
    01/29/13 04:21:03:124 | [INFO] |  | UPDATER | CORE |  |  |  | 230804 | ThreadInstallProgressHan msg was  = 10
    01/29/13 04:21:03:134 | [INFO] |  | UPDATER | CORE |  |  |  | 230804 | ThreadInstallProgressHan msg was  = 8
    01/29/13 04:21:03:134 | [INFO] |  | UPDATER | CORE |  |  |  | 230804 | InstallProgress_MessageHandler_kID_Progress : Received kID_Progress packet and the progress percent is  = 13
    01/29/13 04:21:03:136 | [INFO] |  | UPDATER | CORE |  |  |  | 230804 | ThreadInstallProgressHan msg was  = 6
    01/29/13 04:21:08:662 | [INFO] |  | UPDATER | CORE |  |  |  | 230804 | ThreadInstallProgressHan msg was  = 6
    01/29/13 04:21:15:190 | [INFO] |  | UPDATER | CORE |  |  |  | 230804 | ThreadInstallProgressHan msg was  = 6
    01/29/13 04:21:21:255 | [INFO] |  | UPDATER | CORE |  |  |  | 230804 | ThreadInstallProgressHan msg was  = 6
    01/29/13 04:21:21:397 | [INFO] |  | UPDATER | CORE |  |  |  | 230804 | ThreadInstallProgressHan msg was  = 0
    01/29/13 04:21:22:303 | [INFO] |  | UPDATER | CORE |  |  |  | 230804 | ThreadInstallProgressHan msg was  = 6
    01/29/13 04:21:22:531 | [INFO] |  | UPDATER | CORE |  |  |  | 230804 | ThreadInstallProgressHan msg was  = 0
    01/29/13 04:21:23:454 | [INFO] |  | UPDATER | CORE |  |  |  | 230804 | ThreadInstallProgressHan msg was  = 6
    01/29/13 04:21:24:355 | [INFO] |  | UPDATER | CORE |  |  |  | 230804 | ThreadInstallProgressHan msg was  = 6
    01/29/13 04:21:25:355 | [INFO] |  | UPDATER | CORE |  |  |  | 230804 | ThreadInstallProgressHan msg was  = 6
    01/29/13 04:21:25:355 | [INFO] |  | UPDATER | CORE |  |  |  | 230804 | InstallProgress_MessageHandler_kID_Progress : Received kID_Progress packet and the progress percent is  = 97
    01/29/13 04:21:26:355 | [INFO] |  | UPDATER | CORE |  |  |  | 230804 | ThreadInstallProgressHan msg was  = 6
    01/29/13 04:21:27:355 | [INFO] |  | UPDATER | CORE |  |  |  | 230804 | ThreadInstallProgressHan msg was  = 6
    01/29/13 04:21:28:255 | [INFO] |  | UPDATER | CORE |  |  |  | 230804 | ThreadInstallProgressHan msg was  = 6
    01/29/13 04:21:29:175 | [INFO] |  | UPDATER | CORE |  |  |  | 230804 | ThreadInstallProgressHan msg was  = 6
    01/29/13 04:21:29:182 | [INFO] |  | UPDATER | CORE |  |  |  | 230804 | ThreadInstallProgressHan msg was  = 0
    01/29/13 04:21:30:182 | [INFO] |  | UPDATER | CORE |  |  |  | 230804 | ThreadInstallProgressHan msg was  = 0
    01/29/13 04:21:31:182 | [INFO] |  | UPDATER | CORE |  |  |  | 230804 | ThreadInstallProgressHan msg was  = 0
    01/29/13 04:21:31:182 | [INFO] |  | UPDATER | CORE |  |  |  | 230804 | ThreadInstallProgressHan msg was  = 0
    01/29/13 04:21:31:182 | [INFO] |  | UPDATER | CORE |  |  |  | 230804 | InstallProgress_MessageHandler_kID_RequestRestart : Received kID_RequestRestart packet from Switched pipe with errcode . = 0
    01/29/13 04:21:31:192 | [INFO] |  | UPDATER | CORE |  |  |  | 230804 | ThreadInstall

    hello there.  You have probably already fixed whatever it was that was interfering, and I admit I didn't read all of the info that followed your post, but I have run into a few files that seem to be suspicious that could be part of the problem.  I was getting all sorts of weird issues from my new cloud subscriptions, and I eventually began to wonder if I had been infected with some sort of malware or virus.  I still don't know, but I came across a weird file path that contained MANY strange files.  One of them was Adobe Application Manager (Updater).exe, and I THINK, I am not sure, that this could be a file that is causing problems (as well as some of the other within that path address.  On my computer it is:
    C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\ (for the file mentioned above it is C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\UWA.  I have this program that I use called PEStudio that allows me to view the contents of executables without actually running or opening them.  I have found this to be a very useful, and free, tool for researching malicious files.  When I opened the file I mentioned, there was a treasure trove of suspicious "strings" as well as others.  It actually identifies some of the strings as "blacklisted" so that you can view those strings first.  It also runs blacklists on other parts of the files so it has proved to be very useful (even if you aren't a techie per se). 
    Anyway, I hope this helps if you are still having trouble. 

  • How to use a slice in an autoshape?

    Am stuck with a problem related to the tabs autoshape.
    Current implementation of the Tabs autoshape just helps to add a new or delete an old tab or alter its hue.
    My application needs to have links to other pages associated to the Tabs autoshape.
    Tried converting them to button symbol after the shape has been created. It made me lose the control points.
    Is there a way to have a slice associated to an autoshape so that it may be used as an href with the control points intact?
    Am working on Fireworks version 10.0.0.495, Win XP

    You need to draw slices over the tabs, export the tabs as images, and then build your navbar in Dreamweaver.

  • 10.1.3.1 - bindNestedContainer + JUNavigationBar bug

    I have a problem with panel that is embedded in the frame. Panel has a JUNavigationBar, when I do the query + execute in navBar, panel still displays the row in the view object which was current in the VO before the query. VO is set to the row I queried - I know because detail rows are correct.
    If someone is interested, here's how you can recreate this problem from the scratch:
    1. Create new application
    2. Create EO, VO and AppModule (create business components from the tables) - I used scott.emp table.
    3. Create ADF Swing Form using all the default parameters. This will create a panel as well. This form works OK.
    4. Create ADF Swing Empty Form. Use all the default parameters.
    5. Delete navbar from this empty form.
    6. Embed panel on this new form. Change form's layout to border layout.
    7. Start this new form. Displayed empno is 7369.
    8. Click 'query', enter empid 7566 and click execute. You'll see that the displayed employee is not 7566 that you queried for, but 7369 that was displayed before the query. If you do the query again, empid 7566 is displayed correctly.
    It seams that after the query controls are not refreshed.
    So, what is the difference between these two forms? First form created binds the panel like this:
    BindingContext _bctx = panelBinding.getBindingContext();
    dataPanel.setBindingContext(_bctx);
    And this doesnt work:
    panelEmpView11.bindNestedContainer(panelBinding.findNestedPanelBinding("PanelEmpView1PageDef"));
    It works if I change above line to:
    BindingContext _bctx = panelBinding.getBindingContext();
    panelEmpView11.setBindingContext(_bctx);

    Hi,
    thanks for posting. This issue is tracked as bug 5654512
    Frank

  • Banners for different screen sizes...

    If I have 2 SWF files that I want to use as the banner or header at the top of the page and want to use one for mobile, and the other 2 bigger ones for tablets and desktops, how do I do this in the media query? I'm trying to reconstruct the site to make it more mobile friendly. The reason I'm using a swf is because I've got rotating images in the banner. I'm new to this and really wanting to learn more on media query. I'm using Dreamweaver CS6 on a Windows 7 64-bit machine.

    Hi
    The simple answer is, "don't bother".
    swf's will not work on apples idevices, and the flash player development for the android devices was dropped last year.
    You could use Adobes Edge for this and use your swf as a fallback for devices that do not support the Edge animation, for Edge see - http://labs.adobe.com/technologies/edge/
    For the use of media-queries see - http://www.adobe.com/devnet/dreamweaver/articles/introducing-media-queries.html
    PZ

  • Image Mapping in PS CS4??

    Hey guys,
    Alright, I'm trying to learn new things, and I'm converting over to designing parts of my web site with Photoshop CS4. Eventually I would like to be able to design a full template and use that as my web page etc, but right now I'm only doing a navbar. Previously, I used ImageReady to make my image maps (only 1 page right now, so I have the navbar pointing to 5 different parts of my page using the href="#<name" link). However, after doing a lot of searching through Google, I have yet to find one guide on how to make image maps with CS4... I've created the entire navbar, along with layers for onMouseOver for each link. Seeing as how I have no ImageReady with CS4, I'm at a loss. I've tried to create a navbar with DreamWeaver CS4, but it just wanted to do buttons and my one attempt at testing DW's navbar with my rollover images was a huge failure.
    So could someone, anyone, please please explain how to make image maps from my navbar.psd file? Thank you!! (A few other tuts said to Save As > HTML which is a flop, because I don't have HTML as an option...)

    I was afraid of that. Thank you Zeno.
    I finally did get my image maps drawn and everything is working fine now... you are right, it is all through Dreamweaver. I ended up starting my first image map with an online website, and once I got the HTML code for the first map, I was able to copy and adapt it for the other 5 area's to map out. Apparently there is a map drawing tool in DW program that I didn't see.

  • Updating fireworks dropdowns menus in DW templates

    hi again,
    much like my last query really. i often use dreamweaver
    templates with fireworks menus, i was wondering if there is a way
    to update the menu in all of the docs based on the DW template by
    just uploading the updated FW menu files? i.e. at the mo i have to
    update the DW template with the new FW menu, then update all the
    docs based on the template, then upload them all - mission!
    all help appreciated,
    cheers
    pat

    Ahh - yes. I remember. That would be this one, posted 11/2005
    http://tinyurl.com/hbeog
    (you can find them too, using this link -
    http://groups.google.com/advanced_group_search?q=+group:macromedia.dreamweaver
    > 1.Where can I get information on this template
    programming language?
    The very best and absolutely most authoritative (as well as
    the only) book
    on Template markup that I know of is the one by the master
    templatist and
    his minion shown here -
    http://www.dreamweavermx-templates.com
    > 2. I am not sure that I have the "If..then..." part of
    this code figured
    > out.
    > If id=products and productSubsection=='none' then line
    3? And if either of
    > those conditions is not met skip line 3?
    Check the original post to see.
    > 3. From a larger perspective why do you have the
    conditions and how are
    > they
    > actually met? i.e. in what case does
    > id=='products')&&(productSubsection=='none'.
    This line is testing the value of user settable parameters.
    That test will
    succeed when the user has set the parameter called "id" to
    "products" and
    the parameter called "productSubsection" to "none".
    > I appreciate your time on this. I have the feeling that
    figuring this out
    > is
    > going to make my life better. Maybe I will be able to
    get out and play
    > golf
    > before the summer is over. What month is it anyway???
    I think it's December....
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "Michael ISC" <[email protected]> wrote in
    message
    news:[email protected]...
    > It's the response to Malcom that starts out, "This
    should be a
    > piece-o-quiche,
    > Malcom.
    > Consider a single template with an include for the
    mashead/top menu, an
    > include for the sidebar...etc.
    > (I have it printed out, but nothing I can copy and paste
    here.)
    > You continue,
    > ..."Then in the body I have this-
    > Line 1... <!--TmplateBeginMultipleIf-->
    > Line 2<!--TemplateBegiIfClause
    >
    cond="(id=='products')&&(productSubsection=='none')" -->
    > Line 3<!--#include
    virtual=/includes/prodproductmenu.html"--> ...
    >
    > From what I can decipher of this it looks pretty slick.
    > Several questions:
    > 1.Where can I get information on this template
    programming language?
    > 2. I am not sure that I have the "If..then..." part of
    this code figured
    > out.
    > If id=products and productSubsection=='none' then line
    3? And if either of
    > those conditions is not met skip line 3?
    > 3. From a larger perspective why do you have the
    conditions and how are
    > they
    > actually met? i.e. in what case does
    > id=='products')&&(productSubsection=='none'.
    >
    > I appreciate your time on this. I have the feeling that
    figuring this out
    > is
    > going to make my life better. Maybe I will be able to
    get out and play
    > golf
    > before the summer is over. What month is it anyway???
    >

  • Command Object Source

    I have recently moved from Dreamweaver MX (2003) to CS3. In
    MX, a recordset object was used to query the database. To
    troubleshoot a query,
    Dim SelectedPrimary
    Dim SelectedPrimary_numRows
    Set SelectedPrimary = Server.CreateObject("ADODB.Recordset")
    SelectedPrimary.ActiveConnection = MM_connClusterDB_STRING
    SelectedPrimary.Source = "SELECT O.OfficeID, O.ShortOffice
    FROM tbl_Offices O WHERE OfficeID = '" +
    Replace(SelectedPrimary__OffID, "'", "''") + "' ORDER BY
    OfficeName"
    SelectedPrimary.CursorType = 0
    SelectedPrimary.CursorLocation = 2
    SelectedPrimary.LockType = 1
    SelectedPrimary.Open()SelectedPrimary_numRows = 0
    before "SelectedPrimary.Open()" I would add...
    Response.Write SelectedPrimary.Source
    Response.End()
    run the page and copy the code (
    SELECT O.OfficeID, O.ShortOffice FROM tbl_Offices O WHERE
    OfficeID = 7 ) into Query Analyzer
    Is there a similar function to write out the code to a page
    for troubleshooting a Command Object query that is used in
    Dreamweaver CS3?
    Other than repeatedly filling out the 4 items (Name, Type,
    Value and Default value) over and over,
    how do you make the Command Object to use the same variable,
    several times in one query?
    Dreamweaver CS3 | ASP | SQL SERVER
    -- Steve

    Stevan2002 wrote:
    > before "SelectedPrimary.Open()" I would add...
    >
    > Response.Write SelectedPrimary.Source
    > Response.End()
    >
    > run the page and copy the code (
    SELECT O.OfficeID, O.ShortOffice FROM
    > tbl_Offices O WHERE OfficeID = 7 ) into Query
    Analyzer
    >
    > Is there a similar function to write out the code to a
    page for
    > troubleshooting a Command Object query that is used in
    Dreamweaver CS3?
    Unfortunately as far as I'm aware, with the command object
    and the parameters it uses you can't get the actual SQL that is
    submitted to the database, you can only get the SQL with the ?
    tokens where the values are supposed to be inserted. However, if
    you want to try to recreate the generated SQL, try something like
    the following. Look for this line of code:
    Set Recordset1 = Recordset1_cmd.Execute
    Just above it add the following (substitute your recordset
    name for Recordset1 below):
    ' Should work for Access and SQL Server, other DBs are
    questionable
    Dim cmd : Set cmd = Recordset1_cmd
    Dim cmdSQL: cmdSQL = cmd.CommandText
    Dim cmdParam
    for each param in cmd.Parameters
    val = param.Value
    If(param.Type = 200) Then ' If text
    val = """" & val & """"
    End If
    If(param.Type = 135) Then ' If date
    val = "'" & val & "'"
    End If
    cmdSQL = Replace(cmdSQL, "?", val, 1, 1)
    next
    Response.Write(cmdSQL &"<br />")
    Note this likely will only work with Dreamweaver parameters
    created within the Recordset dialog.
    > Other than repeatedly filling out the 4 items (Name,
    Type, Value and Default
    > value) over and over,
    > how do you make the Command Object to use the same
    variable, several times in
    > one query?
    Within the Dreamweaver UI, that's the way you do it. If you
    want to do it in the code, you can copy and paste the parameter
    code above the recordset, change the name slightly, like appending
    2, 3, then 4. Then you'd need to add an extra Parameters and update
    the "param1" to 2, 3, and 4.
    Danilo Celic
    | Extending Knowledge Daily :
    http://CommunityMX.com/
    | Adobe Community Expert

  • Adobe proto features in Rf

    I've just been having a look at Rf, and it looks like its going to be a great tool for designing the bare bones of responsive layouts.
    At the moment it only supports boxes (DIVs), text and images. With the demise of FW, it would be great if Rf incorporated some of FW functionality, for example creating buttons.
    I've also played around a little with Proto on the iPad. I don't know what Rf CC will feature when its updated next month, but what would be useful would be if it combined its responsive layout design functionality, with additional elements that are available in Proto, so things like Navbars, Tab Bars, Buttons, Dropdowns etc. (And even renaming Boxes as DIVs for consistency).
    Navbars could be especially useful. I did weatch one of the recent demos, where the canvas was reduced down to the mobile media query, and the navbar switched from a wide desktop navbar, to the sort of generic mobile dropdown navbar in the top right, with the three vertical lines to indicate it was a dropdown menu.
    Not sure if this is the direction that Rf is heading in, but is something I'd find useful.
    I am quite new to responsive design - I've looked briefly at things like Zurb's Foundation, but not really had the time to really get stuck in to it. Am I right in thinking that at its heart, ER is essentially working along the same lines, albeit in a more visual form?

    Thanks for the feedback. I'm glad you're trying Reflow and we're really excited to help the community out.
    For Reflow we are trying to develop the product in a more interactive and conversational way with you our customers. We put it out there with a long list of things we thought were important, but we wanted to get direct feedback from our users to help prioritize what are the most important features to work on next. One of the best ways you can help if look at the all the ideas people have filed and vote for the ones that you like:
    http://forums.adobe.com/community/edge_reflow_preview?view=idea
    If you don't see any ideas that already address your issues, file a new one and get people to vote for it. We want to release updates to Edge Reflow every 4-6 weeks so you shouldn't have to wait too long to see your ideas get realized. There is a little longer break between our last preview and the next because we had to sync up with the rest of the CC release, but after that we should be back on our 4-6 week cadence. Thanks again for using Reflow and helping us make it really useful for you.

  • Pop up menu colour problem

    Hi,
    I tried to make a navigation bar in fireworks with a pop-up
    menu as well. I set the colour for the nav bar to be the same a s
    the web page its used for. However when I insert the resultant
    nav-bar into dreamweaver and preview it the colour is very grainy.
    Could anybody help with this? You can see what i mean if you look
    at www.hearttohand.net
    thanks

    How did you export the images? Or did you do that
    explicitly...? Hmm.
    I know Fireworks can save HTML, but don't use it. Export your
    images and give them real, meaningful names and build the navbar in
    Dreamweaver. Do you even know what this image is:
    <img name="navbar_r1_c1"
    src="images/navbar/navbar_r1_c1.gif" width="800" height="7"
    border="0" id="navbar_r1_c1" alt="" />
    Make your mockup in Fireworks. Set slices and name the slices
    so that you get image file names like home.gif, news.gif, and
    history.gif to work with in Dreamweaver.
    When you go to export your slices (File>Image Preview in
    CS3), set your palette to Adaptive or Exact, rather than Web 216.
    Adaptive or Exact palettes will use the colors of your image,
    rather than dithering (which is what looks like is happening for
    you) or shifting your colors.
    Also, for your banner, you should export at a higher quality
    level on the .jpg image. You have quite a bit of noise in it.

  • Setting drop down selection from querystring

    Hi,
    I have a drop down box populated from a database. I want to
    make the selected value equal to a value in the querystring of the
    page.
    Can anyone help to produce this.
    Much appreciated.

    There's no different with the programming you have, as long
    as the query (recordset) is correct. Dreamweaver will the rest.
    Do the following
    1. Select the dropdown menu
    2. In the property inspector click the lightning bolt icon of
    the "Select value equal to" textfield
    3. Set the value with the recordset binding item
    4. click ok
    5. hope this help

  • Dreamweaver MX - troubles with a pop-up menu/navbar combo

    Hi all,
    I'm attempting to create a 4-button navigation bar, where
    three of the buttons produce a popup menu with links to other pages
    within the site onMouseOver. The navbar itself works great, but I
    put all of that in a template, which of course is automatically
    placed in a template folder. I have 6 or 7 other pages that all use
    that template, and when I preview the template, the drop-down box
    links work fine and I can get to an actual page from the template.
    However once I'm at an actual page, every time I try to use the
    navbar dropdown links again to get to another page, the browser
    can't find the page! I tried moving the template to the same folder
    as the pages, which solves the actual problem, but then prevents
    the pages that are using the template from being automatically
    updated, and therefore creates a new problem.
    Should I just not use a template at all, and copy/paste the
    template code into each page? Or is there another way to fix this
    issue?
    Thanks!

    I'm presuming you are using the DW pop up menus... may I
    suggest that you
    read this article first before going any further:
    http://www.losingfight.com/blog/2006/08/11/the-sordid-tale-of-mm_menufw_menujs/
    There are better ways to create your menu, without all the
    hassles of these
    DW generic ones. Another article:
    http://apptools.com/rants/menus.php
    Anyway, you should not move the template file out of the
    Template folder-
    because as you say, it won't progate any changes to the child
    pages.
    The problem with the popups and the use of templates is in
    the links. The
    dwt file cannot read the actual links that are written in the
    javascript
    file the popups generate. There is a technote at the Adobe
    site, but I
    can't find it right now (seems to be a linking problem on the
    site) do a
    search for: "Using site root-relative paths with Fireworks
    Pop-up Menus in
    Dreamweaver templates", it may explain the issue further for
    you
    Nadia
    Adobe® Community Expert : Dreamweaver
    CSS Templates |Tutorials |SEO Articles
    http://www.DreamweaverResources.com
    ~ Customisation Service Available ~
    http://www.csstemplates.com.au
    ~ Forum Posting Guidelines ~
    http://www.adobe.com/support/forums/guidelines.html
    "dudewithasock" <[email protected]> wrote in
    message
    news:[email protected]...
    > Hi all,
    >
    > I'm attempting to create a 4-button navigation bar,
    where three of the
    > buttons
    > produce a popup menu with links to other pages within
    the site
    > onMouseOver. The
    > navbar itself works great, but I put all of that in a
    template, which of
    > course
    > is automatically placed in a template folder. I have 6
    or 7 other pages
    > that
    > all use that template, and when I preview the template,
    the drop-down box
    > links
    > work fine and I can get to an actual page from the
    template. However once
    > I'm
    > at an actual page, every time I try to use the navbar
    dropdown links again
    > to
    > get to another page, the browser can't find the page! I
    tried moving the
    > template to the same folder as the pages, which solves
    the actual problem,
    > but
    > then prevents the pages that are using the template from
    being
    > automatically
    > updated, and therefore creates a new problem.
    >
    > Should I just not use a template at all, and copy/paste
    the template code
    > into
    > each page? Or is there another way to fix this issue?
    >
    > Thanks!
    >

  • Help!!! : Complex mysql query in dreamweaver

    Ok Guys: I need this query executed on a client's website. I know it's working well in phpmyadmin, but in dreamweaver I cannot put it to work. The point is that the mysql_query funcion in PHP can only execute one query, So I cannot set the initial values of the parameters. I tried to translate it into dreamweaver standard code but the result gives onlyone record for each cat_news_id, while I need three. Any help please?
    ================mysql code================================
    SET @c :=0;
    SET @a :=0;
    SELECT n.id, n.cat_news_id, IF( @c = n.cat_news_id, @a := @a +1, @a :=1 ) AS rownum, (
    @c := n.cat_news_id
    ), n.foto, DATE_FORMAT( n.data, '%d/%m/%Y' ) AS data_it, n.ora, n.titolo, n.testobreve, n.pubblicata, n.primopiano, n.visite, nc.cat_news_name
    FROM tb_news n
    INNER JOIN tb_cat_news nc ON n.cat_news_id = nc.cat_news_id
    WHERE n.pubblicata =1
    GROUP BY n.cat_news_id, rownum
    HAVING rownum <=3
    ORDER BY n.id DESC
    ==============end mysql code==========================================
    ================dreamweaver code================================
    $intCounter_rsNotizie = "0";
    $intCategory_rsNotizie = "0";
    mysql_select_db($database_ConnInterista, $ConnInterista);
    $query_rsNotizie = sprintf("SELECT n.id, n.cat_news_id, IF( %s = n.cat_news_id, %s = %s +1, %s =1 ) AS rownum, ( %s =  n.cat_news_id ), n.foto, DATE_FORMAT( n.data, '%%d/%%m/%%Y' ) AS data_it, n.ora, n.titolo, n.testobreve, n.pubblicata, n.primopiano, n.visite, nc.cat_news_name FROM tb_news n INNER JOIN tb_cat_news nc ON n.cat_news_id = nc.cat_news_id WHERE n.pubblicata =1 GROUP BY n.cat_news_id, rownum HAVING rownum <=3 ORDER BY n.id DESC", GetSQLValueString($intCategory_rsNotizie, "int"),GetSQLValueString($intCounter_rsNotizie, "int"),GetSQLValueString($intCounter_rsNotizie, "int"),GetSQLValueString($intCounter_rsNotizie, "int"),GetSQLValueString($intCategory_rsNotizie, "int"));
    $rsNotizie = mysql_query($query_rsNotizie, $ConnInterista) or die(mysql_error());
    $row_rsNotizie = mysql_fetch_assoc($rsNotizie);
    $totalRows_rsNotizie = mysql_num_rows($rsNotizie);
    ==============end dreamweaver code==========================================
    Thanks for your interest

    Hi there Walt,
    Thanks for your reply....A stored procedure...yes. I should have thought about it. In this particular case I will try this way out since I have a root account and I can execute any mysql code. Usually, anyway, I found that web hosts tend to leave little grants to their clients mysql user accounts and even setting up a stored procedure could be an issue. I would be happy to find also a lighter solution, if possible....Anyway I will let you know if I could put the stored procedure solution to work.
    Thanks again for your hint!

Maybe you are looking for

  • How can I make the webpage display the same on different sized screens?

    I have made a webpage, but it appears differently in different resolutions. I am in 1920x1080 and it appears fine on my screen, but anything smaller than that, the text is zoomed in more and it is not central. website can be found here: http://www.fi

  • Languages of Task  - Turkish not available

    Hi All, We are maintaining mail step in different langauges in task. But the option to maintain Turkish langauge is not appearing in the language option. I can see other languages in the task. Please let me know, what is the source of the languges, w

  • Frame Offset Playback Control in FCP HD Not Working

    if I output my audio via firewire, it works just fine. However, I am unable to playback audio in sync via built-in audio (which sounds far better than my firewire output device). I've gone to to my FCP System Preferences; Playback Control and it has

  • Detaching VHD Files using PowerShell

    Hi, Does anybody know of any PowerShell scripts which I can use which will detach a VHD file from multiple VM's? I have a few hundred VM's that I need to detach a VHD from so could really do with a script! Cheers Neil

  • How do I tell my shape object what shape it is

    Hi - I'm pretty new to all this I'm trying to create an applet on which a number of different (non standard) shapes will be displayed. I want to be able to move these shapes around the applet. I know that I need to add a mouselistener to my shape obj