How can you convert and use a youtube video in power point presentation?

Is there an easy way to use a youtube video in power point presentation?  I have 2012 Macbook Pro running OSX 10.9.2 - Thanks!

See if this helps I use keynote for moving background in loop all the time.
in Keynote click view and bring up the inspector box. select the movie in keynote you want to effect first, and on the inspector panel you will see a repeat feature under the quicktime icon tab.
Hope that helps

Similar Messages

  • I received an Australian gift card and my computer has the American i-tunes on it.  How can I convert and use this card on my US store.  I live in AU, but the card is not returnable and I can't download the new country as I have a season pass from the US.

    I received an gift card for the Australian i-tunes and I have the American version on my computer.  The code will not be accepted, and I can't download the AU version as I have a season pass on my American store.  How can I use my gift card???

    A gift card that was purchased in one country cannot be redeemed in another.
    "Although you can browse the iTunes Store in any country without being signed in, you can only purchase content from the iTunes Store for your own country"
    From here >  http://www.ilounge.com/index.php/articles/comments/the-complete-guide-to-using-t he-itunes-store/

  • Can i capture and record a youtube video that is playing on my screen using quicktime?

    How can i capture and record a youtube video that is playing on my screen using quicktime?

    Hi Paul, QuickTime X can record video and here is the tutorial for you: http://support.apple.com/kb/PH5882?viewlocale=en_US. I'm wondering why you don't just download it using some free YouTube downloader, easy and fast.

  • I have moved from a G5 Powermac to an Intel Mac Pro and am porting over Items from a Backup HDD. How can I access and use drawings and documents created on the PC computer on the Intel computer ?

    I have moved from a G5 Powermac to an Intel Mac Pro and selectively porting over items from a backup hard drive.
    How can I access and use documents and drawings created on the PC based computer ?

    Clarisworks, you need Appleworks, which will only work with Mac OS X10.6.8 or earlier.  See this tip if you must go newer.  Mac Pros with newer hardware configuration than July 20, 2011 can't use Mac OS X 10.6.8 or earlier without this tip and then it would be Mac OS X Server.  I'm not sure if the new black Mac Pro supports that configuration or not.
    iPhoto, there is an iPhoto for all versions of Mac OS X.
    iTunes, there is an iTunes for all versions of Mac OS X.  Note with iTunes versions 11 and later, which are needed for syncing with iOS 7 or or later, you will lose coverflow, if you liked that feature.  Sadly you can't run an older version of iTunes from within Mac OS X 10.9 or later.
    Sketchup: http://help.sketchup.com/en/article/60107 shows the versions that will work with intermediate Mac OS X versions, and this shows the latest version: http://help.sketchup.com/en/article/36208 be sure to click on the operating system you choose to use.
    GIF - Viewing GIFs Apple's Preview can do that.  Editing them, I like http://www.lemkesoft.com/ Graphicconverter.
    DMG is able to be opened by all versions of Mac OS X.  This are just "disk images" which store programs on a virtual disk that will open when double clicked.    Frequently you'll find the installer of the said program inside.  To find out if the program itself is compatible with 10.7 through 10.9, see http://www.roaringapps.com/
    Otherwise see the resources on:
    https://discussions.apple.com/docs/DOC-2455
    If you end up deciding to stick with Snow Leopard.

  • Re: How do you create and use "common" type classes?

    Hi,
    You have 2 potential solutions in your case :
    1- Sub-class TextNullable class of Framework and add your methods in the
    sub-class.
    This is the way Domain class work. Only Nullable classes are sub-classable.
    This is usefull for Data Dictionary.
    The code will be located in any partition that uses or references the supplier
    plan.
    2- Put your add on code on a specific class and instanciate it in your user
    classes (client or server).
    You could also use interface for a better conception if needed. The code will
    also be in any partition that uses or references the supplier plan where your
    add on class is located.
    If you don't want that code to be on each partition, you could use libraries :
    configure as library the utility plan where is your add-on class.
    You can find an example of the second case (using a QuickSort class,
    GenericArray add-on) with the "QuickSort & List" sample on my personal site
    http://perso.club-internet.fr/dnguyen/
    Hope this helps,
    Daniel Nguyen
    Freelance Forte Consultant
    http://perso.club-internet.fr/dnguyen/
    Robinson, Richard a écrit:
    I'm relatively new to forte and I'd like to know how can you handle utility
    type classes that you want to use through out your application? Ideally
    what I want is a static class with static methods.
    Let's say that I have a StringUtil class that has a bunch of methods for
    manipulating strings.
    My problem is that we have code that runs on the client and code that runs
    on the server. Both areas could use the StringUtil class, but from what I
    understand, I have to create StringUtil in a plan and then create a server
    object of type StringUtil. The server object will eventually get assigned
    to a partition. That's not good since I really want the server object to
    physically reside at the server end and at the client end. (Actually, I
    don't want a server object, I just want to invoke a static method of a
    static class).
    Any clues on how to solve this problem would be appreciated.
    Also, what is the url at Sage-it that has a summary of all emails that have
    been posted to [email protected]? Perhaps this question has been
    answered previously.
    Thanks in advance
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>-
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

    Hi Richard,
    Your question about "utility classes" brings up a number of issues, all of
    which are important to long-term success with Forte.
    There is no such thing as a static method (method that is associated with a
    class but without an implicit object reference - this/self/me "pointer") in
    TOOL, nor is there such thing as a global method (method not associated
    with a class at all). This is in contrast to C++, which has both, and
    Java, which has static methods, but not global classes. Frequently, Forte
    developers will write code like this:
    result, num : double;
    // get initial value for num....
    tmpDoubleData : DoubleData = new;
    tmpDoubleData.DoubleValue = num;
    result = tmpDoubleData.Sqrt().DoubleValue;
    tmpDoubleData = NIL; // send a hint to the garbage collector
    in places where a C++ programmer would write:
    double result, num;
    // get initial value for num....
    result = Math::Sqrt(num);
    or a Java programmer would write:
    double result, num;
    // get initial value for num....
    result = Math.sqrt(num);
    The result of this is that you end up allocating an extra object now and
    then. In practice, this is not a big deal memory-wise. If you have a
    server that is getting a lot of hits, or if you are doing some intense
    processing, then you could pre-allocate and reuse the data object. Note
    that optimization has its own issues, so you should start by allocating
    only when you need the object.
    If you are looking for a StringUtil class, then you will want to use an
    instance of TextData or TextNullable. If you are looking to add methods,
    you could subclass from TextNullable, and add methods. Note that you will
    still have to instantiate an object and call methods on that object.
    The next issue you raise is where the object resides. As long as you do
    not have an anchored object, you will always have a copy of an object on a
    partition. If you do not pass the object in a call to another partition,
    the object never leaves. If you pass the object to another partition, then
    the other partition will have its own copy of the object. This means that
    the client and the server will have their own copies, which is the effect
    you are looking for.
    Some developers new to Forte will try to get around the lack of global
    methods in TOOL by creating a user-visible service object and then calling
    methods on it. If you have a general utility, like string handling, this
    is a bad idea, since a service object can reside only on a single
    partition.
    Summary:
    * You may find everything you want in TextData.
    * Unless you anchor the object, the instance will reside where you
    intuitively expect it.
    * To patch over the lack of static methods in TOOL, simply allocate an
    instance when required.
    Feel free to email me if you have more questions on this.
    At the bottom of each message that goes through the mailing list server,
    the address for the list archive is printed:
    http://pinehurst.sageit.com/listarchive/.
    Good Luck,
    CSB
    -----Original Message-----
    From: Robinson, Richard
    Sent: Tuesday, March 02, 1999 5:44 PM
    To: '[email protected]'
    Subject: How do you create and use "common" type classes?
    I'm relatively new to forte and I'd like to know how can you handle utility
    type classes that you want to use through out your application? Ideally
    what I want is a static class with static methods.
    Let's say that I have a StringUtil class that has a bunch of methods for
    manipulating strings.
    My problem is that we have code that runs on the client and code that runs
    on the server. Both areas could use the StringUtil class, but from what I
    understand, I have to create StringUtil in a plan and then create a server
    object of type StringUtil. The server object will eventually get assigned
    to a partition. That's not good since I really want the server object to
    physically reside at the server end and at the client end. (Actually, I
    don't want a server object, I just want to invoke a static method of a
    static class).
    Any clues on how to solve this problem would be appreciated.
    Also, what is the url at Sage-it that has a summary of all emails that have
    been posted to [email protected]? Perhaps this question has been
    answered previously.
    Thanks in advance

  • Does my macbook air have a built in virus scan?  how can I access and use it? also any recommendations of what software if this is not avail ?

    does my macbook air have a built in virus scan?  how can I access and use it? also any recommendations of what software if this is not avail ?

    Contrary to what Geeks on Hugs is telling you, Mac OS X does indeed have a basic malware scanner. It is not a feature that is directly accessible to the user, and works a bit differently than every other malware scanner out there. Gatekeeper, which has been mentioned here, is entirely separate, and provides a different method for helping to protect you against malware.
    The anti-malware scanner in Mac OS X is called XProtect. When you download an application (or any other kind of executable code), it is automatically "quarantined," so that when you open it you're asked if you really want to do that. I'm sure you're very familiar with this aspect of Mac OS X if you have ever downloaded any apps from outside the App Store. What you don't know, though, is that each time you try to open a new app, that app is checked by XProtect. If it is identified as malware, you will not be allowed to open it, and will be warned that it's malware.
    At this time, there is no known malware that can infect a properly up-to-date Mac. All current malware will be blocked by one or more methods.
    For more information, see my Mac Malware Guide.
    (Fair disclosure: I may receive compensation from links to my sites, TheSafeMac.com and AdwareMedic.com.)

  • I used to be a softbank Japan Iphone 4 customer and i had cleared all the dues. Now i don't have softbank contract and i am in my country Nepal. How can i unlock and use my Iphone here in Nepalese Network ?

    I used to be a softbank Japan Iphone 4 customer and i had cleared all the dues. Now i don't have softbank contract and i am in my country Nepal. How can i unlock and use my Iphone here in Nepalese Network ?

    Hi Edward,
    You should still be able to manually manage the music on your iPhone within iTunes. Make sure that when your iPhone is plugged in, look in the Summary tab to see if “Manually manage music and videos” is enabled and you can even you turn off Automatically Sync when this iPhone is connected. Take a look at the first article below to give more information on that. As far as your other questions about calling someone, I have provided two options for you. If it is for feedback on iTunes, you can use the second link to give detailed feedback on what is going on. If you want to actually talk to someone, the last link has a list of numbers for you to call for any support or service that you may need.  
    Manage content manually on your iPhone, iPad, and iPod
    http://support.apple.com/en-us/HT201593
    Product Feedback
    http://www.apple.com/feedback/
    Contact Apple for support and service
    http://support.apple.com/en-us/HT201232
    Take it easy,
    -Norm G. 

  • My iPod nano has a lock on the screen.How can I unlock and use my nano?

    My iPod nano has a lock on the screen. How can I unlock and use my iPod?

    Do you know there is the lock/unlock thing on the top or bottom right? If that doesn't work, hold down the middle circle and top portion of the circle button at the same time and hold until the screen goes black. Let go and soon an apple will appear. If you wait / press some buttons (i am not sure exactly how this part works) it will turn white and then the screen will appear again. You have all your music and everything still but the problem should be gone. This also works if your iPod ever freezes.

  • How can I install and use a mouse on an iPad.

    How can I install and use a mouse on an iPad?

    This has come up a number of times over the years...you cannot use a mouse with an iOS device such as the iPad since there is no cursor to move around.  Interface has to be via the touch screen.

  • Can you change the quality of YouTube videos? Using the YouTube application?

    I have a iPhone 4s and I was just wondering can you change the quality of YouTube videos using the intergrated app. Because I have a bad internet connection and I would like to watch YouTube videos without the trouble of going into safari and doing it that way.

    The dedicated app is going by the wayside with iOS 6, so a good time to get used to accessing YouTube with Safari only unless you don't plan on installing iOS 6 or unless YouTube decides to provide an app for free or a paid version via the App Store for iOS 6 and later.

  • How can you convert a PDF File into a picture format for uploading?

    How can you convert a PDF File into a picture format for uploading?

    If you have Acrobat 11, you'd select: File > Save As Other > Image
    and select one of the available image formats.

  • How can I access and use the alphabetical keyboard of the phone ?

    How can I access and use the alphabetical keyboard of the phone ? I cannot find the answer in the manual of use.  Thanks for your help !

    Recently I was abroad and tried to contact my voicemail to check my messages. I was asked to enter a password and did not know how to use the letters below the figures on the keyboard.  I had to give up and wait until I was back in my country (no password is then needed).

  • IN MY IPHONE 5 FACE TIME IS NOT THERE HOW CAN I DOWNLOAD AND USE IN DUBAI

    IN MY IPHONE 5 FACE TIME IS NOT THERE HOW CAN I DOWNLOAD AND USE IN DUBAI
    <Personal Information Edited by Host>

    An iPhone originating from the UAE will never have FaceTime.
    (113483)

  • How can I continue listening to a YouTube video while using another app?

    How can I continue listening to a YouTube video while using another app?

    How can I continue listening to a YouTube video while using another app?

  • Can you download and use iphoto on a pc

    Can you Download and use iphoto on a PC

    iPhoto is only available for the iPhone, iPad, iPod touch and Mac, so you can't install it on a PC

