Edge Animate - Animation durch scrolling steuern - Digital Publishing

Hallo!
Brauche dringend Hilfe..
Bin gerade dabei ein Magazin mit DPS digital zu publizieren. Hab bei meiner Recherche viele Magazine entdeckt die einen Effekt haben,
in der sich die Animation durch das scrollen mit dem Finger steuern lässt. D.h. der User kann interaktiv steuern.
(Beispielsweise in folgenden Apps: Victoria Secret, Porsche Christopherus, BMW Magazin).
Also eine Animation zu erstellen in Edge Animate ist nicht das Problem, nur welchen Code muss ich dann an welcher Stelle einfügen um diesen Effekt zu erzielen?
Bitte um Hilfe!

Mik, let me ask around and find out who built this. It may take a few days but I'll see what I can find out.
Neil

Similar Messages

  • 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

  • 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

  • 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">

  • 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.

  • 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

  • Edge Animate Animation Flickering in IE 11 only

    Im using Adobe Edge Animate CC 2014.0.1. I've created a basic keyframe 20 or so png animation with one sound effect in it. All on the main timeline. When published both locally and and on our staging server the animation flickers but only in IE 11. IE 10 is fine as well as Firefox, Chrome and Safari. There isn't any code added it's strictly a series of images on the the timeline spaced out for timing and one sound effect plays at a certain point. I've even removed the sound effect but that doesn't change the flickering. Any help would be greatly appreciated!

    nope. no fade. i make the images go from 0% opacity to 100% to hide the previous image and make the current image visible.

  • Edge Animate animations appearing on top of everything in Captivate 8 project

    When I create an animation in Adobe Edge Animate, and then insert that animation into my Captivate 8 project, it appears on top of everything: TOC, glossary, interactions, etc. I've clearly reordered the objects in the timeline so that the OAM file will appear on the bottom, but still when I publish the project, the animation appears on top of everything. Why? Is this a known bug in Captivate 8? Maybe I'm not doing something right Animate, but this is extremely irritating. How can I fix this?

    Hi bs234906
    I am having the exact same issue so not sure if it something we're doing wrong or it is a bug? I think it may have something to do with the <div>'s inside of Edge but not sure? Would love to find out the answer.

  • Problems with Edge Animate Animations

    Hello There
    I am Using CP8 with responsive projects. It appears that no matter what if an edge animate file is imported into a slide it lays on top of everything else and trying to put a caption or an image or anything else on top of it will not work (it shows behind it). also I have a custom pause play button on the slide and it does not work on any slide containing an edge animation. Anyone else found these problems and maybe a solution?

    This has always been the case for any animation in CP to be on top. Please
    file a feature request.  Same for communication between OAM and CP, none
    for the moment. You van have transparent background and pause/play button
    in OAM, could be a workaround.

  • Embed Edge Animate animation into a Powerpoint presentation?

    Is there a way to embed the animation I created into a Powerpoint presentation. My client wants a rather detailed animation and I know I can do it in Edge Animate, but how can they use it in their presentation? Is there any workaround for this? All help is really appreciated.

    I don't think powerpoint supports html.
    But you can insert video in slides.
    So, better you create Edge Animate composition and preview in browser in fullscreen mode and use any screen capture software that will create a video out of it.
    Then insert this video in the slides to have the animation.
    hope it helps,
    Vivekuma

  • Edge Animate Program missing scroll bars

    Hello!
    I've been having a issue with some Edge files for awhile now, and I havn't been able to fix it.
    We use Edge for animations in apps, so we use over a dozen indivusal files for the diffrent pages in the app.  The issue I'm having is that a few of these files, when I open up the Edge program, don't have scroll bars.  I can still move around dragging the mouse around, but some screens are full of objects so it's not always practical.  This makes it very awkward when I need to zoom in and have to deal with the aniamtion timeline.
    We started building many of these pages early last year, but I'm not sure what version of the beta we were using.   So each time a new verison came out, we updated those files to the new ones.  I always assumed that some early bug in the program, mixed in with the complexity of some of these files and constantly updating to new verisons, accidently broke something.
    Is there a way to get these scroll bars back?  I searched all over the options, but no luck,
    Thanks!

    Hi, LFrog-
    If you could send us the files, we can take a look at why you're not getting scrollbars.  If you want to send them as a link in a personal message, that would be fine as well.
    Thanks,
    -Elaine

  • 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...

  • Edge animate animation does not start the first time I load the page. But does the second time.

    Hi all,
    I am having trouble with an edge animation on a web page. It doesn't load the first time the page is loaded, but loads fine the second time or any time after that. To test I am clearing my cache, then reloading the page. It seams to work in IE the first time but not Firefox or chrome.
    I have a temporary copy of the page here ... http://emiwip.com/monique-mathieu/landing-page-wip.html
    Can anyone tell me what is going on?
    Thanks.
    Dan

    I found the answer here ... Publishing no longer works in latest Edge
    It appears that you need to load the latest jQuery in the head of the pag. That fixes it.
    Dan

  • Edge Animate-Animation in HTML (WIX+Dropbox)

    Hello, my friends,
    I really hope, someone can understand / help me with my problem
    So, I created an animation for a landingpage on my website(built with wix.com).
    My problem is, that wix.com has got no folder-organisation or upload-function
    and my Edge animation has *.html, *jscript and *.jpeg/*.png files.
    In a Wix.com-forum, I've found a response, that said, that I should use external storage-websites for my files.
    I did so and put these files in my dropbox/public folder, copied the open links in the *.html file like this:
    <!DOCTYPE html>
    <html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
        <meta http-equiv="X-UA-Compatible" content="IE=Edge"/>
        <title>Ani1</title>
    <!--Adobe Edge Runtime-->
        <script type="text/javascript" charset="utf-8"
    src="https://dl.dropboxusercontent.com/u/65147807/Wallpaper
    %20Animation1_edgePreload.js"></script>
    <script type="text/javascript" charset="utf-8"
    src="https://dl.dropboxusercontent.com/u/65147807/Wallpaper
    %20Animation1_edgeActions.js"></script>
    <script type="text/javascript" charset="utf-8"
    src="https://dl.dropboxusercontent.com/u/65147807/Wallpaper
    %20Animation1_edge.js"></script>
        <style>
            .edgeLoad-EDGE-88355712 { visibility:hidden; }
        </style>
    <!--Adobe Edge Runtime End-->
    </head>
    <body style="margin:0;padding:0;">
        <div id="Stage" class="EDGE-88355712">
            <div id="Stage_webwall-surf3" class="edgeLoad-EDGE-88355712"
    src="https://dl.dropboxusercontent.com/u/65147807/images/webwall-surf3.jpg">
    </div>
            <div id="Stage_wavebreakin" class="edgeLoad-EDGE-88355712"
    src="https://dl.dropboxusercontent.com/u/65147807/images/wavebreakin.png">
    </div>
            <div id="Stage_branding" class="edgeLoad-EDGE-88355712"
    src="https://dl.dropboxusercontent.com/u/65147807/images/branding.png">
    </div>
            <div id="Stage_and" class="edgeLoad-EDGE-88355712"
    src="https://dl.dropboxusercontent.com/u/65147807/images/and.png">
    </div>
            <div id="Stage_interactive2" class="edgeLoad-EDGE-88355712"
    src="https://dl.dropboxusercontent.com/u/65147807/images/interactive.png">
    </div>
            <div id="Stage_design" class="edgeLoad-EDGE-88355712"
    src="https://dl.dropboxusercontent.com/u/65147807/images/design.png">
    </div>
        </div>
    </body>
    </html>
    But, when I copy the code into my wix-page-html-app (for not-wix-user: a small field to insert html-code),
    nothing happens...
    Can anyone try to help me with this problem ?
    I'm really better in graphic-solutions - I think, the coding hates me
    Greetings, Dominik

    First of all.
    try not to use spacebar in the titles.
    (title now is spacebar animation1)
    second with the js files again. the links do not work.
    link now is
    https://dl.dropboxusercontent.com/u/65147807/Wallpaper%20Animation1_edgeActions.js
    needs to be?
    https://dl.dropboxusercontent.com/u/65147807/Wallpaper/%20Animation1_edgeActions.js
    but that one doesnt work either
    so what is happening now with the animation. the animation cant find the javascript files
    - Rob

  • Trigger an Adobe Edge Animate animation when entering the screen

    Playing an animation when entering screen would be nice...

    Hello Carpe,
    You can insert an animation file in the start page of a site. More details about integrating Edge contents in Muse here:
    http://www.adobekb.com/inserting_edge_content.html
    http://www.youtube.com/watch?v=fps_oeMmywA
    Hope this helps.
    Cheers
    Parikshit

Maybe you are looking for

  • Flash Player 10 installed but not woking

    I have spent hours and hours trying to solve this issue on my own from all the adobe forums and forums on other websites about this issue. Still can't get FP to work and I need it working ASAP for my on-line college classes. Getting very desperate an

  • G4 will not boot up after installing latest update

    Just installed latest OS 10 update (10.4.8 or 9?) Mac will not boot up. The ring sounds on start up and the apple shows on video but it never gets to the rotating circle. It has been over an hour. I have restarted twice to no avail. I have also disco

  • My G4 runs very slowly, and can take 5-10 min. to process a simple command. why?

    Anyone know why a PowerBook G4 (w/ Leopard) operates super slowly? Went to see "Genius" at Apple store and they said they couldn't troubleshoot a "vintage" computer (5 years old). Funny, cause when I bought it for $3k they said it would be the last c

  • Calling javascript from swf (which is source file of frame) - problems with OPERA

    hey, right now i have the swf-file as the source file for a frame, because i want the swf-width depend on the browser-size. it looks kinda like this: <frameset cols="10,*,10"> <frame src="border.htm" name="leftFrame"> <frame src="file.swf" name="main

  • ECC 6.0 & Portal Implementation

    Hi, Is it possible to do all the R/3 transactions through web via SAP Portal Kindly reply.. Thanks. Edited by: Jayanta Deb on Nov 4, 2009 8:44 AM