Edge Animate animation (hide/show) not working

Ever since I installed the new version of Edge Animate the (hide/show) function doesn't work. When I open projects created with the previous version everything works fine. What gives? Is this a bug?

The project that is currently working as expected:
Redirecting...
The new Edge Animate 2014.1 project that does not work:
Redirecting...

Similar Messages

  • HELP - Edge Animate issues - buttons/symbols not working/disappearing in portrait mode on mobile devices

    Edge Animate - Issues - buttons/symbols not working/disappearing when in portrait mode on iPad and mobile devices, but in landscape version everything is fine.
    Everything works cross broswer on Desktop - Safari, Chrome, Explorer and Firefox - mobile devices prove glichy... anyone else experience this?
    It's a regular issue of mine, particularly with complex animations. Symbols disappear
    - is it something to do with overflow?
    - responsive scaling?
    I have no idea.

    Since no one has answer this post, I recommend opening  a support case with CSS as they can work with you to solve this problem.
    Garth Jones | My blogs: Enhansoft and
    Old Blog site | Twitter:
    @GarthMJ

  • Complaints from clents that Edge Animate built sites will not work in certain browsers

    Has Edge animate sorted out the problem of not working in IE browsers - I updated my Edge Animate ro version 2.0 - is there version 3.0 or later out yet that addresses this problem?

    Hi,
    i have had a few issues with different versions of IE mainly to do with the code added in. I use the website below to check what is supported in certain versions of browser
    CSS3 Reference
    Maintain Browser Compatibility with Adobe Edge Animate CC - For Dummies
    hope this is some help to you

  • Play MP4 with Edge Animate on iOS / iPhone - not working

    I have placed an MP4 into my Edge Animate file. When I view the HTML file on the iPhone there is a black box where the video should be.
    I have added the TouchStart function to my MP4 on the stage. "sym.$("Ambush_MotionPoster_Web")[0].play();"
    I have touch/tapped like crazy. nothing happens.
    I can navigate directly to the MP4 in the media folder and it plays fine on the iPhone so I know the iPhone will play the MP4.
    I can view it in the Safari browser on the desktop. I have searched the web and forums but no luck.
    The Adobe help makes it sound like a cake walk: Edge Animate Help | Add video to animations
    Any input would be appreciated.
    Thanks.

    The patch (EA 2014.1.1) with the fix is live now.
    Regards,
    Vivekuma
    Edge Animate Team

  • How do I maintain responsive scaling on an edge animate animation when I insert it into dreamweaver?

    How do I maintain responsive scaling on an edge animate animation when I insert it into dreamweaver? Please and thank you!

    example.com is a generic http:// address to illustrate the difference between what you gave, file:/// and an actual URL address.  There are no tutorials on that site.  Sorry for the confusion.
    #1 Have you procured your domain name and web hosting yet?  You'll need to do that to publish your pages online.
    #2 When you sign-up for web hosting, the company will send you FTP log-in credentials to your site's web server.    You will enter this info into your DW Site Definition.  Site > New Site >  See screenshots below:
    Under Servers:  Root Directory is whatever your hosting company tells you to use.  This varies by web host.  Some commonly used ones are public_html, www or htdocs.
    After your site definition is set-up, hit the TEST button to confirm it's working.  If it's not connecting, go to More Options.
    Go to the Files Panel (F8).  Use the UP Arrow  to PUT files to remote server.
    Use the DOWN Arrow to GET files from server to your local site folder.
    Post back when you have finished uploading your work to the remote server.
    Nancy O

  • Bug. Can't put two Edge Animate animations on same page

    Alrighty. Just thanked Adobe for fixing responsive scaling issue. Now there seems to be a new one. When I put two Edge Animate animations on the same page, they both disappear entirely from view! Both in live view (or what was fluid grid view) and when trying to preview in any browser. The responsive design is working great but if I put two animations on the same page they both just disappear! GONE!
    Maybe there is some code I can use to stop this from happening. I have done a number of tests over the last hour or so. My smile (from the responsive fix) is now a frown again. I can not continue to work like this. Please let me know if there is something I am doing wrong. I could have two animations in one page no worries before this release but the responsive design wasn't working properly. NOW the responsive design works but I can not have MORE THAN ONE ANIMATION on same page. Thanks for your time. Kind regards Julian.

    Hi Julian,
    First, in general, you can't create two instances of the same edge composition (this is not supported by EdgeRuntime), to be used in the same file.
    But if you want to use same composition multiple times, then follow the steps to create multiple copies to be treated as multiple instances:
        1. Open the composition whose multiple instance you want to use.
        2. Change the "Composition Class" to some other value
        3. Do a SaveAs and save it to create another copy of the same composition. // This copy can be treated as an instance.
        4. Repeat the steps 2 to 4, to create multiple copies of the same composition, and you will end up creating multiple instances.
    Second, you need to do small changes manually in the DreamWeaver html file.
        So, right now if you import two Edge Compositions in the html page, it will come as follow in the html <head/> section:
    Before Modification: Dropbox - problem.rar
    <!--Adobe Edge Runtime-->
    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
    <script>
      var custHtmlRoot="Untitled-1/Assets/";
      var script = document.createElement('script');
      script.type= "text/javascript";
    script.src = custHtmlRoot+"edge_includes/edge.5.0.0.min.js";
      var head = document.getElementsByTagName('head')[0], done=false;
      script.onload = script.onreadystatechange = function(){
      if (!done && (!this.readyState || this.readyState == 'loaded' || this.readyState == 'complete')) {
      done=true;
      var opts ={
        scaleToFit: "width",
        centerStage: "none",
        minW: "0",
        maxW: "undefined",
        width: "550px",
        height: "400px"
      opts.htmlRoot =custHtmlRoot;
      AdobeEdge.loadComposition('Untitled-1', 'EDGE-1372833673', opts,
      {"dom":{}}, {"dom":{}});
      script.onload = script.onreadystatechange = null;
      head.removeChild(script);
      head.appendChild(script);
      </script>
    <style>
            .edgeLoad-EDGE-1372833673 { visibility:hidden; }
        </style>
    <!--Adobe Edge Runtime End-->
    <!--Adobe Edge Runtime-->
    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
    <script>
      var custHtmlRoot="Untitled-2/Assets/";
      var script = document.createElement('script');
      script.type= "text/javascript";
    script.src = custHtmlRoot+"edge_includes/edge.5.0.0.min.js";
      var head = document.getElementsByTagName('head')[0], done=false;
      script.onload = script.onreadystatechange = function(){
      if (!done && (!this.readyState || this.readyState == 'loaded' || this.readyState == 'complete')) {
      done=true;
      var opts ={
        scaleToFit: "width",
        centerStage: "none",
        minW: "0",
        maxW: "undefined",
        width: "550px",
        height: "400px"
      opts.htmlRoot =custHtmlRoot;
      AdobeEdge.loadComposition('Untitled-2', 'EDGE-1372913196', opts,
      {"dom":{}}, {"dom":{}});
      script.onload = script.onreadystatechange = null;
      head.removeChild(script);
      head.appendChild(script);
      </script>
    <style>
            .edgeLoad-EDGE-1372913196 { visibility:hidden; }
        </style>
    <!--Adobe Edge Runtime End-->
    After Modification:Dropbox - resolved.rar
    <!--Adobe Edge Runtime-->
    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
    <script>
      var custHtmlRoot="Untitled-1/Assets/";
      var script = document.createElement('script');
      script.type= "text/javascript";
      script.src = custHtmlRoot+"edge_includes/edge.5.0.0.min.js";
      var head = document.getElementsByTagName('head')[0], done=false;
      script.onload = script.onreadystatechange = function(){
      if (!done && (!this.readyState || this.readyState == 'loaded' || this.readyState == 'complete')) {
      done=true;
      var opts ={
      scaleToFit: "width",
      centerStage: "none",
      minW: "0",
      maxW: "undefined",
      width: "550px",
      height: "400px"
      opts.htmlRoot =custHtmlRoot;
      AdobeEdge.loadComposition('Untitled-1', 'EDGE-1372833673', opts,
      {"dom":{}}, {"dom":{}});
      script.onload = script.onreadystatechange = null;
      head.removeChild(script);
      //For 2nd Composition
      (function(){
      var custHtmlRoot = "Untitled-2/Assets/";
      var opts = {
      scaleToFit: "width",
      centerStage: "none",
      minW: "0",
      maxW: "undefined",
      width: "550px",
      height: "400px"
      opts.htmlRoot =custHtmlRoot;
      AdobeEdge.loadComposition('Untitled-2', 'EDGE-1372913196', opts, {"dom":{}}, {"dom":{}});
      head.appendChild(script);
      </script>
      <style>
            .edgeLoad-EDGE-1372833673 { visibility:hidden; }
            .edgeLoad-EDGE-1372913196 { visibility:hidden; }  /* Styles from both composition can be merged together, optional but good practice */
        </style>
    <!--Adobe Edge Runtime End-->
    Do let me know in case if it doesn't work.
    hope it helps,
    Vivekuma

  • How do I get Flash animated slide shows to work on iPads, iPods, and iPhones?

    How do I get Flash animated slide shows to work on iPads, iPods, and iPhones?
    I'm using a PC. Web Site Flash generated slide show works fine on PC's.
    Does not work on Apple platforms.
    What do I use to to enable animated slide shows to work on Apple platforms?
    cliffordf51127948

    Hello,
    Flash Player is only supported on Apple OS X systems (10.6 - 10.10).  It is not, and has never been, supported on any i-Devices.  There are no plans to support these platforms.
    Maria

  • Paste from Illustrator to Edge Animate (CC 2014) has stopped working.

    Paste from Illustrator to Edge Animate (CC 2014) has stopped working. Gives an 'Error Loading Image!' Any suggestions?

    Hi SujaiS
    I am using both Illustrator and Edge Animate CC 2014.
    Screen shots show a simple test shape in illustrator on the left and the Edge screen when I try to paste.
    Thanks.

  • Error with Edge Animate animations

    Muse 7 Get an Error when opening a page with an Edge Animate animation. This didn't happen with the earlier version of Muse. Error is "MuseJSAsset: Error calling selector function: TypeError: 'undefined' is not a function (evaluating 'Muse.Utils.initializeAnimations()" See screen shot.
    MacOSX Mavericks.
    ted

    Hi Ted,
    Can you send me your .muse file and .oam file to [email protected] with the subject attn: Dana and a link to this thread?
    Thanks,
    Dana

  • Is it possible to place an Adobe Edge Animate animation into an Interactive PDF?

    Hello all,
    At the moment, this seems to be the biggest InDesign mystery to me...
    Is it possible to place an Adobe Edge Animate animation into an Interactive PDF? 
    I have not been able to find anything on this.  Thanks for any insight you can provide.

    No.

  • Auto hide taskbar not working with iTunes 10.5 & Windows 7

    Anyone else having problems with Auto-hide Taskbar not working when iTunes is open and the active window? Was working fine with previous versions including the beta of 10.5 I had. Is this a general problem or just me? Im using Windows 7 64bit for what its worth.

    Chiming in with the same problem. 64-bit Win 7 Professional, taskbar set to auto-hide, newest version of iTunes (actually uninstalled and reinstalled via the website download earlier today to see if that would fix it; nope). I normally use the Alt+Tab keys to navigate between windows anyway, so it's not inconveniencing me too much, but it's still irritating when I'm trying to use the mouse to switch windows (or check the time) and realize I can't. Definitely fix this one soon. We'll all be very grateful

  • How to run an Edge Animate animation on SharePoint 2007

    Hi,
    I have an Edge Animate animation that I can't figure out how to setup to run on SharePoint 2007.
    I have tried using a Content Editor Webpart but untill now without any luck.
    I hope someone in here will be able to help.
    Right now my code look like this;
    <html>
    <head>
        <style>
    .edgeframe {
        background: #FFF;
    margin-top: 0px;
        </style>
    </head>
    <body>
    <div class="edgeframe">
      <object id="EdgeID" type="text/html"   width="960" height="700" src="http://fls-teamsites/application/SPoudemo5/TSETdevelopment/Shared%20Documents/ten_commandm ents_its.html">
      </object>
    </div>
    </body>
    </html>
    I'm really hoping that someone will be able help me with this task.
    Br,
    Thomas

    Object tag takes "data" attribute instead of "src". Try changing it.
      <object id="EdgeID" type="text/html"   width="960" height="700" data="http://fls-teamsites/application/SPoudemo5/TSETdevelopment/Shared%20Documents/ten_commandm ents_its.html">

  • Show/hide bahavior not working in firefox or safari

    Here is my problem. The show hide behavior incorporated in DW
    CS3 is working fine in IE6 and 7 but not working at all in firefox
    and safari (both latest version). I have tried it on different
    event but nothing.
    My web site is configured that if someone click on details, a
    layer will become visible and the details will be showed. I know
    there is a work around and the simplest would be to have a new
    window open but this is not the style I want.
    Any help would be much appreciated.
    Thanks
    ASP

    <!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=iso-8859-1" />
    <title>Untitled Document</title>
    <style type="text/css">
    <!--
    #apDiv1 {
    position:absolute;
    visibility:hidden;
    left:16px;
    top:14px;
    width:512px;
    height:394px;
    z-index:1;
    background-color: #FFFF00;
    #apDiv2 {
    position:absolute;
    left:14px;
    top:431px;
    width:513px;
    height:88px;
    z-index:2;
    -->
    </style>
    <script type="text/javascript">
    <!--
    function MM_reloadPage(init) { //reloads the window if Nav4
    resized
    if (init==true) with (navigator) {if
    ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight;
    onresize=MM_reloadPage; }}
    else if (innerWidth!=document.MM_pgW ||
    innerHeight!=document.MM_pgH) location.reload();
    MM_reloadPage(true);
    function MM_showHideLayers() { //v9.0
    var i,p,v,obj,args=MM_showHideLayers.arguments;
    for (i=0; i<(args.length-2); i+=3)
    with (document) if (getElementById &&
    ((obj=getElementById(args
    ))!=null)) { v=args[i+2];
    if (obj.style) { obj=obj.style;
    v=(v=='show')?'visible':(v=='hide')?'hidden':v; }
    obj.visibility=v; }
    //-->
    </script>
    <script src="../Scripts/AC_RunActiveContent.js"
    type="text/javascript"></script>
    </head>
    <body>
    <div id="apDiv1"></div>
    <div id="apDiv2">
    <p>
    <script type="text/javascript">
    AC_FL_RunContent( 'codebase','
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0','wid th','130','height','20','title','test','onfocus','MM_showHideLayers(\'apDiv1\',\'\',\'show \')','src','../Flash/liendurabilte','quality','high','pluginspage','http://www.adobe.com/s hockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','movie','../Flash/liendurab ilte'
    ); //end AC code
    </script>
    <noscript>
    <object
    classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0"
    width="130" height="20" title="test"
    onfocus="MM_showHideLayers('apDiv1','','show')">
    <param name="movie" value="../Flash/liendurabilte.swf"
    />
    <param name="quality" value="high" />
    <embed src="../Flash/liendurabilte.swf" quality="high"
    pluginspage="
    http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash"
    type="application/x-shockwave-flash" width="130"
    height="20"></embed>
    </object>
    </noscript>
    Click here to show layer</p>
    <p>
    <script type="text/javascript">
    AC_FL_RunContent( 'codebase','
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0','wid th','130','height','20','onfocus','MM_showHideLayers(\'apDiv1\',\'\',\'hide\')','src','../ Flash/lienGarantie','quality','high','pluginspage','http://www.adobe.com/shockwave/downloa d/download.cgi?P1_Prod_Version=ShockwaveFlash','movie','../Flash/lienGarantie'
    ); //end AC code
    </script><noscript><object
    classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0"
    width="130" height="20"
    onfocus="MM_showHideLayers('apDiv1','','hide')">
    <param name="movie" value="../Flash/lienGarantie.swf"
    />
    <param name="quality" value="high" />
    <embed src="../Flash/lienGarantie.swf" quality="high"
    pluginspage="
    http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash"
    type="application/x-shockwave-flash" width="130"
    height="20"></embed>
    </object></noscript>
    Click here to hide layer
    </p>
    </div>
    </body>
    </html>

  • Sticky hide and show not working

    I believe I have followed Carl Backstrom's Sticky Hide and Show Region example to the letter for my own application.
    1 - I have the application items and application processes in place.
    2 - I have the javascript in the HTML Header attribute
    3 - The SHOW_HIDE_MEMORY package is in place
    4 - I edited the Hide and Show Region template
    I'm on Apex version 3.0.0.00.20
    The collection does not seem to be getting populated. I'm wondering if the region template which includes this code is not working: onclick="$r_ToggleAndSave(this,'#REGION_ID#')" id="#REGION_ID#img"
    My regions are always collapsed when I navigate away and return to the page and the collection is always empty. I've checked the state of the temporary item after clicking the expand (+) button and the value is always null.
    Any help would be greatly appreciated.
    Thanks, Todd

    Hi Carl,
    I'm not seeing any obvious errors on the screen or in the message bar. I just downloaded the Firefox javascript debugger extension. I'm not exactly sure how to use this tool, but when I expand a hidden region, I do see this message in the debugger screen:
    Warning ``reference to undefined property this.onShutdown_'' [xs] in file ``file:///C:/Program%20Files/Mozilla%20Firefox/components/nsSafebrowsingApplication.js'', line 1710, character 0.
    Error ``node has no properties'' [xs] in file ``http://dsi3.gfc.iowa.com:7777/i/javascript/htmldb_html_elements.js'', line 25, character 0.

  • Show/hide item not working

    Hi,
    I've designed a relatively detailed survey with multiple show/hide items, and all of a sudden they're not working despite all of the show/hide criteria being correct. Items are being shown for no reason.
    Can someone help me?
    Thanks.

    After looking at the form I have concluded that the show/hide logic is inverted.  You have fields set to be hidden if the answer to a drop down is  not 0%. The problem is that the default value of the field is null, not 0%.  The condition is met, so the fields are displayed.  The fix is to switch the show/hide logic to Show is the answer is 5%, 10%, 15% etc.
    Jeff Canepa
    Software Quality Engineer
    Adobe Systems, Inc.
    [email protected]

Maybe you are looking for

  • Cannot copy/paste files from clone of Snow Leopard installation into clean Lion installation.

    I cloned my hard drive onto an external USB drive using disk utility and then erased the internal drive to install Lion onto. 70% of anything I copied from the clone of my 10.6 installation into its new home in Lion just disappeared as soon as I copi

  • SWETYPV Txn

    Hi I Need some calrifications regarding Activating a Standard workflow , After going through various dcouments I hvae found that Txn SWETYPV is used to activate the standard workflow . Does it mean that if we make a entry in this table then the stand

  • Administration error in forum

    Hi experts, I'm trying to make forum available in my portal. I  had follow step by step configuration but there is still a problem. I got Administration error: "You do not have administrator permissions for performing this operation ". I also found a

  • Flash player for x64 windows server 2008 r2????

    I was running IE 7 and flash was fine.  I upgraded to IE10 (sick of all the 'you're using an unsupported browser' messages).  Flash player update window appears suggesting I need to upgrade my player, telling me that the correct version for my browse

  • Bookmarks intact, but Bookmark Sidebar is empty. How to restore bookmark list in sidebar?

    My bookmarks are intact in the Library window, but the Bookmark Sidebar is empty. I don't remember when or how it occurred. I would like to restore my bookmarks to the Sidebar location. Thank you.