Ovals & Not Circles

Hi- I have a motion project that's 1920x816 with some circles that originate from a Photoshop file. When I import this into FCP in a sequence it looks fine. I then send it to Compressor using a custom frame size of 720x306 which was suggested to me by another user here. Photoshop, Motion, FCP, and Compressor are all set to square pixels and the circles still look circular all the way down the line until the sequence is compressed, that's when the circles turn out to be ovals.
What am I missing / doing wrong?

Thanks for your reply, well...
my source media is 1920 x 816 and I'm outputting at 720x306 because I'm looking to create still a good sized window for the web, but don't need it as huge as the original. I was told that 720x306 would be the proper size due to the 2.35:1 ratio.

Similar Messages

  • Oval or circle photo

    Help please. I am trying to make an oval photo from a rectangukar photo. I select the eliptical marque tool, draw my oval on the photo, click on the move tool, and try to drag thoav onto another photo in another file. The image does drag over to the other file , but is too large and I cannot adjust the size. I have done this in the past, but cannot remember how. Any ideas? Thanks in advance. Al Lewek

    Make sure you still have the Move tool selected in the new file. Then press Ctrl+0... as in zero at least in the pc. I will zoom out to where you can see the handles... Then grab a corner while holding the shift key and resize it.
    Butch

  • Looking for some good Arc and Circle drawing pdf code.

    Hi I am looking for some suggestions on how to draw circles and arcs using PDF. My arcs have recently started to be drawn as chords in Adobe Reader 9.1.1. I am looking for example code o this nature (I know this is not circle or arc code this is just an example):
    b
    0 0 0 RG 0 0 0 rg
    1 w 98 -156 m 104 -154 l 104 -158 l 0 0 0 RG 0 0 0 rg
    b
    0 0 0 RG 0 0 0 rg
    1 w 398 -156 m 392 -154 l 392 -158 l 0 0 0 RG 0 0 0 rg
    b
    0 0 0 RG 0 0 0 rg
    1 w 98 -156 m 396 -156 l S
    BT /F1 10 Tf 243 -151 Td (1.5") Tj ET
    1 w 398 -196 m 392 -194 l 392 -198 l 0 0 0 RG 0 0 0 rg
    b
    i.e. actual PDF tokens.
    If you know of a website that feature such examples I would appreciate the URL too.
    Thanks

    Jem,
    Pardon me if I sound rude by suggesting that before you launch into an expensive printing job (which could result in disastrous consequences if you don't do it right) that you actually learn how to use the program first. You may also want to learn something about the offset printing process and how to prepare print jobs.
    Even many Illustrator novices know that there is no such thing as a background in Illustrator, in the sense that there is in Photoshop. You will need to PLACE your Photoshop background as a high resolution CMYK tiff in the provided template. That's the answer to your second question. I don't really understand your first question. Maybe someone else will. Are you simply asking, "where do I begin?" If so, then you REALLY REALLY need to read a book on how to use Illustrator. The Adobe Illustrator Classroom in a Book might be the place to start.
    "I'm pretty good with CPR. I'm helping a friend do his vasectomy and I already have all the equipment (scalpels, thread, etc.) I'm just having trouble figuring out where to cut."

  • Curves Circle Symbol Disappeared in Photoshop - Replaced With Curves Icon. Need help

    Today I watched a YouTube video on how to get rid of under eye darkness in Photoshop (I use CC). It worked beautifully! So easy. I opened another photo to do the same thing, left my computer for a couple hours, came back, and the Curves symbol disappeared-the half colored in, half not circle.  I needed to click it in order to achieve my earlier results. It was replaced with a Curves icon as shown under the Adjustments. I was desperate for an answer to this mystery - I can't find the right help anywhere. Ugh. Got anything?

    did it install ok?
    what os?

  • Drawing oval

    Here i draw net consist of 6 rows and 7 columns , then i want to draw oval in the top of the net . I think i wrote correct code but the oval not appear .
    I want to know why ??
    my simple code :
    import java.awt.BorderLayout;
    import java.awt.Dimension;
    import javax.swing.JFrame;
    public class TestNet extends JFrame {
        private DrawingNet drawingNet;
        public TestNet() {
            drawingNet = new DrawingNet();
            getContentPane().add(drawingNet, BorderLayout.CENTER);
        public static void main(String[] args) {
            TestNet testNet = new TestNet();
            testNet.setDefaultCloseOperation(TestNet.EXIT_ON_CLOSE);
            testNet.setSize(new Dimension(600, 300));
            testNet.setLocationRelativeTo(null);
            testNet.setVisible(true);
            testNet.setExtendedState(MAXIMIZED_BOTH);
    import java.awt.Color;
    import java.awt.Graphics;
    import java.awt.Graphics2D;
    import javax.swing.JPanel;
    class DrawingNet extends JPanel {
        private static final int ROW = 6, COL = 7;
        private int X_START, Y_START, DISTANCE_Y, DISTANCE_X;
        private int x_OVAL = 348, y_OVAL = 17, OVAL_Width = 83, OVAL_HEIGHT = 83;
        public DrawingNet() {
            MyOval myOval = new MyOval();
            myOval.setOval_X(x_OVAL);
            myOval.setOval_Y(y_OVAL);
            myOval.setOVAL_WIDTH(OVAL_Width);
            myOval.setOVAL_HEIGHT(OVAL_HEIGHT);
            add(myOval);
        @Override
        protected void paintComponent(Graphics g) {
            super.paintComponent(g);
            Graphics2D g2d = (Graphics2D) g;
            drawingNet(g2d);
        private void drawingNet(Graphics2D g2d) {
            X_START = 97;
            Y_START = 100;
            DISTANCE_Y = 0;
            DISTANCE_X = 0;
            g2d.setColor(Color.BLACK);
            for (int r = 0; r < ROW; r++) {
                g2d.drawLine(X_START, Y_START + DISTANCE_Y, X_START * COL, Y_START + DISTANCE_Y);
                DISTANCE_Y += 83;
            for (int c = 0; c <= COL; c++) {
                g2d.drawLine(X_START + DISTANCE_X, Y_START, X_START + DISTANCE_X, (Y_START * ROW) - 83);
                DISTANCE_X += 83;
    import java.awt.Color;
    import java.awt.Graphics;
    import java.awt.Graphics2D;
    import javax.swing.JPanel;
    class MyOval extends JPanel {
        private int oval_X, oval_Y;
        private int OVAL_WIDTH, OVAL_HEIGHT;
        public MyOval() {
        public void setOVAL_HEIGHT(int OVAL_HEIGHT) {
            this.OVAL_HEIGHT = OVAL_HEIGHT;
        public void setOVAL_WIDTH(int OVAL_WIDTH) {
            this.OVAL_WIDTH = OVAL_WIDTH;
        public void setOval_X(int oval_X) {
            this.oval_X = oval_X;
        public void setOval_Y(int oval_Y) {
            this.oval_Y = oval_Y;
        public int getOVAL_HEIGHT() {
            return OVAL_HEIGHT;
        public int getOVAL_WIDTH() {
            return OVAL_WIDTH;
        public int getOval_X() {
            return oval_X;
        public int getOval_Y() {
            return oval_Y;
        @Override
        protected void paintComponent(Graphics g) {
            super.paintComponent(g);
            Graphics2D g2d = (Graphics2D) g;
            g2d.setColor(Color.BLUE);
            g2d.fillOval(getOval_X(), getOval_Y(), getOVAL_WIDTH(), getOVAL_HEIGHT());
    }Thanks

    ok, i but in MyOval button to test if it will appear or no and i add someLayouts like this but the buttont also not appear . why ??
    see the updated code :
    import java.awt.BorderLayout;
    import java.awt.Dimension;
    import javax.swing.JFrame;
    public class TestNet extends JFrame {
        private DrawingNet drawingNet;
        public TestNet() {
            drawingNet = new DrawingNet();
            drawingNet.setLayout(new BorderLayout());
            getContentPane().add(drawingNet, BorderLayout.CENTER);
        public static void main(String[] args) {
            TestNet testNet = new TestNet();
            testNet.setDefaultCloseOperation(TestNet.EXIT_ON_CLOSE);
            testNet.setSize(new Dimension(600, 300));
            testNet.setLocationRelativeTo(null);
            testNet.setVisible(true);
            testNet.setExtendedState(MAXIMIZED_BOTH);
    import java.awt.BorderLayout;
    import java.awt.Color;
    import java.awt.Graphics;
    import java.awt.Graphics2D;
    import javax.swing.JPanel;
    class DrawingNet extends JPanel {
        private static final int ROW = 6, COL = 7;
        private int X_START, Y_START, DISTANCE_Y, DISTANCE_X;
        private int x_OVAL = 348, y_OVAL = 17, OVAL_Width = 83, OVAL_HEIGHT = 83;
        public DrawingNet() {
            MyOval myOval = new MyOval();
            myOval.setLayout(new BorderLayout());
            myOval.setOval_X(x_OVAL);
            myOval.setOval_Y(y_OVAL);
            myOval.setOVAL_WIDTH(OVAL_Width);
            myOval.setOVAL_HEIGHT(OVAL_HEIGHT);
            add(myOval,BorderLayout.NORTH);
        @Override
        protected void paintComponent(Graphics g) {
            super.paintComponent(g);
            Graphics2D g2d = (Graphics2D) g;
            drawingNet(g2d);
        private void drawingNet(Graphics2D g2d) {
            X_START = 97;
            Y_START = 100;
            DISTANCE_Y = 0;
            DISTANCE_X = 0;
            g2d.setColor(Color.BLACK);
            for (int r = 0; r < ROW; r++) {
                g2d.drawLine(X_START, Y_START + DISTANCE_Y, X_START * COL, Y_START + DISTANCE_Y);
                DISTANCE_Y += 83;
            for (int c = 0; c <= COL; c++) {
                g2d.drawLine(X_START + DISTANCE_X, Y_START, X_START + DISTANCE_X, (Y_START * ROW) - 83);
                DISTANCE_X += 83;
    import java.awt.BorderLayout;
    import java.awt.Color;
    import java.awt.Graphics;
    import java.awt.Graphics2D;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import javax.swing.JButton;
    import javax.swing.JOptionPane;
    import javax.swing.JPanel;
    class MyOval extends JPanel {
        private int oval_X, oval_Y;
        private int OVAL_WIDTH, OVAL_HEIGHT;
        public MyOval() {
            JButton button = new JButton("OVAL");
            button.addActionListener(new ActionListener() {
                public void actionPerformed(ActionEvent e) {
                    JOptionPane.showMessageDialog(null, "HIIIIIIIIIIII");
            add(button, BorderLayout.NORTH);
        public void setOVAL_HEIGHT(int OVAL_HEIGHT) {
            this.OVAL_HEIGHT = OVAL_HEIGHT;
        public void setOVAL_WIDTH(int OVAL_WIDTH) {
            this.OVAL_WIDTH = OVAL_WIDTH;
        public void setOval_X(int oval_X) {
            this.oval_X = oval_X;
        public void setOval_Y(int oval_Y) {
            this.oval_Y = oval_Y;
        public int getOVAL_HEIGHT() {
            return OVAL_HEIGHT;
        public int getOVAL_WIDTH() {
            return OVAL_WIDTH;
        public int getOval_X() {
            return oval_X;
        public int getOval_Y() {
            return oval_Y;
        @Override
        protected void paintComponent(Graphics g) {
            super.paintComponent(g);
            Graphics2D g2d = (Graphics2D) g;
            g2d.setColor(Color.BLUE);
            g2d.fillOval(getOval_X(), getOval_Y(), getOVAL_WIDTH(), getOVAL_HEIGHT());
    }

  • Black border around boxes and oval shapes

    I created some boxes and oval and circles in InDesign and it is placing a black border around the shapes. How can I get correct this? I am using InD CS6.
    Thanks,
    Joe

    Select the frames and go to Window>Stroke and change the stroke value to 0pts
    Or press "/" on your keyboard
    Or click the square in the tool bar on the left the bottom one and press the icon that has a red line going through it

  • Circular and oval cropping at set size and resolution?

    I know how to use the M tool to create circles and ovals and i know you can set that to certain dimensions, but that doesn't do everything I need.
    How do you crop circles and ovals out of a photo, at a set size (for example, a 1 inch circle ) at a set resolution for printing?  What I need to do is crop circular and oval images out of a photo, say at 250 dpi, then paste them onto a blank white page for printing.
    So if I've got let's say a photo that's 14x10 inches at 300dpi, I want to be able to go in, crop out an oval or circle, with as much or as little of the photo that I can or want to, setting that automatically to a certain dimension and dpi, then paste it into a blank white page I've already created at that same d
    When finished I'd have maybe 20 or 30 images on a page that I can flatten all the layers and print.
    I can't find a way to set size and resolution with anything other than the regular square crop tool.

    You can make an action and use it as one step automation to achieve that on an initial selection.
    Step by step instructions:
    With the Elliptical Marquee Tool, make the desired selection on a image.
    Open the Actions panel (Window > Actions (Alt+F9), from its menu at the top right or corresponding buttons at the bottom, choose New Action, and in the dialog that appears press the Record button.
    From the Image menu, choose Crop.
    From the Selection menu, choose Inverse (Ctrl+Shift+I)
    Press the d key on your keyboard to reset the foreground/background color swatches.
    Press Ctrl + Delete keys on your keyboard to fill with white.
    From the Image menu, choose Image Size (Ctrl+Alt+I), make sure the Resample Image is checked, and in the Document Size section enter the desired dimensions and resolution and press OK.
    In the Actions Panel press the Stop Recording button.
    Now you can copy or drag the image to another image.
    For the next image make the oval selection, go to the Actions panel, select the actions you created above, and press the play button. You can also create a keyboard shortcut in the action's property accessible by double clicking the action.
    The creation of this action assumes that in the final image you will be composing oval images on white background without overlapping their rectangular bounding boxes. If you plan to overlap them then the action must be modified to make the image a transparent layer and delete outside the oval instead of filling with white.

  • True circles from round-cap dash?

    In the discussion of tricuspoids Jongware stated that "circles" in Illustrator are not circles at all, but approximations "from four quadratic Bézier curves." Is the round cap for a stroke generated the same way, or would it be possible to generate a true circle by outlining the stroke of a 0 pt. round-capped dashed line?
    Thanks,
    Peter

    The former Output Resolution setting was just Illustrator's interface for providing a flatness contol.
    Flatness is a value in PostScript that governs how far (in terms of printer spots) the output device is allowed to deviate from the mathematical curve. In effect, it determines how much the bitmap of a curve is allowed to be approximated by rendering the curve as a series of facets. It mainly has to do with the issue of rendering the printer bitmap for long subtle curves which could choke earlier RIPs.
    In older versions of Illustrator, rather than provide a straightforward Flatness setting as other programs did, Illustrator provided its so-called Output Resolution setting, such that...
    Actual printing device resolution / Output Resolution setting = flatness.
    The default was a flatness of 3, and the default assumed an output device with a resolution of 2400 spi. So Illustrator's default Output Resolution setting was 800 (2400spi / 800=3).
    Many (probably most) Illustrator users for decades completely misunderstood the setting as something akin to PPI in a raster image. They thought of it as something like Illustrator's Raster Effects Resolution setting, to determine the raster PPI at which everything on the page was rasterized at print time.
    FreeHand, by comparison, provided a straightforward Flatness setting that the user could set at the object level, not just the whole document level. (Just like FreeHand allows Halftone settings to be defined at the object level.)
    Nowadays, processing power is not as hampered by low flatness settings as in the earlier days of PostScript imagesetters. And PostScript can now automatically set the flatness appropriately for the target device. Illustrator's default setting is now Automatic. You can see it (and change it if you feel you must) in the File>Print>Graphics dialog. There you'll find a slider control for adjusting Flatness. To see, turn off the Automatic checkbox, move the slider. Then mouseover the slider arrow. A tooltip will appear with the actual flatness setting.
    It really has nothing to do with the fact that a cubic Bezier curves doesn't (very strictly speaking) define a true quarter circle.
    Programs like Illustrator draw cubic (degree 3 polynomial) Bezier curves, not quadratic (degree 2). That's why a segment in Illustrator has two curve handles, not just one. You can see examples of quadratic Beziers in things like the old Macintosh Quickdraw programs, cheezy drawing modules in "office" or "works" programs, and even in the drawing tools in early versions of Flash. Even today, Flash actually renders its curves as quadratic Beziers in its actual SWF output because on average it's less data for the Flash Player to process on-the-fly. That's why FreeHand provided a Flash Preview mode; it allowed a FreeHand user who was drawing elements destined for use in Flash to see the subtle shape differences that would occur when FreeHand's cubic Beziers get converted to Flash's quadratic Beziers.
    Some drawing programs in Illustrator's category and some CAD programs provide tools for both cubic and quadratic Beziers.
    Having only one "curve handle" a quadratic Bezier curve cannot cross itself to form a loop. There are higher-degree Bezier curves, too; but processing and interface practicality make cubic Beziers the most advantageous for drawing programs.
    Apple's TrueType used quadratic Beziers, which are a royal pain to use for drawing exact shapes like type glyphs. Today's OpenType font format can contain either cubic ("PostScript") or quadratic ("TrueType") Bezier curves.
    JET

  • Doin' the "Sequence Shuffle" (or not)

    Here's a problem: Check out [javafx.util.Sequences API|http://java.sun.com/javafx/1/docs/api/javafx.util/javafx.util.Sequences.html] . It has some nifty functions like sort and shuffle. However, say you make a sequence of stuff with an id attribute: syntax may not be 100% correct but the idea is the same
    var circles:Circles[] = for(i in [1...10]) Circle{
    x: x + i
    y: y + i
    radius: 10 - i
    id: "{i}"
    }Because Sequences.shuffle only takes Objects not Circles, how can you type cast a Circle?
    circles = Sequences.shuffle((Object)circles) // IDE identifies this as an errorLets sort something with a Comparator:
    c:Comparator = MyCircleComparator{}
    circles = Sequences.sort(circles, c);  // good luckI guess you could try to wrap up a Circle inside of a JComponent because this ain't happening either:
    class MyCircleComparator implements Comparator<Circle>{
    public int compare(Circle o1, Circle o2){
         return o1.getId().compareTo(o2.getId());
    }Why would the JavaFX developers tease us like this? It's just cruel!
    So here's the challenge.
    Write a java.util.Comparator and pass it to Sequence.sort() function or a sequence of CustomNode objects by some custom attribute. There's 10 of my precocious Duke Stars in it for the best solution. Oooooooh.....Aaaaaaaaaah.
    Edited by: bthayer on Jan 7, 2009 10:45 PM

    Here is how it is done.
    var circles : Circle[] = for(i in [1..10]) {
        Circle{
            id: "{i}"
    println("--- shuffle ---");
    circles = Sequences.shuffle(circles) as Circle[];
    for ( c in circles ) { println("{c.id}"); }
    println("--- sort with comparator ---");
    class MyCircleComparator extends java.util.Comparator {
        override function compare(o1: Object, o2: Object) {
            var c1 = o1 as Circle;
            var c2 = o2 as Circle;
            c1.id.compareTo(c2.id);
        override function equals(other: Object) {
            other == this;
    def c = MyCircleComparator{}
    circles = Sequences.sort(circles, c) as Circle[];
    for ( c in circles ) { println("{c.id}"); }

  • Newbie help needed.  Looking to circle options on a form.

    Hey Guys,
    I'm a total beginner at this, but we've been mapping out forms and I need to know how to be able to "circle" different options on a form.
    I think the best way to do this is to have a button which makes a circle object visible or hidden.  Currently I've figured out how to set an object as hidden and make it appear on button click, but not make it go back to hidden if the button is clicked again.  Many times its just a yes/no type case, but sometimes there are cases where I have multiple options where only one can be selected and I would like to be able to click and circle the appropriate type.
    An example:
    How many cylinders does your vehicle have:
         4     6     8
    and I would like to make it so if you click the 4 it will circle the 4 and make sure the 6 and 8 are not circled.
    Any help would be appreciated.

    How about this case:
    There are three different cases that could be true, 4 cylinders, 6 cylinders and 8 cylinders.  I have created the 4, 6 and 8 as buttons, and created three circle objects as cyl4, cyl6 and cyl8.  I want it so that when 4 is clicked it displays the circle object cyl4 and makes the others hidden, unless cyl4 is already visible then it will just make all three objects hidden.  So far I have this code on each button click, modified for which objects should be set to visible on each one:
    topmostSubform.Page1.Span[41].Fourcyl::click - (JavaScript, client)
    if (cylinder == 4){
        xfa.form.topmostSubform.Page1.cyl4.presence="hidden"
        xfa.form.topmostSubform.Page1.cyl6.presence="hidden"
        xfa.form.topmostSubform.Page1.cyl8.presence="hidden"
        cylinder.value = 0
    else{
        xfa.form.topmostSubform.Page1.cyl4.presence="visible"
        xfa.form.topmostSubform.Page1.cyl6.presence="hidden"
        xfa.form.topmostSubform.Page1.cyl8.presence="hidden"
        cylinder.value = 4
    Where cylinder is just a control variable.  It's probably something simple that I'm missing, any help would be appreciated.
    Thanks

  • Question on displaying image

    Is it possible to display a webpage inside an oval / square /
    circle, etc. I have the following code that displayes pictures in a
    slideshow. I want the pictures to display within an oval on my
    webpage. Is it possible?
    <!-- THREE STEPS TO INSTALL FADING SLIDE SHOW:
    1. Copy the coding into the HEAD of your HTML document
    2. Add the onLoad event handler into the BODY tag
    3. Put the last coding into the BODY of your HTML document
    -->
    <!-- STEP ONE: Paste this code into the HEAD of your HTML
    document -->
    <HEAD>
    <SCRIPT LANGUAGE="JavaScript">
    <!-- Original: CodeLifter.com ([email protected])
    -->
    <!-- Web Site:
    http://www.codelifter.com
    -->
    <!-- This script and many more are available free online
    at -->
    <!-- The JavaScript Source!!
    http://javascript.internet.com
    -->
    <!-- Begin
    // Set slideShowSpeed (milliseconds)
    var slideShowSpeed = 5000;
    // Duration of crossfade (seconds)
    var crossFadeDuration = 3;
    // Specify the image files
    var Pic = new Array();
    // to add more images, just continue
    // the pattern, adding to the array below
    Pic[0] = '1.jpg'
    Pic[1] = '2.jpg'
    Pic[2] = '3.jpg'
    Pic[3] = '4.jpg'
    Pic[4] = '5.jpg'
    // do not edit anything below this line
    var t;
    var j = 0;
    var p = Pic.length;
    var preLoad = new Array();
    for (i = 0; i < p; i++) {
    preLoad
    = new Image();
    preLoad.src = Pic
    function runSlideShow() {
    if (document.all) {
    document.images.SlideShow.style.filter="blendTrans(duration=2)";
    document.images.SlideShow.style.filter="blendTrans(duration=crossFadeDuration)";
    document.images.SlideShow.filters.blendTrans.Apply();
    document.images.SlideShow.src = preLoad[j].src;
    if (document.all) {
    document.images.SlideShow.filters.blendTrans.Play();
    j = j + 1;
    if (j > (p - 1)) j = 0;
    t = setTimeout('runSlideShow()', slideShowSpeed);
    // End -->
    </script>
    </HEAD>
    <!-- STEP TWO: Insert the onLoad event handler into your
    BODY tag -->
    <BODY onLoad="runSlideShow()">
    <!-- STEP THREE: Copy this code into the BODY of your HTML
    document -->
    <table border="0" cellpadding="0" cellspacing="0">
    <tr>
    <td id="VU" height=150 width=150>
    <img src="1.jpg" name='SlideShow' width=150 height=150>
    </td>
    </tr>
    </table>
    <p><center>
    <font face="arial, helvetica" size"-2">Free JavaScripts
    provided<br>
    by <a href="
    http://javascriptsource.com">The
    JavaScript Source</a></font>
    </center><p>
    <!-- Script Size: 2.13 KB -->

    dm25 wrote:
    > Is it possible to display a webpage inside an oval /
    square / circle, etc. I
    > have the following code that displayes pictures in a
    slideshow. I want the
    > pictures to display within an oval on my webpage. Is it
    possible?
    Only if the images themselves appear to be oval. You'd need
    to mask them
    to create that effect. Here are a couple of tutorials you
    might find
    helpful.
    http://www.projectseven.com/tutorials/images/photo_magic/vignettes_elliptical.htm
    http://www.projectseven.com/tutorials/images/photo_magic/vignettes_vector.htm
    Linda Rathgeber [PVII] *Adobe Community Expert-Fireworks*
    http://www.projectseven.com
    Fireworks Newsgroup:
    news://forums.projectseven.com/fireworks/
    CSS Newsgroup: news://forums.projectseven.com/css/
    http://www.adobe.com/communities/experts/

  • Aperture books - other shapes for photos

    Is there anyway to create photo box in any other shapes? I want to create a book with tons of pictures of my parents' grandchildren and it's getting monotonous with only having rectangles. I would love to be able to throw in some ovals and circles for cropping of photos. Do you know of anyway to do that?
    Thanks,
    Debbie

    Doesn't appear to be. Does seem like a heck of an oversight. Have you checked out the video on the Apple site [Making Books|http://www.apple.com/aperture/how-to/#video-books] ? It looks like you can rotate the image boxes, not much but a little variety.
    Do you have iWorks? Keynote has a bunch of shapes and such. You can access your Aperture library from Keynote and then you could export from Keynote and re-import into Aperture to make the book. A pain I know but a possibility.
    There may also be a plug-in out there that would do what you want. I'm not aware of any but check out the Aperture website .

  • Control of transition progress? Possible?

    I want to place a clip over and in the middle of another clip in a circle or oval shape. The circle transition would be perfect if I could set and hold the size of the circle through the running of the clip. Is there a way to do this or is there another tool for this effect? thx, EE

    ericehrenpfort wrote:
    I want to place a clip over and in the middle of another clip in a circle or oval shape. The circle transition would be perfect if …
    funny idea to abuse a transition as an effect … but not an editor's first choice:
    • drag your 2nd clip over the 1st
    • apply under Effects/Keying a 'Mask' on top clip
    • select top clip, in the info pane you'll find some 'knobs' to play with:
    on first try, it looks like you can only apply rounded-corners with the slider
    but you can drag'n-shift the numerical value of 'roundness' beyond 100%!
    plus, selecting the Mask effect offers you 4 handles to correct the mask from rectangle to square/circle, to create an oval or circle shape.
    apply Feather as needed ...

  • CS4 deco tool within mask or specific area?

    So far, I've used the deco tool to animate some interesting
    background patterns. However, I would like to use it for something
    other than backgrounds. For instance, rather than a vine and leaf
    pattern on an entire page, could I instead fill a specified area?
    If I was to use the deco tool to create grass, for instance, I
    wouldn't want to fill the entire stage, but just a specified area.
    If I use a mask... my concern is that its not animating just
    that section, so elements will be cut off.

    hzp1,
    > So far, I've used the deco tool to animate some
    interesting
    > background patterns. However, [...] could I instead fill
    a
    > specified area?
    Yes! The Deco tool fills whatever area its used in. So on
    the main
    timeline, it fills the Stage. If you draw a closed stroke
    somewhere -- on
    the Stage or inside a symbol -- the Deco tool will fill the
    area enclosed by
    that stroke instead. Use the Oval tool, for example, to draw
    an unfilled
    oval or circle (a stroke, but no fill). Then click inside
    that area with
    the Deco tool.
    > If I use a mask... my concern is that its not animating
    just that
    > section, so elements will be cut off.
    You could use a mask too, but that isn't as efficient as
    limiting the
    Deco tool's fill from the get go. I'm not sure what you mean
    with this last
    statement, though. If you mask your content, elements will
    indeed be cut
    off -- but that's the purpose of a mask, right? Be aware that
    you can
    animate a mask as easily as you can animate the content it
    partially
    obscures.
    David Stiller
    Adobe Community Expert
    Dev blog,
    http://www.quip.net/blog/
    "Luck is the residue of good design."

  • Ellipse Tool Bug

    Hi,
    I am having an issue with the Ellipse tool. I have drawn a perfect Circle and in Edge it appears that way. However, when I preview in the browser it changes to a rectangle and it changes position relative to the other buttons. See my project below. Any help is much appreciated...
    http://dl.dropbox.com/u/9159616/Archive.zip    
    Adam

    Hi Adam,
    It looks like the "percent based layout" feature is getting in your way. When I preview your file, the circle becomes an oval, not a square (based on your percent settings).
    You have percent values set for width and height of the circle. Select the circle, then in the "Properties/Position and Size" panel, just click the "%" symbol next to "W" and "H" (width and height), and it will change to pixels, and then your circle won't change to an oval when you preview.
    To stop the circle from changing position, select the circle, then click the "%" symbol under "Properties/Position and Size" panel, next to "L" and "T" (left and top).
    Let me know how it goes!

Maybe you are looking for

  • How can I sync ONLY the top photo in the stack?

    I sync various Aperture photo albums to my IPad and iPhone. The problem is that when I have 'stacked' images (eg. one image showing in the album and two other copies 'hidden' underneath), all of the photos in the stack are copied to the ipad and iPho

  • Mail backup

    How do I move copies of all my emails to iCloud so I can delete them from the Mac and the iPhone to clear space but still access them? I have plenty of iCloud storage. In other words, I want to delete the mail from my iMac but still have it in iCloud

  • Installing Packages...

    Hi, I finally installed Arch with a lot of trouble (FTP installation). I couldn't install hwdetect though. So none of my drivers are working and I can't get a network connection without it. So, I downloaded hwdetect from one of the mirrors on my othe

  • Transfering files from powerPC G3 running OS9 to macbook pro

    Is it possible to transfer files from my old G3, which runs OS9, to my new Macbook Pro running 10.4.9?

  • Query Variable Selection Creation

    HI we have a req to select 600 material numbers in a query through the variable screen, but the users cant select 600 variables every time, RIGHT.... so we are trying to brianstorm on a work around, if you have worked on an instance like this please