How to move an object with its animation path, without adding a new keyframe?

Hi,
If I create an object which has a keyframe animation, how can I change its location/scale without adding new keyframes? That is, I want to move the whole thing with all its animations & keyframes as a single entity.
thanks
Arun

Hi,
big thanks for that. Unless Im doing something stupid when I did that it made a new copy of the object but did allow me to place that new instance elsewhere.
Is there any way just to move an object and its path without making a new copy?
All the best
Arun

Similar Messages

  • How to: Move an object with your finger

    Hi guys, please have a look at this link: http://www.youtube.com/watch?v=eg4u0aZEwvc&feature=g-upl&context=G2c94ba5AUAAAAAAAAAA
    At 0:49 seconds into the movie, the user is able to drag and drop objects, in this case thumb-nail images, and set them down in a different place on the app.
    Is this possible in DPS? If so, are there any tutorials available on how to do this, and where could I get my hands on those tutorials?
    Much appreciated

    Hi,
    big thanks for that. Unless Im doing something stupid when I did that it made a new copy of the object but did allow me to place that new instance elsewhere.
    Is there any way just to move an object and its path without making a new copy?
    All the best
    Arun

  • How do I center objects (photos and animations) so they stay centered with the other page elements?

    How do I center objects (photos and animations) so they stay centered with the other page elements?

    Geez .. Your class doesn't fulfill the javabean specifications. The properties should not be public.
    It should rather look likepublic class TheAddress {
        // Properties ---------------------------------------------------------------------------------
        private String address1;
        private String address2;
        // Constructors -------------------------------------------------------------------------------
        public TheAddress() {
            // Default constructor.
        public TheAddress(String address1, String address2) {
            // Full constructor.
            this.address1 = address1;
            this.address2 = address2;
        // Getters ------------------------------------------------------------------------------------
        public String getAddress1() {
            return address1;
        public String getAddress2() {
            return address2;
        // Setters ------------------------------------------------------------------------------------
        public void setAddress1(String address1) {
            this.address1 = address1;
        public void setAddress2(String address2) {
            this.address2 = address2;
    }

  • How to move the objects from Infoarea to another?

    Hi,
    How to move the objects from Infoarea to another?
    Thanx in advance,
    Ravi.

    Hi ..
    If the drag & drop functionality is enabled you can drag the catalog and drop it in another InfoArea just as you do with files on your PC.
    The other procedure is Use the right mouse button to create an InfoObject catalog in the InfoArea. If you want to make a copy of an existing InfoObject catalog, specify a reference InfoObject catalog.
    and check this  thread
    Re: Info Object Mapping to Info Area

  • How to create a window with its own window border other than the local system window border?

    How to create a window with its own window border other than the local system window border?
    For example, a border: a black line with a width 1 and then a transparent line with a width 5. Further inner, it is the content pane.
    In JavaSE, there seems to have the paintComponent() method for the JFrame to realize the effect.

    Not sure why your code is doing that. I usually use an ObjectProperty<Point2D> to hold the initial coordinates of the mouse press, and set it to null on a mouse release. That seems to avoid the dragging being confused by mouse interaction with other nodes.
    import javafx.application.Application;
    import javafx.application.Platform;
    import javafx.beans.property.ObjectProperty;
    import javafx.beans.property.SimpleObjectProperty;
    import javafx.collections.FXCollections;
    import javafx.event.ActionEvent;
    import javafx.event.EventHandler;
    import javafx.geometry.Point2D;
    import javafx.geometry.Pos;
    import javafx.scene.Node;
    import javafx.scene.Scene;
    import javafx.scene.control.Button;
    import javafx.scene.control.ChoiceBox;
    import javafx.scene.input.MouseEvent;
    import javafx.scene.layout.AnchorPane;
    import javafx.scene.layout.StackPane;
    import javafx.scene.layout.VBox;
    import javafx.scene.paint.Color;
    import javafx.stage.Stage;
    import javafx.stage.StageStyle;
    import javafx.stage.Window;
    public class CustomBorderExample extends Application {
      @Override
      public void start(Stage primaryStage) {
      AnchorPane root = new AnchorPane();
      root.setStyle("-fx-border-color: black; -fx-border-width: 1px; ");
      enableDragging(root);
      StackPane mainContainer = new StackPane();
        AnchorPane.setTopAnchor(mainContainer, 5.0);
        AnchorPane.setLeftAnchor(mainContainer, 5.0);
        AnchorPane.setRightAnchor(mainContainer, 5.0);
        AnchorPane.setBottomAnchor(mainContainer, 5.0);
      mainContainer.setStyle("-fx-background-color: aliceblue;");
      root.getChildren().add(mainContainer);
      primaryStage.initStyle(StageStyle.TRANSPARENT);
      final ChoiceBox<String> choiceBox = new ChoiceBox<>(FXCollections.observableArrayList("Item 1", "Item 2", "Item 3"));
      final Button closeButton = new Button("Close");
      VBox vbox = new VBox(10);
      vbox.setAlignment(Pos.CENTER);
      vbox.getChildren().addAll(choiceBox, closeButton);
      mainContainer.getChildren().add(vbox);
        closeButton.setOnAction(new EventHandler<ActionEvent>() {
          @Override
          public void handle(ActionEvent event) {
            Platform.exit();
      primaryStage.setScene(new Scene(root,  300, 200, Color.TRANSPARENT));
      primaryStage.show();
      private void enableDragging(final Node n) {
       final ObjectProperty<Point2D> mouseAnchor = new SimpleObjectProperty<>(null);
       n.addEventHandler(MouseEvent.MOUSE_PRESSED, new EventHandler<MouseEvent>() {
          @Override
          public void handle(MouseEvent event) {
            mouseAnchor.set(new Point2D(event.getX(), event.getY()));
       n.addEventHandler(MouseEvent.MOUSE_RELEASED, new EventHandler<MouseEvent>() {
          @Override
          public void handle(MouseEvent event) {
            mouseAnchor.set(null);
       n.addEventHandler(MouseEvent.MOUSE_DRAGGED, new EventHandler<MouseEvent>() {
          @Override
          public void handle(MouseEvent event) {
            Point2D anchor = mouseAnchor.get();
            Scene scene = n.getScene();
            Window window = null ;
            if (scene != null) {
              window = scene.getWindow();
            if (anchor != null && window != null) {
              double deltaX = event.getX()-anchor.getX();
              double deltaY = event.getY()-anchor.getY();
              window.setX(window.getX()+deltaX);
              window.setY(window.getY()+deltaY);
      public static void main(String[] args) {
      launch(args);

  • How to separate an object with a 3d effect

    How to separate an object with a 3d effect
    Hi, I have outlined some text and applied a 3d effect but now I want to separate each letter so I can adjust the colour on the face of the letter with the colour on the extruded part.
    I am sure it is probably straight forward but could do with a little help!
    Thanks

    I think what the OP wants to do is to keep the extruded part the same color and change the face of the letters to different colors. And he/she did mention that the text is outlined.
    If that's the case, I can think of two things to do if you want to keep the 3D effect live (i.e., unexpanded).
    1. You could apply a stroke to the outlined text, in the color you want for the extruded part. Then just change the fills individually (Tip: view in Outline mode and use the Group Selection tool to select each letter).
    2. If you don't like how the stroke looks on the letters, make all the letters the same color — the color you want for the extruded part. Then make a copy of this group of letters. Select the copy, then click in the Appearance panel to to edit the 3D effect. Put the Extruded Depth at Zero. Now chnage the colors to your liking, then align them with the original. Interestingly, you can't just use the Align functions, you have to eyeball it.

  • How to move multiple clips with transitions?

    Im still transitioning from FCP7 to FCP 10.1.2 and can't believe I have missed the lesson that explains how to move multiple clips with transitions.
    Up till now I have tried several work arounds including deleting all the transitions then using the (P) Position tool to move the clips from the primary track to some track above it then re adding all the transitions.  This is a function I do on a daily basis.  Am I missing something?  Please help!
    Thank you

    With some further investigation, the transitions have nothing to do with my problem.  In my case there was a tiny “Black gap slug” within the group that was preventing me from being able set it on top of another group of clips or gap someplace.  But even with the gap removed… I can move the clips on top of another group but the transitions stay behind on the primary (Magnetic)
    In the screen shot you can see what happens when I move a group out of the primary (magnetic) timeline onto a gap.  All the transitions get left behind. 
    Ive notices that Cutting and pasting will only paste the sequence some other place on the primary (magnetic) timeline for me.
    An example of why I would want to put a cropped/ resized group on top of another group is to do picture in picture effects or if I wanted to create a background behind a set of adjusted clips.

  • How to move database objects from one user to another user

    Could someone help how to move database objects from one user to another user
    Thanks in advance

    Thanks a lot for the reply.
    Actually I wanted to know whether there is any command to change the owner ship of the table.
    For ex table1 belongs to user1. can the owner of table1 to be changed to owner2.
    directly using an oracle command. I knew that it can be done using import and export, since the table was 200 million thought the rename command would be faster instead of import and export.
    Thanks Billy for letting me know that it is not possible using oracle query.

  • I want to merge difference disk with its parent online without turnoff the VM.

    Hi,
    I want to merge  difference disk with its parent online without turnoff the VM.
    It is NOT snapshot it was created while   using P2V

    Hi ,
    "It is NOT snapshot it was created while   using P2V "
    Do you mean the virtual disk which created by P2V is a parent disk , then you create a VM with a differencing disk connecting to the parent disk ?
    Now you want to merge them , right ?
    I'm afraid it is designed to shudown the VM and then edit the disk .
    Best Regards
    Elton Ji
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • How do I add $$ to my iTunes ID account without adding a monthly automatic deposit?

    How do I add $$ to my iTunes ID account without adding a monthly automatic deposit?

    Purchase and redeem an iTunes gift card.
    (90469)

  • I need step by step instructions on how to move an object from one photo to another photo - in Photoshop CC 2014.

    How do you move an object in one photo to another photo in Photoshop CC 2014

    In the document with the object select the object  and use copy (Crtl|CMD+C) then in the other image document use  paste (Crtl|CMD+V).
    However its not a move its a copy the object is still in the original image.  (Crtl|CMD+X) instead of (Crtl|CMD+C) would cut the object out of the first image but leave a hole there that you would need to fill with a replacement to complete a move.

  • How to move an object in LDAP

    I apologize for asking a really simple question that has likely already been answered here, however I find the forum search lacking in usability. So, here's the simple question...
    I am using JDNI to connect to and modify objects in LDAP. When I am done with an object, I am supposed to move it to a delete container. How does one do that with JDNI?
    old DN: "cn=testData,ou=Ext,ou=People,o=mygroup"
    new DN: "cn=testData,ou=Cleanup,o=mygroup"

    So my wise co-worker and I figured it out. You create an LdapName that points to your object, then create an LdapName that points to where you want it to go. Then call context.rename(oldname, newname)
    old DN: "cn=testData,ou=Ext,ou=People,o=mygroup"
    new DN: "cn=testData,ou=Cleanup,o=mygroup"
    ctx.rename(oldDN, newDN);
    Edited by: tailbon3 on Apr 23, 2009 10:46 AM

  • Can't move an object with arrow keys - CS3

    In Fash CS3, suddenly, in certain files, I can't move an object left using arrow keys - but I can move the same object right, or if I hold down Shift + left arrow, it works correctly
    Also - I can move the object down with arrow keys, but not up
    Workaround - move an object on a different layer, then return to the problem object and it moves correctly. But this doesn't last long, the problem resurfaces.
    Does anyone have a solution for this? (I've tried rebooting; tried copying all the layers into a new file - no help.)

    Now, working in the same file, I just clicked on a stroke and it changed the stroke from a smooth curve to angular lines.
    I suspect this file is corrupt. Any thoughts on how to salvage the weeks of work that have gone into it? Every version of this file has the same issues.
    Thanks for any help.

  • Cons hierarchy restructuring -- Move a group with its subgroups to another

    We need to restructure the consolidation hierarchy as per management decision.
    Need to move a consolidation group along with the sub groups and units under it to another group that is in parallel (at the same level in the hierarchy) with the group that needs to be moved.
    e.g. Cons Group CG10 (with parent unit CU11) is the top group and CG20, CG30 and CG40(with parent units CU21, CU31 and CU41 respectively) are under it and groupos CG41 and CG42 are under CG4.
    We now need to move group CG40 along with its units and sub groups under CG20. The parent unit CU41 is currently 100 % owned by CU11 and will need to be transferred to CU21.
    Please suggest the best way to handle this.
    Do we need to create a new group along with new sub groups under CG20??
    Or it's Ok to create just one new group for CG40 and move the subgroups CG41 and CG42 as they are.
    Please advice ASAP.

    You can't move a cons group within a fiscal year, so you may need to create a CG40b, CG41b, CG42b (i.e., new version of the groups).
    If it's the end of the year, it may be possible but probably not advisable to try and move the groups themselves, but I assume the system would complain.  I've never tried it myself, and don't know how the transfer would work if the old groups were gone.
    I would create CG41b, CG42b.  Set the divestiture date for the units in the CG4x groups, add the units and first consolidation dates to the CG4xb groups, set accounting techniques, etc.
    Create an organization change number with sender CG41 and receiving CG41b.  Ensure you have the prepration for consolidation group change tasks configured in your task hierarchy.  I've always had two tasks, one for 02/12 (before elims), and another for 22 (after elims but before CoI).
    In the additional financial data, create total transfer activity for the units in question, referencing the Org Change number created earlier.
    Execute the consolidation as early as possible during the close, even if it's just preliminary data, and have the business verify the postings seem reasonable. 
    Hope that helps,
    Chris

  • Quick Help - How to move an object backward?

    I can't remember what it is called, but there is a way to move a layer (while in 3D mode) without changing the apparent scale of the layer. In other words move a object back without making it look smaller in frame. There is a way to do this, but I can't even look it up since I don't know what it is called. Anyone out there know how to do this?
    Thanks!

    In the HUD, command-drag on the first Move control. You'll see in the Inspector that scale is changing along with the Z-position value.
    A couple of caveats:
    1) The active viewport needs to be the Active Camera
    2) The comp size needs to match the size of your graphics
    3) If you first center the object's anchor point in the Canvas, it won't shift position.

Maybe you are looking for

  • Video Chat doesn't work

    My ichat Video chat sometimes works, yet usually doesn't The error message: Date/Time: 2009-03-28 23:40:49.446 +0800 OS Version: 10.5.6 (Build 9G55) Report Version: 4 iChat Connection Log: 2009-03-28 23:40:26 +0800: AVChat started with ID 1038444205.

  • Time Capsule no longer backs up since I've moved

    Hi all, this is the second time that this has happened. My TimeCapsule was working fine, with no issues, until I boxed it up because I was moving to another apartment. I set it up on the other end, and re-established my wireless network (still with t

  • When does a JTabbedPane set the size of the component inside a tab?

    I would like to know how big a component inside a tab is directly after I've added it to a tab in a JTabbedPane. I thought once I've "added" a component via the JTabbedPane.add(String, Component) method, the Component would be realized with correct s

  • Using motion projects in FCP and having problems...

    A co-worker of mine is having an issue with a motion project that is being placed into FCP. Every time he imports it, the contrast is diminished and the color gets washed out making the image look VERY washed out and flat. He has even tried to export

  • How do I cut a quicktime video clip

    Where there is usually a "Trim" option, the option is shadowed and not allowing me to click on it. I am trying to shorten this 3 hour clip so that I can bring it into iMovie and edit it. Thank you!