Making movies play during transitions

I want to make a movie transition in _whilst playing_. All I can make it do now is transition in and THEN play. Possible? I seem to remember seeing presentations with playing clips whizzing by across the screen.

nope. If you seen a presentation with a clip that's PLAYING while it's moving, it was probably a ful screen video that was created to look that way, but in reality was ONE big clip.
I'm hoping we see this in the future, but for now, the only way to do it is fake a transition with a video clip that ends with a screen shot of the next slide, then you jump to the next slide with no transition and no one knows the difference.

Similar Messages

  • Making Movies play with Roll Over

    Does anyone know how to make a movie roll over button, that
    will start and stop were you left off. here are some examples:
    http://www.fabchannel.com
    http://www.diddy.com/diddy.php
    The buttons are at the bottom.
    Thanks so much,
    GL

    it will basically pause the movie on rollOut and resume on
    rollOver.
    so YES, it will start and play from where it has
    stopped

  • Making movies play automatically on a slide in Keynote

    I have a presentation that has still photographs on some slides and movies on some. I set the vids to start automatically but they only play a few seconds and then the next slide appears.

    Look Here:
    http://docs.info.apple.com/article.html?path=Keynote/5.0/en/kyntc6bbade2.html
    Good Luck

  • Making movie clips play in reverse in AS 3.0

    Hey all. I'm changing all my files to AS 3.0 because of some
    new elements I'd like to use in flash CS4.
    Here:
    http://www.iaw-atlanta.com/IvyLeague1-13-09.html
    I have the menu navigation at the bottom with 4 buttons. When the
    buttons are moused over they ascend and when they are moused out
    the movie plays in reverse so that they descend. Basically in the
    movie clip, I have it stopped as well as gotoAndPlay the next frame
    when the button is moused over and then have a script telling it to
    reverse when moused out. I know how to do this in AS 2.0 but how
    can I translate the script to 3.0?

    DjPhantasy5,
    > Ok thanks, I'll see what he also has to say as well.
    Actually, NedWebs pretty much nailed it. :) The approach
    you've taken
    is an interesting one, because it scales all the way back to
    Flash Player 5,
    which didn't yet support the MovieClip.onEnterFrame event.
    Without that
    event, you need something like your "controller" symbol -- a
    separate
    looping timeline -- to perform code that depends on frame
    loops.
    Available as of Flash Player 6, that event would allow you
    to
    consolidate your code a bit by putting it all in a single
    frame and avoiding
    the extra movie clip symbol. That doesn't mean your approach
    is wrong, by
    any stretch. In fact, it's good to know your options, because
    if you ever
    need to publish to Flash Player 5, you'll probably do best to
    use the setup
    you've taken.
    I'll demonstrate onEnterFrame in just a bit, in case you
    want to take a
    look at that.
    >> there's no _root reference in AS3, but you can use a
    >> MovieClip(this.parent) (which replaces what _parent
    >> used to do) to locate something outside of the
    immediate
    >> movieclip.
    The term "parent," in this context, is technically a
    property of the
    MovieClip class, which means all movie clips in AS3 have
    access to the
    "parent" feature, which points to the timeline that contains
    the movie clip
    in question. Buttons also feature a "parent" property. In
    AS2, this
    property acted exactly the same, only it was preceeded by an
    underscore.
    In fact, NedWebs' suggested code works the same in your
    existin file.
    Instead of this:
    // Your existing code ...
    if (_root.animation._currentframe>1) {
    _root.animation.prevFrame();
    this.gotoAndPlay(2)
    if (_root.animation._currentframe<=1) {
    this.gotoAndStop(1);
    ... you could be using this:
    // Alternative code ...
    if (_parent.animation._currentframe>1) {
    _parent.animation.prevFrame();
    gotoAndPlay(2)
    if (_parent.animation._currentframe<=1) {
    gotoAndStop(1);
    ... because from this scope -- that is, from this point of
    view -- the
    MovieClip._parent property points to the same timeline that
    _root does.
    That changes, of course, based on how deeply nested the
    current scope is.
    The term "this" in the above code is optional, because Flash
    understands
    what scope you're in. From the point of view of this code,
    _parent is
    understood to refer to the current scope's parent timeline,
    just like
    gotoAndPlay() is understood to refer to the current scope's
    own timeline.
    You could precede either of those by "this" or not.
    Many people will argue that _root is probably best avoided,
    only because
    it's a slippery slope. It doesn't always refer to the main
    timeline you
    think it does, depending on whether or not your SWF is loaded
    into another
    SWF at runtime. Meanwhile, _parent *always* refers to the
    immediately
    parent timeline.
    So when you look at it that way, this perfectly valid AS2:
    if (_parent.animation._currentframe>1) {
    ... isn't much different at all from its AS3 counterpart:
    if (MovieClip(parent).animation.currentFrame>1) {
    It would be nicer if you didn't need to cast the parent
    reference as a
    movie clip here, but if you don't, AS3 doesn't realize that
    the scope in
    question is a movie clip.
    >> You can string them along as...
    >> MovieClip(this.parent.parent)
    Exactly.
    >> Your _currentframe in the the controller becomes
    >> currentFrame. That's about it. The rest of what I
    >> saw will fly as is.
    Not quite. AS3 doesn't support the on() or onClipEvent()
    functions, so
    you won't be able to attach your code direction to the
    button. Instead,
    you'll have to put it in a keyframe -- which you can also do
    with AS2. It's
    a good idea, in any case, because it allows you to put all
    your code in one
    place, making it easier to find.
    Here's a quick note on direct attachment:
    http://www.quip.net/blog/2006/flash/museum-pieces-on-and-onclipevent
    To convert your existing FLA structure to AS3, you might,
    for example,
    do this:
    animation.buttonMode = true;
    animation.addEventListener(MouseEvent.ROLL_OUT, outHandler);
    animation.addEventListener(MouseEvent.ROLL_OVER,
    overHandler);
    function outHandler(evt:MouseEvent):void {
    controller.gotoAndPlay(2);
    function overHandler(evt:MouseEvent):void {
    controller.gotoAndPlay(4);
    That takes care of the on(rollout) and on(rollover) code in
    your current
    version. The first line (buttonMode) is only necessary
    because I got rid of
    the button symbol and, instead, associated the event handlers
    directly with
    your animation clip. (Movie clips handle button-style events,
    too, so you
    don't need the button.) In AS3, event handling is very
    straightforward:
    you reference the object (here, animation), invoke its
    inherited
    addEventListener() method, then pass in two parameters: a)
    the event to
    listen for, and b) the function to perform when that event
    occurs.
    You can see that spelled out above. In AS2, there are quite
    a few ways
    to handle events, including on()/onClipEvent(), so it's
    harder to know when
    to use what approach. For buttons and movie clips, the
    princple works the
    same as I just showed, but the syntax is different.
    Let's take a quick look at reducing all this code by using
    the
    onEnterFrame event. First, check out this AS2 version:
    animation.onRollOut = outHandler;
    animation.onRollOver = overHandler;
    function outHandler():Void {
    this.onEnterFrame = reversePlay;
    function overHandler():Void {
    this.onEnterFrame = null;
    this.play();
    function reversePlay():Void {
    this.prevFrame();
    All of that code would appear in frame 1. You don't need the
    controller
    movie clip. The animation clip no longer contains an orb
    button, because
    we're using animation itself as the "button". (You can always
    see what
    functionality any object has by looking up its class. If
    you're dealing
    with a movie clip, look up the MovieClip class. See the
    Properties heading
    to find out what characteristics the object has, see Methods
    to find out
    what the object can do, and see Events to find out what the
    object can react
    to.)
    In the above code, it's all laid out pretty easily. This is
    AS2,
    remember. We have two events we're listening for:
    MovieClip.onRollOut and
    MovieClip.onRollOver. Those events are established for the
    animation movie
    clip by way of its instance name, and associated with
    corresponding custom
    functions. The outHandler() function associates yet another
    function to the
    MovieClip.onEnterFrame event of the animation clip. Very
    simply, it
    instructs animation to perform the custom reversePlay()
    function every time
    it encounters an onEnterFrame event. The overHandler()
    function kills that
    association by nulling it out, and telling animation to play,
    via the
    MovieClip.play() method. Finally, the reversePlay() function
    simply invokes
    MovieClip.prevFrame() on the animation clip.
    Here's the AS3 version:
    animation.buttonMode = true;
    animation.addEventListener(MouseEvent.ROLL_OUT, outHandler);
    animation.addEventListener(MouseEvent.ROLL_OVER,
    overHandler);
    function outHandler(evt:MouseEvent):void {
    animation.addEventListener(Event.ENTER_FRAME, reversePlay);
    function overHandler(evt:MouseEvent):void {
    animation.removeEventListener(Event.ENTER_FRAME,
    reversePlay);
    animation.play();
    function reversePlay(evt:Event):void {
    evt.target.prevFrame();
    It looks wordier, but if you look carefully, you'll see that
    it's
    essentially the same thing. The main difference is the way
    scope works in
    AS3. In AS2, there are numerous references to "this", because
    the event
    handler functions operate in the same scope as the object to
    which the
    association is made. In AS3, the references aren't to "this",
    but rather to
    the same animation clip by its *intance name*, because in
    AS3, the scope
    operates in the same timeline in which the code appears
    (namely, in this
    case, the main timeline).
    In the reversePlay() function, in order to emulate a "this"
    sort of
    setup, I'm referring to the parameter that gets passed to all
    event handler
    functions in AS3. I happened to name it "evt" (for event),
    but you can call
    it what you like. In the case of reversePlay(), the evt
    parameter refers to
    an instance of the Event class, which has a target property.
    The target
    property refers to the object that dispatched the event --
    happens to be
    animation, in this case. So evt.target, in this context,
    refers to
    animation, which is what I invoke the MovieClip.prevFrame()
    method on.
    I've uploaded a handful of FLA files to my server. I won't
    keep them
    there forever ... maybe a couple weeks, as of this post:
    http://www.quip.net/RewindTestAS3.fla
    http://www.quip.net/RewindTestAS3_new.fla
    http://www.quip.net/RewindTestAS2_new.fla
    David Stiller
    Co-author, ActionScript 3.0 Quick Reference Guide
    http://tinyurl.com/2s28a5
    "Luck is the residue of good design."

  • TS1717 The first few  movies I rented began to play shortly after the download started, but the one I'm renting today will not let me play during the download.  Why?

    The first few  movies I rented began to play shortly after the download started, but the one I'm renting today will not let me play during the download.  Why?

    Does anything here help: http://support.apple.com/kb/TS1389?viewlocale=en_US

  • Movie playback during autorun presentation

    I'm setting up a presentation that will run and loop continuously during a trade show. Most of the slides have movies embedded. Problem is, each slide wants to transition to the next one before fully playing each movie (I have to set it up to transition without mouse clicks).
    I've come up with a workaround by making the delay time on the slide transition to be approx. the same as the mov file (but I usually have to make them a little shorter as the time doesn't work out quite right).
    So my question is-- is there a way to do this more efficiently, or to make Keynote simply playback the mov file before transitioning on to the next slide?
    thx

    Yup, you've found the best way to fix the problem. You may want to got to <http://www.apple.com/feedback/keynote.html> and let them know that you'd like to see a play entire movie feature added.

  • Why won't my .mov or my .mp4 movie play in Keynote 4.0?

    Others on the forum seem able to play movies in their keynote projects. I can't.
    When the slide I have placed the movie comes up, the movie plays for a second or so and then quits while the next slide comes up. What am I doing wrong? The movie is just over 2 minutes long. Why won't it play?
    Any help will be appreciated. I'm new to using Keynote. I've enjoyed making builds with music on mulitiple slides, but dang it, I can't seem to make a simple .mov or a .mp4 movie work. I'm guessing I'm missing something very basic. Please help.

    If I am understanding your problem correctly, this is unfortunately a bug (or simply an unsupported feature) in Keynote that has not been corrected since the very beginning. Currently, the only way to have a movie play properly through is to:
    1) make sure the slide containing the movie has no delay in the transition to the next slide, and
    2) you will need to create transparent objects (like a square), each building in a set amount of seconds (60 seconds max allowable per object). For example: For a three minute movie, you will need to create an object, build it in over 60 seconds. Then copy and paste for the second object only this time, set it to start building in AFTER the previous build. Copy and paste again, set to build after the previous build, only this time, you will need to adjust the 60 seconds down to whatever fits. When the last object is done building, the slide will transition regardless of whether or not the movie is done playing.
    It is a complete waste of time as trying to determine the duration of the last object to build in is totally trial and error. I am amazed that this simple feature (playing a movie within a slide) is hampered.

  • Making movies with SLR stills in FCE4

    Does any one have any sources of information for making movies using still images… not stills captured from movies, but stills taken using a 'still' camera either digital or scanned from film for time lapse movies and multimedia slideshows. I'm particularly interested in issues of quality both importing images and exporting the final product, this is the thing I have the most trouble with. I know it's possible to get fantastic results I've seen them on the web… Magnum in Motion, VII, Media Storm etc but all the advice I can find is not to surprisingly 99% aimed at video movie making.
    One other thing; I'm currently using iMovie 09 which is fine as far as it goes but I'm finding it a bit of a battle and am considering trying FCE 4 as it seems a little more intuitive and capable. I have read in a couple of reviews people complaining about the constant need to render and wonder how much of this is down to developing a sensible work flow and getting the hang of the software. As far as I can see from the tutorials most of the filters etc can be previewed without rendering. How does this particular factor compare with other products out there by Adobe for example?
    Sorry for the long question… I don't expect long answers!
    Matt.

    I recommend Photo to Movie to make movies out of still images. I looked at a number of different products including iPhoto, iMovie, FCE and decided on Photo to Movie. The feature set is strong with good transition, motion, audio, etc features and the usual range of output options.
    It's strong point is the image quality of the output whether for TV, web or computer - seems to be better than most other options at higher prices.
    Learning it is relatively easy to get started but there's enough capability to reach the movie making production of more expensive products. There's the demo option to let to test before buying. It is inexpensive for what you get. Support and advice can be requested and is given quickly and personally.

  • Static during transitions

    I am experiencing static during transitions and have read a lot of posts that complain about similar issues. I have also read that cross-dissolves are particularly prone to this problem, and that is my typical transition of choice. (I would assume that the cross-dissolve is one of the most common transition effects for most people.)
    As others have reported, sometimes extracting the audio (as Apple suggests) seems to work, and sometimes it does not. In addition, having a lot of extracted audio really slows down the performance of iMovie on my older Mac and leads to some strange behavior that makes me think my project will get irreversibly corrupted.
    I found it strange, though, that the static happened during some transitions, and not others. Then, I noticed that I was getting sustained static for the entire length of certain clips to which I had applied an effect. Again, only some of the clips to which I had applied the effect had the static, and not all of them.
    Then, I think I figured out why only some transitions and clips had the problem. It seems that when I initiated a SINGLE transition (or an effect on a SINGLE clip), and I allowed that SINGLE transition (or effect) to finish rendering before initiating another, there was no static. However, if I initiated cross-dissolve transitions on MULTIPLE clips (or effects on MULTIPLE clips) such that they rendered SIMULTANEOUSLY, then I was far more likely to get static.
    I found it very convenient to simultaneously apply cross-dissolves across many clips in my projects, and it takes a lot more user interaction to apply them separately, but it is worth it in the long run to avoid having to extract and/or mute audio at multiple transitions, and then suffer the resulting performance hit to iMovie.
    Perhaps this is more of an issue when you have an older (slower) Mac like mine, or perhaps I am crazy, and it was just a coincidence that when I applied SINGLE transitions (or effects) that I did not get static. Perhaps some of you who have had this problem can try this workaround to see if it works and reply to this message. (Note that there may be different issues to which this does not apply. For example, I have seen reports of a single pop at transitions from still frames. I'm not sure whether that is the same problem.)
    I seem to recall posting a similar message on the iMovie forum quite awhile ago, but it has long since been deleted. Stupidly, I forgot my own workaround and just had a similar problem with a new project, and I had to rediscover the workaround with an eerie feeling of deja vu.
    It is amazing to me that something this important and basic to the functionality of iMovie has not been fixed over the multiple years since iMovie 3. If others can confirm this workaround, perhaps Apple can get a better idea of why it is happening.

    Hello: I am having the same problem with a movie, rendered transition to a still image. Nothing fancy, and yet the entire transition is filled with static. I have tried two different transitions to no avail. The static is also in the exported Quicktime movie. so it is not something that shows up in the iMovie preview.

  • Foreground and background movies playing simultaneously

    Can Acrobat 9 Pro allow a smaller, foreground movie to playing simultaneously on top of a larger background movie?
    Here are my slide design criteria. I need to have a single slide show with a movie that takes up the full size of the slide. It will start automatically and loop continuous when opened. I need to have additional movies appear on top of the large background movie, and start only when clicked. These smaller sized movies would be invisible till clicked; they are zoomed in versions of certain areas of the larger background. I think of them as Hotspots.
    Once the Hotspot movie is done playing, I need it to become invisible again. I will need to have 6-8 of these Hotspots; they will not overlap each other, but certainly will lay on top of the larger background movie.
    1.What’s the best way to insert these Hotspot movies?
    2.How can I get them to be invisible before and after play?
    3.Can I make them available if the presenter wanted to show the hotspot movie more than once?
    4.How can I make them use separate movie player player sessions?
    5. How can I keep the background movie playing behind the hotspot playing in the foreground?
    The goal is to keep the audience focused on the single slide and view these zoomed-in, closeup movies as the presenter chooses during the presentation.
    If there is any way to do this, i'd be keenly interested in the details.
    thanks!

    It can't be done using separate rich media annotations, but you could make the entire thing as a single SWF file using Flash Pro, and embed that full-page in your PDF document.

  • How can I control the music that plays during Apple TV photo slide shows?

    I don't want to make my parents listen to Breaking Benjamin music as they watch my photo slide shows on Apple TV. Need something more sedate. But if a B.B. song is in my iTunes music library, it is a candidate for random selection as background music for my slide shows. How do I control what music plays during Apple TV photo slide shows?

    What I find is really silly, is the fact the music video's are listed under that artists albums in the Music menu. And when you go into the video 'album' (called 'Unknown' unless you change it) there is an option to shuffle the tracks. Clicking this just results in an error message. So, they should either remove that option if it is a video album, or, better yet, GET IT TO WORK. So silly of them to omit this.
    I have submitted feedback.

  • DVDPlayer not recognizing DVD. I have an IMAC (10.7.4) using DVDPlayer (vers. 5500.26.11) and will not recognize/play a dvd movie...it thinks it is a blank dvd.  The dvd movie plays fine on my Mac Book Pro (10.6.8) on the Pro's DVDPlayer (vers.5.4).

    IMAC DVD Player does not recognizing dvd movie . I have an IMAC (10.7.4) using DVDPlayer (vers. 5500.26.11) and it will not recognize/play a dvd movie...it thinks it is a blank dvd. The IMAC will play rented dvd movies.   The dvd movie plays fine on my Mac Book Pro (10.6.8) on the Pro's DVDPlayer (vers.5.4) abd in my external Sony DVD Player  The dvd move was made/burned on a PC.   Why will a dvd movie play on my Macbook Pro and not my IMAC?

    Hello:
    This is not an area I have much experience in......I rarely insert DVDs and I have never had a similar problem.
    When the DVD is in the drive (and DVD players is open) click on File>get disk info.
    Barry

  • FCP 4: NTSC monitor image FROZEN/movie plays JITTERY in canvas window.

    Hey guys. This started yesterday. Every time I hit play, the image from the frame I began playing at on the timeline remains frozen on my NTSC monitor, while the movie plays jittery, roughly, totally unsmoothly in the canvas window. I'm pretty sure I've tried all of Shane's answers, but right now I'm stuck. Any help is immensely appreciated.
    PowerPC G4   Mac OS X (10.3.9)  

    Shane's stock answers addresses this, but make sure
    that under the View mene that you are set to "All
    Frames" and not "Single Frame"
    Yeah, I had that covered from the beginning, but this sucker is stuck on whatever frame I begin to play from.
    Powerbook G3 Pismo 500 Mac OS X (10.3.7)
    Powerbook G3 Pismo 500 Mac OS X (10.3.7)

  • Movies playing in iTunes will not show closed captions

    I have purchased several movies from the iTunes store. They all have Closed Captioning listed in the store description. I need Closed Captioning because I have hearing loss and even with my hearing aids, I cannot hear all the dialogue in movies.
    In my iTunes app, I opened Preferences-->Playback and checked the box for "Show closed captioning when available." Then I play the movie in iTunes. No captions. I click on the Controls menu for Audio & Subtitles. It's grayed out.
    I go to the .m4v file in Finder and open the movie with Quicktime to see whether I can get captions that way. No captions. I check the View menu for Show Closed Captioning. It's grayed out.
    At this point I'm thinking these movies do not really HAVE captions, despite what the store description said. However, this proves to be wrong because I turn on my TV and start up my Apple TV 3. I select "Movies" and then "Purchased" and find these movies. When I play these movies via the Apple TV, they all show up on the TV screen with the captions working perfectly.
    So, what gives? I've spent hours searching the internet for a solution, but all I can find is that the selection I've made in iTunes preferences *should* make the captions show up in iTunes. I'm stumped. I want to play the movies on my computer in iTunes (or in Quicktime) so that I don't have to be at my house in front of my TV in order the enjoy them. Is there any way I can make these movies play in iTunes with the captions showing? Can anyone make any suggestions? I'd be very grateful if someone could help me achieve this goal.

    I have same problem with my son's iPod Touch running iOS 5.1.1.  I set "explicit" to off, but then many songs we purchased on iTunes that are labeled as "clean" do not show up on his iPod Touch. If I set "explicit" to on, they do show up.

  • How do I use airplay to stream a DVD movie playing in my computer to display on my TV?

    How do I use airplay to stream a DVD movie playing in my computer to display on my TV?
    I have a 2nd generation Apple TV and computer is a 2011 Macbook Pro. Processor  2.8 GHz Intel Core i7. Memory  4 GB 1333 MHz DDR3. Graphics  Intel HD Graphics 3000 384 MB. Software  Mac OS X Lion 10.7.5 (11G63). Storage: about 500GB free out of 750GB.
    I have a DVD player within my computer. Trying to play a movie from my computer to display onto my TV using my Apple TV airplay. But the airplay icon is not showing or giving the option to play a movie onto my TV.
    I've installed all software updates and still I'm not able to have this functionality.
    I assume this functionality exists where I can play a DVD on my computer, but watch it on my TV using my Apple TV, correct?
    Thanks for your help solving this puzzle.

    Welcome to the Apple Community.
    AirPlay Mirroring requires a second-generation Apple TV or later, OS X 10.8 or better and is supported on the following Mac models: iMac (Mid 2011 or newer), Mac mini (Mid 2011 or newer), MacBook Air (Mid 2011 or newer), and MacBook Pro (Early 2011 or newer). You can see which Mac you have and which operating system you are using by selecting 'About this Mac' from the Apple menu in the top left corner of your Mac and selecting the 'More Info' button.
    AirPlay Mirroring from a Mac also requires a fairly robust network.
    You may find a third party product that you can use instead of AirPlay.

Maybe you are looking for

  • SELECT-OPTION IN SCREEN (SCREEN-PAINTER)

    I want to put a select option in a screen type screen painter Using this the user could enter a ranger of personal numbers. Can any one give me a clue on how to do that ?

  • Extension kdc will not open

    I own a Kodak Z980 camera whose Camera RAW photos have the 'kdc' extension. This camera is recognized by Camera RAW & DNG. Yet the 'kdc' photos will not open in either Photoshop CS2 or Adobe Bridge. I have Windows 7 and 'kdc' is not a recognized asso

  • How to generate swf file automatically on server ?

    Hi. I'm new to flash and i've just learnt how to use OSMF to build a flash player. My question is very basic and i hope to put it as clearly as i can:- Now i can create a flash player from flash builder. But in order to point to a new location for th

  • JMS Sender with ejb3 container managed transaction

    Hi all, I refer to the following link http://download.oracle.com/docs/cd/E11035_01/wls100/jms/trans.html#wp1035937 I found that JTA support JMS. But I dont' want to use JTA explicitly, I want to use container manage transaction. eg. inside ejb3 state

  • Send report to email address!

    Hi Expers, Besides Information Broadcasting, is there anothe way to send out a certain query report to email address? Like the one in Process chain error report!  Thanks! Linda