How do I create a 3D rotating images animation

Hi, I'm trying to create an animation like the one on www.ibuypower.com
I have 4 images that I would like to array in a similar 3d animation that users can manipulate like the one on this site.
Any tips?
Thanks

If you want to replicate that effect in the same way, you should ask this in the Flash forum. The effect was created in Flash.

Similar Messages

  • How can I create a high res image gallery, need to have print res photos for a pressroom section.

    How can I create a high res image gallery, need to have print res photos for a pressroom section.

    If you want Muse to "pass through" your images and not adjust, compress, crop etc - you need to place your images in the lightbox EXACTLY at the right size, pre-cropped and prepped in Photoshop.
    So if your light box is 800x600 the image you're dropping into that must be 800x600 exactly with no effects, rotation etc added to the lightbox frame. This stop Muse fiddling with your images, if they are perfect when inserted and you're not asking Muse to crop, expand, add effects etc. If it's perfect when inserted, Muse SHOULD also leave the resolution alone too, but I have not tried that one, but in theory, it should work.

  • How can I create a java.awt.Image from ...

    Hi all,
    How can I create a java.awt.Image from a drawing on a JPanel?
    Thanks.

    JPanel p;
    BufferedImage image =
        new BufferedImage(p.getWidth(), p.getHeight, BufferedImage.TYPE_INT_RGB);
    Graphics2D g = image.createGraphics();
    p.paint(g);
    g.dispose();

  • How do I create a bootable snapshot image of Lion?

    How do I create a bootable snapshot image of Lion?  In the past, I used disk utilities - restore to create a copy of current hard drive on an external drive.  If there was a problem, kids could boot to external and work until internal drive was fixed.  This proved to be a great solution.  On a new Macbook Pro with Lion,  I get an error when I try.  It says to do a restore from the recovery disk, but the recovery disk says it is a limited function OSX.  I would like a full OSX so they can continue to work and even copy files over if the internal disk is suffering intermittent failures enough not to boot but not enough to keep from copying files.  A few years ago one of the kids had a disk/boot failure duing finals but was able to boot from the external hard drive, copy over what he needed and access the internet so that he could finish the exams.  Time machine is great, but there are instances where you need a quick fix to keep going until the new hard drive arrives.

    I do not run Windows, so I have no idea how to handle that type of situation.
    But, just to be clear: disregarding Windows, the recovery option downloads the OS and installs it. Technically, that is not a clone unless you copy the installer and create a bootable OS with it. A clone is an exact copy of your system including all your apps, user settings, files, etc, etc and will exist on an external hard drive in addition to your system on your internal - that is done with CCC or SuperDuper.
    And, a GUID partition is created in Disk Utility > click on the drive > choose Partition > choose a layout other than what you now have > there will be a clickable Options button below. Click on that and you can choose GUID. Note: partitioning your drive will erase everything on it.

  • How do I create an Array of Images

    Hi,
    I'm creating a program that basically is a slideshow. It has buttons that allow the user to switch from image to image, and has some audio in the background. I was wondering how I might create an array to store the images. I'm very new to Java, so please no detail is too small. I've just started using arrays, so I'm not sure where I would store the files or how to call the images. Please be descriptive and as dumbed down as possible :)
    Thanks for the help!

    I like ArrayList
    ArrayList<BufferedImage> myPics = new ArrayList();then just dump them in with add(myBufferedImage)
    If you'e not using BufferedImages then just change the BufferedImage to Image.
    to get, say the 6th image back out, then use:
    myBufferedImage = myPics.get(5);the index starts at 0 and should be addressed as 0 to (myPics.length - 1)

  • How do I create a new encrypted image

    Hello all,
    Tried this several times via disk utility.
    Any image created can simply be opened without me being asked for any password!!
    Can someone give me simple step by step instructions on how to successfully create a new encrypted disk  image.
    Many thanks in advance,
    Mark.

    Try How to create a password-protected (encrypted) disk image

  • How Do I Create a Sparse Disk Image?

    I'm having trouble creating a sparse disk image. The instructions I'm following are:
    +1. Open Applications->Utilities->Disk Utility.+
    +2. Select File->New...->Blank Disk Image.+
    +3. Name it, set the size to what you'll need, set the encryption to AES-128, and set the format to sparse disk image.+
    - http://forums.macrumors.com/showthread.php?t=257063
    The problem for me is I do not see an option for "sparse disk image." The only options I see for Image Format are:
    +read only+
    compressed
    read/write
    +DVD/CD master+
    Is there something I'm missing?

    Nevermind, found it.
    Figured out there's a difference between pushing the New Image button in the toolbar vs. going to File > New > Blank Disk Image...

  • How do I create a slide/push interaction/animation?

    There's an interaction/animation I want to create, but I don't know how (or if FC currently supports it).
    For example, let's say I have a custom component that consists of a rectangle with some text in it. Below it are a "back" and a "next" button. When I click the "next" button, I want to create the effect of a second rectangle sliding in from the right and pushing the first rectangle off to the left, like when you move between home screens on an iPhone. It seems you'd need to set the right and left boundaries, like the scrollable content of a scroll panel. How could I create this effect in FC?
    Thanks for your help

    Hi Scott,
    You can do this using an action sequence. You'll need to create an interaction to start the action sequence (e.g. "on application start" or "on button click"). In the interaction editor and change "Play Transition to State" to "Play Action Sequence". When you hit OK, Catalyst will open the Timelines panel to the new action sequence. You can now sequence a bunch of arbitrary events in time. To create a slideshow, make your slides the states of a custom component, and create "set component state" actions when you want to change slides.
    -Adam

  • How can I create a single background image for a BorderLayout?

    I can create a background with an image file for the individual panel (North, West, Center, East and South) in a BorderLayout, but I've been spinning my wheel for a long while now trying to figure out how to create just one background with a single image file for all of these panels?
    In my application, a panel may contain various buttons, a listbox, a group of checkboxes, a combo box, or a canvas. Even if I used the same image file, when the panels are finally put together, one can clearly see that the end product is the result of a lot of patch works.
    Hope someone has an answer for this. BTW, I'm using AWT because it works with existing browsers without the need for a separate Java plug-in.
    Regards,
    V.V.

    Look at this :
    import java.awt.*;
    import java.awt.event.*;
    import java.util.*;
    import java.awt.image.BufferedImage;
    public class PanI extends Frame
         Image map;
         Panel pan;
         myPan p8,p4,p6,p2,p5;
         BufferedImage I;
    public PanI() 
         addWindowListener(new WindowAdapter()
        {     public void windowClosing(WindowEvent ev)
              {     dispose();
                   System.exit(0);}});
         map = getToolkit().getImage("map2.gif");
         MediaTracker tracker = new MediaTracker(this);
         tracker.addImage(map,0);
         try   {tracker.waitForID(0);}
         catch (InterruptedException e){}
         I = new BufferedImage(1,1,BufferedImage.TYPE_INT_ARGB);
         setBounds(10,10,map.getWidth(null)+8,map.getHeight(null)+27);
         setLayout(new BorderLayout());
         pan = new Panel();
         add(pan,BorderLayout.CENTER);
         pan.setLayout(new BorderLayout());
         pan.setSize(map.getWidth(null),map.getHeight(null));
         p5 = new myPan(5);
         p5.setBackground(Color.red);
         pan.add(p5,BorderLayout.CENTER);
         p8 = new myPan(8);
         p8.setBackground(Color.orange);
         pan.add(p8,BorderLayout.NORTH);
         p4 = new myPan(4);
         p4.setBackground(Color.blue);
         pan.add(p4,BorderLayout.WEST);
         p6 = new myPan(6);
         p6.setBackground(Color.green);
         pan.add(p6,BorderLayout.EAST);
         p2 = new myPan(2);
         p2.setBackground(Color.pink);
         pan.add(p2,BorderLayout.SOUTH);
         setVisible(true);
    public class myPan extends Panel
         int where;
    public myPan(int i)
         super();
         where = i;
    public void paint(Graphics g)
         if (I.getWidth(null) != pan.getWidth() || I.getHeight(null) != pan.getHeight())
              I = new BufferedImage(pan.getWidth(),pan.getHeight(),BufferedImage.TYPE_INT_ARGB);
              Graphics      G = I.getGraphics();
              G.drawImage(map,0,0,pan.getWidth(),pan.getHeight(),null);     
              G.dispose();
         int x1=0;
         int x2=getWidth();
         int y1=0;
         int y2=getHeight();
         if (where == 8)
         if (where == 2)
              y1 =  p8.getHeight()+p5.getHeight();
              y2 =  getHeight()+y1;
         if (where == 4)
              y1 =  p8.getHeight();
              y2 =  y1+getHeight();
         if (where == 5)
              x1 =  p4.getWidth();
              x2 =  x1+getWidth();
              y1 =  p8.getHeight();
              y2 =  y1+getHeight();
         if (where == 6)
              x1 =  p4.getWidth()+p5.getWidth();;
              x2 =  x1+getWidth();
              y1 =  p8.getHeight();
              y2 =  y1+getHeight();
         g.drawImage(I,0,0,getWidth(),getHeight(),x1,y1,x2,y2,null);
    public void update(Graphics g)
         paint(g);
    public static void main (String[] args) 
         new PanI();
    Noah

  • How can I create a bootable DISK IMAGE of my PB Internal Drive?

    I would like to make a bootable image of my Hard Drive but without including any Free Space.
    You see all I need on the image are the OSX and the programs, NOT the 60GB of Free Space. Disk Utility however wants to create a 80gb image which includes 60GB of Free Space.
    I would like to use the Bootable image as a source image to use with the RESTORE function in Disk Utility.
    Regards

    You'll need a second machine or an external HDD with Mac OS X installed on it.
    For purposes of this procedure I'll be calling your machine the 'source' and the second machine or your external HDD the 'target'.
    First either boot the source into target mode by holding down the 'T' key while it boots. Once you see the FireWire icon on the screen, let go of the 'T' key and plug the source into the target. If you're going with the external HDD route, boot your source of off your external HDD.
    Now, select the drive of your source machine, and hit Apple-I to bring up the information pane. Down at the bottom (in the permissions area) you'll see a check box labeled "Ignore ownership..." Uncheck that.
    Open up Disk Utility. Select the source drive and run First Aid and Repair Permissions on it.
    Now, select the File menu -> New -> New Disk Image from Folder. You're going to want to hit that big "New Image" button, but don't. Trust me. It'll only cause trouble for you down the road.
    Select the source drive as the source. You can leave everything else the same and click "Image".
    Select the target as the destination. Click Save.
    Wait for a couple of hours (depending on how much stuff you have).
    When it's done, select the Images menu -> Scan image for Restore.
    Select the disk image you just made and click "Scan".
    When that's done you have a restorable image. Just use the restore tab to restore it.
    I've done this literally hundreds of times and it's worked every single time.

  • How do I create an interactive rotating model in Flash from a 3D model created in Maya?

    Hi,
    I have never used Flash before!
    I have created a 3D model in Autodesk Maya and I would like to use it to create something a user can interact with i.e. rotate it or zoom in and out using a mouse. I have been told that if I create a 360 degrees rotation animation in Maya and render it into JPEGs I can then import them into Flash. The next part is where I need help! Is there a way of doing this?
    Many thanks.

    Whatever interaction you want to involve will dictate what you need to do internally to make the movieclip react to interaction.  Being that you have never used Flash before, you need to learn how to implement event listeners, for either or both the mouse and the keyboard. 
    Your best bet at finding some help with learning about event listeners would probably be to search Google using terms like "AS3 MouseEvent tutorial".
    As far as exporting goes, what you are most likely to end up doing is to publish an swf.  As far as my experience goes, Flash automatically sets up your Publish Settings to create an swf and an html page to display it in ( including whatever supporting javascript files are needed).  If you wish to tailor the Publish Settings to produce other outputs, or want to change aspects of the defaults, then you need to acxcess the PublishSettings in the same File options where you find the Import command.  The Publish command is also located there.

  • Created duplicates of rotated images

    Hi
    I have just imported a large iPhoto library into Aperture 2 which has created two masters of any image which at some point in iPhoto had been rotated. So now in Aperture a large percentage of my images have two versions - a portrait and a landscape. Can I quickly delete the master which is the wrong orientation? I really hope so!!

    Yeah I wish they'd warn you about that.
    When you rotate an image in iPhoto it copies that image into the modified folder and keeps the original in the originals folder. (Just in case in a bizarre moment of vertigo you decided to rotate it back) Aperture then, as you've just discovered, kindly imports both thus giving you the mild headache that you'r having.
    The nice thing is that Aperture appended different metadata to each image. The original unrotated images are tagged +iPhoto originals+ and the are tagged +iPhoto modified+
    If you create a smart album of all images with keywords 'iphoto original'.
    And then sort that smart album by orientation
    You should be able to weed out the sideways ones.
    Post back with your results.
    M.

  • Create Placeholder for Rotating Image Link

    Hello,
    The other day I created some rotating banner ads on my site thanks to the fantastic help I received on this forum.
    Once thing I notice on my site is that when the banner ads switch the spacing on the page shifts so that the text/jpgs that are below the ads bounces around.
    I was wondering if anyone knows a way that I can create a placeholder to contain the banner ads so that the other content would stay put?
    Thank you so much for any help that you can provide.
    Glenn
    My website is - www.glennbartley.com
    The code I inserted is:
    <a id="bannerid" href="photoworkshops/Workshops/Manitoba-Churchill.htm"><img src="naturephotography/Banner Ads/BannerAdd-Churchill2014.jpg" /></a>
    <script language="JavaScript">
    <!--
    function random_imglink(){
    var myimages=new Array()
    var mylinks=new Array()
    //specify random images below. You can have as many as you wish
    myimages[1]="naturephotography/Banner Ads/BannerAdd-Churchill2014.gif"
    mylinks[1]="photoworkshops/Workshops/Manitoba-Churchill.htm"
    myimages[2]="naturephotography/Banner Ads/BannerAdd-CostaRica2014.gif"
    mylinks[2]="photoworkshops/Workshops/CostaRica.html"
    myimages[3]="naturephotography/Banner Ads/BannerAdd-GearGuide.gif"
    mylinks[3]="naturephotography/articles/gear.htm"
    myimages[4]="naturephotography/Banner Ads/BannerAdd-Books.gif"
    mylinks[4]="purchase.htm"
    myimages[5]="naturephotography/Banner Ads/BannerAdd-Ebooks.gif"
    mylinks[5]="http://www.theguidetotropicalnaturephotography.com/index.html"
    myimages[6]="naturephotography/Banner Ads/BannerAdd-Ecuador2014.gif"
    mylinks[6]="http://www.glennbartley.com/photoworkshops/Workshops/Ecuador.htm"
    myimages[7]="naturephotography/Banner Ads/BannerAdd-FeatureGallery.gif"
    mylinks[7]="http://www.glennbartley.com/naturephotography/articles/Gallery%20-%20AllTimeFavourites.htm l"
    myimages[8]="naturephotography/Banner Ads/BannerAdd-Peru2014.gif"
    mylinks[8]="photoworkshops/Workshops/Peru.html"
    myimages[9]="naturephotography/Banner Ads/BannerAdd-VanIsl2014.gif"
    mylinks[9]="http://www.glennbartley.com/photoworkshops/Workshops/VancouverIsland.htm"
    var ry=Math.floor(Math.random()*myimages.length)
    if (ry==0)
    ry=1
    document.getElementById('bannerid').innerHTML='<img src="'+myimages[ry]+'">';
    document.getElementById('bannerid').href= mylinks[ry];
    var imageloop=setInterval(function(){random_imglink()},5500);
    //-->
    </script>

    The anti-right click script you have is useless. If someone can see your images in their browser, they are already downloaded to their computer. Taking away the right click function will not stop them from taking the images if they are so inclined and it is supremely annoying. If you want to protect your photos, use a watermark that is difficult to remove from the image instead.
    You have some errors in your code that are being caused by having things out of place. Run your page through the validator at http://validator.w3.org so you can clean those up.
    As for the shifting issue, that is being caused by the container of the images going empty for a moment and shrinking it's height. Set the height of that container in the css to an appropriate number and it should stop.
    Something like...
    #bannerid {
         height:50px;
    Set it to whatever the height of the banners is and it should fix the problem.

  • HOW do I create a NICE enlarged image in a window EFFECT? CS5

    Maybe a long unnecessary title but I'm not sure how to describe it, and I can't find an example at the moment.
    Basically, I would like to create little image thumbnails which when clicked on bring up an enlarged version of the thumbnail. Basic I know, but rather than just having it load up in a pop-up window like you can do with behaviors in Dreamweaver, I would like the enlarged image to appear in a window which expands out from a small rectangle/square to a large rectangle/square (kind of like an animation) and THEN the image appears in this lovely display window.
    How is that done?
    Maybe I haven't explained this very well. In the meantime I will have a look and see if I can find an example to better explain what I mean.
    Thank you.
    Ian.

    You're looking for a AJAX "Lightbox" style script. These are quite common these days, and started with the original Lightbox JS script. They've since evolved into related projects like Thickbox, FancyBox, Lightbox 2, etc.
    Here's a round-up of the different available scripts (plenty more are out there if you Google "lightbox script"):
    http://www.smashingmagazine.com/2007/05/18/30-best-solutions-for-image-galleries-slideshow s-lightboxes/
    The way these work are:
    You place a script or two (sometimes your lightbox script and the jQuery JS package) in a folder on your server
    You then link these scripts in the head of your document
    You add your thumbnails to your page, and link them to the larger images
    You then add some type of attribute to each thumbnail, such as a class like "lightbox".
    When you click the thumbnail, instead of getting the larger image it triggers the lightbox script. Most all of the scripts have either instructions on setting them up, or a demo where you can view the source code. What I used to do is download the script, which almost always has a demo file in the download package, and open that up in Dreamwevaer to reverse engineer. It's not as complicated as it first looks.

  • How do I create a circle of images in motion?

    Hi All,
    I have 73 Paintings that I want to arrange in a circle, all facing inwards to the center.
    Is there a simple way to place these still images in a circle configuration in 3d space?
    My final goal is to place a viewpoint camera in the center of the circle and rotate it 360 degrees to view all of the paintings.
    Thanks.

    One way to achieve this is to create an image sequence naming your image incremental. i.e. : imagenamexx.png so when you will import your image in motion the all 73 images will be part of a single image name as this : image_name[@].png:1:73
    Then you replicate this sequence image and tweak the replicator parameters :
    - Form : circle
    - Fill : around
    - Size : to change as needed
    - Number : 73
    - Image source : 1
    - image displacement : 1
    - Face to camera : checked
    - 3D : checked
    Then you change the X axis rotation by 90°. If i'm not forgetting some step you should achieve what you need.

Maybe you are looking for