Remove object in elements 13

How do you remove an unwanted person/object from Elements 13.
I've searched far and wide for the answer, but nobody out there has the answer for Elements 13.
I'm on a trial version of Elements 13. If I can figure out how to get it to do what I want I will buy it.

Well, there are many, many ways to do this, depending on the particular image. You can use the recompose tool, content aware fill, photomerge scene cleaner, the clone stamp, etc.

Similar Messages

  • Can´t move objects in elements 12 ??

    Hi !
    When I try to cut or copy objects in elements 12 – I am not able to move them in the picture. When I do, they jump right back to where I cut them. The only way is if I chose “free transform” but other functions e.g. “content aware move” do not work either..
    I have tried to re-install – same results. I am running a MAC version on Yosemite 10.10
    Anyone?

    Hi,
    We sincerely apologize for the problem customers are facing while using a trackpad with Photoshop Elements 11 & 12 on Mac OSX 10.10 (Yosemite).
    We have been actively working with Apple to resolve this problem as quickly as possible. We're hopeful this will get completely resolved in an upcoming update of Yosemite(MAC 10.10).
    In the meanwhile, you have two options to work around this problem:
    1. Option1: Use a mouse instead of the trackpad
    2. Option2: Install a plug-in which should workaround the problem
    Plug-in installation instructions:
    1. Close Photoshop Elements
    2. Download this zip file to a location you can easily find (e.g. your desktop)
    3. Unzip the file, WhiteWindowWorkaround.plugin, and move it to the Plug-In folder:
    • For Elements 12 – //Applications/Adobe Photoshop Elements 12/Support Files/Plug-Ins/
    • For Elements 11 - //Applications/Adobe Photoshop Elements 11/Support Files/Plug-Ins/
    You can verify the plug-in is installed by launching the Photoshop Elements Editor and choosing Help > System Info... Scroll to the bottom of the text in the dialog and look for the plug-in name "WhiteWindowWorkaround.plugin".
    Note: This plugin is a temporary workaround and should be used until this issue is addressed in Mac OSX 10.10 (Yosemite). Please remove this plugin once the issue is officially resolved by Apple.
    If you are using a stylus in conjunction with a trackpad, you might see issues with your trackpad. Workaround in this particular case is to use mouse instead of the trackpad.
    Hope this helps!
    Regards,
    vaishali

  • Edge Animate CC crashes on right-click on any Object in Elements window

    Hi,
    Every time I right click on an Object in Elements window Animate crashes on me.
    Same thing happens, when i click on the "Open Actions" Button - "{ }"
    I really would apreciate some kind of help with this problem, since I am able to accomplish nothing this way.
    I am running on a 2010 MacBook Pro 3.06 GHz Core 2 Duo - OSX 10.9
    Adobe Edge CC downloaded today via Creative Cloud
    Thanks in advance,
    have a beautiful day,
    Anne

    Hi hemanth,
    Thanks for the reply,
    I am Using Edge Animate 3.0.0.322.27519
    (Actual Version downloded via Creative Cloud)
    I renamed the Folder
    /Users/Your User Name/Library/Application Support/Adobe/Edge Animate
    TO
    .../OLD Edge Animate
    as suggested in the link you gave me...
    I restarted An and not only is the problem still ocurring, but also the program did not create a new '.../Edge Animate' Folder.
    The Link you gave me stated:
    After you have removed your existing preferences, restart Edge Animate. The application creates new preferences files and folders using the default settings.
    This did not happen.
    but program is starting normally without the preferences Folder obviously - problems stay the same
    It's nice to know, that you are there to care about the problem -
    thanks for that so far and if you can think of anything else -
    don't hesitate to write
    have a beautiful day,
    Anne**

  • List implementation where remove(Object) is fast?

    Does anyone know of an implementation of the java.util.List interface where the the method boolean remove(Object o) is much faster than traversing through the list until it finds the right one? Perhaps something that takes advantage of the hash code of the object being removed?
    Thanks

    So you want a List that acts like a Map?
    Couldn't you just use a Map?
    Explain your problem domain better and we shall help
    you see the light.
    Well no - I would simply like a List that acts like a List, and whose remove(Object) method is faster than just scanning through each element.
    I only mentioned use of the hash code as one way this could be implemented. To expand on that: Currently the LinkedList class internally maintains a list of Entry objects. Each of these objects has a reference to the previous and next Entry and the 'current' list element object. The problem is that the remove(Object) method has to go through each Entry one by one, searching for a list element that equals the object to be removed. To fix this problem the list implementation could also maintain a HashMap whose 'keys' are the list elements and whose 'values' are a (secondary) list of Entry objects associated with that key. Now the remove(Object) method could use the object to be removed to look up the 'list of associated Entry objects'. The first Entry in this (secondary) list is the one that needs to be removed.
    But perhaps it's best if I describe the overlying problem: I want to write a program that randomly generates integers at the rate of about 10 per second. For each integer the program should calculate how many times in the past hour that number has been generated. What's the fastest way to calculate this?

  • LinkedList.remove(Object) O(1) vs O(n)

    The LinkedList class documentation says the following:
    "All of the operations perform as could be expected for a doubly-linked list. Operations that index into the list will traverse the list from the beginning or the end, whichever is closer to the specified index."
    Typically one expects the remove operation from a linkedlist to be O(1). (for example [here on wikipedia|http://en.wikipedia.org/wiki/Linked_list] )
    This is in theory true however typically in the implementation of a LinkedList internally nodes (or Entry<E> in the case of the java implementation) are made that are wrappers around the actual objects inserted in the list. These nodes also contain the references to the next and previous nodes.
    These nodes can be removed from the linked list in O(1). However if you want to remove an a object from the list, you need to map it to the node to be removed. In the java implementation they simply search for the node in O(n). (It could be done without searching but this would require some mapping which requires more memory.)
    The java implementation can be seen here:
        public boolean remove(Object o) {
            if (o==null) {
                for (Entry<E> e = header.next; e != header; e = e.next) {
                    if (e.element==null) {
                        remove(e);
                        return true;
            } else {
                for (Entry<E> e = header.next; e != header; e = e.next) {
                    if (o.equals(e.element)) {
                        remove(e);
                        return true;
            return false;
        }It seems to be a common misconception that this method runs in O(1) while it actually runs in O(n). For example [here in this cheat sheet|http://www.coderfriendly.com/2009/05/23/java-collections-cheatsheet-v2/] and [in this book|http://oreilly.com/catalog/9780596527754/]. I think quite a lot of people think this methode runs in O(1). I think it should be made explicitly clear in the documentation of the class and the method that it runs in O(n).
    On a side note: the remove() operation from the LinkedList iterator does perform in O(1).

    I agree. It's not at all clear what the objection here is.
    To add to Jeff's answer: the remove operation on the LinkedListIterator is O(1) because you don't have to search for the node to unlink - the iterator already has a pointer to it.
    I tend to think of two different operations:
    - unlink - an operation specific to a linked datastructure which removes a given node from the datastructure and completes in O(1)
    - remove - an operation which searches for a given object in the data structure and then removes the node containing that object (using the unlink operation in the case of a linked datastructure). The performance of this depends on the performance of the search and unlink operations. In an unsorted linked list (e.g. the Java LinkedList) the search operation is O(n). So this operation is O(n).

  • Trying to install final cut express keep getting error message "FCE" can't install on this disk.  A newer version of this software already exists on this disk.  Have remove all FCE elements with no success.

    Keep getting error message "FCE" can't install on this disk.  A newer version of this software already exists on this disk.  Have remove all FCE elements with no success.

    http://www.digitalrebellion.com/fcsremover/

  • Error Individual check for creating the object WBS Element required

    Hi Expert,
    I've a requirement to create WBS elements using BAPI. And I am using BAPIs in the following manner.
    CALL FUNCTION 'BAPI_PS_INITIALIZATION'
    CALL FUNCTION 'BAPI_BUS2054_CREATE_MULTI'
    EXPORTING
    i_project_definition = g_pdwbs
    TABLES
    it_wbs_element = it_wbs_element
    et_return = it_return
    EXTENSIONIN =
    EXTENSIONOUT =
    CALL FUNCTION 'BAPI_PS_PRECOMMIT'
    CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.
    When I do so I am getting the below errors. Please suggest.
    "Individual check for creating the object WBS Element C-497082 required ".
    "Individual check for creating the object WBS Element C-497082-0001 required".
    Please suggest how to correct this error.

    Hi Karthikeya,
    I think the project profile which you are using has a different mask and the WBS element you are passing is different to the BAPI.
    Are you able to create manually from CJ01 using the same WBS element?
    Create a project manually and it will give the list of the mandatory fields set in the config. Using that list populate the BAPI struture accordingly.
    Hope this helps.
    Thanks
    Lakshman.

  • Not appear add/remove object merged

    Hi,
    I have a web intelligence report with a merged, but the option does not appear add/remove object in the merged, however, supposed that this function would be enabled on the version you just updated, as mentioned in this link:
    https://scn.sap.com/community/businessobjects-web-intelligence/blog/2013/03/10/what-is-new-with-web-intelligence-bi-41-part-2-core-capabilities
    upgrade
    BI4.1 SP1 Patch7
    regards

    Maybe something here will help?
    [[Removing the Search Helper Extension and Bing Bar]]

  • About remove object

    Hi ,my name Nak
    I want to remove Object 3D from the scene.
    But shadow and physics is don't remove.

    Please help me

  • Merge files and remove non-static elements

    Where is the feature that allowed images to be merged while removing non-static elements.  I saw a demonstration of removing people from a scene when multiple pictures were taken and the people had changed their positions. This was touted as a feature found only in PS extended a few years ago. I have never been able to locate it.

    This involves an "Image Stack". See http://help.adobe.com/en_US/photoshop/cs/using/WS1E389632-4B37-425e-8EAB-1384C0B432D3a.htm l

  • How to remove objects

    PLEASE How to remove objects from sidebar?
    Can draw folders and files etc in sidebar, but not remove the representation n sidebar. Pulled out objects returns back immediately.
    ~~~~~ k.

    You should be able to drag it off and "Poof" it. Have you released your mouse button?
    If it's one of the standard items in Sidebar you might go to Finder > Preferences > Sidebar > and uncheck them.
    -mj

  • Need to remove photshop and elements 8 from this old win xp computer and install it on new computer. I have the hard copy of the program, howeve registration here may prevent me from re-installing

    how can I remove photoshop and elements 8 from this older computer and install on new computer when it arrives

    You uninstall using the Windows control panel, and you install the same way you did on your old computer... put the disc in the drive and follow the onscreen instructions
    Also, unless you are asking about CLOUD programs, you will do better in the specific program forums
    Photoshop General Discussion
    Community: Premiere Elements | Adobe Community
    Photoshop Elements Forum http://forums.adobe.com/community/photoshop_elements

  • Error removing object from cache with write behind

    We have a cache with a DB for a backing store. The cache has a write-behind delay of about 10 seconds.
    We see an error when we:
    - Write new object to the cache
    - Remove object from cache before it gets written to cachestore (because we're still within the 10 secs and the object has not made it to the db yet).
    At first i was thinking "coherence should know if the object is in the db or not, and do the right thing", but i guess that's not the case?

    Hi Ron,
    The configuration for <local-scheme> allows you to add a cache store but you cannot use write-behind, only write-through.
    Presumably you do not want the data to be shared by the different WLS nodes, i.e. if one node puts data in the cache and that is eventually written to a RAC node, that data cannot be seen in the cache by other WLS nodes. Or do you want all the WLS nodes to share the data but just write it to different RAC nodes?
    If you use a local-scheme then the data will only be local to that WLS node and not shared.
    I can think of a possible way to do what you want but it depends on the answer to the above question.
    JK

  • Should I remove all Premier Elements now that I have CS5?

    I have Photoshop Elements 9 & 11, Premier Elements 10 & 11. Also added CS5. Can I safely remove all the Elements programs and not lose photos?

    Hi,
    You can keep CS5 and PSE/PRE both together.
    Although regarding uninstallation : PSE/PRE is just a Databse of your photos. They resides orginally on your harddisk and PSE makes the links to them.
    Please refer the link to see the process: http://helpx.adobe.com/photoshop-elements/kb/uninstall-premiere-elements-photoshop-element s.html
    *In the article it says PRE content , which is an explicit content get installed along with PRE and its NOT the USER content (such as user images or videos).
    -Harshit yadav

  • Dynamically removing objects

    Hi all,
    I am trying to remove objects at run time using a delete button but I keep getting an error saying
    "no capability to write children". I have set the detach() capability on the Branch Group for adding the object and have set all the relevant capabilities(as far as i can see).
    I can add objects at run time to the scene but cant figure out why I keep getting this error.??
    Any help would be gratefully accepted.
    Cheers,
    Dave

    I'll assume you have something similar to this:
    Group g
    |-----> Other stuff
    \-----> BranchGroup bg
    g must have the capability Group.ALLOW_CHILDREN_WRITE set. bg must have the capability BranchGroup.ALLOW_DETACH set.
    Then, you remove bg like this:
    g.removeChild(bg);

Maybe you are looking for

  • Soda in the macbook lcd HELP!!!

    Ever since the applecare on my macbook ended i have had nothing but bad luck. Recently my macbook's charger melted. Now after a little spill of soda in between the keyboard and lcd area soda made its way into my lcd. I need to know some way to fix th

  • Reminders made in the mountain lion app are not appearing in the ios app

    I installed mountain lion and the reminders app seems to be misbehaving. I have icloud enabled on my mac and my iphone. When I create a reminder on my iphone it shows up on my mac in about 30 seconds but when I make one on my mac it never shows up on

  • Pages 2.0.2 has problems with German umlaut characters and hangs.

    The problem has occured when I had the idea to rename the style names to have exported html files wider accepted by other browsers. Therefore I tried to rename used style names by replacing encountered umlaut letters by their transcriptions e.g. "Übe

  • Apple TV on VGA

    Hi, I currently own a Widesreen LCD with HDMI + Component inputs. Nu problem to hook up ATV. I also have a Projector wich only can handle s-video and VGA inputs. Is there a way to convert to VGA? HDMI->DVI and then DVI->VGA Is this possible?

  • WRT330N IP does not Renew Thus all devices get disconnected

    The router is set to renew the IP address for the wireless devices and it is having renew problems for some reason. I've only had this thing for a day. What is the deal? I didn't have this problem with my WRT300N. They have almost the same interface.