Edge Animate CC Templates - Hidden Duplicates Bug

Steps to reproduce:
1. Create a template named "A"
2. Import it and create new project from it
3. Make slight change in the project (like composition title) and save as template with same name.
4. Import updated template.
Now you have only 1 template visible in "Create from Template..." dialog which is first version. You can delete it, but visually nothing will happen to user. You'll still see "A" template. It will be 2nd version though. If you'll try to import template without making changes - you'll be asked to replace existing one or not.

Hi eduard,
Thanks for the report - I'll look into it.
Regards,
Joe

Similar Messages

  • HOWTO: Use Adobe Edge Animate CC Templates

    Hi Everyone,
    Darrell Heath made an awesome tutorial about how to use Templates to your advantage
    Check it out:
    http://www.edgehero.com/tutorials/leverage-adobe-edge-animate-cc-templates
    - Rob

    Hi, canpark-
    We do not have a Korean localized version of Edge Animate, sorry!
    -Elaine

  • Edge Animate CC Templates Feature Request

    Ask for target folder and project name when the one is created from template. Edge Animate creates a folder with a template name. That folder name has to be changed almost always to a real one manually. Project name is Untitled-1 for me, probably because I created a tempalte from non-saved project, which is sub-optimal as well. At least create a project from template in temporary storage/memory and it works with regular "New" one before you try to save it.
    Thanks.

    Hi eduard,
    Thanks for the report - I'll look into it.
    Regards,
    Joe

  • Adobe Edge Animate CC image loading bug

    hello,
    The animation which i created in Adobe Edge Animate which is published for web, and when i load the main file in browser noticed that the images which i used inside the Edge Animate for animations are loading two times one with "edge.3.0.0.min.js:240"  and  "jquery-2.0.3.min.js:5",  i hope this is a bug.  how can i a avoided this multiple loading of same image files.

    Hi, canpark-
    We do not have a Korean localized version of Edge Animate, sorry!
    -Elaine

  • Cannot import adobe templates into Adobe Edge Animate

    I downloaded a few example files provided online by adobe for Edge Animate. 
    Went into the program selected "Create from Template" 
    Selected the .antmpl file
    selected the file preview in the window and clicked open...
    Nothing.. it doesn't do anything, it takes me right back to my blank document.  I've tried with multiple files with the same results.  My CC app is uptodate.  Any ideas?

    On the left side. Before you can create from a template you need to have at least one template. You can download templates here:
    https://helpx.adobe.com/edge-animate/topics.html

  • Download templates for edge animate any help please ?

    Download templates for edge animate any help please ?

    If you are talking about the templates that Adobe offers, you can find them here:
    http://www.adobe.com/devnet/edge-animate/articles/showcase-sample-files.html
    Otherwise, a search on web for edge animate templates will probably help.

  • Edge Animate Tab viewer template doesn't open

    I downloaded the Edge Animate tab viewer template  and all that was included was a .antmpl file that I can't open?
    I woudl really like to use this template.

    Hi, Sonia-
    You'll need to import the template first:
    Launch Animate
    Select File > Create from Template
    In the Templates dialog, select the Import button in the lower left hand corner
    In the file explorer dialog, navigate to your *.antmpl file
    Your template should show up in your template explorer now
    Select the template and click on "Open"
    That should get you started!
    -Elaine

  • 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

  • The last 'An' update has bug; An error occurred. Please save your work and restart Edge Animate

    After the last Edge Animate I started to get this error:  An error occurred. Please save your work and restart Edge Animate.  Anyone else having this issue with version 1.5.0.217.23270
    I'm using Windows 7 Profession 64 bit.
    24 gb ram
    At the time of the error on timeline, around 21 second frame, only 4.82 gb of ram was being used and CPU was using less that 10% processing. No spikes. 

    Elaine,
    On the webserver its running fine for being partially completed.  http://dirtyhumanoids.com/publish/web/TonalpohualliAndTheEyeOfProvidence.html
    It's crashing within Animate on all 3 copies.
    Copy 1 was created and saved before last upgrade (no . 
    Copy 2 of this file was created before the update and saved a few times before and after the upgrade. 
    Copy 3, is just trying to figure out what went wrong with copy 2.  BTW, Copy 1 is also having the same issue. 
    The only thing I can think of that I might have messed up on was creating a picture into a symbol much late in the project.
    I wish I knew how to video record my desktop so you could analysis my Edge Animate.
    Regards,
    Matt

  • BUG - Edge animate 2014.1.1 (February) pivot doesn't remain in browser

    When animating in Edge Animate I manually position the "anchor point" with the "Transform Tool (q)" or the origin percentages in the Transform panel. I can animate my rotations around this pivot and in Edge this looks correct. But when I publish the pivot is reset to the original center of the svg asset not where I set it. Thank you,

    Hi Jody,
    I tried reproducing this issue at my end however unable to do so.
    Please provide any sample file.
    Please check my test file below.
    Dropbox - index
    Regards,
    Devendra

  • Edge Animate and IE9 Bug

    Hello,
    I have a pretty cool game that I have created for a client using Adobe Edge Animate CC (version:3.0.0.322.27519). This game works great on Firefox and Chrome and IE10. However, This game does not work on IE9. Only a white screen appears.I have confirmed on three separate computers. I don't see any errors, just a white screen. I called adobe help and they told me the only thing that I could do is post a message on here and just wait. Any help would be appreciated.
    http://course-demo.elearningbrothers.com/iowa/game2/
    Thanks!
    All Three Computers using Win 7
    IE9 Version (All three computers)
    9.0.8112.16421 Update Version:9.0.24 (KB2909921)

    Unfortunately the client's IT department doesn't allow upgrading beyond IE9.
    Everything that I have read mentions that Adobe Edge Animate in IE9 works great. The original version of this game before I customized it works great ( http://library.elearningtemplates.com/product/17929-Board-Game-Adobe-Edge-Animate-Game/ ). I did as you asked and opened with F12 and openned the console. As you can see in the picture there are no errors.

  • BUG - Edge animate 2014.1 (October) can't open old files (from 2014 version)

    In this new version I can’t open old files anymore…
    When I open file that created in previous version 92014, for example) new Edge - 2014.1 -  want to upgrade the file, but then I receive “an error occurred while upgrading file”…
    And there is no way to download old version and to change old files if i need some changes in text, for example...
    here is the print-screen:
    http://i.imgur.com/xKPKQ6i.png

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

  • Edge Animate Pre-loader Safari Bug (Mac osx 10.10.1)

    Published to web edge animate composition gets stuck on pre-loader page when composition url is refreshed. Has anyone else experienced this?

    Hello animationtest400 . I have the same problem as you can see in this post: https://forums.adobe.com/thread/1648309 I encourage you to disclose your problem in that post so that we can gather our ideas together and solve it quickly.

  • Losing the will to live... is the Edge animate software full of bugs? Non-Responsive %, px, auto... all fail to do much at all.

    I've now spent a good 20 hours racking my head and the various settings... and I'm nearly ready to look at Googles HTML5 and web software offerings, which is frustrating since I pay for the Adobe Creative Suite already.
    What would I like to do: (I've simplified my overall aim)
    Have a non-responve banner, 1200 x 100.
    When I scale down my browser window I want one item (i.e. a box) to stay in the centre, even when the rest of the scene has been cut off. (*it does not need to scale)
    - I've tried the presets for responsive layout which do nothing when tested in the browser (I'm using Safari, I'll test in others once it works...).
    - The scene is set to be centred, which works. The whole scene is centred in the browser.
    I've tried setting the Top, Bottom CSS controllers for the object to % which I believe is correct, but still no success...
    I've now tried every other variable I can think of with out success using the some what confusing mixture of '%', 'px' and 'auto' settings.
    I've also tried the responsive layout presets for a square drawn directly inside of Edge Animate, and an image dropped into the scene, which has more preset options (all of which seem to have little to not effect whether my scene is responsive or not).
    Can someone please put me out of my misery and either tell me I'm missing the obvious problem. Or tell me the software is indeed broken at the moment and doesn't like Apple Safari.
    And incase your wondering what I want to do... I'm trying to emulate the setup this website has at the top of their website. Where the embedded vimeo player (I've succeeded in doing that in Edge animate... yey) remains centred whilst a foreground layer and background layer change as the browser window is scaled... (they simply get cut off by the browser window scaling, aligned to the left, centre or right they're not responsive...)
    http://www.kasradesign.com/
    Many thanks for any help
    Regards
    Jon

    And the saga rolls on.  BT called me this morning with another update.  Openreach still cannot find my address or my BT phone number / line.  It will take another 4 working days for Openreach to contact BT with an update.  The BT department who are calling me are the 'fast track' team in Blackburn who I'm afraid to say are anything but.  He seemed completely indifferent and thought this was completely acceptable.  When I challenged him for an explantion of why more delays, he tried to hind behind the "it is not our fault, it is Openreach" excuse.  They sent an email to Openreach last Wednesday 25 July, they received an automated reply on Friday night so too late to do anything until today, and the reply that came back is there is a fault with my address / phone number that they need to fix, which is what I was told last week, and apparently BT cannot phone Openreach, it all has to be done by email.  Unbelievable!  So the clock starts again from today and the waiting game begins again. 

  • Edge 3.0 auto-changing project - bug?

    Hi, I'm having an issue in which Edge Animate 3.0 is changing my projects, either on opening, closing or previewing, without any other action on my part. I haven't experienced it in previous versions
    For example, I may be working on my project, save and then and preview it in my browser of choice. The project previews perfectly and if I publish to web, the project also works as expected. However, at this point Edge Animate determines that the project has been changed, as indicated by the asterisk alongside the filename and a "Save changes?" dialog when closing.
    At other times when I open the files, I get "An error occurred. Please save your work and restart Edge Animate".
    On other occasions, if I close the file (without saving), when I reopen it the Stage element is no longer available in the Elements panel and a new Composition class has been generated which differs from the original. Because the Stage element no longer exists, overflow hidden no longer works. At this point its easier to revert to an archived version and rebuild from there.
    It is a fairly complex project, but it all works in the browser, no errors reported anywhere other than in Edge, js syntax appears to be OK. Is this a bug? Even if there is something wrong with the files, I wouldn't expect the application to change the files without my permission. Has anyone else experienced this problem and any idea what's causing it? Its getting quite frustrating now as its becoming diffcult if not impossible to use Edge to go back and make any changes.

    If you download the zip file from this location and unzip ,you will find all the files in the below screen shot.It does contain the min map file.
    http://animate.adobe.com/runtime/3.0.0/EdgeAnimateRuntime3.0.0.zip

Maybe you are looking for

  • Error when adding two entries in A/P Invoice.

    Dear all, I get the error below whenever i add TWO entries in A/P Invoice . [Microsoft][SQL Server Native Client 10.0][SQL Server]Subquery returned more than 1 value. This is not permitted when the subquery follows =, !=, <, <= , >, >= or when the su

  • Playlists songs not the same in iTunes-iPod Touch (most often played)

    I have created some smart playlists based on "most often played" or "most recently played", and the thing is than on iTunes, the playlists' content is correct but when I open the playlist on the iPod Touch, the songs that show up are not the ones sup

  • Changing the Decimal places for Percentage in cost distribution in SC

    Hi Gurus, Is it possible to change the number decimal places for the Percentage field in cost Assignment tab in Shopping cart in cost distribution option? The user wants 3 decimal places, currently we can enter only 2 decimal places. I have gone thro

  • Changes in TR from 4.7 to ECC 6.0

    Hi All, Our client have just upgraded from 4.7 to ECC 6.0 and when processing securities, according to them they didn't need to go through TBB1 before doing TPM10 back in 4.7. In summary this is their process: 4.7 (OLD) --> FWZZ (Create contract mast

  • Premiere Elements 10 crashes on disc templates

    I am copying Jonty's message. I am having exactly the same problem. I feel it has something to do with the latest OS X (Mavericks). Please get a fix out asap as I am sure there are a lot of us hurting right now. I have one other product (not Adobe) a