How do you flip the image?

I want to flip the image in iMovie 8 but I don't see where it can be done.  Is this a feature that you can't do in this version?

I can't remember if iMovie 08 had this or not, but if it does, it would be in the Clip Inspector with the Video Effects.
Here is what it looks like with iMovie 09. See the second from the left in the top row.
http://www.kenstone.net/fcp_homepage/imovie_09_stone.html#clip%20adjustments

Similar Messages

  • How do you shuffle the image order when creating a new slideshow in apterture 3?  i would like to do this automatically when creating a new slideshow.  i see how you do it when you just play a slideshow.

    how do you shuffle the image order when creating a new slideshow in apterture 3?  i would like to do this automatically when creating a new slideshow.  i see how you do it with presets when you just play a slideshow, but i don't see an option to randomly shuffle the slide order when you create a new slideshow.  i know you can sort it by different fields, but i want it to be random.  thanks.

    If you want to rearrange images in random order you can try an AppleScript:
    retrieve a list of selected images from Aperture
    shuffe the list properly
    create an album in Aperture and add the images from the list to the album (make sure that the album set to be orederd manually)
    Here  is a sample script that shuffles the selected images and displays them in random order in Full Screen Mode:
    on removeItem(ims, i)
      -- remove the item at position "i" from a list ims
              if ims is {} then return {}
              if (length of ims is 1) then return {}
              if i < 2 then return rest of ims
              if (i = length of ims) then return (items 1 thru (i - 1) of ims)
              if i > (length of ims) then return ims -- should be error?
              return (items 1 thru (i - 1) of ims) & (items (i + 1) thru (length of ims) of ims)
    end removeItem
    on shuffle_items(ims)
      -- shuffle the items of the list "ims" randomly
              local numitems, ims_shuffled, nextrest, nextpick, i
              set numitems to length of ims
              if length of ims < 2 then return ims
              set ims_shuffled to {}
              set nextrest to ims
              repeat until nextrest is {}
                        set i to (random number (numitems - 1)) + 1
                        set nextpick to item i of nextrest
                        set beginning of ims_shuffled to nextpick
                        set numitems to numitems - 1
                        set nextrest to removeItem(nextrest, i)
              end repeat
              return ims_shuffled
    end shuffle_items
    on shuffleIms()
      -- retrieve the selected images from Aperture
      -- and display them in random order in full screen mode
              local imageSel, shuffled, i
              tell application "Aperture"
      activate
                        set imageSel to (get selection)
                        set shuffled to my shuffle_items(imageSel)
                        set fullscreen to true
                        if imageSel is {} then error "Please select some images."
                        repeat with i from 1 to count of shuffled
                                  reveal {item i of shuffled}
      delay 3 -- chnage that to the time you want
                        end repeat
                        set fullscreen to false
                        return shuffled
              end tell
    end shuffleIms
    shuffleIms()
    Some more code snippets to go from here:
    To create an album:
                        tell library 1
                                  if not (exists album "shuffledAlbum") then
      make new album with properties {name:"shuffledAlbum", image version:shuffled}
                                  end if
                        end tell
    And to add the images from the shuffled list to the album:
                        repeat with i from 1 to count of shuffled
                                  duplicate item i of shuffled to album "shuffledAlbum"
                        end repeat
    Regards
    Léonie

  • How do you delete the images in the Iphone images album.  Not the camera roll.  There is an album called Iphone images and there is not a delete option

    How do you delete the images in the Iphone images album.  Not the camera roll.  There is an album called Iphone images and there is not a delete option

    The same way you put them on the phone. Connect the phone to iTunes on your computer, click on the name of the iPhone, then the Photo tab. Uncheck the albums you don't want on the phone and click Sync.

  • When you drag a link onto your desktop, how do you change the image for the shortcut?

    When you drag a link onto your desktop, how do you change the image for the shortcut?

    Select it, hit command-i (or choose File -> Get Info), select the icon in the info window and paste something else there.

  • How do you flip (mirror image) a photo for transfer?

    How do you flip (mirror image) a photo in I Photo for transfer--such a a tee shirt or card?

    You don't in iPhoto. You can do it in Preview - it's called Flip Horizontally.

  • I have an envy all in one, how do i flip the image to print on a transfer.

    Trying to print on a t-shirt transfer and i need to flip the image.  I don't seem to find the right setting.

    Hi,
    Normally you can flip from application(s) before send to the printer. Please also check this:
       http://h10025.www1.hp.com/ewfrf/wc/document?cc=us&dlc=en&docname=bpu02032&lc=en&product=61561
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • Stupid Question - How do you flip an image or footage in Motion?

    I've been searching for the last 10mins but can't find any info on how to do this. I'd just like to flip an image horizontally - where is the flip command?
    Any help would be much appreciated.
    Cheers

    Or twirl open the Rotation parameter and adjust the Y rotation by 180 degrees.
    Andy
    PS: If you're going for upside down, then substitute the X rotation.
    Message was edited by: Andy Neil

  • How do you change the image in a JPanel?

    Hey! (firstly, i need to use image on a JPanel, label&icon not an option).
    I've made my JPanel class
        public class DrawingPanel extends JPanel {
            Image img;
            DrawingPanel() {
                Image img = Toolkit.getDefaultToolkit().getImage("13.jpg"); //default image at startup
            public void paintComponent (Graphics g) {
                super.paintComponent (g);
                // Use the image width & height to find the starting point
                int imgX = getSize ().width/2 - img.getWidth (this);
                int imgY = getSize ().height/2 - img.getHeight (this);
                //Draw image centered in the middle of the panel   
                g.drawImage (img, 0, 0, this);
            } // paintComponent
        } // DrawingPanelAnd I've made my instance of it and added it to the Frame:
        DrawingPanel imagePanel = new DrawingPanel();Now, I need to change the image on the JPanel according to the user's input. I have the string of the location of the new image. How do I update the JPanel to display this new image? Any help greatly appreciated!!

    Well... You could just add a method in your class which sets the image according to the new image name you provided. Something like this:
        public class DrawingPanel extends JPanel {
            Image img;
            DrawingPanel() {
                img = Toolkit.getDefaultToolkit().getImage("13.jpg"); //default image at startup
            public void setImage(String imageName) {
                    img = Toolkit.getDefaultToolkit().getImage(imageName); //Loading the desired image
            public void paintComponent (Graphics g) {
                super.paintComponent (g);
                // Use the image width & height to find the starting point
                int imgX = getSize ().width/2 - img.getWidth (this);
                int imgY = getSize ().height/2 - img.getHeight (this);
                //Draw image centered in the middle of the panel   
                g.drawImage (img, 0, 0, this);
            } // paintComponent
        } // DrawingPanel

  • How do you update the image used for your podcast?

    I just recently updated the logo for my podcast and want to know how to alter the one shown on iTunes. I use hipcast to host my podcasts and it tends to update my info on iTunes when I change it via hipcast but does not seem to be working for my pic.

    Make the new image - it should be 1400 x 1400 px - and make sure to give it a different file name from the existing image, or the iTunes Store, which caches the image, won't know it's been changed.
    Upload it to your server and change the URL in the feed, or make the change by whatever method you used to enter the original in Hipcast.
    It's likely to take the iTunes Store quite some days to update the image, so don't panic if it doesn't update at once.

  • In FormsCentral responses, how do you retrieve the images loaded on the responses?

    I can only seem to get the image names in the .xls or .csv exports.

    This tutorial explains how to download them:
    http://forums.adobe.com/docs/DOC-2656

  • How do you change the image size and resolution in photoshop everytime I change the width the height changes my measurements will not stay

    Can someone assist me with changing image size and resolution.  each time I change the width the height changes and vice/versa?

    There's a chain link between width and height. The point is to keep the aspect ratio the same, otherwise your picture would get stretched.
    You click on the chain-link to shut that off and you can adjust width and height separately.
    Also could you give us your version of Photoshop, what OS you are running it on (Windows 7 for example) and what exactly you want to do with your document?
    Resolution is the print term for how many pixels will be printed on an inch of paper. It doesn't apply if your image is intended for screen viewing.
    Gene

  • Horizontally Flip The Image in the Canvas

    Hello and Happy belated Holidays!
    Do you guys know how to horizontally flip the image in the Canvas Window? I tried to 'Free Rotate' but that didn't do the trick.
    Thanx
    Mike

    Video filters>Perspective>Flop
    x

  • In the slide show view how can you pin the "next" Arrow to the ultimate edge so it is in the same place as the full screen image, it will pin to the left edge but not the right.

    In the slide show view how can you pin the "next" Arrow to the ultimate edge so it is in the same place as the full screen image, it will pin to the left edge but not the right.

    Hello,
    Please make sure that the next button is pinned to the right side as there in the attached image.
    If it is already pinned, you can try removing any embedded HTML code and checking it.
    Regards,
    Neha

  • How do you add an image in the signature

    Hi,
    How do you add an image to the signature area.
    The Insert/edit image is not available when in My Settings | Personnel Info | Signature
    Regards
    Ray Farmer

    You need to link the image.  See the example for the Canada flag below.
    <img src="http://forums.ni.com/ni/attachments/ni/130/6908/1/Canada-small.PNG" border=0>
    Replace with the image you like.  This goes into the signature box within the profile tab of the personal settings.
    RayR

  • Sorry I'm new to Final Cut Express. How do you make an image (jpeg file for example) move across the screen slowly as I've seen in many films.

    Sorry I'm new to Final Cut Express. How do you make an image (jpeg file for example) move across the screen slowly as I've seen in many films.

    Neil from bristol wrote:
    … How do you make an image … move across the screen …
    by setting KEYFRAMES
    (read, what FC/e's built-in Help-feature tells about it)
    resize and set pic to start position
    set keyframe
    move playhead in timeline to desired length
    set pic to end position
    set keyframe …

Maybe you are looking for

  • Help! My Mac Pro will not boot up

    I knew I shouldn't try to use the Boot Camp on my MP, but I thought it would work. I have three HD in my MP and followed the instructions for the installtion of WIN XP on Mac drive 3, but when I was faced with the formatting choices in the Win setup

  • FAGLL03 variant issue

    Hi Sap Team Members, The Transaction FAGLL03 variant that runs for I1 with no trouble but never finishes for L1 & L2 is "AZLChk4CorpStf". in sap new G/l When we run this transaction code it runs fast for leading ledger, but for non leading ledgers it

  • Change layout for report

    Hi, I am having trouble selecting the 2nd layout as my default layout for this particular report. What could be the issue? Thanks, Regards. Aziz

  • Set deadline according to factory calendar

    Hi workflow experts, I have 3 questions regarding deadline monitoring. 1. Is it possible to use bussiness days from factory calendar instead of calendar days for workitem deadline ? 2. Is there a FB for changing the deadline of a workitem ? I found o

  • PO created through ME59N although PR was not released

    Hi, We've had some PR's get converted to POs through ME59N.  The issue is that the PRs were never released. Has anyone seen this before? Thanks, ` Chris