Cannot deform stuck HAVE dynamic object using the free transform vector in PS CS6

Hello

I stuck a vector object in PS CS6 (13.0.1 x 32) today directly from Illustrator CS6 (16.0.1 x 32) and select 'Paste as smart object' (Windows XP Pro SP3).

I then tried to distort the object glued using the free transform tool by dragging one of the handles to angle with hold CTRL (Windows).

General warps\distorts the object, but instead, it launched an operation to bias .

If I paste as Pixels or shape layer and then apply free Transform, < Ctrl + corner handle slide > performs a warp\distort operation.

Also, if I have rasterized glued it opposed and then convert them to a smart object, I can warp\distort.

Is it not possible to paste a vector Illustrator in as a smart object, then warp\distort directly using this technique?

Thanks for your help.

Richard

Your right because on a stuck vehicle a smart cannot deform, false or perform perspective transformations.

One solution would be to right click on the vector smart object layer in the layers panel and

Choose Convert to smart object.

It depends on what is your object, you would probably better quality of a pasted shape or path, but then you will not be able to open the object

back in illustrator from photoshop.

Tags: Photoshop

Similar Questions

  • I use Illustrator CS6 (Mac). I use the free transform tool. Why can I not use shift, Option, command to distort in perspective?

    I use Illustrator CS6 (Mac). I use the free transform tool. Why can I not use shift, Option, command to distort in perspective?

    Ah, hong.

    Then, drag Option and only use Cmd + shift.

  • Cannot add component Rectangle dynamically by using the task

    Hey all

    I'm new to Java FX and animation in general (try the last FX2 in netbeans) but I think I'm missing something somewhere... According to documentation, it is recommended to use a task to perform the animation and the screen changes. For some reason although my code works very well outside of a task, but when it is placed in a task it stops just at the point where I want to add it to the main AnchorPane... from my controller below class code, where the "mainApplication' is the main AnchorPane. Any ideas? What am I missing or am I misunderstanding? In the end, I want to be able to add a large number of Rectangles dynamically and animate.

    public class MyAppController implements Initializable {
        @FXML 
        private AnchorPane mainApplication;
        @FXML
        void menuItemClicked(ActionEvent event) {
            justDoIt();
        }
        void justDoIt() {
            Task<Void> task = new Task<Void>() {
                @Override
                protected Void call() throws Exception {
                    Rectangle aperture = new Rectangle(10, 10, 250, 250); 
                    aperture.setFill(Color.WHITE);
                    aperture.setVisible(true);
                    System.err.println("Last line executed");        
                    mainApplication.getChildren().add(aperture); 
                    //((Pane)mainApplication.getScene().getRoot()).getChildren().add(aperture); <-- not working either
                    System.err.println("never gets here");
                    return null;
                }
            };
            Thread th = new Thread(task);
            th.setDaemon(true);
            th.start();
        }
       
        @Override
        public void initialize(URL url, ResourceBundle rb) {
        }
    }
    

    The API Animation will take care of the threads for you questions. There is (almost?) never need to work with concurrency API and tasks when working with animations.

    From your description, it seems that the best approach is to create each of the individual animations you need and put it in a SequentialTransition. You can implement the 'gaps' in there with PauseTransitions. Then you can just run the sequential transition button.

    Small example:

    import javafx.animation.Animation.Status;
    import javafx.animation.PauseTransition;
    import javafx.animation.RotateTransition;
    import javafx.animation.SequentialTransition;
    import javafx.animation.Transition;
    import javafx.animation.TranslateTransition;
    import javafx.application.Application;
    import javafx.event.ActionEvent;
    import javafx.event.EventHandler;
    import javafx.scene.Group;
    import javafx.scene.Scene;
    import javafx.scene.control.Button;
    import javafx.scene.layout.BorderPane;
    import javafx.scene.layout.Pane;
    import javafx.scene.paint.Color;
    import javafx.scene.shape.ClosePath;
    import javafx.scene.shape.LineTo;
    import javafx.scene.shape.MoveTo;
    import javafx.scene.shape.Path;
    import javafx.scene.shape.Rectangle;
    import javafx.stage.Stage;
    import javafx.util.Duration;
    //
    public class SequentialAnimationExample extends Application {
    //
        @Override
        public void start(Stage primaryStage) {
            final Rectangle rect = new Rectangle(100, 100, 250, 150);
            rect.setFill(Color.CORNFLOWERBLUE);
            final Path arrow = new Path();
            arrow.setFill(Color.DARKBLUE);
            arrow.getElements().addAll(
                    new MoveTo(150, 150), new LineTo(250, 150),
                    new LineTo(250, 125), new LineTo(300, 175),
                    new LineTo(250, 225), new LineTo(250, 200),
                    new LineTo(150, 200), new ClosePath());
            final Group group = new Group(rect, arrow);
    //
            final TranslateTransition moveRight = new TranslateTransition(Duration.seconds(1), group);
            moveRight.setByX(400);
            final Transition pause = new PauseTransition(Duration.millis(500));
            final RotateTransition turn = new RotateTransition(Duration.millis(500), group);
            turn.setByAngle(90);
            final TranslateTransition moveDown = new TranslateTransition(Duration.seconds(1), group);
            moveDown.setByY(200);
            final TranslateTransition moveLeft = new TranslateTransition(Duration.seconds(1), group);
            moveLeft.setByX(-400);
            final TranslateTransition moveUp = new TranslateTransition(Duration.seconds(1), group);
            moveUp.setByY(-200);
    //
            final SequentialTransition animation = new SequentialTransition(
                    moveRight, pause, turn, pause, moveDown, pause, turn, pause,
                    moveLeft, pause, turn, pause, moveUp, pause, turn);
    //
            final Pane pane = new Pane();
            pane.getChildren().add(group);
    //
            final Button playButton = new Button("Animate!");
            playButton.disableProperty().bind(
                    animation.statusProperty().isEqualTo(Status.RUNNING));
            playButton.setOnAction(new EventHandler() {
                @Override
                public void handle(ActionEvent event) {
                    animation.play();
                }
            });
    //
            final BorderPane root = new BorderPane();
            root.setCenter(pane);
            root.setBottom(playButton);
            final Scene scene = new Scene(root, 850, 650);
            primaryStage.setScene(scene);
            primaryStage.show();
        }
    //
        public static void main(String[] args) {
            launch(args);
        }
    }
    
  • A seemingly simple question about the free transform tool.

    I have always used the free transform tool where the thing that turns in the background, and the transformation automatically makes a new layer. How can I do if the transformation will not cause a new layer, and it won't be the thing in the background which has been transformed to the original?

    I noticed that with other people, it is not the thing that has been transformed in the background, so they have to deal with him.

    Edit - Transform does not a new layer automatically AFAIK.

    Any chance you've been making is something like this?

    1. duplicate the layer with the tool move, possibly by holding down the Alt (or Option) key while dragging with the mouse.

    2 to see the transformation of the controls is enabled for the tool move, which means that the show handles when the move tool is selected and immediately, it would be possible to transform what has been moved / duplicated.

    -Christmas

  • Dynamic objects in the disconnected model?

    Hello! I have a problem with the connection between smart objects and hope that someone can help me!
    A book-mock up I bought, contains a group of "Items" - layer - base, containing several dynamic objects.

    Those who are then used in different preview-layergroups (eg; before you book, inside the book, etc.)

    In this way, I can import/pages cover rear cover of my book-drawings and models in dynamic objects in the items-layer group, and then they are automatically changed in various layergroups. Or that's what's supposed to happen.

    However, somehow, a couple of smart objects was disconnected of the Basic smart objects, so rather than change all layers at once, I still spend several layers, one by one.
    Check the picture below

    In this way the dynamic object has lost part of its use... How to fix / reconnect the smart object?

    I got appriciate the feedback! Thank you!
    Ilse

    smart-object-connection-problem.png

    Try this (on a working copy, so you don't break anything, as if this works also depends on how the rest of the document is built)

    Click the object FLY Original layer, that you marked as a basic form of object and drag it to the new layer at the bottom of the palette icon.

    This will create a copy of the child of the dynamic object on a new layer

    Move this new layer of child in the same position that the layer with the broken link. Make this new layer visible and her broke the previous layer invisible by clicking on the symbols of 'the eye '.

    Dave

  • Microsoft Money - when closing down, it saves ok but there is a message saying that the operation cannot be completed. I then use the Task Manager to complete.

    I use Money version 1105, 2004 updated.  I have 2 qusstions-

    1. in closing down, it saves ok but there is a message saying that the operation cannot be completed.  I then use the Task Manager to complete.

    2. is there a version of Money that runs this file?  I tried Sunset but does not recognize my file.

    Any help would be great, thanks in advance

    Eric

    For any question on any version of Microsoft Money, ask http://social.microsoft.com/Forums/en/money/threads.

    Make sure your data and Money backup files are in Documents or another non-protected area, not the default money Program Files or changes and updates will not be saved.

    Unless you are in the USA, the version of Money 2005 (released in 2004) 14.0.120.1105 is the latest available. Sunset silver bed only U.S. data files.

    Installation file to Money 2005 International English QFE2 (not for USA, Canada, UK) from Microsoft, including stand-alone updates 1105, is available at http://www.microsoft.com/download/en/details.aspx?id=26922

    Money 2005 UK - QFE2 (the fixed standalone UK Money 2005 file) can be downloaded from the link to http://www.microsoft.com/download/en/details.aspx?id=26915

  • Moving an object using the arrow keys

    I think I've changed the default distance to move an object using the arrow keys of 1 Point (1/72 inch). Can you help me change the default or tell me how to set the distance you can move an object such as a text field using the arrow keys. Thank you.

    It is based on your grid interval setting in the drawing AIDS palette. For a grid of 1 point, you would need apart 12/pc (although it says the points of the grid is picas, points 12-pica).

    I find 1 point too fine, I use a grid of 4/pc (3 points) and I have all my subject base around multiples of 3 measurements.

  • Where are them have ways to use the iMac (end of 2015) as a monitor

    Hi all

    Where are have ways to use the iMac (end of 2015) as a monitor?
    Or maybe I can throw the bones of my macbook on iMac?

    You can not. It does not target Display Mode support.

    Use your iMac as a display with the target - Apple Support Display Mode

  • I currently have an iMac 27 ", end of 2012 running OSX 10.8.5 Mountain Lion.  Can I upgrade directly to El Captain OSX 10.11.2 without going through any other upgrade using the free update available on my update page?  T

    I currently have an iMac 27 ", end of 2012 running OSX 10.8.5 Mountain Lion.  Can I upgrade directly to El Captain OSX 10.11.2 without going through any other upgrade using the free update available on my update page?  Thank you

    Yes.

    (137273)

  • I have no sound on my pc am under XP service pack 3 have tried to use the Windows XP disk to install the driver for the Audio system built-in Audio of P17.sys without success.

    original text: P17.sys

    I have no sound on my pc am under XP service pack 3 have tried to use the Windows XP disk to install the driver for the Audio system built-in Audio of P17.sys without success. I bought Rocketfish to a sound and turns off sound internal on the bios and still get the same error and the show. Help, please...

    Hello

    1. What is the exact error message you get?
    2. Are you not sound on the computer or Rocketfish?

    If you do not get the sound on the computer, then all first activate the sound Board in the BIOS and check. Also, follow the steps in this link and check if that helps:
    http://Windows.Microsoft.com/en-us/Windows/help/no-sound-in-Windows

    Otherwise, I suggest you to give us more information about the issue, so that we can help you better.

    It will be useful.

  • Computer crash xp pro have attempted to use the console to restore windows, but im not a good enough geek to type orders correctly is a more automated way to boot from the CD to reinstall the CD?

    Computer crash xp pro have attempted to use the console to restore windows, but im not a good enough geek to type orders correctly is a more automated way to boot from the CD to reinstall the CD?  There is a lot of argument about deplacerb help pages the correct process and commands to use I don't want to do more damage.

    Thank you

    Hello

    I suggest you to visit these links and check if it helps:

    How to install and use the Recovery Console in Windows XP:
    http://support.Microsoft.com/kb/307654

    Description of the Windows XP Recovery Console for advanced users:
    http://support.Microsoft.com/kb/314058

    How to perform an upgrade on the spot (reinstallation) of Windows XP:
    http://support.Microsoft.com/kb/978788

    Check if that helps.

  • Where the log file is located (Win Vista) for the actions of OTHER USERS have taken to using the boxes in user account control?

    Where the log file is located (Win Vista) for the actions of OTHER USERS have taken to using the boxes in user account control?

    I use the version of Vista Home Premium.

    While I don't really like how the UAC area enters the information that tells it when to display the box tell me about your work of things on the UAC (I know an article exist on the web), is not how to answer this question.

    There is no log of UAC elevation file.

  • account has expired, I don't have a month using the program and its seems outdated, what happens?

    account has expired, I don't have a month using the program and its seems outdated, what happens?

    Back to the https://helpx.adobe.com/manage-account-membership/cc-reverts-to-trial.html of the trial

    or

    Sign out of your account of cloud... Restart your computer... Connect to your paid account of cloud

    -If you have more than one email, but of course you use linked to your subscription

    -Connect using http://helpx.adobe.com/x-productkb/policy-pricing/account-password-sign-faq.html

    -https://helpx.adobe.com/creative-cloud/help/sign-in-out-activate-apps.html

    -http://helpx.adobe.com/x-productkb/policy-pricing/activation-network-issues.html

    -https://helpx.adobe.com/x-productkb/policy-pricing/activate-deactivate-products.html

  • I installed an improved version of the Adobe Acrobat Pro DC but I think I had to install the full version.  I used the free 30 day trial and come to understand that I have to get the improved version.  I am it could o

    I installed an improved version of the Adobe Acrobat Pro DC but I think I had to install the full version.  I used the free 30 day trial and come to understand that I have to get the improved version.  I'm to understand that he could have the wrong choice on my part.  How to get the version that will work for me, without being charged double?

    Thank you

    Kris rake

    Hey Kris,.

    Its a double wire.

    Please continue the discussion here: I installed an upgrade Adobe Acrobat Pro CC and I think I need to install the full version.  I was using the free temporary version of 30 days and so I thought I should just get the upgrade

    Kind regards

    Ana Maria

  • Cannot SSH in vmware player (can use the local IP address but not external IP)

    As above

    Cannot SSH in vmware player (can use the local IP address but not external IP)

    Am new to vmware, so if you need information to help me on what you'll need to tell me how to get

    See you soon

    Vodkaholic27, let me start with the layoff of vodka for a bit and then set Virtual Machine network card to bridged and then assign a static IP address that is appropriate for the guest as the physical LAN operating system is the host.  Then in the local physical network for static IP address router you assigned in the guest OS configure it to allow Port Forwarding on the appropriate port.  Then, you will be able to access from outside local physical host network.  If it's just on the other system on the physical LAN to the host that you want to access the guest you need not set up the Port Forwarding on the router on the local physical host network, simply use linked by a bridge to the network adapter in the Virtual Machine.  If you use NAT to the NIC of the Virtual Machine, then you need to set Port Forwarding in the virtual network Editor.

    Note: The virtual network Editor is not installed by default in Vmware Player 3.x and later versions.

    ==========

    To install the missing virtual network Editor, the command prompt:

    VMware-player-*.exe -e c:\vmptmp
    

    Then in the c:\vmptmp folder find the file c:\vmptmp\network.cab and extract (double-click on the .cab file) vmnetcfg.exe (virtual network editor) file in the working directory of VMware Player usually 'C:\Program VMware Player' or ' C:\Program Files (x 86) \VMware\VMware Player.  You can create a shortcut and place it with the shortcut of VMware Player, if you want to access it more easily.  Note: there are some for all the files to be extracted to then access the network.cab file.

Maybe you are looking for