3D Shapes for Keynote.

It doesn't appear that 3D Shapes come packaged with core Keynote. Can anyone recommend an add-on of 3D Shapes - preferably free?

3D shapes have been requested by users since version 1, its still not available today in version 6.
3D shapes that can be edited and use effects does not import into keynote.
The only option is to draw a static shape.

Similar Messages

  • 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.

  • Custom Shape for JFrame

    HI,
    I need to give the custom shape for the JFrame. I used the setWindowShape method and i got the shape for the window. In my application, many custom shaped windows are occurring but all are same shapes. So i plan to keep the Custom Shaped window class as base class. If i need shaped window then i will create the class which extends the Custom Shaped window class through that i can get the custom shaped window, but i am not getting the custom shaped window.
    Here is the code for the custom shaped window. It is working fine.
    import java.awt.*;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.awt.geom.Ellipse2D;
    import javax.swing.*;
    public class ShapedWindow extends JFrame {
         public ShapedWindow() {
              super("ShapedWindow");
              try {
                   UIManager
                             .setLookAndFeel("com.sun.java.swing.plaf.windows.WindowsLookAndFeel");
              } catch (ClassNotFoundException e) {
                   e.printStackTrace();
              } catch (InstantiationException e) {
                   e.printStackTrace();
              } catch (IllegalAccessException e) {
                   e.printStackTrace();
              } catch (UnsupportedLookAndFeelException e) {
                   e.printStackTrace();
              JPanel jpnl = new JPanel() {
                   public void paintComponents(Graphics g) {
                        g.setColor(new Color(64, 144, 196));
                        g.setColor(Color.WHITE);
                        g.drawLine(270, 120, 395, 120);
              jpnl.setLayout(new FlowLayout(FlowLayout.RIGHT, -2, 2));
              jpnl.setBackground(new Color(1, 107, 177));
              this.setLayout(new BorderLayout());
              JButton jbtn1 = new JButton("Cancel");
              jbtn1.setBackground(new Color(1, 107, 177));
              jbtn1.setForeground(new Color(255, 255, 255));
              jbtn1.setFocusPainted(false);
              jbtn1.setBorderPainted(false);
              jbtn1.setContentAreaFilled(false);
              // jbtn1.setBounds(325, 90, 75, 25);
              jbtn1.addActionListener(new ActionListener() {
                   public void actionPerformed(ActionEvent evt) {
                        JOptionPane.showMessageDialog(null, "Cancel");
              JButton jbtn2 = new JButton("OK");
              jbtn2.setBackground(new Color(1, 107, 177));
              jbtn2.setForeground(new Color(255, 255, 255));
              jbtn2.setFocusPainted(false);
              jbtn2.setBorderPainted(false);
              jbtn2.setContentAreaFilled(false);
              // jbtn2.setBounds(285, 90, 55, 25);
              jbtn2.addActionListener(new ActionListener() {
                   public void actionPerformed(ActionEvent evt) {
                        JOptionPane.showMessageDialog(null, "OK");
              jpnl.add(jbtn2);
              jpnl.add(jbtn1);
              JPanel jpnl1 = new JPanel();
              jpnl1.setBackground(new Color(1, 107, 177));
              this.add(jpnl1, BorderLayout.CENTER);
              this.add(jpnl, BorderLayout.SOUTH);
              this.setResizable(false);
              this.setBackground(new Color(1, 107, 177));
              this.setSize(new Dimension(500, 150));
              this.setLocationRelativeTo(null);
              this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              Polygon poly = new Polygon();
              poly.addPoint(1, 1);
              poly.addPoint(ShapedWindow.this.getWidth() - 1, 1);
              poly.addPoint(ShapedWindow.this.getWidth() - 1, ShapedWindow.this
                        .getHeight() - 1);
              poly.addPoint(ShapedWindow.this.getWidth() - 100, ShapedWindow.this
                        .getHeight() - 1);
              poly.addPoint(ShapedWindow.this.getWidth() - 130, ShapedWindow.this
                        .getHeight() - 30);
              poly.addPoint(1, getHeight() - 30);
              poly.addPoint(1, 1);
              com.sun.awt.AWTUtilities.setWindowShape(ShapedWindow.this, poly);
         public static void main(String[] args) {
              JFrame.setDefaultLookAndFeelDecorated(true);
              Window w = new ShapedWindow();
                 w.setVisible(true);
    }In the below code, i kept the base class jfrmShape class, for this i set the custom shape. childShape class which extends the jfrmShape. But i didn't get the shape. Please find the mistake and help me.
    package SWindow;
    import java.awt.Polygon;
    import javax.swing.JFrame;
    import javax.swing.SwingUtilities;
    import PWGUI.ShapedWindow;
    public class jfrmShape extends JFrame {
         public jfrmShape() {
              Polygon poly = new Polygon();
              poly.addPoint(1, 1);
              poly.addPoint(jfrmShape.this.getWidth() - 1, 1);
              poly.addPoint(jfrmShape.this.getWidth() - 1,
                        jfrmShape.this.getHeight() - 1);
              poly.addPoint(jfrmShape.this.getWidth() - 100, jfrmShape.this
                        .getHeight() - 1);
              poly.addPoint(jfrmShape.this.getWidth() - 130, jfrmShape.this
                        .getHeight() - 30);
              poly.addPoint(1, getHeight() - 30);
              poly.addPoint(1, 1);
              com.sun.awt.AWTUtilities.setWindowShape(jfrmShape.this, poly);
              com.sun.awt.AWTUtilities.setWindowOpacity(jfrmShape.this, 0.56f);
                    setDefaultLookAndFeelDecorated(true);
              setTitle("Shaped Window");
              setSize(300, 300);
              setVisible(true);
              setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    package SWindow;
    import javax.swing.JFrame;
    public class childShape extends jfrmShape{
         public static void main(String [] args)
              new childShape().setVisible(true);
    }

    In Keynote 6 there is no facility to save shape styles.

  • New Symbols for Keynote 3... again

    Updated my Symbols file again.
    http://web.mac.com/makentosh/iWeb/tipsfromtheiceberg/Blog/5A47CA49-D686-425C-97B C-03440517B907.html
    This time, I left out stars since Keynote does a great job of creating those automagically within the program. This is also Keynote 3 only since the other shapes will do fine for Keynote 2 (these have been altered to work better with "Make Editable". Also, I did away with bullets since I'm moving in that direction when creating my presentations and thought I'd give other users an example of how to accomplish non-bullets using tables. "If it's not a gun, it shouldn't have bullets" or some such thing like that.
    Anyway, enjoy the new-old shapes!

    Ah, Brian, you're right.
    This was the duo I was referring to MekenTosj (although their server seems down at the moment, I'm sure they're alive and this is a real duo).
    In Dutch, this pronounces precisely the full Mac name, hence the mixup.

  • I have an iPad 1 and after I got the latest update for keynote and Now  it crashes every time I try to open it

    I have an iPad 1 and after I got the latest update for keynote and Now  it crashes every time I try to open it

    Do you have iOS 5.1.1 on your original iPad? If not update the iOS.
    You might also try quitting the app and then reset the pad.
    Go to the Home screen and double click the Home button. That will reveal the row of recently used apps at the bottom of the screen. Tap and hold on the app in question until it wiggles and displays a minus sign. Tap the minus sign to actually quit the app. Then tap anywhere on the screen above that bottom row to return the screen to normal. Then reset your device. Press and hold the Home and Sleep buttons simultaneously ignoring the red slider should one appear until the Apple logo appears. Let go of the buttons and let the device restart. See if that fixes your problem.
    Still no joy? Delete the Keynote app, reset the iPad and then reinstall Keynote. You will not have to pay for downloading it again.

  • Using photoshop elements 13 for a brochure Drew the rectangle shape for the first column but when i go to use the move tool it doesnt highlite the rectangle box why?

    Using photoshop elements 13 for creating a brochure -drew the rectanle shape for the first column but when i go to the move tool it doesnt allow me to highlite this shape why?

    The faulting module is photoshop. Report below.
    Source
    Adobe Photoshop CC 2014
    Summary
    Stopped working
    Date
    2/2/2015 4:54 PM
    Status
    Report sent
    Description
    Faulting Application Path: C:\Program Files\Adobe\Adobe Photoshop CC 2014\Photoshop.exe
    Problem signature
    Problem Event Name: APPCRASH
    Application Name: Photoshop.exe
    Application Version: 15.2.2.310
    Application Timestamp: 5480338c
    Fault Module Name: Photoshop.exe
    Fault Module Version: 15.2.2.310
    Fault Module Timestamp: 5480338c
    Exception Code: c000001d
    Exception Offset: 00000000049de322
    OS Version: 6.3.9600.2.0.0.768.101
    Locale ID: 1033
    Additional Information 1: 8db4
    Additional Information 2: 8db473619c10c0c8b85ce99afe676ed8
    Additional Information 3: f06d
    Additional Information 4: f06da704bdd5338df2a8d09bde2244bb
    Extra information about the problem
    Bucket ID: 1fe6d1d4e5765bd348843b981b8ec4d2 (85990875000)

  • Connecting Macbook Air 2011 to Epson projector for Keynote

    Hi,
    I'm trying to connect my Macbook Air 2011 to a brand new Epson (Powerlite 1760W) projector for Keynote presentations.
    I bought the recommended Monoprice mini cable from the Apple store but I can only plug it into my MBA (small squarish socket), the other end dosen't connect to the projector. It seems the projector wants a VGA cable into it.
    I'm lost. Do I still need the UBS cable between the two? Do I need a USB / VGA cable instead?
    Thanks in advance.

    Alison,
    In looking at the technical specifications (on Epson's site) for this device it would appear that you can make HDMI work - http://www.epson.com/cgi-bin/Store/jsp/Product.do?sku=V11H361120&BV_UseBVCookie= yes
    That being said, the HDMI end on the adapter and on the projector are most likely female. So you'll need an HDMI cable (the length will vary on how far the machine is away from the projector) but I suspect a 3 or 6 footer would work just fine. The cable is a male-to-male.

  • Why does the tab in the settings for keynote for iOS for icloud keep flipping itself back to OFF?

    I added a keynote document to icloud/iworks on my imac. No sign that it nade it to my ipad2.  What i did notice is that the slider switch on the icloud settings for keynote on the ipad keeps restting itself back to OFF, despite several times setting it to on.  No sign of my Keynote file making it over from my iMac. Any suggestions?

    Just so we don't lose the point of the rant: is there anyway to fix or (please, please) eliminate this animation or scrolling or bouncing or whatever you'd like to call it? I have been looking for a solution for some months now and the few people who do manage to communicate their concern are never answered, or they get obscure advice on something in about:config that doesn't do squat.
    SO, IS THERE A WAY TO FIX OR ELIMINATE THIS 'FEATURE?'

  • Tranfering video clips for Keynote in iPad

    Hello:
             I have multiple video clips in Keynote in ultiple presentations (A, B, C, D, etc.). For each presentation, I have created seperate folders with video clips (e.g., A. Video Clips, B.Video Clips, etc.)
             I read that I need to pass the video clips vi PHOTO app through iTune.  However, when I did it for presentation B, it would not work. It incorporated some of the videos from A but not all of B even though at the time of synching it indicated corrected number of files had been transferred.
            What am I doing wrong? How to transfer videos for multiple presentations for Keynote  into iPad? I bought the book by Tom Negrino but it is of no help.
            Thanks.

    It seems that if I crop a video in iMovie and import it
    into Keynote, the entire original video moves, not
    just the cropped portion. In other words, I don't
    seem to be able to delete the portions of a large
    imported video that I don't want or to cut up a large
    video into smaller clips which can then be used in
    Keynote.
    Dude! You keep saying that!
    iMovie edits movies. Your results (still seeing deleted footage) are not correct or usual. You have to 'Share' the finished edit out to Quicktime. Have you tried that yet?
    Stay out of the media folders where the dv files are. And don't drag and drop the clips out of the iMovie window.
    Go to the file menu and select share. In that menu you have a lot of options. Check it out.
    iMovie is the perfect option for getting video into Keynote.

  • Setting up the correct custom project size size for keynote presentation in FCP 7 or motion?

    Hi...anyone else do this?
    I have been creating and editing films in FCP (not X) for years now and have got into creating the whole presentation for clients awards ceremonies etc. via Keynote on my iPad via HDMI to HD projectors and it looks amazing and is seamless on the night. No need for crappy powerpoint slides and jumping to low res DVD films - its all controlled via my iPad.
    But i want to up the creativity of the presentations - at the moment we import the films as mp4 HD QT files and jpegs of the speakers/nominees/titles screens etc. created in Photoshop and put the whole thing together in Keynote on my iPad. It worked a treat and my clients love it!
    Now i had a thought and did a test and created Motion graphics versions of the speakers titles and nominees screens in Apple Motion - so that they had an animated section at the start with whoosh audio stingers as they are played and not just stills - and then export them as QT files - import to FCP 7 timeline and export to compresser ready to convert to mp4 for Keynote.
    This way i can extend the static part of the screen after the motion graphic part to say 10 mins as i never know how long the speaker will be on stage.
    Then when the speaker moves on the next item i can hit the ipad which will move to the next presentaion screen!
    Q. Now ive been doing these as HD 16:9 screens - but when imported to Keynote I have a white band top and bottom on the screen so i really need to start with a template screen size of 1024 x 768 for Keynote and also keep this size in FCP 7! And also export to Quicktime as the same size.
    When i do static jpegs to import into Keynote i just define the pixel canvas size - 1024 x 768 @ 300dpi in Photoshop and it works fine but im not sure what to do in Motion or PCP as I have always created my films in 16:9 HD widescreen preset!
    Anyone else doing this and got a solution to my problem and can help with custom project sizes in motion and FCP 7!

    1024x768 is 4x3.  2048x1536 is 4x3.  Both of these are current display dimensions for iPads 1-3.
    HD video (1920x1080 or 1280x720) is a 16x9 aspect ratio.
    Try putting a rectangle in a square. Unless you scale the retangle up and lose image on the sides you will not be able to properly fill the entire 4x3 display area. The easy compromise is letterboxing to ensure all of the rectangle is display in the square. The iPad is doing this with very little effort on your part.
    In FC you can create a new sequence and go into the settings and customize it to 1024x768, 2048x1536 or
    just about any other dimension. Even If you create a custom sequence at 1024 or 2048 in FC you will see the same results that the iPad is giving you with much less effort, render and conversion time (presuming your keynote workspace cannot change in dimensions or aspect ratio and you are unwilling to crop your 16x9 aspect ratio video to fill the space.) 

  • Can I record a voiceover narration for keynote ios

    I want to record a voiceover narration for keynote ios or transfer my existing presentation with voice from keynote 09?  Is there a easy way to do this?
    Thanks

    I just saw correct answer, so I clicked on it for hang time's answer.  I don't know anything about Internet forums, or anything technical, so, I'm sorry about the points!   Thanks again, hangtime, you really made my summer!!!
                                                                                                             doninlaramie

  • Plug-in support for keynote

    I would like to make Plug-in for keynote .Can it be possible to make third party plug-ins for keynote like Safari supports Flash, Shockwave, and QuickTime plug-ins and iTunes supports visualizer plugins and device plugins.

    Is it officially supported by Mac? because I believe no hack will sustain long if Apple is not going to support it. Is there is any way we can do the same? anybody tried this our earlier...any pointer in this direction would be appreciated!
    Manish

  • Do I need to resize images for Keynote?

    Do I need to resize images for Keynote? I have images in a variety of sizes and wonder if there is a minumum or maximum size recommended.
    Thank you!
    B

    All depends on what the end product is; a slide show on a laptop or projected  20 feet wide in a theatre. For best performance, images should be created to match the document size in;  Inspector > Document > Slide size.
    The slide size should as a minimum match the screen resolution of the  Mac in;
    system preferences > displays. The higher the number of  pixels the better the quality.
    However, many images are supplied that are much smaller than are required, resulting in them being enlaged beyond there best.

  • Teacher in need of Jeopardy template for Keynote

    I'm a teacher in need of a Jeopardy template for Keynote. There are tons for Powerpoint, but they don't transfer real well. Any teachers out there with one?

    Ronniebel—
    If you're just looking for a Jeopardy-like game, and not necessarily a Keynote, there's a freeware game called Freeopardy on MacUpdate I've been using since school started this year. Kyn's right about the linking "problem."
    Damian

  • Free templates for Keynote

    Hi,
    Where can we find great templates for Keynote ?
    <Edited by Host>
    Thanks.

    If you search on Google you can find many downloadable files from third party websites.
    example: www.keynotethemepark.com

Maybe you are looking for