Creating movies in keynote???

hi!
i dont really know how to articulate my question so i will describe what i am planning to do.
on one of my foils in keynote i would like to display a xray. i would like to create a movie of several regions of this xray being zoomed in and commented with text. is this possible in keynote or do i have to do this in another program and then import the movie in keynote?

Hai, I am also created movies in keynote through my gadgets.
I also have green laser pointers.
http://www.techlasers.com - Green Laser Pointers
Thank you for posting>

Similar Messages

  • Animated GIFs don't loop in exported movies from Keynote 3

    I am just getting started with Keynote 3.0 and really like what I have seen. I created a series of slides and pasted animated GIFs in various places. They are set to loop on each slide as Keynote presents the slides. The slide show has preset transition and build timings and there is music playing continuously, throughout the show. It works quite well. (However, there is very intermittent choppy audio and video playback when there are builds or transitions occurring. Any thoughts on optimizing this?)
    The problems begin when I ask Keynote to export the slideshow to a movie. The main problem that I am struggling with is that the animated GIFs don't loop in the rendered movie, regardless of which compressor I choose. I don't see anything in the documentation. I have also searched several of the discussions on making movies from Keynote 3 but have not specifically seen animated GIFs discussed. What am I missing here?
    Also, I want to be able to play this movie on a DVD player at an upcoming function. Any recommendations for an approach that will be best? I have QT 7 Pro and the iLife '06 suite.
    Thanks, in advance, for any forthcoming suggestions.
    eMac G4   Mac OS X (10.4.6)   1.25 GHz, 1 GB RAM

    My guess is, it's too much of a pain to have to calculate how many times it will actually loop and create the loops and then composite everything. Running it in Keynote just tells the thing to keep playing over and over till you do something that stops it. There's a BIG difference there as one is just being told to play, the other is having to be placed in a movie with an exact number of frames, so there are a bunch of calculations involved.

  • Creating themes in Keynote 4.0.4

    Hi,
    I'm going to give a presentation and so I need to create my own Keynote theme.
    I created one and saved it as a theme, but as I open it, I've got a white background all the time.
    What am I doing wrong?
    Or what's wrong with my Mac or with Keynote?
    Thanks

    What version of the OS are you running? Also, in some cases, running the same presentation on two different computers will yield a change in carefully timed presentations. This is because audio and video aren't "locked" and will drift depending on the speed of the computer/OS. Because there were some changes made to how Keynote handles movies, this MIGHT have an effect on some of your timings there, but I don't think this would cause the widespread mislinking you're seeing.
    zootooz wrote:
    I wish that Apple would create a freeware Keynote Player...
    If you're displaying on a Mac running fairly recent OS, anyone can download and install the iWork Trial. While it will eventually time out, this trial version can still run Keynote presentations just like the full version can. You just can't save any changes to the presentation.
    Message was edited by: Kyn Drake

  • Exporting a QuickTime movie in Keynote '09

    Hello,
    I am trying to create a quick time movie from Keynote.
    I have a five minute audio file sound track to which I have selected 28 Slides.
    When I first exported, I hear the audio, but the video does not advance.
    I have considered using "Fixed Timing" but it looks like you are then forced to set uniform slide display duration and uniform transition duration. However, my slides have a variety of display-durations, and transition-durations. (All the advances are automatic, not manual.)
    Please help me create a movie that actually reflects the original Keynote show as created, and tweaked.

    You need to record your slideshow so you can export with the recorded timing. Go to the Play Menu then Record Slideshow. This will run through your slideshow and record when the transitions take place. Then when you export you can select Recorded Timing.
    Since you have a soundtrack, you will want to make sure under the audio section to select Include the slideshow soundtrack, but uncheck Include the slideshow recording.
    I should add that there have been many people here that have had problems with the timing getting off a little in the Quicktime file. So if you need the timing to be exact, you might want to export without the audio then add to iMovie where you can work with the audio and video a little more.

  • Importing WMV movies into Keynote?

    I'm very new to Keynote and actually movies. I'd like to create a presentation that uses slides, QT Movies and specifically (wmv movies). How can I import the wmv movies into Keynote?
    Thanks,
    Bill

    WMV (Windows Media Video) is not a compatible format for use within Keynote. You will have to convert them to .mov files, however, there are no free applications to do that. They require a purchased license. Flip4Mac will allow you to try the process, but has a limitation of 1/2 the duration of the clip, up to 30 seconds. You choose Export in the file pull down menu in Quicktime, then choose your desired output format. If you want to buy it, you go to the F4M prefs and click on the upgrade tab. The other app that does conversion is called Visual Hub. It's not as full featured as F4M, but it's a little cheaper, and does an OK job.

  • Need help returning correct name from a code created movie clip

    Hello. I am an AS3 n00b with hopefuly a simple question I am designing a simple game in flash. This code creates an array of movie clips and asigns a picture to each one. It is a map screen. What I need is when I click on one of the created movie clips, I need it to return either the index of the clip in the array or the name of the clip. Basicaly anything I can use to tell them apart in the code. Here is the code:
    import flash.display.MovieClip;
    var MapLoader:Array = new Array();
    var strJPGext:String = ".jpg";
    var intContTileNumber:int;
    var strContTilePath:String;
    var intDistStartX:int = 63;
    var intDistStartY:int = 64;
    var intDistMultiplyY:int = 0;
    var intDistMultiplyX:int = 0;
    var intDistCount:int = 0;
    var MapSquare:Array = new Array();
    for (var i:int = 0; i < 729; i++)
             //var MapSquare:MovieClip = new MovieClip();
            MapSquare.push (new MovieClip());
            MapSquare[i].x = intDistStartX + (intDistMultiplyX * 30);
            MapSquare[i].y = intDistStartY + (intDistMultiplyY * 30);
            MapSquare[i].name = "MapSquare" + i ;
            addChild(MapSquare[i]);
            intContTileNumber = i;
            MapLoader.push (new Loader);
            strContTilePath = intContTileNumber + strJPGext;
            MapLoader[i].load(new URLRequest(strContTilePath));
            MapSquare[i].addChild(MapLoader[i]);
            intDistCount++;
            intDistMultiplyX++;
            if (intDistCount > 26){
            intDistCount = 0;
            intDistMultiplyX = 0;
            intDistMultiplyY++;
    stage.addEventListener(MouseEvent.CLICK, reportClick);
    function reportClick(event:MouseEvent):void
        trace("movieClip Instance Name = " + event.target.name);   
    Now all this works fine, it creates the map and assigns the correct picture and places them in the correct X,Y position and it is the correct grid of 27x27 squares. The problem is with the name, when I click on the movie clip, it returns "Instance2" or "Instance5" or whatever. It starts with 2 and then increases each number by 3 for each clip, so the first one is 2, then 5 then 8 and so on. This is no good. I need it to return the name that I assigned it
    . If I put the code in trace(MapSquare[1]) it will return the name "MapSquare1" so I know the name was assigned, but it isnt returning.
    Please assist
    Thanks,
    -red

    Thanks for the resopnse,
    I know I dont really need the name, I just need the index number of the array, but I cant figure out how to get the index name without specificaly coding for it. That is why in the listener event I use event.target.name because I dont know what movie clip is being clicked until it has been clicked on. Basically when a movie clip is clicked it needs to return which index of the array was clicked.
    I could do it this way:
    MapSquare[0].addEventListener(
      MouseEvent.MOUSE_UP,
      function(evt:MouseEvent):void {
        trace("I've been clicked!");
    MapSquare[1].addEventListener(
       MouseEvent.MOUSE_UP,
       function(evt:MouseEvent):void {
         trace("I've been clicked!");
    MapSquare[2].addEventListener(
       MouseEvent.MOUSE_UP,
       function(evt:MouseEvent):void {
         trace("I've been clicked!");
    ... ect
    but that is unreasonable and it kind of defeats the purpose of having the array in the first place. The code that each movie clip executes is the same, eventualy that index will be passed into a database and the data at that primary key will be retrieved and returned to the program. So I just need to know, when one of those buttons is clicked, which one was clicked and what is its index in the array.
    I am a VB programer and in VB this is very easy, the control array automatically sends its own index into the function when one of the buttons is clicked. It seems simple enough, I just dont know how to do it in action script.
    Thanks again,
    -red

  • How do I move a keynote file from my computer to my ipad?

    I have a Mac OS X version 10.6.8 and an Ipad version 7.0.6. How can I move a Keynote file from my Mac to my Ipad? I do not have Icloud on my Mac.

    Have you tried e-mailing the Keynote file to yourself? You can then press and hold on the attachment in Mail and choose to open in Keynote. However the results may depend on your version of Keynote.

  • Error while creating Move-In - How can i Allocate Device to Installation ?

    Hello Experts,
    while creating Move-In i am getting following Error "No Devices Allocated to Installation PC0301A0 on 10.03.2011"
    How can i allocate device to installation, please advise where can i configure the settings and create Move-In without above error.
    Regards,
    Rajesh. G

    Hi Bill,
    Thanks for your responce it was helpfull, but i am trying to create Move-In with help of Contract Account. I was not able to create Move-In and i tried even with Bussiness Partner.
    When i was trying to create Move-In with the help of Business Partner Option in Move-In i am getting error as "The required index has not been created yet in the search Engine", same is happening when i am trying for Business Partner in Business Master Data. This might be the reason for Move-In creation Error, please help me where can i configure index settings for search engine for Business Partner.
    Please correct me if i am wrong.
    Thanks,
    Rajesh Gunda

  • How can I export a graphic slide with a quicktime movie from Keynote?

    I export a title slide with a quicktime movie from Keynote to my desktop and it plays fine with audio. Once I insert or drag the clip into iWeb the resolution is degraded and very choppy. The resolution is 320x200 and I'm exporting from Keynote as a custom size (320x200) Frame rate: 29.97 Key Frames: Automatic Key Reordering is checked Data Rate: Automatic Quality: Multi pass. I need some help.

    how large is the video and if you publish - does it still have the same horrible quality?
    you might considering exporting as flash (loads faster) and integrating that into your iweb site using post-editing: http://karreth.com/index.php/articles/iframes-iweb/
    max

  • Looping part of a QT movie in keynote

    Hi, I want to be able to have a movie in keynote that plays the whole movie and once it reaches the end it jumps back to a certin point in the movie (not the begining) and plays that part over and over till i change the slide, so the effect is, for example, a movie shows a title or something coming in, and then loops from the end back to a point after the title comes in to keep a little movement going on the title instead of stopping all together.
    any ideas?
    Thanks!

    I run into similar problems with music. You can't really make it jump back to a certain point. What you can do is copy the movie editing out the beginning portion that you don't want to be replayed. You have to add this to a second slide and have the movie play once automatically go to the next slide and then have the edited movie automatically start and loop. This isn't the sexiest way to make it happen but it will work. You then just click to the next slide when you are ready.
    Hope that this helps.
    CD

  • How can i play a movie in keynote from more than 600 seconds between other slides in a automatic loop

    How can i play a movie in keynote from more than 600 seconds between other slides in a automatic loop

    The maximum duration available for an automatic presentation in Keynote is 600 seconds.
    The alternatives are to export a QuickTime video, use other presentation applications, a media server player or digital signage application.

  • How do you create an interactive Keynote PDF on a MacBook Pro that can be downloaded and manipulated on an iPad.

    How do you create an interactive Keynote PDF on a MacBook Pro that can be downloaded and manipulated on an iPad?

    File > Export > PDF

  • When I move my keynote presentations from my imac to my iPad they don't work

    when I move my keynote presentations from my imac to my iPad they don't work
    builds and movies don't work

    Per your request, here's my file.  Thanks for your help.
    file://localhost/Users/gg/Desktop/Intonation%20Clinic.key

  • FM for creating Move-in

    experts,
    Can i know any FM /BAPI to create Move in ,i have Installation & Contract Account available with me.
    Tried using ISU_S_MOVE_IN_CREATE & BAPI_ISUMOVEIN_CREATEFROMDATA , but dont know what parameters to be passed.
    Please help me out in this.
    Thanx in advance.,
    regards
    sagar

    hi Sagar,
    For Move in bapi use following parameter.
    PARTNERSTDADDRADJUST .  *for import parameter MOVEINCREATECONTROLDATA   
    MOVEINDATE    
    PARTNER
    CONT_ACCT
    PARTNERREFERENCE
      Above parameter for * import parameter MOVEINCREATEINPUTDATA  
    INSTALLATION
              for Table parameter TCONTRACTDATA
      CONTRACT = 'X'. 
      CONX-INSTALLATION = 'X'.
      above for table parameter TCONTRACTDATAX
    Thanx
    Kumar

  • Is there any where that I can voice why I returned my beloved new Ipad? I was told I could move my Keynote presentations to it and then use it for my business presentations. Unfortunately that turned out to not be true. I need the IPad to work with a remo

    Is there any where that I can voice why I returned my beloved new Ipad? I was told I could move my Keynote presentations to it and then use it for my
    business presentations. Unfortunately that turned out to not be true. I need the IPad to work with a remote.
    The Ipad is on a short cable to my projector. I am usually on a podium 30 feet away. No infra red receiver on the IPad and
    the Iphone remote needs wi fi which is not always available in all the locations I do my teaching and lecturing in.
    If you can build a remote into the Ipad in the future I would really like to use an Ipad to replace my heavier lap top for business travel. Thank You Kathy McNeil.

    "The Ipad is on a short cable to my projector."
    Get a longer cable?

Maybe you are looking for

  • The folder path iTunes media contains an invalid character. How can I fix this so I can install itunes

    the folder path iTunes media contains an invalid character comes up when I try to install itunes does anyone know how to fix this an why it happened an stopped itunes working ?

  • PDF Print, white background?

    When I export my .indd doc to a PDF (Print) it looks great. But when I print it out, some text has a white background and my drop shadows turn white. This is resolved by exporting to PDF (Interactive) but I intend to print this doc and want it to be

  • Video streaming from database in adf

    Hi I want to stream videos stored in oracle database in web application using adf. Is there any way to do this please reply with complete description .

  • AS 2 for infinite slide show loop

    I don't know if there is a simple answer to my question. Here goes.  I created an infinitely looping series of photos that scrolls from right to left. The animation was created with 6 photos and was animated using AS 3. Is there substitute coding usi

  • Solaris 10 boot sequence

    Hi, I could not find any reference how to define the boot sequence in SMF, such as in the /etc/rc directories the SXX and KXX jobs. Where can I define this in SMF? Regards, Horst