Automatic transition AFTER QT movie is finished?

I'm showing a 5 minute QT movie on one slide and trying to make it automatically transition to the next slide AFTER the QT movie is finished. How do I do this since the 'delay' only goes up to 60seconds? Thanks.

If I understand this problem correctly, this is what I've done to accomplish the automatic transition after the end of a quicktime movie has played in Keynote 2. First I get info about the movie (command-i) which tells me very accurately the duration of the movie.
Second, after insertion of the movie into a custom frame in the presentation, I go to the inspector and the transition window for the slide and in the lower right hand window set the time of the delay for the transition to the duration time for the movie. By the way, highlight the box and type whatever delay time you require into the box. I've had no problems with this technique, and have set times of over five minutes by typing in the number of seconds required to cover the movie.
Third, choose automatically from the drop down menu for start of transition.
Fourth, play the movie and adjust the time if you are little long or short because of other transitions which may accompany the slide.

Similar Messages

  • Starting a movie after another movie is finished

    hello
    i have a series of movie clips that I want to play
    sequentially. For some I would like them to play one right after
    another and others that have a pause in between. I have the first
    part worked out but it is sloppy and there is code all over the
    place. is there a set, clean way to accomplish this?
    peace

    Yeah that's what I have been doing. I guess I should have
    been clearer. Is there anyway to consolidate the code so that it
    stays on the _root timeline?
    I have also used this method, shown in the attached code. I
    have tried to do other things with that code but it hasn't worked.
    Can anything else be done w/ the attached code or is that the most
    it can do?

  • Automatic slide transition and playing movies

    I am currently creating a presentation to showcase our children's work at school. I have a few videos to play within the slideshow. Is it possible to make keynote wait for the movie to finish playing before a transition? I realise I can set a Delay - but this gets tedious as I have to check each files length - and this is something that we want to change regularly. Also - more annoyingly - there seems to be no relationship between the lenghth of a movie in quicktime and it's length playing within keynote. A 3 minute quicktime video, with a 180 second delay in keynote, finishes a good 20 before transition. Can Keynote be made to wait for a video to stop playing before it moves on to the next slide?
    Also - I used to be able to embed a webpage in a keynote slide - has this ability gone in '09? Thanks in advance!
    Message was edited by: Gwyn Plem

    I am having the exact same problem! I need to take my presentation to school, and our campus is not-so Mac friendly. I don't want to lug my 20" iMac to class. Either I have to use a remote with my quicktime file to advance the slides after the clip is finished, or the page simply advances before the video is finished. There must be some way to remedy this. A friend mentioned putting the project into iMovie, but wouldn't that entail recreating the entire project I just spent a week making? How so I do this right?

  • Why after I rented a movie and finish watching it and wanna watch it again with in the 24 hours, have to pay another rent fee to watch it?

    Why after I rented a movie and finish watching it and wanna watch it again with in the 24 hours, have to pay another rent fee to watch it? When I already paid the the fee to rent it for 24 hours?

    Start the video and slide all the way to the beginning. If the video isn't in your Movie app, then the rental expired.

  • Automatic refresh of Planning form after HBR calculation is finished?

    Let's say that there is a Planning web form in which the user should run a business rule manually.
    The business rule contains a runtime prompt where the user selects the member he wants to calculate.
    After running the rule, the result of the calculation is not visible until the user clicks the "Refresh" button thereafter.
    Is it possible to automate such a refresh in any way, so that it happenes automatically after the calculation is finished?
    Planning version 11.1.2.1.

    I agree, it would work and the user is then guided through the process. :-)
    However ... I am looking for an even "smoother" solution.
    We are handling some 20+ applications with several forms containing manual HBRs in each, so I would definitely avoid creating that many task lists or other extra stuff to maintain.
    My hope was that there is a way to activate either a "save" or a "refresh" automatically after trigging the business rule. What about java code?

  • HT4597 After the move to icloud, I no longer have an address book synched. Cannot find a way to add i cloud on preferences/accounts either. I'm not at all happy with this transition.

    After the move to icloud, I no longer have an address book synched. Cannot find a way to add i cloud on preferences/accounts either. I'm not at all happy with this transition.

    You don't require Mountain Lion - you need Lion which has been available for almost a year.
    Unless you are running Mac OS X 10.7.2 or later (Lion) you won't be able to sync iCloud with your computer. The iClous system preferences pane does not exist in ealier versions.
    The Mac system requirements are all clearly stated on the iCloud pages, and in the support articles.

  • Loading URL after flash movie finishes

    I have created a flash movie which i have taken into a html
    page. when the flash movie has finished i want to load a html page
    in the current window. What actionscript should i be using to do
    what i want?

    I'm far from an flash expert but off the top of my head you
    could try adding this to a blank keyframe at the end of your movie:
    getURL(
    http://www.whatever.com,
    "_self");
    worth a try

  • Adding a Timer (Automatic Transition)

    Hello I'm new to this forum so I hope someone may be able to help me. I'm trying to add an automatic transition to this Image Gallery that uses and XML data file. I have everything the way I like it, but now I need to have the images and the dynamic text field to rotate like a slide show. I'm really struggling with this so any help would be greately appreciated.
    import fl.transitions.TweenEvent;
    import fl.transitions.easing.*;
    import fl.transitions.Tween;
    import flash.utils.*;
    var xml:XML;
    var featureIds:Dictionary = new Dictionary();
    var link:String;
    var loader:Loader = new Loader();
    addChild(loader);
    loader.x = 0; //where the main image sits from left
    loader.y = 0; //where the image sits from the top
    var text:Loader = new Loader();
    addChild(title_tf);
    var desc:Loader = new Loader();
    addChild(description_tf);
    description_tf.condenseWhite = true;
    var xmlLoader:URLLoader = new URLLoader(); //URLLoader loads the contents of any URL.
    var url:URLRequest = new URLRequest("ImageGallery.xml"); //loading the XML file, must be in the same file
    xmlLoader.load(url); // tells URLLoader to start loading from the URLRequest
    xmlLoader.addEventListener(Event.COMPLETE, onXmlLoad); //we can act upon the loaded data once it has fully loaded.
    function onXmlLoad(e:Event):void //this function turns the text data into an XML object.
    xml = new XML(xmlLoader.data);
    var picElements:XMLList = xml.pic;
    var len:int = picElements.length();
    var btn:ActiveButton_2;
    //var btn:ActiveButton;
    for (var i:int = 0; i < len; i++) //repeats the button based on the number of XML images
      //btn = new ActiveButton();
      btn = new ActiveButton_2();
      btn.x = 10 + i * 25; //from left and distance part
      btn.y = 290;
      addChild(btn);
      btn.name = "btn" + i;
      this.buttonMode = true;
      //btn.alpha = 0.4//fade on the buttons
      btn.addEventListener(MouseEvent.CLICK, onButtonClick);
      var picElement:XML = picElements[i];
      var idString:String = picElement.@id;
      var id:int = parseInt(idString);
      featureIds[btn] = id;
      if (i == 0)
       btn.dispatchEvent(new MouseEvent(MouseEvent.CLICK));
    function onButtonClick(me:MouseEvent):void
    var id:int = featureIds[me.target];
    var picElement:XML = xml.pic.(@id==id)[0];
      title_tf.text = picElement.title.toString();
    description_tf.htmlText = picElement.description.toString();
    link = picElement.link.toString();
    loader.load(new URLRequest(picElement.image.toString()));
      new Tween(loader,"alpha",Strong.easeOut,0,1,2,true); //2 seconds to 'fade-in'
    new Tween(title_tf,"alpha",Strong.easeOut,0,1,1,true);
    new Tween(description_tf,"alpha",Strong.easeOut,0,1,1,true);
    description_tf.addEventListener(TextEvent.LINK, onTextLink);
    function onTextLink(te:TextEvent):void
    navigateToURL(new URLRequest(link));
    Here is my XML file:
    <images>
    <pic id="1"> //Attribue, associates an id number to the image element
      <link>http://www.google.com</link>
      <image>full_images/image.jpg</image>
      <title>Title Here</title>
      <description>
      <![CDATA[<p>Description is here!</p>
      <p align="right"><font color="#ffffff"><a href="event:link"><u><b>Visit link</b></u></a></font></p>]]>
      </description>>
    </pic>
    <pic id="2">
      <link>http://www.google.com</link>
      <image>full_images/image2.jpg</image>
      <title>Title 2 Here</title>
      <description>
       <![CDATA[<p>Description is here!</p>
       <p align="right"><a href="event:link"><u><b>Visit Link. </b></u></a></p>]]>
      </description>
    </pic>
    </images>
    thank you.

    I would be happy to help you out
    Here are some instructions for an example where a door moves down and up to reveal different contents:
    1. On Page1 draw a red circle and a green circle
    2. Group the circles (I found a bug, this is a work around, so I will explain later)
    3. Hide the green circle by toggling the eyeball in the Layers panel
    4. Click "Duplicate state". You are now in Page2
    5. In Page2, hide the red circle by toggling the eyeball in the Layers panel
    6. On Page2 draw a brown square (the door). Make sure the door is big enough to cover both circles
    7. Position the door up high above the stage
    8. Go to Page1 and toggle the eyeball for the door to make it visible in Page1 as well
    You have have two pages. The door is visible and in the same place in both pages. The door is also up above the stage. One circle is visible in page2 and another circle is visible in Page2
    9. Select the Page1 > Page2 transition in the Timeline panel
    10. Select the door on the stage and click Add Action > Move in the timeline. Do this again so you have two Move bars in the timeline for the door
    11. Position the Move bars so one occurs after the other
    12. Notice there is a Fade bar for each of the circles since they are fading in/fading out. Drag these bars so that they fade right at the junction between the two move effects
    13. Now we need to define how the door moves. Select the first Move bar and change the X, Y values in the properties editor to be x=0, y=600
    14. Select the second Move bar and change the values to be x=0, y= -600
    15. Create a button that navigates to Page2 when clicked
    I have attached an example FXP file
    Note: the bug I found was this. If I did not group the circles then during the animation one of the circles would appear above the door. I logged this bug and it should be fixed in the next beta. I found grouping the circles avoided the problem
    Ty

  • Added automatic transitions - pictures flash during cross-dissolve

    Hi
    I added automatic transitions (cross-dissolve for .5 seconds) to my project (45 minutes). It's mostly 7-second pictures with a few movies here and there - but after watching it in iMovie, after the 5th or 6th picture, there are short blips/flashes of other previously seen pictures during the cross-dissolve transition...is this only in iMovie or if I export it will it be like this too?
    Thanks

    I haven't seen this issue, but it should not be a problem when you export.
    If you would like to test it without sharing your whole 45 minute movie, you can go into the project list, and DUPLICATE your project by right-clicking on the project name. Then delete all but the first 5-6 minutes from the duplicate project, and share it.

  • For Making iDVDs: How to do I set my videos so they automatically transition to the next video instead of going back to the main menu every time?

    Hello out there!
    Im trying to create a magic iDVD and I have some difficulty navigating my options. Some of my video's that I'd like to add are very short clips and I'd like view them back to back without having to go back to the main menu everytime after every short video clip. For example: a 1:08 minute video of my daughter's birthday and then a 3 minute video of her bithday...how do I make it so the 1:08 minute video automatically transitions to the 3 minute video without me having to go back to the main menu to manually select the next video?
    Please advise! Thank you so much
    citule

    You can't.  But (there's always a but) if you have enough room (i.e. playing time) available in the project you can create a slideshow in iDVD
    and add all of the videos to it.
    If you do that set the Slide Duration time to anything except Manual or Set to Music.  Also do not select an transition.
    When you click on the Create Project button in Magic Movie you'll be able to use the "+" button to add the slideshow to the top menu. 
    OT

  • Screen is magnified after viewing movie on television.

    Screen is magnified after viewing movie on television.  It automatically goes larger when connecting to TV and usually goes smaller when disconnecting .  This time it has remained large.

    It's normal that the things on the screen will change size when you change resolution.  A 64x64 icon on the desktop will be a very different size at 800x600 than at 1280x960.
    You didn't say which MacBook Pro you have, so I don't know what the native resolution of the screen is (ie, the number of physical pixels in the screen), but it will be whatever the highest resolution is (bottom of the list, biggest numbers).

  • DVD Menu only shows up after the movie?!?!

    Hey guys
    I'm new to IDVD!
    I made a slideshow on Imovie and I hit share it to IDVD, i think pick a menu and hit burn. But when I play the movie in my DVD player, the movie starts right up and then it's not until after the movie is done playing that the DVD Menu comes up.
    What am I doing wrong? How do I fix this!?!?
    Thanks!!!

    You have inadvertently created what is called an "autoplay" slideshow. That type operates exactly as you described.
    You must have dragged you slideshow into the Project icon in Map View. To activate Map View, you click on the left-most of the three icons in the center below the iDVD window. The Project icon is the icon on the top in the Map View. . It states within that icon "Drag content here to automatically play ..."
    So, you need to either drag your project from there down to the lower box, or re-do your project by dragging it into the main project area on the theme's main screen. Just do not move it into the Project icon in Map View.

  • Transition between two movies

    I would like to add a transition between two movies in the
    following AS3 script that otherwise works fine. Any help is
    appreciated:
    package {
    import flash.display.MovieClip;
    import flash.net.URLLoader;
    import flash.net.URLRequest;
    import flash.events.Event;
    import fl.controls.listClasses.CellRenderer;
    import fl.controls.ScrollBarDirection;
    import fl.video.VideoEvent;
    public class VideoPlaylistSeq extends MovieClip {
    private var xmlLoader:URLLoader;
    public function VideoPlaylistSeq():void {
    // Load the playlist file, then initialize the media player.
    xmlLoader = new URLLoader();
    xmlLoader.addEventListener(Event.COMPLETE, initMediaPlayer);
    xmlLoader.load(new URLRequest("playlist.xml"));
    // Format the tileList, specify its cellRenderer class.
    //Width and length of bigger thumb box
    tileList.setSize(300, 515);
    //Width for text box where thumb text is placed
    tileList.columnWidth = 230;
    tileList.rowHeight = 60;
    tileList.direction = ScrollBarDirection.VERTICAL;
    tileList.setStyle("cellRenderer", Thumb);
    public function initMediaPlayer(event:Event):void {
    var myXML:XML = new XML(xmlLoader.data);
    var item:XML;
    for each(item in myXML.vid) { // populate playlist.
    // Get thumbnail value and assign to cellrenderer.
    var thumb:String;
    if(item.hasOwnProperty("@thumb")>0) thumb = item.@thumb;
    // Send data to tileList.
    tileList.addItem({
    label:item.attribute("desc1").toXMLString(),
    label:item.attribute("desc2").toXMLString(),
    data:item.attribute("src").toXMLString(),
    source:thumb});;
    // listen for complete event; play next video
    function vidComplete(eventObject:VideoEvent):void {
    if(tileList.selectedIndex < tileList.length-1){
    tileList.selectedIndex = tileList.selectedIndex+1;
    } else {
    tileList.selectedIndex=0;
    tileList.scrollToIndex(tileList.selectedIndex);
    myVid.play(tileList.selectedItem.data);
    // Select the first video.
    tileList.selectedIndex = 0;
    // Listen for item selection.
    tileList.addEventListener(Event.CHANGE, listListener);
    // And automatically load it into myVid.
    myVid.source = tileList.selectedItem.data;
    // Pause video until selected or played.
    //myVid.pause();
    // Listen for end of current video, then play the next
    myVid.addEventListener(VideoEvent.COMPLETE, vidComplete);
    // Detect when new video is selected, and play it
    function listListener(event:Event):void {
    myVid.play(event.target.selectedItem.data);
    // listen for complete event; play next video
    function vidComplete(eventObject:VideoEvent):void {
    if(tileList.selectedIndex < tileList.length-1){
    tileList.selectedIndex = tileList.selectedIndex+1;
    tileList.scrollToIndex(tileList.selectedIndex);
    myVid.play(tileList.selectedItem.data);
    }

    Let us know.
    There are bluray menu limitations; they don't come up often, and I do not understand some of them. For example, there is a limit in Encore of 32 buttons per menu. (That does not appear to be a problem for you.) There is a limit to the size of all interactive graphics in each title (which includes a menu as a title). I don't understand that one.
    I would do a test project, starting over, and building a less complex project that still has the essential features.
    I have found Total Media Theater 5 to perform very much like a bluray player. But, yes, ultimately you've got to burn to a disk and test it on a bluray player.

  • Does preview catalog will get smaller after deleting movies/pictures from Lightroom 4.0 assuming ...

    Does preview catalog will get smaller after deleting movies/pictures from Lightroom 4.0 assuming the option 'Automatically discard 1:1 previews' is marked 'Never'?

    Yes, but it may not be apparent immediately. The previews are "held" for a time to save rebuilding if the associted file is reimported or the removal undone.

  • Keynote transitions and quicktime movies very choppy, not smooth

    When playing a slideshow, my slide transitions and Quicktime movies are not smooth, especially when using Magic Move for a transition. There is also a long delay for the start of a transition, even if delay is set to zero. I believe I have adequate hardware but any suggestions are appreciated.
    Oddly, if I export a Quicktime version of the presentation or view in "Rehearse Slideshow," all transitions are smooth. Any tips for better playback performance while in Keynote? I would use the exported QuickTime for the actual presentation if there was a way to automatically stop/start playback at the end of each slide. Is there??
    Tech Specs
    Keynote version 6.5 (2110)
    OS X Version 10.10
    MacBook Pro (Retina, 13-inch, Late 2013)
    Processor: 2.6 GHz Intel Core i5
    Memory: 8 GB 1600 MHz DDR3
    Graphics: Intel Iris 1536 MB

    A number of recent posts have reported similar issues, all running on MacBooks.
    I have not experienced these issues on desktop machines.
    Try deleting Keynote, empty trash then install from Mac App Store
    When playing Keynote, close all other open applications.

Maybe you are looking for

  • Changing effect of PO after Release of PO

    Hi, In our present scenario.First we create the PO and if we go for ME9F or For GR without Releaisng of PO it is giving error message PO is not yet release which is OK, but if we release the PO, and after that if we change the PO it is not asking aga

  • USB Drive unmounts from airport extreme

    I have a 1TB segate USB drive mounted on my Airport etreme which I mapped as drive z: on my win 8 laptop. Somtimes when the laptop comes out of sleep mode, the drive will not remount unless I reboot the PC. Somtimes I can't even remount the drive usi

  • Standard function key setting keeps on reverting on restart

    Hello, I had selected "use all F1, F2, etc. keys as standard function keys". This preference was preserved through computer re-starts UNTIL I updated my OX to 10.5.5. (this system is not an option in the dropdown box below) Now when I restart my comp

  • EDI inbound in FI; Error handling

    Hi, I am facing a Problem in the EDI connecting the Workflow. Please suggest mesome tips to solve the Issue. The process is something like this:                   The User want to Pull the Error Information when an Idoc is processed related to FI and

  • IMovie '14: Instant replay,  doesn't work

    In iMovie '14, when I have selected a clip, I can select " modify" and "instant replay", but the selection of "100%" "50%" etc stays in grey. So I cannot select this modification to the clip. Also changing of speed isn't possible. See the picture bel