Maybe you are looking for

  • Just received a replacement ipad2 and I pressed start iPad as new by mistake. I wanted to restore my iPad by syncing it with iTunes. Can anyone help with this?

    Just received a replacement ipad2 and I'm having trouble syncing it with my pc. I started my iPad as new instead of using the restoring option, is there any way I can get my old apps, songs etc restored on my replacement iPad?

  • Photo to iPhoto

    When i save a photo from a source, be it scanner or on-line, i always end up with no less than four copies of the photo in All my Files. Why is this so? All i want to do is send it to the appropriate File in iPhoto.

  • Cannot change account picture after upgrading to Mountain Lion.

    After upgrading to Mountain Lion from Snow Leopard I cannot change account picture anymore. The box which is supposed to contain picture previews just says "No items". Screenshot attached: This is not limited to a particular account, trying to change

  • Age Analysis for a GL account?

    Hie All Good day, I have a client who has a unique requirement. They have a general ledger account which shows all Downpayments made. The client requires this account to produce an age analysis for each line item. Is this possible if so how can I ach

  • Mail 4.6 not working correctly.

    I'm on an iMac running OS 10.6.8. I can receive mail in all my accounts, but am repeatedly asked to confirm authenticity of my gmail account. Also, sending emails seems to take ages once I hit send - sometimes I have to wait a minute or more to send