Moving a video across the stage

Is it possible to have a stationary video (ex: of spokesperson) move across the stage, in a manner that would appear to have a "panning camera" effect? I've attempted to produce this effect by simply importing the video as an imbedded video, then dropping a new layer into the timeline, and then simply placing a new keyframe where I'd like the video to begin a panning camera effect, but it starts the video over again where I've place the new keyframe. Is it even possible to acheive this sort of effect through Flash or can I only do this in AE or Premiere? Thanks.

put the video in its own layer.  then you can move a background layer that might make it appear the camera is panning (though you want be viewing the video from a different angle).

Similar Messages

  • How do i move a sprite across the stage using the arrow keys on my keyboard?

    I'm a high school student and i love director. I recently have become interested in game development, and i am completely lost in how to move a sprite across the stage. I have tried toying around and google hasn't been very helpful. An example of something i found is
    on keyUp
      if (_key.keyCode = 124) then sprite(4).locH = sprite(2).locH -25
      if (_key.keyCode = 123) then sprite(4).locH = sprite(2).locH -25
    end keyUp
    I don't understand why this wont work.
    HELP

    This code moves sprite 2 to a position relative to sprite 4. If sprite 4 is not moving, then sprite 2 will always move to the same position, so it will not appear to move at all.
    Perhaps this code makes more sense:
    on keyUp
      if (_key.keyCode = 124) then sprite(2).locH = sprite(2).locH +25
      if (_key.keyCode = 123) then sprite(2).locH = sprite(2).locH -25
    end keyUp

  • Duplicating the motion of an object across the stage

    Suppose I have a single moving object on the stage is it possible to replicate the object at regular intervals across the stage WITH the motion?

    Is this motion achieved through actionscript or is it a tween on the stage? If this is a tween on the main timeline on the stage, then you could make that animation a movieClip and play the movieClip at an interval, maybe using a timer. If the animation is achieved using actionscript then write the animation as a function and call the function at an interval, again, possibly using a timer.

  • Moving an object in the stage

    Any help on this would be greatly appreciated. I have an
    object that is serving as a background for a flash website. The
    background object (a table) moves and rotates around when clicked,
    exposing different parts of the table on the stage when the user
    clicks.
    Here is as close an example as I can find:
    http://www.vermeersch.ca/
    My problem is when i want to transition between two points on
    the table, the table has to rotate and move.. and by just using a
    motion tween between the two points results in the table rotating
    off the stage for a few frames (thus exposing the background and
    making it look really cheezy). I was trying my hand at using motion
    guides, but can't do it with any accuracy.
    So, my question is: Is there a way to guide an object as it
    rotates and moves so that it doesn't move off screen? (there is
    plenty of room on the table if i can just guide its path through
    the 2 second transition). Thanks for any support.

    http://www.personal.psu.edu/jwc5062/
    So far you can't really see it moving off the stage.. but the
    beginning is awkward because i had to zoom in really tight before i
    could rotate to avoid the problem. I can't transition between
    "resume" and "portfolio" without it moving off the stage for half
    the transition.
    Thanks for the help

  • If AME 2014 no longer allows .flv export, how am I supposed to import videos to the stage for use in Flash CC?

    Flash CC will notimport .mp4 videos for use on the stage, only .flv. This seems like an ENORMOUS oversight, so maybe I am missing something. But if I'm not missing anything, WHEN THE **** WILL ADOBE UPDATE FLASH TO MATCH THE STUPID FORCED WORKFLOW UPDATE THEY'VE DONE WITH AME AND AFTER EFFECTS? I HAVE TO USE SOME RANDOM 3RD PARTY WEBSITE TO CONVERT .MOV OR .MP4 FILES TO .FLV FOR USE IN FLASH!?!?!?!?!?!!?!?!? ARE YOU KIDDING ME?!?!?!?!?!?!!?!?

    This forum is for Flash Media Server Developers so most likely you migth get much traction here. I would recommend you to post your query on Flash Builder forum: http://forums.adobe.com/community/flash_builder/using_flash_builder
    Also you can try posting here:
    Flash Platform Services For Promotion - http://forums.adobe.com/community/promotion
    Flash : http://forums.adobe.com/community/flash/flash_general

  • How can i copy a moving image (video) off the screen?

    How can I copy Video from the screen? IE, is there a similar way to the cmd arrow 4 to copy a screen shot?

  • Why does my iphone restart every time I try moving an app across the screen

    Since updating to the iOS6 last night, any time I hold an app down to make it wiggle, to move it to another screen-- it lets me do so, then when I press the home button to make them stop wiggling --- it simple restarts the iPhone and when it comes back on, it's exactly how it was BEFORE I moved anything. Holding down the top button and home button at the same time, also no longer gives me the option to turn off/restart my phone. What is going on.

    This may sound stupid, but I'm gonna throw it out there anyway. Is it possible, that if I have enough junk on my desktop it might disrupt the signal? It seems odd, but it kind of looks like my signal is strong and relatively steady now that I've cleaned my desktop. I do tend to get very cluttered. I use a lot of reference images and save text clippings to use later... it just piles up very quickly.
    So, I wonder if all that extra effort my system has to do keeping up with the junk might have something to do with the drop outs?

  • Moving home videos to the ipad

    how do you import a home video on a laptop to the ipad?  When dragged to the itunes folder nothing happens.

    What you have done is to add the movie to Itunes on the computer not your iPad
    To get it on your iPad either Click on the Device name to the left of the Itunes Store Button. Or enable the Sidebar View > Show Sidebar in the main menu and then click on your device
    On the right hand side will  be the Device Sync pages. Select Movies ( Movies and Home Videos should appear together) choose the movie you want to go onto the ipad and click Apply bottom right.

  • Moving table entries across the landsacpe

    Hi All,
    I have couple of custom transparent tables and now i need to move the content of the tables from our development system to quality system and then to production. Now the issue is that I can't select the entries that I want to move and create a transport as TRANSPORT ENTRIES option is disabled, we have also not maintianed any Table maintenance generator, so I can't use SM30 as well. Is there any other way that I can move my table entries acros the landscape.
    Thanks,
    Rajat

    Yes it's possible. Create a transport request in SE01 and then edit the transport request and add an entry with the the values :
    R3TR TABU <TABNAME>
    Then double-click the key and put * as the key. Or else, just add the keys of the entries you want to transport.

  • Moving a Sprite across the screen

    If I use mySprite.x += 1; //it's choppy
    if I use mySprite.x += .1; //it's smoother but slow
    if I use mySprite.x += .5; //it's only slightly choppy but speed is better
    Is there a way to guarantee perfect movement(the sprite moves subpixels), yet still have an adjustable speed?

    What's your framerate? 27 - 30fps is best.
    Also, try using a tweening engine like TweenLite. That way you move based on time:
    TweenLite.to(myClip, 3, {x:100});
    would move myClip to x of 100 in 3 seconds.
    http://www.greensock.com/tweenlite/

  • Image quality when moving bitmaps around the stage

    Hey all,
    I am moving an image around the stage, and when it moves
    quickly, it becomes distorted and displays what I can only refer to
    as "banding". The image appear to be misaligned for some of the
    frames that it is moving. I have tried a number of the usual fixes,
    increasing the framerate, using a less complex image, etc. Nothing
    seems to work. Any ideas? I feel like I have seen a lot of flash +
    director movies that have fast motion, slick movement, etc and not
    appear as what I end up with. Is this something that relates to a
    screen refresh rate? Thanks for any ideas...
    - B

    Sounds like good old vertical sync / tearing. This is really
    not a fixable
    issue. You can try slowing down the movement a little...
    Someone, a while
    ago, worked on creating an xtra that would honor the vertical
    blanking
    interval, but it never really worked properly I don't
    believe. You can read
    all kinds of prior posts about this by searching google
    groups within
    macromedia.director.* for 'vertical sync'
    Dave -
    Head Developer
    www.blurredistinction.com
    Adobe Community Expert
    http://www.adobe.com/communities/experts/

  • Can Flash publish video to FMS generated from the Stage?

    I know NetStream can publish video from a camera, but is there anyway to generate video from the stage?
    If would be nice to record what is on the stage to the FMS for playback.
    Even combining the camera with elements on the stage.
    This would be even better once Stage3D is available to generate 3D generated videos.
    Is there anyway to overload Camera to insert any display object you wanted?
    Thanks.

    Maybe something like this:
    var ns:NetStream;
    //...init...
    ns.attachStage(this);
    while (condition) {
      moveObjectsOnStage();
      ns.nextFrame();
    ns.close();

  • Problems on viewing OEM with video on the Adobe viewer APP on ipad air 8.1 with EDGE ANIMATE CC 2014.1

    hi everyone
    i had this problems and i don't know if is for my fault or is something related to a bug
    i made an animation with a video ( i try it before just with an mp4, but later i add also the OGV in the same Group ) and one object , if you click on the object you launch a website link on a different windows and the video and the stage are in PAUSE, if you click again the video the video START.
    it's very simple and on the web preview ( and on the export for WEB package )  all works properly, but if i want to view by the Adobe content viewer APP on my connected ipad ( via indesign ) i'm not able to see the video i just see the poster image and the object ( with the working link, that launch a new tab in the APP),  but NOT the video in background!
    INDESIGN procedure
    In indesign i add the OEM on my page and launch via the folio overlay the preview on my connected ipad
    is not the first time i work with animation on DPS APP, and everytime all works good
    after quite a whole day on try different solutions but with the same result i hope in this forum to find help on solve this problem, from more experienced people than i
    thanks in advance
    cristiano

    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.

  • No video across ICT when using different firmwares

    Setup:
    CM8.6 firmware 9-3-2-11
    CM10.5 firmware 9-3-4-17
    8941 phones
    Tested different scenarios and seem unable to get 2 way video across the ICT.
    If both phones are on 9-3-2-11 video works fine.
    If both phones are on 9-3-4-17 video is one way
    If both phones are on different firmware then video is one way.
    Any offers?
    Rich

    Hi daGUY:
    The only way I've been able to get around it is by selecting the video, extracting the audio, and then manually fading the audio in/out so that it matches the length of the video fade in/out. While this works, it's more work, takes more time, isn't as precise since I have to manually do it, and is totally unnecessary! The transitions are supposed to automatically apply to both the video AND its audio!
    That's the right thing to do in this case (as you found out). But, it may be that this is a one time problem and the next video will work fine...
    Sue

  • How can I control a FLV video using the main play bar (not the FLV skin)?

    I need to have the ability to play/pause an FLV video in a slide with the main play bar.  Research has shown me that in previous versions, there was a "synchronize with project" checkbox that enabled this.  I cannot find this in version 8.  Is there a different way of doing this?

    Hello ,
    Welcome to Adobe Forums
    Try inserting the video as Multi-Slide  Synchronized Video instead of Event Video ,
    Then down below there will be an option to Distribute the video across the slides and you can select from Slide n to n ,(Where n is your slide number).
    Hope this will serve your need.
    Regards
    Himanshu

Maybe you are looking for