How Can I put A quicktime clip into keynote??

Two Questions,
One:
How Can I put a "get a mac" commercial into keynote. (Like how do i download it and how do i put it in)
Two:
If I download a quick time clip (say, pirates of the Caribbean 2 commercial) How can I insert it into keynote??
Zach

You can put a QuickTime clip on a Keynote slide just by dragging the movie file onto the slide. If the clip is in your Movies folder in your home directory, you can also use the Media browser to insert it. Finally, you can use the Insert menu, and use the Choose... item to pick the file.
To grab one of the "Get a Mac" ads, go to the ad page. Hover your cursor over the thumbnail of the ad, hold down the Control key, and click and hold the mouse button to pop up the contextual menu. Choose "Download Linked File", and the file should be saved to your hard drive.

Similar Messages

  • How to import 150 .mov (quicktime) clips into iMovie '11?

    Hello,
    Newbie to iMovie and having some trouble.  My wedding videographer took off with my wedding footage (and the footage of 100 other couples.)  Through the police and some of my own detective work, I was able to seize my wedding footage and have it on an external hard drive.  I have already spent thousands of dollars trying to recoup my footage and now that I finally have it, I don't have the extra money to have it made into an actual movie/dvd.
    All of the more than 150 clips are in .mov format and I am unable to import them into iMovie that way.  Any ideas on how to convert that many HD clips into a file that iMovie will recognize without losing video quality & sound?
    For tech info:
    iMac 10.8.3
    iMovie '11
    Clip Info:
    Dimensions: 1920x1080
    Codecs: H.264, Linear PCM
    Color Profile: 1-1-6
    Audio Channels: 2
    Thanks for your help!  This community is a great amazing resource and I appreciate anyone who takes the time to offer suggestions.
    Katie

    I did it!  I realized after 2 hours of it not working, that I was doing it 1 step wrong.  I was trying to import the actual file with all the clips, rather than just the clips themselves...  Silly error, and the import of .mov files into iMovie was seemelss..  Quality is great and didn't take long.  Thanks again.

  • How can I put transitions btw clips that both use green screen?

    Seems that when I drop the transition between the clips (between the backgrounds -- it won't let me drop the transition between the videos shot with the green screen), it then pushes the green screened video clips together, and the transition doesn't play at all!

    iMovie does all rendering in one pass. This effect would require a nested render, which FCP excels at.
    If you want to do this in iMovie, do the first green screen clip. Share it using Export Using QuickTime in Apple Intermediatae Codec. Do the same with the second green screen clip. Then import both clips into an iMovie event. Now you can drag both these clips into a project and put a transition between them.

  • How can I put my mp3 files into my iTunes library? Every time I download a song from a website and try to drag it to my library, it won't add on. How can I fix this?

    Back then when I had the older update with iTunes i never had this problem with trying to put my mp3 files of music into my iTunes library. Now it doesn't want to be put into the library. Once I try to drag the music file to the iTunes library nothing happens, it just keeps showing a cancellation sign with my mouse. So how can I fix this?

    Hi William.
    The problem is probably that the index is corrupt and you need to completely re-create it rather than rebuilding individual mailboxes. I have no idea what the situation really is now after having tinkered with the contents of ~/Library/Mail/, though, so the following procedure may or may not work.
    Verify/repair the startup disk (not just permissions), as described here:
    The Repair functions of Disk Utility: what's it all about?
    After having fixed all filesystem issues, if any, and making sure that there’s enough space available on the startup disk (a few GB, plus the space needed to make a backup copy of the Mail folder), try this:
    1. Quit Mail if it’s running.
    2. In the Finder, go to ~/Library/Mail/. Make a backup copy of this folder, just in case something goes wrong -- e.g. by dragging it to the Desktop while holding the Option (Alt) key down.
    3. Locate Envelope Index and move it to the Trash. If you see an Envelope Index-journal file there, delete it as well.
    4. Open Mail. It will tell you that your mail needs to be “imported”. Click Continue and Mail will proceed to re-create Envelope Index -- Mail says it’s “importing”, but it just re-creates the index if the mailboxes are already in Mail 2.x format.
    Note: For those not familiarized with the ~/ notation, it refers to the user’s home folder, i.e. ~/Library is the Library folder within the user’s home folder.

  • How can I put Locale.loadString("IDS_001") into button.label

    I am retrieving the Locale from the system, and need to place the fields of the Array into their respective places.
    One of these being for example,
    IDS_001
    This works, and returns what I'd probably expect. Although why it returns multiple instances I can't yet figure.
              public var vIDS_001:String;
              Locale.autoReplace = true;
                     var localeName:String = LocaleID.DEFAULT;
                     var nf:StringTools = new StringTools(localeName);
                                   trace("Actual local ID: " + nf.actualLocaleIDName);
               var defLang:String = nf.actualLocaleIDName;          
                                              trace( "Last Operation Status: " + nf.lastOperationStatus ); 
               Locale.setDefaultLang(defLang);
               Locale.setLoadCallback(localeCallback);
               //Locale.addXMLPath("defLang", "../en/PinPointPremium_en.xml");
                          Locale.addXMLPath("defLang", "../" + defLang + "/PinPointPremium_" + defLang + ".xml");
               function localeCallback(success:Boolean) {
                if (success) {
                    // trace(Locale.stringIDArray); // IDS_GREETING
                     trace(Locale.loadString("IDS_001"));
                     var vIDS_001 = (Locale.loadString("IDS_001"));
                     trace("+++" + vIDS_001);
                } else {
                     trace("unable to load XML");
    Actual local ID: en-GB
    Last Operation Status: noError
    PinPoint the Entered Address
    +++PinPoint the Entered Address
    PinPoint the Entered Address
    +++PinPoint the Entered Address
    Test Movie terminated.
    This is the button code, and I'm trying to figure out how to get that IDS_001 information into the btnGPS.label. No matter what I try, it errors out
                 btnGPS = new Button();
              btnGPS.width = stage.stageWidth - 20;
              btnGPS.height = 25;
              btnGPS.x = 10;
              btnGPS.alpha = 0.9;
                    // btnGPS.label = "PinPoint My Current Location";
              btnGPS.setStyle("textFormat", btnFormat);
              btnGPS.y = stage.stageHeight - 46;
              btnGPS.addEventListener(MouseEvent.CLICK, btnGPSMouseClickHandler);
              addChild(btnGPS);
    None of these following work in place of the original
                    //btnGPS.label = Locale.loadString("IDS_001");
              //btnGPS.label = IDS_001;
                    //btnGPS.label = vIDS_001;
    Theoretically, loading the Locale XML file should populate the occurences of IDS_001 - but I'm totally lost now. Been looking at this for a few days and now can't see the real picture. Does anyone have any idea how I solve this please ... I know this is so simple, but I can't get it.
    thanks

    ok, I need to get back on track.
    The app works and is fine. No problem with buttons etc. It's localization.
    .... and this works - finally
    private static var loc:String = null;
    private static var my_txt:String = null;
    // Checking for LocaleID for globalization.
    // Localization stuff. AS3 2013. (using latest CS6 Flash Pro, AIR and Flex SDK libraries)
    // This example is based on the iPhone/iPad, iOS Template in CS6
                                  // get the system language. That's al lwe need. What language is the user using
                                  loc = Capabilities.language;
                                  // if it's en-GB for example, make en_GB
                                  // loc = loc.replace("-","_");
                                  trace("The default system: " + loc);
                                  loc = "de";
                                  trace("The new system: " + loc);
                                  // you can add individual paths for each language like this
                                  Locale.addXMLPath("en", "en/PinPointPremium_en.xml");
                                  Locale.addXMLPath("de", "de/PinPointPremium_de.xml");
                                  // or set your language to the system default and use that
                   // I put the system language into 'loc'
                                  Locale.addXMLPath(loc, loc + "/PinPointPremium_" + loc + ".xml");
                                  Locale.setLoadCallback(localeCallback);
                                  Locale.loadLanguageXML(loc);
                                            function localeCallback(success:Boolean) {
                                                      if(success){
                                                                //var my_txt:String = Locale.loadString("IDS_001");
                                                                my_txt = Locale.loadString("IDS_001");
                                                                trace("The IDS_001 field is: " + my_txt);
                                                                // returns "PinPoint der eingegebenen Adresse" which is ok
                                                                } else {
                                    trace("unable to load XML");
    /* Output
    The default system: en-GB
    The new system: de
    The IDS_001 field is: PinPoint der eingegebenen Adresse
    Part 2 is the Button. AND is is this that is tricking me.
    I repeat - how do I put the contents of IDS_001 into btnGPS.local with
    IF I can put 'loc' into the label, with
    btnGPS.label = loc;
    why can't I do this
    btnGPS.label = Locale.loadString("IDS_001");
    btnGPS = new Button();
    btnGPS.width = stage.stageWidth - 20;
    btnGPS.height = 25;
    btnGPS.x = 10;
    btnGPS.alpha = 0.9;
    //btnGPS.label = "PinPoint My Current Location";
    // ==============================================
    // This actually works - it places "de" into the button. as it should
      btnGPS.label = loc;
    // this doesn't put the contents into the label
    //btnGPS.label = Locale.loadString("IDS_001");
    btnGPS.setStyle("textFormat", btnFormat);
    btnGPS.y = stage.stageHeight - 46;
    btnGPS.addEventListener(MouseEvent.CLICK, btnGPSMouseClickHandler);
    addChild(btnGPS);

  • How can I copy a YouTube clip into iMovie?

    How can I copy a clip from YouTube into iMovie?

    Sorry, I edited it off, i don't know if it's forum approved. It is on others and i just seen older threads here with similar answers.
    If someone says this is okay, then i'll post.

  • How can I put a short clip to good use?

    I have a very short clip, less than 4 seconds, which is difficult to work into my sequence. I'm reluctant to discard it for sentimental reasons. Any suggestions as to what type of special effects I can play so I can keep it?
    I've been working for several days on motion and I'm finally getting the hang of how it work, so, I would like to keep it simple.
    Thank you in advance.

    As we have no details it is a question that is impossible to answer ............ rather like, "I have got 3 notes of music, how can I create a symphony?"
    However, not being one to run away from the impossible, how about making freeze frames?
    One possibility would be to use slow-motion on the clip as has been suggested and finish it with a freeze-frame.

  • How can I put Lightroom 4 video into a format for viewing on DVDs?

    I have made as slideshow in Lightroom 4. It translates well into MP4. This MP4 file runs on some computers and all BluRay players I've tested.
    I want this slideshow to play on all DVD playeres. How can I take the MP4 file... and make it into an AVI or other file format? Is there a better file format than AVI?
    How should I proceed? Thanks.

    I don't do a lot of video. But when I do I use Adobe Premiere Elements. Since I don't do a lot of video, I don't have the most current version. But it is a pretty good program. You can use AVI or mp4 and I think some other file formats. You can trim your video and add special effects and transitions as needed. There are other video editing programs as well. I started with a program called Pinnacle Studio. I prefer PE, however. I'm sure there are numerous other video editing software programs available. Just do a Google search.

  • HT2518 After using Migrate Assistant, I made several accounts for every attempt to migrate files from PC to Mac. How can I put all accounts together into one? How can I transfer the files from the other accounts to my primary account?

    Okay, so I did the entire Migrate Assistant process to transfer all my files and what not to my MacBook. Problem is that I did it on seperate occasions and now I have several accounts.
    How can I transfer my files from the other accounts to my primary account and delete the other accounts?

    Problem is that I did it on seperate occasions and now I have several accounts.
    If you had read carefully, Migration Assistant asks what you want to do in this event. That would have precluded the redundancy.
    Part of the fundamental design of OS X is to separate user accounts so that one user can't interfere with another. It's not possible to directly merge an account with another, but you can copy whatever you need to the Shared folder - it is in your Users folder.
    Log in to one account, prefereably a smaller one, and drag the files and folders into Shared. Log out, log into the account you want to be "primary" and drag the files from Shared into their appropriate locations. When you have copied everything you need delete the redundant account.
    Do this for each of them.
    Or, you can just run Migration Assistant again and follow the prompts that address the situation you described. It involves creating a secondary, temporary account from which you can administer the transfer. When it is complete you delete the temporary account(s).

  • How can I embed the Quicktime installer into a projector

    Hi
    I'm in the proccess of completing a large multimedia project in Director that has a good deal of Quicktime content.
    Many of the people who will be making use of the end result don't have quicktime on their computers.
    I was hoping to find a way of embedding the quicktime installer into the application so that the proccess can be as idiot proof as possible.
    I don't have a great deal of experience with embedding things in Director, so any help would be greatly appreciated.
    Thanks

    You can't (readily) "embed" an un-supported file type, like an executable, into a Director file. Instead, you ship the installer alongside your projector, or in some other known relative location, and then run it if you need to. Buddy API is a useful xtra in this situation because it will help you determine whether QT is installed, and which version, and also run the installer if/when required

  • Putting a quicktime movie into keynote?

    When I put a quicktime movie in to keynote it shows video controls in the raw set but when I export it to an interactive quicktime movie it does not show the video controls is there any way to show the videos controls?
    G5   Mac OS X (10.4.2)  

    EDIT: The below answer is wrong. I just read again, No, you can't do this in Keynote. Sorry!
    Ohh, I think I get it. When you export as a normal movie, the controller is turned on by default. When you export an interactive movie, the standard controller is turned off. To turn this on for interactive movies, you'd have to have QuickTime Pro, open the movie, do a command-J to open the properties, go into the Presentation tab and change "Movie Controller Type" from "None Movie Controller" to "Movie Controller".

  • How can i insert a heart shape into keynote

    Hi I am new to IMAC and want to insert a heart shape into Keynote so I can colour code it and write text inside - can someone help please -I've tried the drawing tool but no success!! thanks

    "I've tried the draw tool but no success." - Do you mean the tool in the shapes pull-down? It seems to work for me, but I'm not an artist. You might try importing a heart shape you want then use the draw tool to trace around it to get the correct outline you are looking for. When making a shape with the drawing tool, don't forget to place the last edit point over the first and double-click to complete the shape outline. Once drawn, use the graphic tab of the Inspector to assign a fill color. Clicking inside the shape should allow you to add text.
    Good luck.

  • How can I put ID3-Tag info into my MIDI songs

    http://www.mp3machine.com/software/IDTunes/ says: "idTunes fixes those missing or wrong ID3 tags automatically, once and for all. Systematize, organize, remove duplicates and correct irregularites in your music collection, even add lyrics. Once and for all clean up your MP3 song collection without having to spend weeks typing and checking the info." but that's OS X and my computers can't run it
    In Quicktime Player Pro when I get-properties then create annotations they only show up in QuickTime player - I need a method to embed them in the file so that in WindowsMediaSlayer the author, URL, title, length, recorded date, artists on track and such can be displayed.
    Is there a version of QuicktimePlayerPro (for OS 9) that will let me export or save-as MIDI file so that WMP will 1) read the file and 2) recognize the annotations as ID3-Tags?
    SOMEONE has to look out for the recognition of music creators and talented performers!
    Thank you very much for this forum to ask my questions, and thank you dearly in advance for your answers.
    Sincerely,
    Teo

    Teo4...
    OK, I have a big heart...
    Yep! And me too, which is why I'm sharing this 1/2 solution!
    "Artly There" has forums, real Applish looking! Well, in a topic there:
    http://www.artlythere.com/cgi-bin/forum/Blah.pl?m-1154280348/s-0/#num3
    I got this lead:
    From: http://www.harmony-central.com/Software/Mac/midi.html
    I got MIDI Kit 2.7.1, I think it has put these tags in correctly:
    1. Full Song Name
    2. Copyright
    3. Author
    To see if it worked: http://givnology.com/eve/forums/a/ga/ul/8341026442/WhatYouSynco.mid
    This is also all in my site's discussions here: http://givnology.com/eve/forums/a/tpc/f/80560593/m/7641057422 well the easy way is:
    http://Givnology.com/music and click the "First try MIDI" topic. I wanted to let you know that I did find at least THIS MUCH of a solution...
    In the © tag I put some good relational database type cross indexables.... yay!

  • How can I put a numeric indicator into a case structure using VI scripting

    I'm using VI scripting and I'm trying to add a numeric indicator inside a case structure.  I'm able to add the case structure and the numeric indicator just fine, but as soon as I specify the case structure as the "owner" of the numeric (as opposed to the block diagram being the owner) I get error 1060.  Is there any way around this?
    Note:  The reason I am doing this is because this specific pattern (indicator in a case structure) will prevent a VI from being inlined when it is being built.  This pattern will provide no functionality in itself, it only prevents the inlining.  It is added to a larger VI which is use to initialize objects in a simulation, and there are many of them in the total simulation.  If they are inlined, it takes a VERY long time to generate the C code, and performance on this VI isn't an issue since it is performed only once at the beginning of the simulation.  The rest of the VIs do need to be inlined for performance reasons.  Therefore, I'm open to other options to prevent a VIs from being inlined if the "indicator in a case structure" cannot be performed via scripting.
    If any of this is unclear please let me know and I can clarify.  Thanks.
    Solved!
    Go to Solution.

    I now understand what you were saying about inlining a subvi.  I did as you said and made a subvi with a case structure and an indicator within it.  I use the New VI Object node to add that subvi to the slow-inlining parent VI.  Then I tried to inline it using the invoke node, but I got error 1399, which make sense.  Is this what you meant for me to do, or did I misunderstand?
    Also, I tried the ControlTerminal reference approach you mentioned earlier.  Unfortunately when I called the move method on the control terminal property and had the 0th frame of the case structure as the owner I got error 1060 again.
    I really appreciate your help.  Do you have any other thoughts?

  • How can I put a background image into the cell of a table using Dreamweaver CC.

    I want to place an image in a table cell and then be able to place editable HTML in the same cell on top of image. I also have Dreamweaver CS6. I can't get either one to do it using solution I found searching on web. Please help ASAP. What am I doing wrong. Example code would be great. Thanks!

    No tables required for any of this.  You simply need a 3-column starter page. 
    In DW, go to File > New > Blank page > HTML. 
    Select a 3-column layout from the 3rd panel.
    Hit Create button.
    Learn to use CSS floats, margins and padding to align elements.  DO NOT use positioning.
    Start with & bookmark these links for future reference:
    CSS Box Model
    http://css-tricks.com/all-about-floats/
    CSS Float
    Floatutorial: Step by step CSS float tutorial
    CSS Margin
    CSS Padding
    Nancy O.

Maybe you are looking for