How do I get a movie clip to play fully in an iphoto slide show.

How do I get a movie clip to play fully in an iphoto slideshow.  Right now it only plays for a few seconds, while the complete clip is 22 seconds.

Bring up the Settings pane for the slideshow and click on the movie clip in the tray at the top.  Then in the Settings pane click on This Slide button and set the play time to the actual length of the movie clip. 
OT

Similar Messages

  • How do I mute the sound on a movie clip that I'm using in iphoto slide show?

    I cant get rid of the sound on a movie clip I'm using in an iphoto slide show. I want to mute it as I'm using music on the slideshow. Thanks!

    Did your Mac come with iMovie preinstalled?
    Then you could export your video, import it to iMovie and remove the audio track. iMovie has two methods to silence a video clip - you can either select the clip in the project and use the command "Detach audio" or chance the audio settings of the clip and set the volume to zero. Then render the video new and import the silent version to iPhoto to use in the slideshow.
    Regards
    Léonie

  • HT204370 how do i get the movie sound to play through the TV speakers, It is connected to my mac bookpro but the sound only comes through my macbook pro

    how do i get the movie sound to play through the TV speakers when watching a movie from Itunes, It is connected to my macbook pro but the sound only comes through my macbook pro.
    Thanks

    Transfer the movie from your iPad to your MacBook then. =)
    iOS: How to transfer or sync content to your computer
    http://support.apple.com/kb/HT1296

  • When I switched computers my songs now cut off and don't play out.  How can I get my songs back to play fully that I purchased from ITunes over the past years?

    When I switched computers my songs now cut off and don't play out.  How can I get my songs back to play fully that I purchased from ITunes over the past years?

    Other people have been having similar problems with songs over the last few days, I assume that there has been a problem with Apple's servers.
    Depending upon what country that you are in (music can't be re-downloaded in all countries) then try deleting those tracks from your iTunes library and redownload them via the Purchased link under Quick Links on the right-hand side of the iTunes store home page on your computer's iTunes : re-downloading.
    If you aren't in a country where you can re-download music or if they re-download in the same state then try the 'report a problem' link from your purchase history : log into your account on your computer's iTunes via Store > View My Account and you should then see a Purchase History section with a 'see all' link to the right of it ; click on that and you should see a list of your purchases ; find those songs and use the 'Report a Problem' link.

  • Can't get nested movie clip to play

    Hi everyone,
    I have a movieclip on one of the frames on the maintimeline.
    Within this movieclip is a nested movieclip which itself is
    contained by another clip. The first movie clip plays to a certain
    frame where I've got some code telling the nested movie clip to
    play at that frame but this nested clip doesn't play. I'm not sure
    if I'm targetting the nested clip incorrectly or whether something
    else is wrong with the code.
    The .fla file can be downloaded at:
    http://www.officelinkonline.com.au/Ad/
    if someone would take a look. The movie clip in question is
    on the layer called text5, and within this mc on frame 15 is the
    code I'm trying to use to get the nested movieclip to play at that
    point. The code used on that frame is:
    this.innerText5_mc.free_mc.play();
    stop();
    pauseAnim = setInterval (this, "nextFrame", 4000);
    I wondered if someone could take a look and see what I might
    be doing wrong? Basically the free_mc clip just makes the word
    "FREE" scale up.
    Would really appreciated any advice.
    Thanks

    Thanks again. I'm a bit worried that you weren't able to see
    the font that I used. All of the text used in the animations are
    static text fields. I don't seem to have the option to embed these
    characters since it's static text. It'll only let me embed if the
    text fields are dynamic. Does this mean I have to change them all
    to dynamic text fields, and if so do I need to embed the font in
    every text field in every frame of the animation or can you do this
    in one place?
    Appreciate your continued help.

  • How do I get a movie clip to follow the cursor?

    Hi guys,
    What I want:
    Is a simple action where I have my company logo in the middle of the screen and it follows the cursor (not over the whole screen but within invisible borders).
    What I use:
    I have Flash Pro CS5, code is Actionscript 3.0 and my company logo has been converted to a movie clip.
    What didn't work:
    So I watched 2 different tutorials on how to do this and both didn't work.
    With the first one I used this code:
    function gradientOver(event:MouseEvent):void{
              logomc.visible=true;
              function reportStageMouse(event:MouseEvent):void{
                        var myStageX:Number=Math.round(event.stageX);
                        var myStageY:Number=Math.round(event.stageY);
                        var xTween:Tween=new Tween(logomc,"x", Strong.easeOut, logomc.x, myStageX, 1, true);
                        var yTween:Tween=new Tween(logomc,"y", Strong.easeOut, logomc.y, myStageY, 1, true);
              stage.addEventListener(MouseEvent.MOUSE_MOVE,reportStageMouse);
    function gradientOut(event:MouseEvent):void{
              logomc.visible=false;
    function gradientClick(event:MouseEvent):void{
              logomc.visible=false;
    gradient.addEventListener(MouseEvent.ROLL_OVER,gradientOver);
    gradient.addEventListener(MouseEvent.ROLL_OUT,gradientOut);
    gradient.addEventListener(MouseEvent.CLICK,gradientClick);
    And with the second one I had to make a border by drawing an oval shape, turn it into a movie clip and put my logo inside of it. Then I used this code:
    stage.addEventListener("mouseMove", arjun);
    function arjun(e:MouseEvent):void
              var var1 = mouseY - followins.y;
              var var2 = mouseX - followins.x;
              var radiusR = Math.atan2(var1,var2);
              var degreeR = radiusR / (Math.PI / 180);
              followins.rotation = degreeR;

    Thanks
    stage.addEventListener(MouseEvent.MOUSE_MOVE, hideCursor);
    function hideCursor(e:MouseEvent):void{
    logomc.startDrag(true);
    Mouse.hide(true);
    so I used this code and it didn't work. I first try'd it on the main timeline and then inside the logo's own timeline and even inside the backgrounds own timeline.
    no luck so far..

  • How can I get my movie clip to resize according to screen size?

    I have a movie clip (startMenu); inside it there are buttons, text, and graphics. This is a game I am making, and it will be played on different screen sizes of Android. This is the code I have so far:
    stage.scaleMode = StageScaleMode.NO_SCALE;
    stage.align = StageAlign.TOP_LEFT
    startMenu.addEventListener(Event.RESIZE, resizeLayout);
    function resizeLayout(e:Event):void
        setPosition();
    function setPosition():void
         startMenu.x = (stage.stageWidth - startMenu.width) / 2;
            startMenu.y = (stage.stageHeight - startMenu.height) /2;
    When I run it on different phones using debugging, it locks on the left hand corner, but does stretch out to fit the whole screen. What should I do?

    try changing
    stage.scaleMode = StageScaleMode.NO_SCALE;
    to
    stage.scaleMode = StageScaleMode.EXACT_FIT;
    http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/display/StageScal eMode.html

  • How do I call a Movie Clip to play from within another MC?

    Here's a simple one I'm sure but I can't get it to work or find a solution online.
    I have a movie with 2 movie clips on the stage, the first clip is triggered to play on a button click (which works fine) but I want the 2nd clip to start playing when the first ends. I've tried putting MovieClip2.gotoAndPlay(1) script on the last frame of MovieClip1 but I get  "1120: Access of undefined property".
    I very much appreciate your help.

    Try using:
    MovieClip(this.parent).MovieClip2.play();

  • Getting a movie clip to play in reverse

    I have this script to play a movie clip.
    What do I write to get it play in reverse?
    function fadeUp(event:MouseEvent):void {
        buttonFadeOver_mc.play()

    You need to use an enterframe event listener to continuously call prevFrame() until you see that you have reached the starting frame (by checking the currentFrame property).  Once you detect you are at the start you remove the event listener.

  • How can i transfer/import movie clips from iMovie Events back to iPhoto Library?

    hi, my camcorder only records AVCHD format and so i have to import the camcorder videos into iMovie as an iMovie Event.
    i'd like to keep both photos and movies managed under iPhoto library instead.
    can someone please please help me how i can transfer the movies imported into iMovie, BACK TO iPHOTO?
    thank you!

    Process the Movie in iMovie then export it as a mov file to the finder and then import to iphoto.
    Regards
    TD

  • OK_ How do I get the music to span over the course of my slide show?

    I can only seem to get music onto one image at a time-- how do I get the same song to continue from slide to slide as it plays? Please HELP LOVE MJ

    Go to the Inspector, then the Document tab, then the Audio tab. Within the window there is a section where you can choose a soundtrack for your presentation. You can chose to loop the song or to play it once, or to turn it off. You also gain volume control in this panel for the song as it goes through your presentation. Note, you need to drag your song out of the media browser and into the square window in the to left corner of the Audio tab in the Inspector.

  • HT201272 When iTunes was upgraded to the lastest (11.0), many of of songs/music/audiobooks were deleted!  I tried syncing my phone to my computer to get them back, but many of those were deleted too!   How do I get my purchases back to play them???

    When iTunes was upgraded to the lastest (11.0), many of of songs/music/audiobooks were deleted!  I tried syncing my phone to my computer to get them back, but many of those were deleted too!   How do I get my purchases back to play them???
    It shows on iTunes SOME of my past purchases, but not all (looks like around 30-40% of purchases).    It shows on my apple id purchase history everything i have purchased; but in iTunes, some not all of these show up.    What does show up is kind of "greyed out", so NOTHING will actually play.   I have followed the steps in the iTunes support about how to redownload past purchases, but this dowsn't work, as the download button is also "greyed out". 
    I am extremly angry and upset about this issue.  Could someone please help / advise re how to fix????

    I'm hoping that this may be just a misunderstanding somewhere.
    Could you show an image showing these greyed out items?

  • Convert iphoto slide show to mov format?

    hello, I just want to ask that, can I convert iphoto slide show into mov format??? I tried to select all pics, and export them as a mov, but the problem is, in the iphoto slide show, the pics can be moved and fit the screen size, but when I i export it, the pics just set in the middle , no any effect.

    1. Select the photos you want to use, and click on the +. In the window that appears, select slideshow, and give your project a title.
    2. Choose your transitions and music.
    3. Go to File>Export; this will create a QuickTime movie- a .mov file.
    4. For information on playback, read this section from QuickTime Player Help.
    _Viewing Movies at Full Screen_
    You can set the screen so that only the movie is visible, not the QuickTime Player window, desktop, or other windows. This presentation setting is called "full-screen mode." (You can also set a movie to play at half size, double size, or other sizes.)
    To play a movie at full screen, do one of the following:
    Choose View > Full Screen.
    Choose View > Present Movie, choose Full Screen, and click Play.
    To quit full-screen mode, press Esc. To adjust the way the picture is sized to fit your screen, such as stretched to fit or in letterbox format, move the pointer to the top of the screen to display the QuickTime Player menu options, and then choose a setting from the View menu. The following additional options are available in full-screen mode:
    Fit to Screen: The content is scaled to fill your screen as fully as possible without cropping the movie or changing the aspect ratio.
    Zoom: The content is scaled and cropped to completely fill your screen in at least one dimension. This can eliminate black areas on the top (letterboxing) or side (pillarboxing) but may hide or distort the content.
    Panoramic: The content is scaled to fit your screen and the outer horizontal edges compressed to avoid cropping the image.
    You can also cycle through all of the available full-screen options by clicking the button in the movie controls that appear when you move the pointer.
    You can also set options for all movies playing at full screen. For example, you can hide the movie controls or change the amount of time they're displayed before being hidden. To set these options, see QuickTime Player preferences.
    Note: As long as "Display full-screen controls" is selected in QuickTime Player Preferences, you can make hidden controls appear by moving the pointer.
    I hope this helps.

  • How do I get home video clips from iMovie Mac to iMovie iPad?  Surely there is some degree of cross-compatibility?  I have a load of clips in iMovie on my MBP that I wanna download to my iPad2 so that I can edit movies on the move.  Any ideas?

    How do I get home video clips from iMovie Mac to iMovie iPad?  Surely there is some degree of cross-compatibility?  I have a load of clips in iMovie on my MBP that I wanna download to my iPad2 so that I can edit movies on the move.  Any ideas?  (The clips are in a .mov format, they have been imported / converted into this format in iMovie, original files were from a JVC camcorder in some other strange format.)

    I copied the iTunes file from the external drive and it's in both places.  I thought all I would need is the iTunes program (which I downloaded to new computer) and my iTunes library file.  There must be something else that's missing.  My iTunes library looks the same on the new computer as it does when I open it on the external drive.  If I click on an iTunes library song from my new computer, it will only play if I have the external drive plugged in.
    My back-up drive is a mess.  I have multiple copies of music, video, photo, and document files and I don't know how that happened. ={  Obviously, I don't know how to back up stuff properly and there are back-up files extending over a 6- to 8-year period.  I think all I did was just drag and drop the main folders from the back-up drive to the same main folders on the C: drive.  Also (and I'm kind of fuzzy on this) Windows used to automatically save music files in a folder within my document files (which makes no sense to me).  As my Jewish friends would say, "Oy Vey!" 

  • HT6196 how do I edit  a movie clip to get rid of unwanted parts of a clip

    how do I edit a movie clip in thelatest version of I movie to get rid of unwanted parts of a clip

    You can split a clip into pieces using Quicktime Player.  See:
    http://support.apple.com/kb/PH5879?viewlocale=en_US&locale=en_US
    for details.
    Second question:
    I don't know what you want to acheive but yhe only way I can think of to move a precise time into a clip is to select it and trim it - whilst trimming the time amount trimmed is displayed.  Stop when you have the right amount then position the playhead there.  You can then 'untrim it' and he playhead will be at the desired spot.
    Geoff.

Maybe you are looking for

  • MacBook Pro 2011 Won't Detect External Dell Display

    I have a brand new 2011 MacBook Pro, 17" that I use with a 24" Dell E248WFP monitor. I purchased a Moshi HDMI to DVI adapter, and at first everything worked fine--I would use the MBP with the lid closed, everything would show up on the display, and e

  • Why aren't recipients receiving the whole of my email?

    It has come to my attention that some recipients of emails are not receiving the entire message. On two recent occaisions I received replies asking for information I knew I'd already sent. Scrolling down showed that they'd only received a part of my

  • How can i remove the line between columns?

    I'm laying out poetry and I only want one column--even in landscape mode. But in landscape mode there's still the line between columns that cuts through my text. I've tried dragging the line, clicking on it and deleting it. When I click on it two Xes

  • Disable data rate to a specific AP only?

    Hello everyone, Im using Cisco 5508 with 7.0.220.0 code and I just wanted to know if its possible to disable some data rates to a specific group of APs and not affect the rest of the APs Another question is about almost the same thing but related to

  • Oracle9i 인스톨후의 interMedia 를 이용한 SQL...(xpath.extract)

    * 질문한 사람 : atopos * 질문 등록일 : 2001-10-13 18:43:39 * 조회 : 46904 * 답변 : 3건 (Rainman1, atopos) -- 질문 내용 -- 안녕하세요 ^^ Oracle9iAS를 인스톨했습니다. 그리고 다음과 같은 테이블을 만들고, interMedia 를 이용해서 index를 만들고 SQL문을 실행하면 되는데.. SELECT 절에 xpath를 사용하면 Oracle8i 에서와 같이 에러가 발생합니다. ^