[CS6] How can I move shapes (created with paths)?

[CS6]
I created shapes with the pen tool.
Then I selected the path selection tool and selected a path.
Clicked right mouse key, choosed "Fill Path..." or "Fill Subpath"
(don't know what it means). After filling with a color I get an object in
the form of the path and I can move the path to another place.
But I can't move the object in the shape of the path.
I can't move it with "Path selection tool" because it's no path.
Then I tried the "Move Tool" but I also can't select the object with it
instead the whole canvas is moving.
How can I select and move shapes which were
created with the pen tool?

You've drawn a Path then filled a region of a pixel layer.
To make Shape layers, use the Pen Tool in "Shape" mode set in the Options bar.
If you really do want to draw a Path and use it to create moveable pixel shape then do the fill with an empty layer targeted.

Similar Messages

  • How can I share shapes created with Adobe Shape?

    You can access your shapes in the Libraries panel within Photoshop and Illustrator.  If you would like to share the file with another person, simply drag the shape onto your canvas and then save the shape as a new file.  From here, you can email the file or add it to a shared drive. 

    Your shapes should be automatically saved to the Creative Cloud.  I’m going to explain how you can access them below.
    How to access your shapes in other apps
    Desktop: In order for this to work, you must have the most recent version of Illustrator and Photoshop. 
    Open Adobe Illustrator on your desktop.
    Open the Libraries panel (Windows > Libraries)
    Your shapes should be present in your Libraries.  If you don’t see them there, select the libraries drop down to see if you saved your shapes in a different library.
    Now, you can drag the shape onto your canvas. Or, right click and select "Use in document"
    At this point,  you can continue working with your shape, by adding editing.  Or, you can simply save the file.  Of course, after you save it to your desktop, you can email, post online, etc.
    Mobile apps:
    Open Adobe Illustrator Draw and open a drawing.
    Tap the Shapes icon to open the Shapes menu.
    Tap a library name to view the shapes in the Creative Cloud Library. Tap Change Library to select another library.
    Select your shape by tapping on it.
    Active Slide or Tocuh Slide. You can use Adobe Slide or Touch Slide to place the shape on the canvas. Access Touch Slide by tapping on the circular icon at the top of the menu bar. 
    Place the shape.  Once you have activated Touch Slide, you will see a light rendition of your shape on the canvas.  Simply double tap on the shape outline to stamp the shape in place.
    Web:
    Navigate to https://assets.adobe.com/
    Select the Libraries menu item (left menu on the page)
    Select the desired library (if this is your first time using Libraries, you will only have one).
    This page provide a preview only.
    Also, here’s a great walk through video that may be useful: http://helpx.adobe.com/mobile-apps/how-to/shape-get-started.html?set=mobile-apps--fundamen tals--adobe-shape-cc

  • Why iCloud only allows store documents created by Pages, Numbers or Key Note ? How can I "iCloud" documents created with Word Mac or Excel mac??

    Why iCloud only allows store documents created by Pages, Numbers or Key Note ? How can I "iCloud" documents created with Word Mac or Excel mac??

    Oscar66 wrote:
    Why iCloud only allows store documents created by Pages, Numbers or Key Note ? How can I "iCloud" documents created with Word Mac or Excel mac??
    iwork for ios accepts for upload and also happily opens all your Microsoft office files, from Office97 standard doc/xls/ppt to the 2011 versions of docx,xlsx,pptx and various other of these format extensions.
    Notice : the upload feature in www.icloud.com is only active if you in fact own these apps on your iPhone/Pad/pod. it is not a feature of iWork for the Mac ( iwork09 ) which itself is not icloud capable at all.

  • Photoshop CS6 - How can javaScript fill blank layer with color?

    Hello,
    I'm a production artist and I work with PSD files that were created in Adobe Scene7 Image Authoring Tool. These PSDs contain a background layer along with 1-20 alpha channels. My script has to make new blank layers based on the number of alpha channels and then it has to fill the new layers with light gray. The RGB values are 161, 161, 161. I checked the PSCS6 JavaScript Reference pdf, but I don't see a method that would do this for artLayers. (Let me also say that I'm new to javaScript).
    Does anyone know how to fill a blank layer with these RGB values?
    Here's my script so far:
    #target photoshop 
    // declare variable to contain the active document
    var myDoc=app.activeDocument;
    // declare variable to contain the number of alpha channels, excluding the RGB channels
    var alphaChan = myDoc.channels.length - 3;
    // create loop to make new layers based on number of alpha channels and fill each layer with gray
    for (a=0; a<alphaChan; a=+1){
    myDoc.artLayers.add();
    if (myDoc.artLayers.length == (alphaChan + 1)) {
        break;

    var color = new SolidColor();
    color.rgb.red = 161;
    color.rgb.green = 161;
    color.rgb.blue= 161;
    myDoc.selection.fill(color);

  • How can I move file from one path to another   by java

    Hello
    I need to move the following file c:\abc\aa.txt
    to the follwing path c:\def
    How can i do it by java program?
    Regards

    Hi,
    Try the following code:
    boolean moveFile = new File("c:\\abc\\aa.txt").renameTo(new File("c:\\def",
    new File("c:\\abc\\aa.txt").getName()));
    Hope that helps.
    Savitha.
    OTN group@IDC

  • How can I move a rectangle with key?

    I try to control a rectangle with left and right key to move, but failed and need help to make it work. thanks!
    var cx:Number;
    var cy:Number;
    var fang:Rectangle=Rectangle{
         x:bind cx  y:bind cy
         width:50  height:50
         fill:Color.BLUEVIOLET
         onKeyTyped: function( e: KeyEvent) : Void {
                    if(e.code==KeyCode.VK_KP_LEFT){
                             cx++;
                             println("left pressed!");
                    if(e.code==KeyCode.VK_KP_RIGHT)
                              cx--;
    Stage{
        width:200
        height:400
        scene:Scene{
             content:[fang]
    }Edited by: Phoenix2006 on Sep 14, 2009 8:18 PM
    Edited by: Phoenix2006 on Sep 14, 2009 8:21 PM

    You will have to invoke requestFocus() on Rectangle so as to gain focus. You may try below code..
    import javafx.stage.Stage;
    import javafx.scene.Scene;
    import javafx.scene.input.KeyCode;
    import javafx.scene.paint.Color;
    import javafx.scene.shape.Rectangle;
    var cx:Number;
    var cy:Number;
    var fang = Rectangle {
        x:bind cx
        y:bind cy
        width:50
        height:50
        fill:Color.BLUEVIOLET
        onKeyReleased: function(e) : Void {
            if(e.code == KeyCode.VK_LEFT) {
                cx--;
            } else if(e.code == KeyCode.VK_RIGHT) {
                cx++;
            } else if(e.code == KeyCode.VK_UP) {
                cy--;
            } else if(e.code == KeyCode.VK_DOWN) {
                cy++;
    Stage{
        width: 200
        height: 400
        scene: Scene {
            content: [ fang ]
    fang.requestFocus();

  • I have 4 equal oblong shape created with borders How do I go about knowing what size the selection area is so that I can crop an image to fit. I don't want to use paste in then adjust the bounding box to suit

    I have 4 equal oblong shape created with borders How do I go about knowing what size the selection area is so that I can crop an image to fit. I don't want to use paste in then adjust the bounding box to suit

    What do you mean a moderator

  • How can i use shape tweening and motion tweenin together on a movie clip?(where is looping whitch was in propertise panel in CS5?)

    how can show animation (shape and motion tween) witch i was created in Scens1-MovieClip in time line?
    there was an option (looping) in CS5 but how can i do it in CC and CS6?

    shape tweening can only be applied to raw drawn shapes, no movieclips.  IF you wanted to do a shape tween to a movieclip it would have to be done within the timeline in the movieclip.

  • How can we make an iDVD with Aperture movie

    I have tried all the suggesgions so far and still am unable to make a proper DVD using Aperture and iDVD. "A" DVD can be created, however the customer must press the enter key twice to step into the main program. This does not appear to be a normal metod or is it ? This what has happened so far; The Aperture movies was created with 208 photo's and fur songs integrated into it. Exported to Apple TV 720 resolution saved to the desktop. When completed, iDVD was opened. Create a new project or Open an existing Project will not allow iDVD to open the movie file. Exporting as a Slideshow will Also Not allow iDVD to open this file either. The only option seems to be to use Magic iDVD. Uing this and then dragging/dropping the desktop movie file results in having to depress the Play button twice to actually play the movie. I have saved the screenshots but it seems I cannot drag them here. It seems the movie is imported twice ? When one looks at the inspector yet they are not exactly the same. Should one remove either of the Blue blocks then the result is a failure. I'll try to drag that shot here..
    file://localhost/Users/darrylnewell/Desktop/Screen%20Shot%202012-03-22%20at%205. 45.04%20PM.png
    Is this how the Aperture and iDVD should work together ? If so it's certainly diferent from iPhoto and iDVD combo..

    Ok so you didn;t answer the what theme question and the menu or straight play question but I do know your ****** off
    This is for no menu:
    open iDVD
    select File->New
    Make and name the new project
    Select the triangle icon
    Drag the slideshow movie to the place that says drag movie here
    Clcik the disclosure triaangle under the fist box.
    Clcik play arrow iDVD project will start up and your slideshow will start playing.

  • HT4436 I have now downloaded all of my CD's to my itunes library and have since only purchased new music using itunes Store.  This itunes library is stored on an old Dell Desktop that I am getting ready to replace with an iMac; how can I move the music? 8

    I have now downloaded all of my CD's to my itunes library and have since only purchased new music using itunes Store.  This itunes library is stored on an old Dell Desktop that I am getting ready to replace with an iMac; how can I move the music? 86GB
    Is the music I downloaded from my CD's already in the iCloud or only the music I purchased on itunes?

    This might help: http://www.macworld.com/article/1146958/move_itunes_windows_mac.html.

  • How can I move my PC (Windows 7) iTunes library (with my cps ripped) to my Mac iTunes library?

    Just for my curiosity and knowledge,
    I have a PC (Windows 7) and a Mac (OS X 10.10).
    Both of them with the latest version of iTunes.
    Both of them with the exact music library (genre, artist, album, etc).
    All my music is coming from iTunes Store, so very easy to re download at any time I want with my Apple ID
    My PC (Windows 7) computer has a CD/DVD drive. I would like to RIP some music from my CDs and add them to my PC (Windows 7) iTunes library. 
    Once I finished, how can I move my PC (Windows 7) iTunes library (with my cps ripped) to my Mac iTunes library?
    Thank you so much

    If you've downloaded the media idependently to each library so far then thet won't be exactly the same as there are different naming rules for the files and folders in OS X and Windows. See Make a split library portable for some general advice. You can move a portable library between Mac and Windows, but there is a delay opening the library after each change of OS.
    tt2

  • My PC with iTunes on it got fried (lightning).  I have a 2nd PC with iTunes on it.  How can I move my devices to that iTunes (I have recovered data from the drive)

    I had a primary PC that had iTunes on it that got fried by lightning strike a few months ago.  I have several devices (1 iPod, 1 iPad, 3 iPhones) that were synched with that iTunes install.  I had a secondary PC with a separate iTunes installation on it (separate music library.)  I recovered the hard drive so I can move the music to the secondary PC, but how can I sync my devices with that 2nd installation of iTunes without losing all of the information on those devices?  (I haven't saved or synched those devices since the summer.)  Can I keep the playlists from from the first PC?
    Thanks in advance for any and all help.

    Sorted it out. If anyone has this problem i reccommend visiting http://forums.ilounge.com/ipod-classic-ipod-5g-video/237546-ipod-classic-80gb-fr eezes-itunes-need-restore-plz-help-2.html#post1403546 there's some pretty good advice on it. have to go into control panel and re-format iPod into NTFS file. good luck.

  • How can I move or delete files with PL-SQL???

    I have Oracle 9i and Sun Solaris 5.8
    I have a table (“TABLE_FILENAME”) with the files name in one directory. (I read the files name in a directory and put it in a table). I charge some files with external tables and then I have to move some fields to another directory and delete others files.
    How can I delete files with PL-SQL and How can I move files with PL-SQL?
    I have the names of files and the actions (Delete o Move) in a table (“TABLE_FILENAME”) (The files in this table are dynamics).

    If you're using 9i then you will find that the new functions UTL_FILE.FCOPY and UTL_FILE.FREMOVE will allow you to do what you want. Check out the documentation for more details.
    Cheers, APC

  • When I use my Delete key to delete a song, I get a pop-up.  This is OK, except the Keep File button is defaulted and I cannot tab or arrow to the "Move to Trash" button, and so i need to use my mouse.  How can I do this only with keyboard?

    When using iTunes on my iMac, I use my Delete key to delete a song and I get a pop-up.  This is OK, except the Keep File button is defaulted and I cannot tab or arrow to the "Move to Trash" (or Cancel) button, and so I need to use my mouse.  How can I do this only with keyboard?

    Huh.. Interesting. I went back to check these proceedures and found there is a difference between using the return key or the space bar as the action command.
    tabbing the blue ring moves the selection and then spacebar takes that action. The return key takes action of only the blue collored button.
    .... learn somting new every day, even if it is somthing I previously forgot

  • How can I make the popup with empty fileds and create new record?

    I would like to use a popup to create new record.
    I created a af:popup by drag and drop a VO from data control to jsff. then, I created a button and place a af:showPopupBehavior. I was able to popup window by click the button.
    however, the window filled with the information from the 1st record. and when I select a record in table and click popup, the popup is filled with that record.
    How can I make the popup with empty fileds and create new record by saving the popup?
    Thanks

    You can have edit and new buttons, in the PopupFetchEvent identify button source (using popupFetchEvent.getLaunchSourceClientId()) if new button clicked clear the binding using below code.
    If you want to see empty fields, in the popup PopupFetchEvent clear the input component bindings.
    resetBindingValue("#{bindings.<componentid>.inputValue}", null);
        public static void resetBindingValue(String expression, Object newValue) {
            FacesContext ctx = FacesContext.getCurrentInstance();
            Application app = ctx.getApplication();
            ExpressionFactory elFactory = app.getExpressionFactory();
            ELContext elContext = ctx.getELContext();
            ValueExpression valueExp = elFactory.createValueExpression(elContext,expression,Object.class);
            Class bindClass = valueExp.getType(elContext);
            valueExp.setValue(elContext,newValue);
        }

Maybe you are looking for

  • Need help to resolve the issue for DW4

    when i set up my manage site using php and mysql local server environment it give me an erro saying unidentified error has occur. then when i do them manually i get the connection but my table list do not show at all on my db connection listings. Any

  • Problem with buttons in Safari 6?

    Have a strange situation where in Safari 6 a site I am working on has a Previous and Next button on the page. Works perfectly in Firefox and in Safari 5.1.7. In Safari 6, however, selecting the 'Next' button also highlights the 'Previous' button and

  • How to connect my G3 to a wireless network-

    what do i need to connect my old G3 MAC to i wireless internet connection – my lokal AppleShop don't sell Airport to this old computer – do anybody know how i get wireless?

  • Fi-mm procurement

    SAP guru's:- in fi-mm procurement flow in the one step is the PRODUCTION receipt: stock finished goods a/c...... Dr To stock increasing/decreasing finished goods a/c |-->if the Production order,. GBB ZAF, And if the not production order GBB ZOF , is

  • How can I enlarge view in pages

    Okay, so how do I enlarge my view. The only thing I ever liked about WORD was being able to enlarge a page to 125% or a full page view. I love Pages, but how do I enlarge my view so I can see what I am typing better?