AttachMovie problem animating

I have a bit of an odd problem with attachMovie.
In my library I have several movies all build up in pretty much the same way.
They are a couple of frames long with a different image on each frame.
They have a color layer at 70% as sort of an overlay.
And on top of that a layer with a movieclip to serve as a mask for the overlay.
On the stage I have a movieclip named holder to attach them to and a couple of buttons to do that.
The buttons execute the following function:
resetVideo = function (idname, flvname) {
    my_video.clear();
    navholder.attachMovie(idname,"navigatie",1);
    my_video.attachVideo(stream_ns);
    stream_ns.play("FLV/"+flvname+".flv");
    trace("check")
This loads a movie into the my_video object and attaches one of the movieclips to the navholder.
So far everything works fine. The video loads and the movieclips get replaced every time.
But now comes the weird part.
I'm animating the movieclips based on data that is received from cuepoints in the loaded movie and the script for that looks like this:
stream_ns.onCuePoint = function(infoObject:Object) {
    if (infoObject.parameters != undefined)
        navholder.navigatie.gotoAndStop(infoObject.parameters.navs_Slider);
        navholder.navigatie.navmask._xscale =navholder.navigatie.navmask._yscale=parseFloat(infoObject.parameters.maskscale_Slider)*n avscale;
        navholder.navigatie.navmask._x = parseFloat(infoObject.parameters.maskposx_Slider)*navscale;
        navholder.navigatie.navmask._y = parseFloat(infoObject.parameters.maskposy_Slider)*navscale;
The thing that happens now is that the gotoAndStop part works fine and the clip goes nicely through the frames but the animation of the mask doesn't work at all. I've checked the naming several times and when I place the clip directly on the stage the mask animation works fine. So somehow when I use the attachMovie command the link to the navmask instance gets either lost or it's not possible to animate it at all in an attached movieclip.
If anyone could shed some light on this it would be highly appriciated.
Grtz,
TaoHunter

Sigh... Problem solved:
For the navscale in the formula
navholder.navigatie.navmask._x = parseFloat(infoObject.parameters.maskposx_Slider)*navscale;
I used the width of the navigatie object and I hadn't changed that one to navholder.navigatie._width so therefore the values all came back as NaN :/

Similar Messages

  • Problem: Animation publishing incorrectly, but working in Cp preview.

    Hi,
    I created an animation in Flash CS5 with some code in it (see below for the code). What the code does is it allows the user to play/pause the movie by pressing the spacebar. It allows that keyboard shortcut to be used on all slides except certain ones (in this case: slides 9, 13, and 15). I just need to drop this animation onto the first slide of my Cp project, and the function works throughout the rest of the project. When I hit F4 to preview, it works great, but when I publish it, it has problems: It won't work, for starters, but also, when I go to a slide, press the spacebar, and then go back to the previous slide, the play/pause button down on the playbar shows the 'play' icon (meaning the video should be paused), but the video continues to play. The play/pause button in the playbar and the keyboard shortcut do nothing. Keep in mind that it works perfectly when I 'F4' it, just not when I publish it and open the SWF. Usually when stuff works in Cp but not when published, its something in the publish settings that's the problem, but I can't find anything in there that would help. Plus, F4ing the project within Cp should factor in the publish settings. Just to be clear, all I need help with is making the published file work exactly like the F4 preview. The code is below, and thanks to anyone that can help.
    // Keyboard Shortcut: Play/Pause (Space)
    stage.addEventListener(KeyboardEvent.KEY_DOWN, keypressPause);
    function keypressPause(event:KeyboardEvent):void
        switch(event.keyCode)
                case Keyboard.SPACE :
                var myRoot:MovieClip = MovieClip(root);
                var mainmov:MovieClip = MovieClip(myRoot.parent.root);
                if (mainmov.cpInfoCurrentSlide != 9 &&
                    mainmov.cpInfoCurrentSlide != 13 &&
                    mainmov.cpInfoCurrentSlide != 15)
                        if (mainmov.rdcmndPause == 1)
                            {mainmov.rdcmndResume = 1;}
                            else
                            {mainmov.rdcmndPause = 1;}
                        break;

    The issue is the way the code is obtaining Captivate's main time line (mainmov).  When you F4 the movie, it's being loaded differently than when you F12 web preview... thus the main time line is obtained differently.  Here's a way to search for the main time line and the rest of the code:
    import flash.display.DisplayObject;
    import flash.display.DisplayObjectContainer;
    import flash.utils.describeType;
    import flash.display.MovieClip;
    var mainmov:MovieClip = findMainMovie();
    // Keyboard Shortcut: Play/Pause (Space)
    stage.addEventListener(KeyboardEvent.KEY_DOWN, keypressPause);
    function keypressPause(event:KeyboardEvent):void
        switch(event.keyCode)
                        case Keyboard.SPACE :
                        if (mainmov.cpInfoCurrentSlide != 9 &&
                                  mainmov.cpInfoCurrentSlide != 13 &&
                                  mainmov.cpInfoCurrentSlide != 15){
                                            if (mainmov.rdcmndPause == 1){
                                                      mainmov.rdcmndPause = 0;
                                                      mainmov.rdcmndResume = 1;
                                            }else{
                                                      mainmov.rdcmndPause = 1;
                                                      mainmov.rdcmndResume = 0;
                        break;
    //Returns the Captivate MainTimeLine
    function findMainMovie():MovieClip
              var cpMovie:MovieClip;
              //cpMovie = parent.parent.parent;
              cpMovie = findParentByType(this.parent, "CaptivateMainTimeline") as MovieClip;
              return cpMovie;
    //Iteratively finds a parent object by type
    function findParentByType(source:DisplayObject, parentType:String):DisplayObjectContainer {
              var currentTarget:DisplayObjectContainer = source.parent;
              while (currentTarget != null) {
                        if (describeType(currentTarget)[email protected](parentType) >= 0) return currentTarget;
                        currentTarget = currentTarget.parent;
              return null; // We're at the root
    The code to search for the main time line was gleaned from CpGears written by Whyves
    I'd encourage you to think about making this into a Captivate static widget using the CpGears framework or the WidgetFactory framework by Tristan Ward.  Either framework will make your life much easier.
    I usually set the two variables in tandem: rdcmndPause and rdcmndResume so that all variables stay in sync.
    When I dropped the animation into the Cp project, I had to set it to display for "rest of project" in order for it to work across all slides.
    Report back and let us know how it goes.
    Jim Leichliter

  • Problem animating 3D position change in Photoshop Extended CS6

    I am trying to animate  a simple 3D position change in Photoshop Extended CS6 (OS 10.7.4)
    Here's what I do:
    1. I move my object to its starting position.
    2. I move the Current Time Indicator ("playhead")  to the time I want the position change to start.
    3. I click the Time‑Vary stopwatch icon on the Position layer of the timeline, and a keyframe is automatically created, no problem.
    4. I move the playhead away from the initial keyframe to the time I want the position change to end.
    5. I move my object to its ending position.
    At this point, I expect to see the second keyframe be automatically created, as advertised, BUT it is not. What's more, if i move the playhead to "scrub" through the animation, I see no movement. What's happened is the position I set for Keyframe 1 has changed to the position I just moved the object to, which I intended to be Keyframe 2.
    Any advice greatly appreciated! 
    Thanks!
    --Carol Gunn

    Same problem here. I cant seem to get any predictable behaviour from the 3d camera in terms of adding keyframes. Other non-3d layers dont seem to be affected.

  • Very Bizarre (to me, anyway) problem animating particle emitter movement

    I'm fairly new to Motion, and I'm sure this falls under the "missing a piece of info" category, but for the life of me, I can't figure this one out.
    I've added a simple particle emitter to a video. It's called "Pop Star," found in the "Sparkles" subfolder of the particle emitters folder in the library.
    I want to animate some basic movement of the entire particle emitter. I basically just want it to move from about the middle of the screen to the upper right corner of the screen while doing its particle emitter magic.
    I have placed the emitter in a group by itself. When I choose the group and drag, I have no problem whatsoever moving the emitter wherever I want. HOWEVER, when I try to RECORD the movement, or when I try to set movement keyframes the same way I do when animating any other content, the emitter will no longer move at all. Instead, when I click the group and drag, a red control point appears and I end up dragging that. When I play the animation back, the symbol representing the anchor point is moving along the line from the first control point to the one I created, but the particle emitter itself does not move at all.
    I've tried this on two separate computers, so I'm sure it's user error - I just don't understand what's happening...or NOT happening.
    Any advice/ideas/suggestions appreciated. Thanks in advance...

    Thanks for the response. So the location parameter is unable to be changed in certain emitters like this one? I chose another emitter at random, "Diesel Fire" I think, and I WAS able to animate the movement of that emitter the way I was trying to animate the movement of the "Pop Star" emitter. I have to admit, I'm still having a hard time understanding why that is.
    I suppose a workaround here would be to export the "Pop Star" emitter separately and then bring it back in as a .mov file?
    Message was edited by: Diss

  • Problems Animating for NTSC DV video

    I'm having a huge problem creating animations for a project in Final Cut Pro. It's a short educational video which is set at 720 x 480 Pixel Aspect Ratio with 3:2 Anamorphic Widescreen setting.  I've got a still image that I've added a glow effect to in Adobe After Effects CS3. I used the NTSC DV Preset at 720 x 480. When I import (Quicktime File with Animation setting including Alpha - Millions of Colors + ) into Final Cut Pro the image is aliased badly. I can only assume that After Effects or even Final Cut is changing the pixel aspect ratio or perhaps I have the wrong aspect ratio. I'm not sure as I thought I matched them up properly. I even tried taking basic text in After Effects. Exporting and importing into Final Cut but still I get horrible aliasing. I've even tried the NTSC DV Widescreen Preset, NTSC Preset, creating the comp in a 1280 x 720 NTSC comp and then dropping it into a regular NTSC DV comp. There has to be some integral knowledge I'm missing here. Thanks for any help you guys can give. I've tried googling the answer to this but all I get is an explanation of differen't aspect ratios as I'm not sure how to phrase the problem I'm having.

    It turns out that I made a few mistakes.   The footage is 1280 x 720 at 29.97 FPS. The animations I made were 720 x 480.  I didn't realize this until I put them on my timeline and notice the wireframe outline for the animation was smaller than the footage. Although it is kinda weird as when I check the footage properties in Final Cut it shows that the size is 720 x 480. Strange. And the biggest mistake was that the preview window was not displaying quality due to system limitations. After rendering the animation and resulting composite looks a lot better. Although I the edges are not as crisp as I wish they were it is passable for now.
    Here's the link to the video. I think it looks okay although there's obviously an interlacing issue.
    http://www.youtube.com/watch?v=oqw5nkIvHe0&feature=channel_page

  • AttachMovie problem

    I have a main clip with a gallery-style movie clip in it that has recently been required to be updated with new content (basically means adding new galleries). On the main timeline there is a whole whack of code controlling the functionality of the original gallery. I figured that I'd use attachMovie for the new galleries and use the same instance names to save re-writing all the code. The new galleries reside in their own folders in the library and have their linkage set as Project1 throught Project7. attachMovie is working but now none of the nested clips within the attached clip work that contain onRollover/onRollOut/onPress events. I've traced their relevent instance names and they are there within the attached clip.
    Here's the idea:
    ProjectsMenu.Project1.onPress = function(){
        removeMovieClip(PicsAll);
        //PicsAll is the original gallery on stage at depth -16383
        attachMovie("Project1", "PicsAll", -16383, {_x:474, _y:172});
    Also, I realise removeMovieClip(PicsAll) is probably redundant since I'm attaching the new clip at the same depth as original.

    Hi Kglad,
    No mouse handlers assigned directly to PicsAll however I am assigning mouse handlers to nested clips. For example:
    PicsAll.PicsClip.MiniButsClip.Mini1Clip.onRollOver = function  () {
    All of these are now dead in the water and yet are tracable.

  • Problems animating combined move/resize transition

    I'm trying to create an animated transition, and have run
    into some strange issues. In the base state I have a bunch of
    buttons in a Tile component. In a second state I decrease the
    tileHeight and tileWidth values, and the width of the Tile itself
    so it's only one column. That in itself works fine.
    I'm then creating a transition for the state change that
    animates move and resize operations on the buttons that the changes
    to the Tile cause. If I animate *only* the move or resize, it works
    great. If I animate the two together, only the resize animates,
    while the move doesn't.
    Any idea what's going on or - more importantly - how to get
    around it? Code attached.

    What do you mean by auto-layout ?
    Well, Indead I use :
    <code>
    <mx:Canvas xmlns:mx="http://www.adobe.com/2006/mxml" width="1000" height="1314"
    creationComplete="parcoursData.send()" >
    </code>
    What I have to put instead of this Canvas ?

  • Problems animating OSCILLATE behaviour

    Hola!
    I'm try to make the oscillation of an object's rotation decay away as it stops moving.
    Tried keyframing Amplitude and Speed down to zero with nice curve but it seems to have no impact at all or only occur at the end of the behaviour slug (rather than with the keyframes).
    Not used this behaviour/approach before and wonder if I'm missing the obvious...
    Thank you all in advance for your great brain power.
    All the best
    Tall Jim
    Motion 4 / 10.6.6 / Beefy enough MacPro

    No, that's the correct way to do it. I'm not sure why you're having trouble. It works fine for me. As an alternative, you could right-click the Amplitude of the Oscillate behavior and apply a Logarithmic behavior. Trim it to the same length as the Oscillate behavior and then in the End Value place the negative value of your Amplitude. In other words, if your amplitude is set to 50, then set the End Value of the Logarithmic behavior to -50.
    But keyframing should work. Can you post a copy of the project sans media?
    Andy

  • Simple (?) paths problem

    I have an image gallery consisting of thumbnail buttons,
    which load the external fade in/out files. When the buttons are on
    the main timeline everything works perfectly, but I wanted them to
    be scrollable so I placed them in a MC(main) and now the externals
    won’t load – the scrolling and button actions are fine.
    There are 2 separate container movie clips for the content to
    load into and there’s also a preloader.
    Here’s the buttonAS:
    var bottomcontainer = container1_mc;
    // load image 1 loads the image using startPreload
    image1_btn.onPress = function(){
    startPreload("load/spot.jpg");
    function startPreload(url){
    attachMovie("preloader anim", "preloader_mc", 500, {_x:740,
    _y:454});
    bottomcontainer._alpha = 0;
    bottomcontainer.contents_mc.loadMovie(url);
    bottomcontainer.onEnterFrame = preloadContents;
    I built the site in small chunks and didn’t expect to
    encounter further problems during final assembly; I’m now
    completely baffled! Any suggestions as to what’s wrong?

    Unfortunately, no joy. I tried preloadcontents with and
    without _parent.
    To clarify: the container has a separate script, but I
    didn’t think this would be causing the problem:
    // this is the event handler for each container's
    // onPreloaderComplete event - a custom event invoked
    // in the preloadContents function
    function preloadComplete(){
    // swap the depths of the containers putting the
    // one who just got new content at the top
    container1_mc.swapDepths(container2_mc);
    // check the depths of the 2 containers and assign
    // bottomcontainer to the new lowest container
    if (container1_mc.getDepth() < container2_mc.getDepth()){
    bottomcontainer = container1_mc;
    }else{
    bottomcontainer = container2_mc;
    // remove the preloader animation
    preloader_mc.removeMovieClip();
    // set the onEnterFrame event to fade in this container
    this.onEnterFrame = fadeIn;
    // this function fades in a container
    // once its content has loaded
    // it is to be used with onEnterFrame
    function fadeIn(){
    // if the alpha is less than 100, fade in
    if (this._alpha < 100){
    // increase using a rate of 5
    this._alpha += 5;
    }else{
    // delete the onEnterFrame event handler
    // running this fadeIn method
    delete this.onEnterFrame;
    // set onPreloaderComplete functions (event handlers)
    // for each container to the preloadComplete function
    // when a container is completely loaded, preloadContents
    // will call onPreloaderComplete for the container which
    // will run preloadComplete because of these definitions
    container1_mc.onPreloaderComplete = preloadComplete;
    container2_mc.onPreloaderComplete = preloadComplete;

  • Upload an animated gif to a servlet?

    Has anyone got any experiences of uploading "animated gifs" from a html-form to a server running apache webserver with j2ee? Im using struts framework, but I dont think thats got anything to do with the problem.

    animated or not, a file is a file, you just upload it:
    You can use MultiPartRequest (I think that's what it's called) from O'Reilly, or you can implement yourself with ObjectOutputStream, very easy, lots of tutorials.

  • Motion tweening a frame-by-frame animation

    Hello,
    I am an experienced animator who is new to using Flash. I need to know how to add a motion tween to an animation that I already made frame-by-frame. The animation will be of a fish blinking as it swims across the stage. I already created the frame animation of the fish blinking, but now I want to motion tween the whole animation (not just one frame) across the stage. However, I cannot figure out how to do this. Is there a way to create a simple animation that uses frame-by-frame animation and motion tweens simultaneously?

    Unfortunately, Adobe let (character) animators down by not developing any of Flash's animation tools since v8 - quite the contrary, the latest incarnation, CC, removed a lot of (quite essential) animation functionality. No more bones (yikes!) or motion curves control.
    A shame, because once Flash was the industry standard app for tv show animation. Not so anymore, though: Adobe dropped the ball in that regard, and mostly focuses on web/mobile apps and games development currently.
    There are two options:
    1) use animator-oriented alternatives like Toonboom and/or Anime Studio Pro (both of which export to flash movies);
    2) download a bunch of plugins, and extend Flash so that its workflow becomes more animator friendly.
    If you are just starting out, I would probably advise you to have at least a cursory look at the alternatives. However, having said all that, Flash can still be an enjoyable environment to animate in, IF you extend it a bit. Unfortunately some workflow may not be CC friendly anymore at this point due to the missing (almost essential) functionality compared to CS6 - you may prefer to work in CS6, depending.
    These will help you extend Flash to become a bit more animator friendly:
    http://cloudkid.com/tools
    http://flash-powertools.com/
    For example, Keyframe Caddy would solve your problem animating an eye by keyframing it in a symbol.
    The guys at flash-powertools created a character animation workflow you may like, which addresses the deficiences of Flash for professional level character animation. They have some nice templates and example character files for you to examine.
    A word of warning: character animation in Flash can become somewhat technical and daunting - in that case a tool like Anime Studio with excellent and easy to use bone tools and proper real(!) animation curves can be truly helpful. These can then be imported into Flash, and edited. Also, both AS and TB have a "real" virtual 3d camera of the scene that makes it easy to create parallax scrolling backgrounds and zoom in/out panning effects.
    Anyway, this is how you would do it in Flash:
    1) install Keyframe Caddy
    2) draw your fish in a cutout-fashion (seperate eye).
    3) convert all the fish elements to a graphic symbol (F8)
    4) double-click the fish symbol
    5) select the eye, and convert to a graphic symbol again
    6) add different drawings for the eye blinking
    7) return to the main stage
    Now you can start animating the fish:
    1) first animate the entire character moving
    2) then after you finish the overall movement, move to the frame you wish to change the eye
    3) double-click the fish character, and select the eye
    4) in KeyFrame Caddy click "load thumbnails". This should load up all the different frames (drawings/states) for that graphic symbol and display them all in the KeyFrame Caddy window
    5) now simply click on the required eye state, and KeyFrame Caddy will automatically create a keyframe for that state.
    6) move the timeline scrubber to the next frame you wish to keyframe eye movement
    7) click on the required eye state in the KeyFrame Caddy window.
    ...and so on! You may have to switch between the main scene and the fish symbol
    Make certain the lengths of both timelines are identical, otherwise the eye animation will start to repeat if it is shorter than the main timeline. Inversely, if the main timeline is shorter than the eye animation, the eye animation will obviously not be able to run completely through.
    One more thing: keep an eye out on the graphic symbol's looping in the properties - you may want to set it to either play once or looping (or even single frame).
    For more info on graphic symbols, read this:
    http://dev.tutsplus.com/articles/flashs-underrated-graphic-symbol--active-9964
    Also check out those two sites' other tools. And check out the workflow on the electric Dreams website. Hope this helps a bit.

  • Adobe Edge Animate CC 2014.1

    Hello, do the animation in Adobe Edge Animate CC 2014.1
    and faced with a problem, animating picture animation works when you hover over the image and still have the text which also operates and has a different animation, and the problem is if I'm pokartinke mouse and spend the mouse over the text in the image on the animation picture as if jumps and starts with a new one, I want to know how to do so that would be mouse as I had not seen the text of this so I can keep the mouse on the image and animation are normally worked

    UPDATE
    i have ulpaded 2 animation ( one normal and one Responsive ) in 2 different server here the link
    www.eclipseadv.com/maliRP/maliRP.html
    Untitled
    via SAFARI or CHROME on MAC all OK
    but via IPAD ( SAFARI, CHROME and MERCURY) i didn't see the video, just the animation of the BUTTON  and the link if i click on it (not in Mercury), like in the content viewer.

  • I have come to the conclusion that all applets are dysfunctional...

    So yeah, I made my applet, and it is supposed to move an object by giving it a velocity in pixels per millisecond, and starting an animation loop, which moves it for 5 seconds.
    So I do this, and everything is working fine after about an hour of coding. Then I decide to touch up my sprite image. I wanted to make it transparent, so I open up Photoshop, and do that. Now it doesn't work. Before I edited the image, the object would move to the edge of the screen, the game would check the boundary, and then reverse the velocity, so it stayed on screen. Now, when you tell the object to move, I can see that the x and y coordinates are changing, but the thing doesn't change on screen.
    The applet itself is behaving very weird:
    http://img62.exs.cx/img62/7140/whatswronghere9ur.gif
    In the first frames, the applet loads up like normal, but there is supposed to be a button there, which no longer shows up.
    In the second and third one, it shows that if you cover any part of the applet, it turns white, and just dissapears.
    In the 4th one is what happens when you click where the throw button is supposed to be. What prints to the console are the x and y coordinates. So you can see the arrow is just supposed to move back and forth.
    I just can't seem to understand why this worked intially but when I changed the image(not the path, I just opened it up and deleted the white background), the thing stopped working. I put everything back to normal, and it still won't work.
    The main portion for the code of the applet is this:
    http://www.freewebs.com/nickv360/problem/Physics.java
    Here are the other classes(Which I didn't write BTW, so no credit to me for them)
    http://www.freewebs.com/nickv360/problem/Sprite.java
    http://www.freewebs.com/nickv360/problem/Animation.java
    Those two classes along with the AnimationLoop algorithm were taken from a book, so yeah.
    Can anyone tell me what happened here? (ALSO I'm not sure if this is in the right place, so if it's not, just point me in the right direction).

    The only thing that changed was the size of the
    image. I made it a bit smaller. But after seeing
    that it didn't work, I changedthe image size back,
    with no luck however. I am using the java sdk1.5 ,
    the latest one. I find it humorous that you won't
    believe me, even though I am telling the truth. I
    mean, there's nothing more to say on this. I've got
    no reason to lieI do not believe that anyone accused you of being a liar, but expressed some doubts towards your conclusions.
    The fact of the matter is that lots of people post their problems here and blame it on java itself ('java is broken') etc... and more often than not, the problem lies in their code.
    I guess the next thing to do would be for you to post your code here.

  • Not able to start to animate text & objects after 59 secs

    Has anyone had any problems animating text or objects after a delay of 59 seconds?
    I need text to be animated at 1 min 10 secs and 1 min 35 secs on the page but Presenter will not let me do this
    I never had any problems like this with Presenter 7.
    Deester

    Hi
    Which version for presenter are you using?
    Is the animation made as an on click animation?
    Can you plese send me the slide and the corresponding audio file to [email protected]?
    I will try to resolve this issue for you
    Thanks
    Mahesh

  • About Bootstrapping Animate Compositions

    Hello!
    I want to make slideshow with several compositions.
    Problem: animations require more and more system resources and after a moment the ventilation of the client computer is at maximum. After a moment, the animations do not play properly and get blocked.
    I wanted to limit the number of loops that scrolling is not infinite, but it is not so easy to stop the script I use.
    Here is the script I use :
    http://blogs.adobe.com/edge/2012/05/15/bootstrapping-edge-compositions/
    If you have an idea to solve the problem, that would be great. Thank you!
    VO (fr)  : Bonjour! Je souhaite réaliser des slideshow avec plusieurs compositions. Problème : les animations demandent de plus en plus de ressources système et au bout d'un moment la ventilation de l'ordinateur du client est au maximum. Au bout d'un moment, les animations ne se jouent pas correctement et se bloquent. J'ai voulu à limiter le nombre de boucles pour que le défilement ne soit pas infini; mais ce n'est pas si simple de stopper le script que j'utilise. Voici le script que j'utilise : http://blogs.adobe.com/edge/2012/05/15/bootstrapping-edge-compositions/ . Si vous avez une idée pour résoudre le problème, ce serait super. Merci!

    Here is a walkthrough on Adobe Dev Connectings - http://www.adobemarketing.com/devnet/digitalpublishingsuite/articles/enhancing-your-dps-fo lios-with-edge-animations.html
    The only difference in that walthrough is the reference to in the Publish Settings: in Adobe Edge Animate v1, its now called 'Animate Deployment Package' instead of 'Indesign/DPS'.
    Darrell

Maybe you are looking for