PSD Animating a 3D Object

Ok this might be a hardware problem but not sure.
I create a 3d object in PSD. stays nice and centered on grid. I can rotate and adjust no problem.
But then when I create the scene into a timeline and activate a stopwatch the object jumps to a different location on grid. Is it a bug, Bad graphics card. No idea but myself and another designer are having the same problem keeping us from animating any 3d objects. Both of us would be happy if we could create any object and spin it in place to create an animation.
Please help.
We have AMD FirePro D500 3072 MB

I have same problem. When I create object in Photoshop - for example Cube Wrap all is ok until I activate animation. After that object starts to jump to different locations. What's more - sometimes parts of the object are displayed still in the original location.
I use Photoshop CC, card is GeForce GT540M/PCIe/SSE2 with updated driver, system is windows 7 with all updates.
Below is screenshot of oddly displayed 3d box wrap. It was supposed to sit in the middle of the grid as on the next screenshot, made before turning on animation stopwatch.

Similar Messages

  • How to apply same Animation to different Objects?

    Hello,
    So, as the question stated, I am trying to animate multiple objects in the scene with the same animation.
    For example, I have a SQUARE and a CIRCLE in the scene, both of them in different layers. I want them to both scale from 0% to 120%, then back to 90%, and finally to 100%. What I do is going in the SQUARE "scale" section and add keyframes to the time I want each elements (percentage) to be at. When done, the SQUARE works perfectly (scaling from 0>120>90>100 percent). Then, I copy and paste the keyframes I use with the SQUARE to the CIRCLE, which gives me the same animation as the SQUARE (0>120>90>100 percent). But when I want to make changes to both of them, I need to change each keyframes in each objects (SQUARE and CIRCLE) one by one...
    Having only two objects in the scene isn't bad, but I have around 30 objects that needs to be animated exactly the same... so changing them one by one is pretty time-consuming.
    So, the question is, is there a way where I can easily apply a type of animation (scaling 0>120>90>100, and adjustable afterwards) to different objects (SQUARE, CIRCLE, etc.) in my composition without doing it one by one?
    This might be a stupid question, but I'm new with After Effects so this is quite complicated for me...
    Thank you,
    Pascal

    Several ways, parenting and expressions.
    Parenting: Create a small solid or a null object that will be 'controlling' the other layers. Parent the CIRCLE and the SQUARE to it (to achive this, in the Parent column of the Composition Panel, select the name of the controlling layer or directly pickwhip the layer).
    Once done, when you scale/rotate/move the controlling layer the parented layers transform accordingly. It doesnt affect opacity.
    Be aware that parenting modifies the values you see in the Composition panel for each of these properties (scale/rotation/position) for each of the parented layers. This is because the transform properties are now expressed in the coordinate system of the parent layer, and not in the one of the comp. Modifying the transform properties of the parented layers tranform these layers relatively to the controlling one.
    Expressions: You can enter expressions in the transform properties of your layers. For instance, if your controlling layer is named 'controller', alt+click the stopwatch of the property 'Scale' of the SQUARE for instance and enter this in the expression box:
    thisComp.layer("controller").transform.scale;
    Now when you scale the controller, the SQUARE scales accordingly. It works for any property.
    Note that since the expression doesnt refer to the property's own keyframes, those keys are now ignored. To refer to the property's own key value in an expression, use simply 'value'. For instance:
    s = thisComp.layer("controller").transform.scale/100;
    [s[0]*value[0], s[1]*value[1]];
    The possibilities are pretty much infinite.

  • How to make simple animation of 2D object ?

    I am a beginner of LABVIEW, and here is my problem...
    For each time loop, I can get a the x,y,theta information of a rigid body in the 2D plane.
    I want to use those data to make a simple animation to represent how the object is moving like in a 2D plane, which includes the 2DOF translation movement and 1DOF rotation movement. 
    How should I do?
    Thanks a lot for helping me!

    You can use XY graph to plot the trajectory of the object.
    Regarding the introduction of the XY graph, you can refer to the tutorial on LabVIEW pro.
    http://www.labviewpro.net/teach_content.php?fid=6&post=308&fpt=5
    This can only represent the XY movement, not include the rotation part.
    I don't think there's any graph control in LabVIEW that can represent the rotation aspect.

  • Java2d animating a Ellipse2D object in java

    how to animate an Ellipse2D object in java2D?
    can anyone please help me

    Ellipse2D.Double ball=new Ellipse.Double(x,y,100,100);...
    while(true)
    x++;
    repaint();
    }The specific reason your ellipse isn't moving is in the quoted code above. Variable x is used to initialize
    ball with a value of 0. After that, incrementing x doesn't change ball's own x field because it is a different
    variable. You will either have to write ball.x++ (the field is public) or use RectangularShapes's setFrame
    method.
    More generally, your code is based on an older, AWT, model. If you want to move to Swing, you should
    1. use JApplet or JFrame (I never write applets ifI can help it, myself).
    2. Derive a custom component and do your drawing in its paintComponent method
    3. Use a javax.swing.Timer instead of a thread: since animation is about drawing and graphics,
    this is simpler that working with threads.
    4. Invest in a book like Knudsen's Java2D book (search this forum for references) would be a good idea.
    Here's a demo:
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.geom.*;
    import javax.swing.*;
    public class Animated extends JPanel {
         private static final int WIDTH = 30, HEIGHT = 20;
         private int x, y, dx=2, dy=3;
         private Ellipse2D ellipse = new Ellipse2D.Float(x, y, WIDTH, HEIGHT);
         private Timer timer = new Timer(100, new ActionListener(){
              public void actionPerformed(ActionEvent evt) {
                   int minx, maxx, miny, maxy;
                   if (dx > 0) {
                        minx = x;
                        maxx = x + dx + WIDTH;
                   } else {
                        maxx = x + WIDTH;
                        minx = x + dx;
                   if (dy > 0) {
                        miny = y;
                        maxy = y + dy + HEIGHT;
                   } else {
                        maxy = y + HEIGHT;
                        miny = y + dy;
                   x += dx;
                   y += dy;
                   ellipse.setFrame(x, y, WIDTH, HEIGHT);
                   if (x < 0 || x + WIDTH > getWidth())
                        dx = -dx;
                   if (y < 0 || y + HEIGHT > getHeight())
                        dy = -dy;
                   repaint(minx, miny, maxx-minx, maxy-miny);
         public Animated() {
              setBackground(Color.BLACK);
              setForeground(Color.GREEN);
              timer.start();
         protected void paintComponent(Graphics g) {
              super.paintComponent(g);
              Graphics2D g2 = (Graphics2D) g;
              g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);
              g2.fill(ellipse);
         //sample main
         public static void main(String[] args) {
              JFrame f = new JFrame("Animated");
              f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              f.getContentPane().add(new Animated());
              f.setSize(500,300);
              f.setLocationRelativeTo(null);
              f.setVisible(true);
    }Good Luck!
    LJ

  • How to add Spin animation to grouped object

    Hello,
    I would like to add a spin animation to a grouped object, but it is not available on the selection list. Is there anyway to overcome this issue? I tried loading the grouped object as an image but still no avail

    Hmmm ... I'd never noticed this before, but now when I try it, I can't either. SPIN is apparently unavailabe as an animation for both grouped objects and images, and I can't think of any way around that. But TWIRL is close - as I'm sure you already discovered. Looks like something you might want to suggest to Apple, at: http://www.apple.com/feedback/keynote.html
    Sorry.

  • Can anyone hlp with animating when an object is dragged?

    Hi,
    I am looking ot see if anyone can describe the code to add animation when a symbol is dragged?
    sym.getSymbol(r).$(r).bind('focusin tap click',function(ev) {
      sym.$(r).draggable('disable');
      }).bind('focusout dblclick',function(ev) {
      sym.$(r).draggable('enable');
    Thanks

    Something like the following might work (not tested)...
    movieclip.alpha = 0;
    object.addEventListener(MouseEvent.MOUSE_DOWN, dragObject);
    function dragObject(evt:MouseEvent):void {
          object.startDrag();
          stage.addEventListener(MouseEvent.MOUSE_MOVE, checkObject);
          stage.addEventListener(MouseEvent.MOUSE_UP, endDrag);
    function checkObject(evt:MouseEvent):void {
          if(object.hitTestObject(movieclip)){
              movieclip.alpha = 1;
          } else {
              movieclip.alpha = 0;
    function endDrag(evt:MouseEvent):void {
          stage.removeEventListener(MouseEvent.MOUSE_MOVE, checkObject);
          stage.removeEventListener(MouseEvent.MOUSE_UP, endDrag);

  • Creating psd animation

    I imported  "Image Sequence"  inPS then created the sequence and adjusted the layers and timeline.
    Two questions:
    1) How do I revert all the frames (the are in the wrong order)
    2) from the file in Photoshop format but I can't figure out how to save as Animated Gif ? which is the end result I am going for...

    npqster wrote:
    I imported  "Image Sequence"  inPS then created the sequence and adjusted the layers and timeline.
    Two questions:
    1) How do I revert all the frames (the are in the wrong order)
    2) from the file in Photoshop format but I can't figure out how to save as Animated Gif ? which is the end result I am going for...
    1. You change the order in the layers palette.  Gifs are played layer by layer so you'll be reversing the order of your layers. (Assuming layer 1 is your bottom layer, layer 1 is the first frame of your gif.)
    2. You use Save For Web. See this tutorial:
    http://www.wikihow.com/Create-an-Animated-Gif-in-Adobe-Photoshop-Elements
    There should also be a check box for look if you want the gif to loop forever.
    Note: In Elements you can't set the timing between frames. You have to use layers to do that. (Adding a duplicate of a layer makes it slower...another duplicate slower still.)
    Edit: If I recall correctly, you can set a delay between animation cycles...just not frame by frame delays.

  • Animation with looping objects?

    Hi all.
    I have this animation in which I have 4 squares - red, green, blue and orange - in this order, in a sliding row. Check animation
    When I mouseover on any of them, the timeline slides one square to the left/right centering one of the squares - for ex, if the green square is centered and I mouseover the blue square, the entire row slides one square to the left so that the blue square becomes centered. It's like an horizontal sliding menu.
    The whole thing works fine. What I need is for this animation to be loopable, that is, when I reach the final square (orange) I want the row to keep sliding so that the first one - the red square - becomes centered (always seing a bit of the previous and next square).
    How do I this?
    My files
    pmfr

    Hi!
    I just duplicated the red, green and purple boxes (to keep those at start and the end of animation) and put some logic on it. It's quite simple.
    Here are the files.
    This is my first answer here, so, I'd be glad if you mark as correct!
    Cheers!
    PS: Você é brasileira?

  • Making psd animation loop

    I have photoshop Element 10.0

    Hello, npqster. Since Photoshop Elements is only up to version 8, I'm guessing you have full Photoshop. (PSE can't do this in any version--all it does is animated gif.) If that's the case, you should ask in the appropriate Photoshop forum, mac or windows, depending on which you're using:
    http://forums.adobe.com/community/photoshop
    Good luck!

  • Animating A Stage Object

    I want to cause objects to move off stage after a button is
    pressed. I've looked at different as3 code examples but can't get
    them to work. My goal is to have several objects move smoothly off
    stage in the up, left, right, and down directions after button is
    pressed. Thanks

    I recommend using the Tweener classes for small motion
    tweens, it is very easy to implement and use...
    http://code.google.com/p/tweener/
    Once you know how that works, you have to put this in your AS
    code
    button_btn.addEventListener(MouseEvent.CLICK, moveItems);
    function moveItems(event:MouseEvent) :void {
    //insert code here to move objects
    }

  • Animating a photographic 'object' in a clip

    Here's the scene: a simple shot of a starfish on a beach shot from above.
    Question: is it possible, using Motion 4, to animate the starfish so that it uses it's legs to walk?, say make an exit stage left?
    I have a shot of the starfish on the beach, and a shot of the beach without the starfish.
    I'm quite new to Final Cut Studio and Motion 4 so I'm not sure if it's possible to do this. I couldn't find the solution in the Motion 4 Apple Pro Training Series book I bought.
    Is it possible? If so, does anyone know of a resource that could help me work it through?
    Thanks guys.

    You could isolate the starfish with a mask and put the shot without the starfish beneath it below, and have the starfish move/rotate off the screen - but the legs wouldn't bend at all, no way AFAIK to do that in Motion - would require something like After Effect's Puppet Tool (been coming up a lot lately, hasn't it?)

  • Refer to an object in Edge from an onclick="" in a .html file loaded into an iFrame in the animation

    HI, I am trying to figure out the Edge hierachies by stumbling my way through coding reference attempts. I've hit a wall...
    How can I refer to an object and a global function in my Edge animation from an onclick=""  located in an .html file loaded into an iFrame created within the master/parent Edge animation. Here's what I have...
    My main index.html is an Edge animation. One object <div> is a box created within Edge. I have added an iFrame with the Edge code:
    sym.$("MenuPanelScreen").html('<iframe src="list_images_cemetery.html" width="267" height="670" sandbox="allow-same-origin allow-scripts allow-top-navigation"></iframe>');
    That .html file which loads into the iframe within the animation contains thumbnails in <a> tags and contain onclick="" statements that should call a function within the Edge file.
    Eventually, I want the statements to read something like... onclick="changePic('Dragon.jpg', 'The Dragon', 'Saint and Worm')"
    However, I had no idea how to reference the changePic() function in the Edge animation. So, just to figure out how to reference the parent animation from an html in an iFrame, I change the onclick="" statements to...
    <a onclick="alert('Try to hide Nameplate'); sym.$('NamePlate_sym').hide();" >  <img src="gallery/TheyGaveUpTheirDead.jpg" width="80" alt="Angel and Worm" /></a>
    I first wanted to see if I could hide an Edge Symbol or div/element from the child html. I tried the following...
    onclick="alert('Try to hide Nameplate'); sym.$('NamePlate_sym', window.parent.document).hide();"
    I tried a few other variations that I won't bore you with. Can someone help me with the proper reference to effect an Edge element?
    Furthermore, I eventually wnat the onclick="" statement to reference a global function on attached to the Edge stage in the compositionReady event of the stage. The function is...
    window.changePic=function(myFileCurr, myLabelCurr, myDescriptionCurr) {
    alert("in changePick");
      document.getElementById("myImage").src="gallery/"+myFileCurr;
      document.getElementById("myImageLabel").innerHTML=myLabelCurr;
      document.getElementById("myImageDescr").innerHTML=myDescriptionCurr;
    I hope someone can point me in the right direction. Please forgive my ignorance. i am just getting back into coding and learning the intricacies of Jscript and jQuery. Thanks!

    Hi again Elaine,
    I actually had some success after many attempts with using your code. I can control the .stop() and .play() of the "NamePlate_sym" symbol. Yet, I am still having trouble doing anything else with it. I cannot .hide() it, nor use .html("Change text") on another element on the stage called"Rectangle". If I can accomplish that and all a global function on the stage, I'm in good shape.
    I placed the following script in the header of the .html file that gets loaded into the iFrame within the Edge composition:
      <script type="text/javascript">
       window.parent.AdobeEdge.bootstrapCallback(function(compId) {
       comp = window.parent.AdobeEdge.getComposition(compId).getStage();
       alert("CompID is "+compId);
       var symbol = document.createElement('div');
       symbol.innerHTML = 'Rotate';
       symbol.style.cssText = 'background-color:#fea; width: 50px; text-align: center;';
       symbol.style.cursor = 'pointer';
       symbol.onclick = function() {
        if (comp.getSymbol("NamePlate_sym").isPlaying()) {
         comp.getSymbol("NamePlate_sym").stop();
        else {
         comp.getSymbol("NamePlate_sym").play();
       window.parent.document.body.appendChild(symbol);
            </script>
    Once I put window.parent. in the first two lines of code and the last, my test worked. As I mentioned earlier though, I still can't get the syntax correct to .hide() an element (i.e. comp.getSymbol("NamePlate_sym").hide(); does not work), or more importantly, change the innerHTML value of an element on the stage. The code either does nothing or freezes.
    Thanks... Tommy

  • Error in MII 12.1.2  Animated Object

    Hi All,
    I am using MII 12.1.2 and have a problem with animated or SVG object.
    I have downloaded animated objects for MII 12.x from below link:
    "https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/webcontent/uuid/70e0837a-b080-2a10-878b-f83574a09dbb [original link is broken]"
    and imported animated and SVG Objects into MII 12.1.2 default project.
    but when i am going to "select SVG object" in "animated object" on "workbench" it is giving me "null Error".
    In MII 12.0 same thing is working fine.
    is there any solution for above problem.
    Edited by: Manoj Bilthare on Jul 24, 2009 8:25 AM

    Manoj,
    You have to select SVG object,not animated object.Select that then animate it by mapping the properties.save as animated object
    Then use this animated object in BLS transaction.
    SVG as .svg extension and animated is having .sva extension
    -Suresh

  • Psd document size up down up down: does layer smart object raw nef remain unfazed?

    If we have a document psd with a smart object layer, a camera raw item like .NEF full size,
    and then we cut the document size by 50% for archiving space, I notice the camera raw
    item keeps its original number of pixels. So now if I enlarge the document (X2) to return to
    the original size, do i maintain the original image quality sharpness? Also, at the 1/2 size,
    can we export the smart object .nef layer to a full size image?

    good. So how do we know how tiny can we can down size for archiving?? The raw nef  size ~34 MB?   I suppose the non smart objects layers will degrade with resizing? 

  • Master slide and object animations

    Hi,
    I have a problem. If I apply an animation on some object on a slide, when I play the presentation, the objects on the master slide disappear. This doesn't happen if I apply a transition on the whole slide.
    I tried to play my presentation on a different machine, a macbook, and there is no problem.
    I don't think this is a misconfiguration because if I use two monitor, I can see all the object on the monitor for the speaker, but the problem yet remain on the monitor for the presentation.
    Is there anyone have an idea about the reason?
    thank you

    If it is working on a different machine, it may be there is something wrong with your current install of iWork. I would suggest deleting all the iWork preferences files (located in your Library, in Preferences, delete all of the "com.apple.name" files that have "iWork", "Pages", or "Keynote" in their name), and then re-install the software.
    As an intermediate step, you might try creating a new user account, and see if the problem appears on that account. If not, I'd suggest deleting the preferences in your original account, as indicated above, and see if that solves things.

Maybe you are looking for

  • Video auto rotate

    Hi I fully appreciate the work that has gone into BT Sport, it's a very promising start and I welcome anything that will reduce the strangle hold Sky has on the provision of sport in the UK. One question: The auto rotate feature on my iPhone does not

  • Creating a View with "clipped" data

    Hi all, I'm wondering if someone might know if it's possible to have clipped data in a view without clipping the original data that the view is drawing from. The problem we have is that we have a full dataset that we need to keep in a complete state

  • PI setup in DMZ

    All, I am in the process of firming up our PI architecture. I am unsure of how the setup will work in the DMZ.  The picture at the bottom of the link shows two Integration servers B2B and A2A in different zone. http://help.sap.com/saphelp_nw04/helpda

  • Appv 5.0 on Windows 2008 R2: package working, but not anymore when deployed

    Hi, Please advise on howto troublehsooting a package that works fine when locally installed on a windows 2008 server but not anymore when sequenced and deployed to another terminal server. J. Jan Hoedt

  • BO and Oracle 11g

    We are using Bo enterprise 11 release 2. Is this package  an Oracle 11g compatible?