Rollovers in html5

Is there anything similar to rollovers that are compatible with HTML5 output, a workaround?

Hi jay,
the only workaround i found was using the hint caption of the clickfield.
The hint caption is also displayed in html5 when the mouse is over the clickfield. The action of the clickfield should be set to no action.
I use the german version of captivate, so maybe i used the wrong wording. This workaround doesn't work for me, because i need rollover images an not rollover captions, but maybe it works for you.

Similar Messages

  • Dreamweaver CC - Rollover image to text transition for Fluid page css/html5

    Hi All,
    I am using Dreamweaver CC, Windows 7, PC.
    Goal: To create a selectable text and colour overlay (not a second image with text in the image) that appears over the top of an image on rollover of the container that the image is located in, all inside a fluid page.  Also I would like to avoid jquery and javascript if it's possible.
    Please see the attached HTML5, CSS and 300x300jpg example of this page which should show what i'm trying to do, as you can see currently the text sits below the image on mouse hover and should be fitting nicely inside the image box.  I will replicate this through all the images once I have it working correctly also.  Please note the page fluid scaling at different sizes as I need the rollover to work at whatever size the window or device is.
    Thank you in advance for any answers, ideas, work arounds etc you may have or if i've missed this specific scenario covered elsewhere?
    Here is the HTML (apologies for my messy code):
    <!doctype html>
    <!--[if lt IE 7]> <html class="ie6 oldie"> <![endif]-->
    <!--[if IE 7]>    <html class="ie7 oldie"> <![endif]-->
    <!--[if IE 8]>    <html class="ie8 oldie"> <![endif]-->
    <!--[if gt IE 8]><!-->
    <html class="">
    <!--<![endif]-->
    <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>Untitled Document</title>
    <link href="../boilerplate.css" rel="stylesheet" type="text/css">
    <link href="../Website_Testing/style.css" rel="stylesheet" type="text/css">
    <!--[if lt IE 9]>
    <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
    <![endif]-->
    <script src="../respond.min.js"></script>
    </head>
    <body>
    <div class="gridContainer clearfix">
      <article id="article" class="fluid">
        <div id="Examples" class="fluid">
          <div id="example1" class="fluid">
              <img src="images/300x300.jpg" alt=""/>
              <span class="text">TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT </span>
          </div>   
          <div id="example2" class="fluid"><img src="images/300x300.jpg" alt=""/></div>
          <div id="example3" class="fluid"><img src="images/300x300.jpg" alt=""/></div>
          <div id="example4" class="fluid"><img src="images/300x300.jpg" alt=""/></div>
        </div>
      </article>
    </div>
    </body>
    </html>
    Here is the CSS (apologies for my messy code):
    @charset "utf-8";
    img, object, embed, video {
        max-width: 100%;
    /* IE 6 does not support max-width so default to width 100% */
    .ie6 img {
        width:100%;
    .fluid {
        display: block;
        text-align: center;
        clear: none;
        float: none;
    .fluidList {
        list-style:none;
        list-style-image:none;
        margin:0;
        padding:0;       
    /* Mobile Layout: 480px and below. */
    .gridContainer {
        margin-left: auto;
        margin-right: auto;
        width: 100%;
        clear: none;
        float: none;
    #article {
        min-height: 160px;
        margin-left: 0;
        padding-left: 5%;
        padding-top: 16px;
        padding-bottom: 16px;
        padding-right: 5%;
        background-color: rgba(255,254,191,1.00);
    #Examples {
        text-align: center;
        padding-top: 16px;
        padding-bottom: 16px;
        margin-left: auto;
        margin-right: auto;
    .zeroMargin_mobile {
    margin-left: 0;
    .hide_mobile {
    display: none;
    #Examples #example1 {
        padding-top: 5%;
        padding-bottom: 5%;
        display: block;
        width: auto;
    #Examples #example2    {
        padding-top: 5%;
        padding-bottom: 5%;
        display: block;
        width: auto;
    #Examples #example3 {
        padding-top: 5%;
        padding-bottom: 5%;
        display: block;
        width: auto;
    #Examples #example4 {
        padding-top: 5%;
        padding-bottom: 5%;
        display: block;
        width: auto;
    .text {
        position: relative;
        display: none;
        background: #999;
        background: rgba(0,0,0,0.3);
        text-align: center;
        top: 0px;
    #example1:hover .text {
        display: block;
        background-color: rgba(12,109,242,1);
    #example1 {
        -webkit-transition: all 0.35s ease-in-out 0s;
        -o-transition: all 0.35s ease-in-out 0s;
        transition: all 0.35s ease-in-out 0s;
    #example1:hover {
        background-color: rgba(12,242,109,1.00);
    #example2 {
        -webkit-transition: all .35s ease-in-out;
        -o-transition: all .35s ease-in-out;
        transition: all .35s ease-in-out;
    #example2:hover {
        background-color: rgba(12,242,109,1.00);
    #example3 {
        -webkit-transition: all .35s ease-in-out;
        -o-transition: all .35s ease-in-out;
        transition: all .35s ease-in-out;
    #example3:hover {
        background-color: rgba(12,242,109,1.00);
    #example4 {
        -webkit-transition: all .35s ease-in-out;
        -o-transition: all .35s ease-in-out;
        transition: all .35s ease-in-out;
    #example4:hover {
        background-color: rgba(12,242,109,1.00);
    /* Tablet Layout: 481px to 768px. Inherits styles from: Mobile Layout. */
    @media only screen and (min-width: 481px) {
    .gridContainer {
        width: 100%;
        margin-left: auto;
        min-height: 100%;
    #Examples {
        text-align: center;
        min-height: 640px;
    .hide_tablet {
    display: none;
    .zeroMargin_tablet {
    margin-left: 0;
    #Examples #example1 {
        float: left;
        padding-left: 2%;
        padding-right: 2%;
        padding-top: 2%;
        padding-bottom: 2%;
        width: 46%;
    #Examples #example2 {
        float: left;
        padding-left: 2%;
        padding-right: 2%;
        padding-top: 2%;
        padding-bottom: 2%;
        width: 46%;
    #Examples #example3 {
        float: left;
        padding-left: 2%;
        padding-right: 2%;
        padding-top: 2%;
        padding-bottom: 2%;
        width: 46%;
    #Examples #example4 {
        float: left;
        padding-left: 2%;
        padding-right: 2%;
        padding-top: 2%;
        padding-bottom: 2%;
        width: 46%;
    /* Desktop Layout: 769px to a max of 1232px.  Inherits styles from: Mobile Layout and Tablet Layout. */
    @media only screen and (min-width: 769px) {
    .gridContainer {
    #article {
        margin-left: 0;
    #Examples {
        text-align: center;
    .zeroMargin_desktop {
    margin-left: 0;
    .hide_desktop {
    display: none;
    @media only screen and (min-width:1024px){
    #article #Examples #example1 {
        width: 23%;
        padding-left: 1%;
        padding-right: 1%;
        padding-top: 16px;
        padding-bottom: 16px;
    #article #Examples #example2 {
        width: 23%;
        padding-left: 1%;
        padding-right: 1%;
        padding-top: 16px;
        padding-bottom: 16px;
    #article #Examples #example3 {
        width: 23%;
        padding-left: 1%;
        padding-right: 1%;
        padding-top: 16px;
        padding-bottom: 16px;
    #article #Examples #example4 {
        width: 23%;
        padding-left: 1%;
        padding-right: 1%;
        padding-top: 16px;
        padding-bottom: 16px;
    #Examples {
        min-height: 340px;
    And here is a 300x300 grey image i'm using as an example holder:
    Thanks for taking the time all,
    Jeff

    Try this in a new, blank document:
    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>HTML5 with Pure CSS Rollovers</title>
    <style>
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    body {
    font-family:Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
    font-size:100%;
    #rollover a {
    display: inline-block;
    position: relative;
    margin-right: 2%;
    text-decoration: none;
    color: #FFF;
    #rollover a span {
    display: block;
    visibility: hidden;
    background-color: #3CC;
    position: absolute;
    z-index: 100;
    left: 0;
    top: 0;
    font-size: 13px;
    font-weight:bold;
    line-height: 1.2;
    color: #FFF;
    text-align: center;
    border: 5px solid orange;
    padding: 5px;
    width: 200px;
    min-height: 125px;
    #rollover a:hover span,
    #rollover a:active span,
    #rollover a:focus span { visibility: visible; }
    #rollover a:hover,
    #rollover a:focus { visibility: visible; }
    </style>
    </head>
    <body>
    <div id="rollover">
    <p>
    <a href="#"><img alt="description" src="http://placehold.it/200x125">
    <span> Lorem ipsum dolor sit amet, consectetur adipiscing elit.
    Mauris vitae libero lacus, vel hendrerit nisi!
    Maecenas quis velit nisl, volutpat viverra felis. </span></a>
    <a href="#"><img alt="description" src="http://placehold.it/200x125">
    <span> Lorem ipsum dolor sit amet, consectetur adipiscing elit.
    Mauris vitae libero lacus, vel hendrerit nisi!
    Maecenas quis velit nisl, volutpat viverra felis. </span></a>
    <a href="#"><img alt="description" src="http://placehold.it/200x125">
    <span> Lorem ipsum dolor sit amet, consectetur adipiscing elit.
    Mauris vitae libero lacus, vel hendrerit nisi!
    Maecenas quis velit nisl, volutpat viverra felis. </span></a>
    <a href="#"><img alt="description" src="http://placehold.it/200x125">
    <span> Lorem ipsum dolor sit amet, consectetur adipiscing elit.
    Mauris vitae libero lacus, vel hendrerit nisi!
    Maecenas quis velit nisl, volutpat viverra felis. </span></a>
    </p>
    <!--end rollover--></div>
    </body>
    </html>
    Nancy O.

  • Force users to view all rollovers before moving to next screen

    Hello,
    In Captivate 7 is it possible to force users to view all of the rollover items before allowing them to move onto the next screen?
    Thanks,

    There are a couple of options.  Rollover captions and rollover image objects are unable to trigger advanced actions on rollover, but you CAN do this with rollover slidelets.  So you could set up variables and advanced actions to track whether or not the user has viewed all rollovers at least once before showing a button that allows them to navigate to the next slide.  If you want to avoid rollover slidelets (due to all the issues they bring) you can use Event Handler widgets from Infosemantics.  Attach the widgets to the rollover caption or rollover images and this allows you to trigger advanced actions but with much more flexibility than with slidelets.
    One caveat.  None of these solutions work in HTML5.

  • Sound looping using Swiffy export to HTML5

    I am facing a problem when I export my flash using Google SWIFFY to HTML5!
    It wont play my sound track layer as loop anymore. only play it once when luanching the page in HTML5 and then it stops!
    I changed the settings in my Flash sound properties from Start to Event , from Repeat to Loop etc. but still not a change in exported result, can you advise me how can I get this soundtrack works as loop when I export it using Swiffy? Thanks a lot.
    Ali

    Just in case anyone else comes looking into this issue....
    I quote the warning message after exporting a flash file:
    Swiffy Flash Extension for Win v1.1.1 [Swiffy v5.2.0]
    - Warnings -
    Streaming audio is not supported.
    The only solution I've found is to copy and paste the (event) sound keyframe as many times as needed along the timeline, and set repeat/loop to 1. On-the-beat replay not guaranteed.
    The swiffy documentation:
    https://www.google.com/doubleclick/studio/swiffy/gettingstarted.html
    ...says sound is "partially supported", and then only by Chrome,  Safari, IE9 and Opera (no sound at all in FF).
    So far, testing, IE9 doesn't play loops, but maybe Chrome will (later, at home).

  • Is there a way to make rollovers activate one after another?

    This is an assignment for class. We need to have rollovers and what not. My problem is the links are all active at the same time and really mess with the story. is there anyway i could get them to activate in the order all the rollovers are in. I also wouldnt mind if they deactivated, but I would like to keep it as one page. I'm new at this stuff and don't know much about coding. We have CS5 on campus. CODE:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Untitled Document</title>
    <link href="style.css" rel="stylesheet" type="text/css" />
    <script type="text/javascript">
    <!--
    function roll(img_name1, img_src1, img_name2, img_src2)
       document[img_name1].src = img_src1;
       document[img_name2].src = img_src2;
    //-->
    <!--
    function roll2 (img_name1, img_src1)
    document[img_name1].src=img_src1;
    //-->
    </script>
    </head>
    <body onload="MM_preloadImages('image/bg3.gif')">
    <div id="title"> A Forgotten Memory </div>
    <div id="nav">
    <a href="*"
    onmouseover="roll ('button', 'image/button1.png', 'img1' , 'image/gun2.gif')"
    >
    <img src="image/button.png" width="143" height="39" border="0"
    alt="button" name="button" />
    </a>
    <a href="*"
    onmouseover="roll ('button1', 'image/button1.png', 'img1' , 'image/gun3.gif')"
    >
    <img src="image/button.png" width="143" height="39" border="0"
    alt="button" name="button1" />
    </a>
    <a href="*"
    onmouseover="roll ('button2', 'image/button1.png', 'img1' , 'image/gun4.gif')"
    >
    <img src="image/button.png" width="143" height="39" border="0"
    alt="button" name="button2" />
    </a>
    <a href="*"
    onmouseover="roll ('button3', 'image/button1.png', 'img1' , 'image/gun5.gif')"
    >
    <img src="image/button.png" width="143" height="39" border="0"
    alt="button" name="button3" />
    </a>
    <a href="*"
    onmouseover="roll ('button4', 'image/button1.png', 'img1' , 'image/bg2.gif')"
    >
    <img src="image/button.png" width="143" height="39" border="0"
    alt="button" name="button4" />
    </a>
    </div>
    <div id="nav2"><img src="image/bgg1.gif" name="img2" /></div>
    <div id="content">
    <img src="image/gun1.gif" alt="gray" name="img1" width="600" height="450" border="0" usemap="#spot2"/>
    <map name="spot2" id="spot2">
      <area shape="poly" coords="175,87,160,115,187,123,196,134,217,138,233,123,203,99" href="#" onmouseover="roll ('img1', 'image/bg3.gif', 'img2' , 'image/kor1.jpg')"/>
      <area shape="poly" coords="131,172,79,177,89,185,86,195,113,197,128,184" href="#" onmouseover="roll ('img1', 'image/bg4.gif', 'img2' , 'image/kor2.jpg')" onmouseout="restore('img2')" />
      <area shape="poly" coords="552,207,508,211,517,218,514,230,526,232,537,229,539,220,554,216" href="#" onmouseover="roll ('img1', 'image/bg5.gif', 'img2' , 'image/kor3.jpg')" />
      <area shape="poly" coords="289,208,275,215,254,210,250,219,259,230,276,229,285,218" href="#" onmouseover="roll ('img1', 'image/bg6.gif' ,  'img2' , 'image/kor4.jpg')"/>
      <area shape="poly" coords="159,210,166,195,198,175,234,162,259,157,275,158,286,168,314,176,315,184,300,214,2 92,227,293,194,278,191,279,179" href="#" onmouseover="roll ('img1', 'image/bg7.gif',  'img2' , 'image/kor5.jpg')"/>
      <area shape="poly" coords="513,91,475,104,480,112,498,111,505,129,526,107" href="#" onmouseover="roll ('img1', 'image/bg9.gif',  'img2' , 'image/kor8.jpg')"/>
      <area shape="poly" coords="402,282,385,271,370,281,384,298,389,305,376,309,371,315,352,312,371,320,379,333,3 75,350,389,333,397,336,405,353,403,439,411,438,410,345,407,305,415,297,411,287" href="#" onmouseover="roll ('img1', 'image/bg8.gif',  'img2' , 'image/kor6.jpg')"/>
      <area shape="poly" coords="41,77,22,81,28,92,44,89,52,105,65,102,76,87,69,83,68,72,52,69" href="#" onmouseover="roll ('img1', 'image/bg1.gif' , 'img2' , 'image/kor9.jpg')"/>
      <area shape="poly" coords="435,104,437,91,413,56,381,53,351,60,343,55,335,71,323,71,317,88,341,105,344,125,2 80,124,279,131,315,134,356,129,354,226,370,131,400,128" href="#" onmouseover="roll2 ('img1', 'image/end.gif')"/>
    </map>
    </a></div>
    </body>
    </html>

    DW CS5 Swap Images Behavior
    http://help.adobe.com/en_US/dreamweaver/cs/using/WSc78c5058ca073340dcda9110b1f693f21-7ae8a .html
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb

  • Dreamweaver 12.0.1 Crashes when Opening Complex HTML5

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

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

  • HTML5 does not work in Android 5 and Ubuntu

    Hi! Today my tablet Google Nexus 7 updated to Android 5, and I noticed a problem with Firefox. I noticed that does not work HTML5 mp3 player / It can be seen on the website http://audiobook-online.com/?page_id=2971. Instead of playing a song, it is suggested to download the file. This same problem in Ubuntu system on a netbook Emachine M350. In Google Chrome everything is fine. This can be seen in the screenshots.
    http://pixs.ru/showimage/Screenshot_6315323_14799085.png
    http://pixs.ru/showimage/Screenshot_2281471_14799099.png

    Yes this is a known issue. You will need to use Firefox Beta until Dec 1 or so to get h264 video playback. There are two other codecs webm and ogg video that continue to function. So sites that support multiple formats should continue to work.

  • Trouble launching a custom HTML5 UI in Photoshop CC

    Problem:
    I am trying to get Photoshop CC to launch custom built HTML5 UI’s.  In doing so I have hit a few roadblocks:
    Roadblocks:
    • The documentation online to install and launch HTML5 UI’s from scratch is out-of-date:
    http://www.adobe.com/devnet/creativesuite/articles/a-short-guide-to-HTML5-extensions.html
    • The supported method, using Adobe Extension Manager CC requires an internet connection, which our network does not (and will not) ever have.
    • The workaround instructions to use a request code from an internet-capable workstation are incomplete
    http://www.adobe.com/go/getactivated
    What I think I need:
    Right now I am blocked from using HTML5 UI’s.  If a rep from adobe could tell me where on my workstation to place unsigned extensions that would be a great first step, and then if they could verify that the registry work-around is still supported with Photoshop CC 2014 (15.2) that would probably unblock me.

    Adobe does not officially monitor these forums.
    How can you possibly be using CC without an Internet connection?
    If CC cannot contact the mother ship in the prescribed period, currently 30 days, the software will cease to work—or so they claim.

  • Launching custom HTML5 UI's in Photoshop CC 2014 (15.2)

    Problem:
    I am trying to get Photoshop CC to launch custom built HTML5 UI’s.  In doing so I have hit a few roadblocks:
    Roadblocks:
    • The documentation online to install and launch HTML5 UI’s from scratch is out-of-date:
    http://www.adobe.com/devnet/creativesuite/articles/a-short-guide-to-HTML5-extensions.html
    • The supported method, using Adobe Extension Manager CC requires an internet connection, which our network does not (and will not) ever have.
    • The workaround instructions to use a request code from an internet-capable workstation are incomplete
    http://www.adobe.com/go/getactivated
    What I think I need:
    Right now I am blocked from using HTML5 UI’s.  If a rep from adobe could tell me where on my workstation to place unsigned extensions that would be a great first step, and then if they could verify that the registry work-around is still supported with Photoshop CC 2014 (15.2) that would probably unblock me.

    No, just keep it at sRGB. As long as you have the "preserve" policy, the working space actually isn't all that important. The embedded document profile will always override it (as it should).
    I had to read this a couple of times to follow the trail properly. Leaving Perfect Effects (which I don't know at all) out of it - does the very same file iteration, with the same edits, look different between Photoshop and Lightroom? Did I get that right?
    In that case you have a bad monitor profile. This can sometimes throw off one application but not the other. Recalibrate, or if you don't have a calibrator go into Windows color management and set sRGB IEC61966-2.1 as default display profile. When done relaunch all applications so that they can pick up the new profile at startup.

  • SQLite3-WinRT / SQLite3Component for Windows Phone 8.1 (HTML5 & JavaScript)

    Dear all
    I am a newbie in the developpement for Windows 8.1 and Windows Phone 8.1.
    After a few weeks reading books and watching videos to learn developping Windows Store Apps 8.1 with HTML5 and JavaScript, I have started my very first serious application as a Universal Windows Store App using visual studio 2013 community edition. I would
    like to use SQLite for persisiting the data of my application.
    I installed the necessary extensions to VS2013 both for windows 8.1 and windows phone 8.1 (SDK + SQLite extension)
    I cloned the SQLite3-WinRT projet from GitHub, and, as VS2013 asked it, run the targetting process to upgrade to Windows 8.1.
    I successfully installed and tested SQLite3-WinRT using Javascript for the WIndows 8.1 part of my project.
    But when i tried to add the SQLite3Component project as a reference to my Windows Phone 8.1 project, VS2013 complained that SQLite3Component project is an invalid reference for a windows phone project... I can understand this as the SQLite3Component project
    seems to be a windows 8 only project.
    I have been looking for a solution for two days now without success and decided therefore to post my question here: is there a SQLite3Component project targetted for WINdows Phone 8(.1)? If not, what are my alternatives for persisting potentially large amount
    of data with advanced search queries locally on a windows phone?
    Thank you for any help the comunity could give me.
    Regards
    François

    While not specifically talking about JavaScript/HTML5 this article series outlines how to use SQLite in Universal App projects:
    http://blog.tpcware.com/2014/04/universal-app-with-sqlite-part-1/
    I have already used it from C# and given that we're talking about WinRT components it should be accessible from WinJS as well. Hope it helps.

  • I am using ALSA and Icecat. When I play any html5 audio/video it works, but the next time i click on another audio/video link I lose sound.

    I am using Parabola (a fork of archlinux), Icecat 31.4 and ALSA
    Icecat and firefox seem to hold onto the soundcard when I click on a new html5 audio/video link in the same tab. The next video/audio element loses sound. If I wait 10 seconds and click back to the start of the audio/video, the audio returns. I often get cpu spikes for icecat when it happens.
    I have tried this with both motherboard and usb sound and I get the same problem. I have disabled extensions (addons) in Icecat, deleted profiles, reinstalled the browser and even installed firefox from the AUR and it still occurs.
    I have disable gstreamer in about:config and restarted and it still occurs.
    My .asoundrc is this:
    pcm.!default {
    type plug
    slave.pcm "hw:0,0"
    All my other audio applications work. I have noticed that if I use pulseaudio it fixes it, but it should work without anyway, like it used to. I think something happened after an update, but I'm not sure.
    Any help would be appreciated. I know it's not a big problem, but it's really frustrating and I've had it for ages. I even switched browsers to get away from it.

    *nerding out*
    I am not an expert in this and if we get stuck I have found a mailing list for the alsa project that can be contacted: http://www.alsa-project.org/main/index.php/Mailing-lists
    Gstreamer is disabled in Firefox as well as the os?
    Since you are seeing issues with ogg files and moving video/audio combination I started to dig into file formats {sox http://sox.sourceforge.net/soxformat.html}
    For ogg would the file format affect the "raw"?
    defaults.pcm.file_format "raw"
    Updated libraries
    alsa-lib-1.0.6-8.FC3
    alsa-utils-1.0.6-3
    No no, here:
    http://oss.sgi.com/LDP/LDP/linuxcookbook/html/cookbook_27.html#SEC377
    Is the OGG cpu intensive for your alsa architecture? [http://alsa.opensrc.org/Ogg]
    Troubleshooting sound on Linux to narrow down the issue: [http://www.troubleshooters.com/linux/sound/sound_troubleshooting.htm#the_steve_litt_diagnostic_tools]
    References: [http://www.alsa-project.org/main/index.php/Minivosc]
    [http://www.troubleshooters.com/linux/sound/sound_troubleshooting.htm#the_steve_litt_diagnostic_tools]
    I am sorry, this is where I can no longer help. Please seek the guidance of the Linux forums or that alsa mailing list.

  • Html5 video player won't work with slider script??

    Hi - I'm new to html5 and Dreamweaver, but I've worked with html in the past, so most things aspects aren't foreign to me.
    My question is this: I'm working with an existing html5 template and it had a slider graphics bar near the top. It works fine and scrolls through three pre-made banners.
    The problem is I just added the widget for HTML5 Videoplayer and inserted it into my code. The video box, etc. shows up fine, and will play, but now the slider graphic box at the top doesn't work anymore. Instead it just displays all three banners as images, one on top of the other.
    When I look closer at the script code that the widget embeds, it seems as though the script widget code is not playing well with the existing script code. When I remove the script code that the widget installs, the slider works perfectly again (but the video obviously won't play).
    The exact code is included below. My question is, how can I make the two of these scripts work together???Any help would be great appreciated. Thanks, Blair
    <script src="scripts/elegant-press.js" type="text/javascript"></script>
    <script src="kaltura-html5player-widget/jquery-1.4.2.min.js" type="text/javascript"></script>
    <script src="kaltura-html5player-widget/mwEmbed-player-static.js" type="text/javascript"></script>
    <!--[if IE]><style>#header h1 a:hover{font-size:75px;}</style><![endif]-->
    <link href="kaltura-html5player-widget/mwEmbed-player-static.css" rel="stylesheet" type="text/css">
    <style type="text/css">
    /* BeginOAWidget_Instance_2294029: #kalturaPlayer */
                                  @import url("http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.1/themes/redmond/jquery-ui.css");
    /* EndOAWidget_Instance_2294029 */
    </style>
    <script type="text/xml">
    <!--
    <oa:widgets>
      <oa:widget wid="2294029" binding="#kalturaPlayer" />
    </oa:widgets>
    -->
    </script>

    Hi - I'm new to html5 and Dreamweaver, but I've worked with html in the past, so most things aspects aren't foreign to me.
    My question is this: I'm working with an existing html5 template and it had a slider graphics bar near the top. It works fine and scrolls through three pre-made banners.
    The problem is I just added the widget for HTML5 Videoplayer and inserted it into my code. The video box, etc. shows up fine, and will play, but now the slider graphic box at the top doesn't work anymore. Instead it just displays all three banners as images, one on top of the other.
    When I look closer at the script code that the widget embeds, it seems as though the script widget code is not playing well with the existing script code. When I remove the script code that the widget installs, the slider works perfectly again (but the video obviously won't play).
    The exact code is included below. My question is, how can I make the two of these scripts work together???Any help would be great appreciated. Thanks, Blair
    <script src="scripts/elegant-press.js" type="text/javascript"></script>
    <script src="kaltura-html5player-widget/jquery-1.4.2.min.js" type="text/javascript"></script>
    <script src="kaltura-html5player-widget/mwEmbed-player-static.js" type="text/javascript"></script>
    <!--[if IE]><style>#header h1 a:hover{font-size:75px;}</style><![endif]-->
    <link href="kaltura-html5player-widget/mwEmbed-player-static.css" rel="stylesheet" type="text/css">
    <style type="text/css">
    /* BeginOAWidget_Instance_2294029: #kalturaPlayer */
                                  @import url("http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.1/themes/redmond/jquery-ui.css");
    /* EndOAWidget_Instance_2294029 */
    </style>
    <script type="text/xml">
    <!--
    <oa:widgets>
      <oa:widget wid="2294029" binding="#kalturaPlayer" />
    </oa:widgets>
    -->
    </script>

  • Questions on HTML5 Output in FrameMaker 12

    I have a couple questions about the HTML5 Output:
    1. I have images that are not appearing in the output (they are in the source FM file, but not in the HTML5 output). What am I doing wrong?
    2. Is there a way to disable the glossary function so that it doesn't appear as an option in the HTML5 output?
    Any help is greatly appreciated. Thanks!

    1. Are all of the images in anchored frames? Have you edited any of the settings under Style mapping > Image?
    2. Currently, AFAIK, this is hardwired. You could try spelunking in a saved settings.sts file (it's just a zip container) to see if this can be turned off there [if you're quite familiar with XML, DTD's (.slp file), HTML and javascript],

  • Is it possible to pull a variable from an embedded html5 page into captivate [6.0]?

    So.  I'm attempting to replicate the functionality of the drag-and-drop quiz question widget in an html5 elearn.  A colleague of mine who is a jquery whiz was able to create the drag-and-drop questions as html pages, and I used this third-party widget to embed them in my elearn.  There's a variable in the html that tests whether the answer has been dropped in the right box, and I'm hoping to use a button to evaluate this and add (or not) the result to the quiz score.  Is this possible?  I've discovered that there's this handy library, but I have no idea how to go about using it. Can anyone give me any pointers as to doing this, or let me kow if I'm attempting to do the impossible? 
    I've also heard that drag and drop is natively html compliant in Captivate 6.1, but is a Creative Cloud license the only solution available to someone with little programming experience?

    I don't know if Philip has updated this for CP6?
    Ooh, good point. I will try to contact him. 
    The other thing is, last I checked, Infosemantics's widgets aren't supported in html5 exports, which is where this whole dilemma comes from.
    Also,
    not in the Creative Cloud, but only available to subscription users (or ASA) not to boxed license users. Captivate is not part of the Creative cloud
    That explains why I'm having so much trouble finding anything about it there.  Thank you!

  • Rollovers on each page of a gallery widget

    Is the following possible? I would like to have a  slideshow and have each page have its own set of rollovers. (I am a brand new Muse user.) I tried starting with a basic slideshow widget. (I  unchecked "Edit Together", if that matters.) Then I clicked on the target of the first page and draged the tooltip widget onto it. But it's not working, because when I go to the next page of the gallery widget the same tooltip widget remains.

    I found on my computer, if you click on the header you can change it on each page.  There is also a place in Set Up under Sections at the bottom of the page that has a drop down to create a new Section either 'Starting with this section' or 'After this section'.  Hope this helps.  Also at the top there is a place under Headers & Footers to  choose either 'hide on first page of section' or 'match previous section'.  I believe if you deselect the 'match previous section' you can easily change the header or footer for each page.

Maybe you are looking for

  • Windows 7 not booting after memory upgrade ProBook 6540b

    Hi HP Probook 6540b Windows 7 Professional 64bit Currently, I have 2x2GB of RAM and I want to upgrade it to 2x4GB. After replacing the 2GB sticks with the new 4 GB sticks, the notebook does not start anymore. I bought the right kind with right speed

  • SAP 4.7EE Installation Error

    Here I am getting The error while i am trying to Install SAP 4.7EE.Exactly i am getting error At The time of DATABASE LOAD POST PROCESSING           LIKE                 Running 3, waiting 13                 Running 1,  Waiting 0                 Star

  • HT1349 Ipad calendar

    I have an Ipad2 and and iphone 4s.  I do keep a current calendar on them but I would like to be able to print it out.  I don't have a compatible printer for the Ipad is there a way that I can copy the calendar and send it to my e-mail?

  • Pictures that i print from my I-Mac print too Big?

    When I go to I-Photo and attempt to print to my HP-7210 printer it prints the photos bigger than the paper.  In other words you some of the picture in the original picture on the monitor.  Normally loosing a small amount of the print is not a problem

  • Photoshop Versus Photoshop Elements for Digital Art Creation and Layers

    I'm using Photoshop Elements 10.    If I want to use Photoshop with digital art (paintings mostly) and want to do touch up work and move elements of paintings into multiple layers, what extra features does Photoshop have that would benefit this appli