Need help with background removed in elements 10

I have been watching and learning from tutorials online and have found one of the easiest to use for removing a background I have elements 10 and when I click on New under file it shows I
should be able to open the image from clipboard window but it is not high lighted to do so. What am I doing wrong???

Open your image
Go to Select menu>all
Go to Edit menu>copy to put image on the clipboard
Go to File menu>New>Image from clipboard
Is this what you are after?

Similar Messages

  • I need help with my remove method on a BST!

    Guys I need some help here, I have to create a remove method for a BST and below is my code:
    public boolean remove(OrderedMap map, K keyOfelementToRemove) {
              boolean result = false;
              if (root == null)
                   result = false;
              else {
                   MapNode curr = root;
                   MapNode prev = root;
                   while (curr.key.equals(keyOfelementToRemove) == false) {
                        prev = curr;
                        if (keyOfelementToRemove.compareTo(curr.key) < 0)
                             curr = curr.left;
                        else if (keyOfelementToRemove.compareTo(curr.key) > 0)
                             curr = curr.right;
                        if (curr == null)
                             break;
                   if (curr == null)
                        return result;
                   else if (curr == root && curr.left == null)
                        root = root.right;
                   else if (curr.left == null) {
                        if (curr.right == null)
                             curr = null;
                        else if (curr == prev.left)
                             prev = curr.right;
                        else if (curr == prev.right){
                             prev = curr.right;
                   else if (curr.left != null) {
                        MapNode temp = curr.left;
                        while (temp.right != null)
                             temp = temp.right;
                        K change = temp.key;
                        temp = null;
                        curr.key = change;
              size--;
              return result;
         }the algorithm that my instructor provides is:
    private boolean remove( BinaryTreeNode t, Comparable elementToRemove )
    Set result to false
    Traverse the tree t until elementToRemove is found. Use curr and prev to find the element
    leaving curr referring the node you want to remove. It may be the case that curr is null indicating
    that elementToRemove was not found. Now there are four cases to consider :
    Case 1: Not found
    return result (false)
    Case 2: The root is to be removed, but it has no left child.
    root = root's right subtree (assuming root refers the the root node in your BST)
    Case 3: The node is further down tree with no left child. Now must adjust one of the parent's links
    if curr is on the left side of prev,
    move parent's left link down to down to curr's right child
    else
    curr is on the right side of prev, so move parent's right down to down to curr's right child
    Case 4: curr has a left child.
    We can no longer ignore the left subtree. So find the maximum in the left subtree and
    move that object to the node referenced by curr . Then eliminate the maximum in the
    left subtree, which is now being reference from the original node to remove.
    however for case 3 and 4 it doesn't work, can someone please tell me why? I don't know where I made a mistake and I tried finding it but I still dont know

    I am sorry about the double post. I'll try not to do this again. My problem here seems to be that prev and curr aren't updating the BST outside this method, which means that it only changes locally but not permanently. I will post the code of the other headings:
    public class OrderedMap<K extends Comparable<K>, V> {
         private class MapNode {
              // Links to other BSTs
              private MapNode left;
              private MapNode right;
              ArrayList<V> temp1 = new ArrayList<V>();
              // The references to the key/value pair of the mapping
              private K key;
              @SuppressWarnings("unused")
              private V value;
              public MapNode(K theKey, V theValue) {
                   key = theKey;
                   value = theValue;
                   left = null;
                   right = null;
         } // end class MapNode
         private MapNode root;
         private int size;
         public OrderedMap() { // Create an empty tree
              root = null;
              size = 0;
         public int size() {
              return size;
         }

  • Need help with a remove method..

    Hello. I'm getting started on a project here to implement a recursive remove method that will remove any number from a list. I was given a test that the method must pass, but I'm having some trouble getting started. This is my second interaction with the idea of recursion and it's a bit difficult for me.
    Here is the test I'm writing the method for:
    public void testRemove() {
              int element=0;
              boolean inList = false;
              for (int i = -10; i < 11; i++)list.insert(i);
              int numElements = list.length();
              list.remove(element);
              for (int e : list) {
                   if ( e == element ) inList = true;
              assertTrue(!inList && (list.length()==(numElements-1)));
              element = -10;
              inList = false;
              list.remove(element);
              for (int e : list) {
                   if ( e == element ) inList = true;
              assertTrue(!inList && (list.length()==(numElements-2)));
              element = 10;
              inList = false;
              list.remove(element);
              for (int e : list) {
                   if ( e == element ) inList = true;
              assertTrue(!inList && (list.length()==(numElements-3)));
              //does remove work when element's value greater than value of last item in list
              element = 20;
              inList = false;
              list.remove(element);
              for (int e : list) {
                   if ( e == element ) inList = true;
              assertTrue(!inList && (list.length()==(numElements-3)));
              //does remove work when element's value less than value of first item in list
              element = -20;
              inList = false;
              list.remove(element);
              for (int e : list) {
                   if ( e == element ) inList = true;
              assertTrue(!inList && (list.length()==(numElements-3)));
              System.out.printf("%s\n", "testRemove " + list.toString());
         }Now, clearly I need to test whether or not the number being removed is in the list (too low/too high), but I'm stuck trying to implement this.
    If anyone can give me any ideas or direction it would be greatly appreciated.

    Thanks for the quick reply, from what I had gathered and what you posted I'm starting to see where I need to go from here. I had gotten as far as if list is null return null, and the cod that you posted makes sense, but implementing it into the source code I already have will be troubling for me. The code as you presented it I have no trouble understanding, for example:
    if (list.data == data) return list.next;
    list.next=remove(list.next, data);Is clear to me, however I don't know how to implement that into my code. This is the code for the insert method:
         private Node<ElementType> insertp(Node<ElementType> list, ElementType element) {
              if ( (list == null) || ( element.compareTo(list.getElement() ) < 0 ) ) {
                   // test for insert at head or before current node
                   Node<ElementType> newNode = new Node<ElementType>(element, null);
                   newNode.setNext(list);
                   return newNode;
              else if (list.getNext() == null) { // list with one element
                   Node<ElementType> newNode = new Node<ElementType>(element, null);
                   list.setNext(newNode);         // element goes at end
              else if ( element.compareTo(list.getNext().getElement()) < 0 ) { // insert after list
                   Node<ElementType> newNode = new Node<ElementType>(element, list.getNext());
                   //newNode.setNext(list.getNext());
                   list.setNext(newNode);
              else {
                   insertp(list.getNext(), element); // find insertion point
              return list;
         }I'm still struggling to understand all of the code there. the element.compareTo() and everything. If you (or some one else) can explain to me what is going on with those methods, I may be able to implement it myself. Also, this may be of some use, these are the methods I have available to me:
    public class Node<E> {
      // Instance variables:
      private E element;
      private Node<E> next;
      /** Creates a node with null references to its element and next node. */
      public Node() {
        this(null, null);
      /** Creates a node with the given element and next node. */
      public Node(E e, Node<E> n) {
        element = e;
        next = n;
      // Accessor methods:
      public E getElement() {
        return element;
      public Node<E> getNext() {
        return next;
      // Modifier methods:
      public void setElement(E newElem) {
        element = newElem;
      public void setNext(Node<E> newNext) {
        next = newNext;
      public String toString() {
           return element.toString();
    }

  • I need help with attachments opening in Elements by mistake

    Hello, I have Elements and Adobe reader. Ever since I loaded Elements, i have had a problem with any Email attachments opening up in Element. I somehow changed the defult. I need to have my attachemtn/PDF's open in the reader program, not Elements everytime. Thank you!

    What you need to do is to change the default programs settings.  I don't know what operating system you are using but I suggest repost your question at this link:
    <http://forums.adobe.com/community/adobe_reader_forums?view=discussions>
    Tell them that you want to make Adobe PDF reader as the default program to open all pdf files.  You also need to tell them your operating system so that they can give you correct instructions.
    Good luck.

  • Need help with my new WD elements hard drive

    so i bought this WD Elements 2TB online from Buy.com with usb cable compatble for both 2.0 and 3.0. when i hook it to my personal laptop which has windows 7 professional as OS (byt the way its 2 year old laptop). as soon as i hook it up i get a little icon on right side conrner of my laptop saying driver installed successfully but not recognized as i dont see it under my Computer where all the drives will be shown and when i go to disk management i see it as unallocated and not able to format when i try to format it. but when i connect to my office desk top which has same OS as my laptop 1st time it asked me if i want to format which i did and its just works fine from then, so i thought it will be fine with my laptop as well but for my distress its same again. is it problem with my usb ports , if so then my other hard drive shouldnt be working right but they work just fine.  does anyone had the same issue , please help me out with sugesstions and advises as i m getting frustated with this.  thanks 

    Hi there, welcome to the community.
    It might be that your computer is not providing enough power, have you checked on the power settings on your computer?

  • Need help with downloading adobe photoshop elements 11 and premiere elements 11.

      i already have my product keys from the internet, but when i go to the download page and push on the download button, nothing happens. im running windows 8

    clear your adobe.com cookies, or try another browser, or:
    if you follow all 7 steps you can dl a trial here:  http://prodesigntools.com/photoshop-elements-11-direct-download-links-pse-premiere-pre.htm l
    and activate with your serial.
    if you have a problem dl'g, you didn't follow all 7 steps.  the most common error involves failing to meticulously follow steps 1,2 and/or 3 (which adds a cookie to your system enabling you to download the correct version from adobe.com).

  • Need help with installation of Photoshop Elements 13, Error message 6?

    I tried installing on both a windows 7 and 8.1 computer. Both installs ended with error message 6, a failed install."this installer does not support installatiin on a 64 bit windows operating system. Please download the 64 bit version of Photoshop elements."
    What should I do?

    download the 64 bit version seems like a logical step.
    if you follow all 7 steps you can directly download a trial here:  Adobe Photoshop Elements 13 Direct Download Links, Premiere too | ProDesignTools
    and activate with your serial number.
    if you have a problem starting the download, you didn't follow all 7 steps, or your browser does not accept cookies. 
    the most common problem is caused by failing to meticulously follow steps 1,2 and/or 3 (which adds a cookie to your system enabling you to download the correct version from adobe.com). 
    failure to obtain that cookie results in an error page being displayed after clicking a link on prodesigntools.com or initiates the download of an incorrect (eg, current) version.

  • Need help with reinstall of photoshop elements 10 premier. can some please help me

    just installed photoshop elements premier 10 to my computer after hard drive replaced. i cannot get it to set up for me, nor place an icon on the desktop. please help, i have no computer knowledge left in my itty bitty brain. HELP

    did it install ok?
    what os?

  • Need Help with RAW File in Elements 9

    I have Nikons D7000, D60 and Elements 9.  Elements 9 recognizes NEF file from D60 but not from D7000.  How do I fix this problem? 

    I apologize for being dense here.  Where do I open Full Edit and clock the menu Help Updates?  I don't recognize this term in any of the D7000 menus.  Do I do this in Elements 9?  I don't recognize the term RAW "plug in."  I am not sure what plug in you are speaking to.  Thanks so much for your help and patience. 

  • Need help with inspiration browser in elements 10

    elements 10 is up and running on my computer, but, when I want to use the tips in the inspiration browser it tells me to install adobe air, etc . It has been installed, but apparently when I'm using photoshop it isn't being recognized. What do I do?

    Try these steps to uninstall and re-install the IB:
    http://kb2.adobe.com/cps/408/kb408669.html
    Ken

  • I need help with color pallette in iPhoto 11. I have created a book and would like to use a different color background than those given in "background." I have found the color palettes but can't seem to incorporate them into my backgrounds palette.

    I need help with color pallette in iPhoto 11. I have created a book and would like to use a different color background than those given in "background." I have found the color palettes but can't seem to incorporate them into my backgrounds palette.

    That is not a feature of iPhoto - suggest to Apple - iPhoto Menu ==> provide iPhoto feedback.
    Additionally I have no idea what you are saying here
    I have found the color palettes but can't seem to incorporate them into my backgrounds palette.
    And it always helps for you to dientify the version of iPhoto that you are using
    LN

  • Need help with Page Layout and Background Scaling

    hello, everyone.
    I am in the process of designing a new website for myself,
    and while I was researching nicely designed pages to use as
    inspiration, I stumbled upon this site:
    http://www.jeffsarmiento.com/
    obviously, the design is very impressive, but it also
    incorporates a lot of web mechanics that I have been trying to
    figure out, so I will use this page as an example.
    one thing I need help with is backgrounds. as you can see in
    the posted website, the creator used a seamlessly tiled paper
    texture to display the bulk of his content on. also make not of the
    pattern that is located to the left of the paper texture. how do I
    create seamless backgrounds like this that will scale to fit any
    amount of content or any resolution? I can't imagine that the guy
    that made that site created a new size background every time he
    made an update, so there has to be an easier way.
    the second thing that I am having trouble with is general
    site layout. I have read that most sites used series of invisible
    tables to organize there content, but when I open the source of
    this page in dreamweaver, he was using something different. div
    tags? should I be using these? who do I use them? are there any
    general layout tips that someone could pass on to me? perhaps a
    link to a good tutorial?
    please help me. i am very confused.
    thanks so much.

    IMO not a good site to emulate. To wit:
    Top background image:
    http://www.jeffsarmiento.com/images/bg-top.jpg;
    745px
    x 350px 137K
    Main background image:
    http://www.jeffsarmiento.com/images/bg-tile.jpg;
    745px x 950px 130K
    Total page size: 454K (Check here:
    www.websiteoptimization.com)
    Website usability experts routinely recommend a maximum page
    size of ~80K
    Check out the We We Scale @ www.FutureNowInc.com/wewe/ where
    they suggest,
    "You speak about yourself approximately 0,003 times as often
    as you speak
    about your customers. Might that have an impact on your
    effectiveness?"
    That is 100% consistent with the #1 Web Design mistake:
    "Believing people
    care about you and your web site." or to phrase more
    expansively, "Our site
    tries to tell you how wonderful we are as a company, but not
    how we're going
    to solve your problems."
    www.sitepoint.com has some excellent books on making a
    website actually
    attractive and usable at the same time.
    Walt
    "beWILLdered_" <[email protected]> wrote in
    message
    news:[email protected]...
    > hello, everyone.
    > I am in the process of designing a new website for
    myself, and while I was
    > researching nicely designed pages to use as inspiration,
    I stumbled upon
    > this
    > site:
    >
    http://www.jeffsarmiento.com/
    > obviously, the design is very impressive, but it also
    incorporates a lot
    > of
    > web mechanics that I have been trying to figure out, so
    I will use this
    > page as
    > an example.
    > one thing I need help with is backgrounds. as you can
    see in the posted
    > website, the creator used a seamlessly tiled paper
    texture to display the
    > bulk
    > of his content on. also make not of the pattern that is
    located to the
    > left of
    > the paper texture. how do I create seamless backgrounds
    like this that
    > will
    > scale to fit any amount of content or any resolution? I
    can't imagine that
    > the
    > guy that made that site created a new size background
    every time he made
    > an
    > update, so there has to be an easier way.
    > the second thing that I am having trouble with is
    general site layout. I
    > have
    > read that most sites used series of invisible tables to
    organize there
    > content,
    > but when I open the source of this page in dreamweaver,
    he was using
    > something
    > different. div tags? should I be using these? who do I
    use them? are there
    > any
    > general layout tips that someone could pass on to me?
    perhaps a link to a
    > good
    > tutorial?
    > please help me. i am very confused.
    >
    > thanks so much.
    >

  • Installing Elements 11 on Mac. Need help with install error "Setup wants to make changes."

    Installing Elements 11 on Mac 10.8.2. Need help with install error:  Setup wants to make changes. Type your password to allow this."  After entering Adobe password, nothing happens.  Locked from further installation.  Any ideas?  Adobe phone support could not help.

    Just before letting changes (installation in this case) be made on the system, Mac OS prompts for password & this has to be the Mac system password. This password prompt is the system's own native prompt & would accept the system password only. Please make sure it is the right system password (all/admin rights) and the installaion should run.

  • Hello.  I need help.  I use Photoshop Elements 10 on my MAC but it no longer reads discs.  Can I download it from the internet with my original package serial number?

    Hello.  I need help.  I use Photoshop Elements 10 on my MAC but it no longer reads discs.  Can I download it from the internet with my original package serial number?  thanks

    Yes, from here:
    Download Photoshop Elements products | 13, 12, 11, 10

  • Need help with Adobe Premiere Elements 2

    I can drag a large high rez jpeg into timeline. Then when I click to playback....it gets more pixelated. That's a bad beginning. Then, when I go to export it, I've tried several extensions. All look bad during playback on YouTube. This should be pretty simple. High quality jpeg, but is fuzzy in movie. What's going wrong?

    hi Bill -
    ok fine. I have PSDs too. I tried what you said.
    I put a PSD right beside a JPEG in the timeline. I rendered it (which I
    didn't know to do because the instructions don't even mention it. The
    instructions are terrible. Seems it leaves out a lot of info.)
    So, then I click PLAY on my monitor. I see no difference between the PSD
    and the JPEG yet. So, if I want to put this on YouTube, what's the best way
    exactly, without gettting too technical?  It looks like I have the choice
    between Exporting in Mpeg or Quicktime or Windows Media. I think youtube
    likes wmv.
    From: Bill Hunt <[email protected]>
    To: Tommy Midyette <[email protected]>
    Date: 6/3/2010 10:01:24 AM
    Subject: need help with Adobe Premiere Elements 2
    >
    When you drag the stills to the Timeline, there should be a red line
    above them. Press Enter to Render the Timeline.
     
    Do not know the particulars of PrE 2, but in later versions, you can
    Rt-click on the Program Monitor, and choose Magnification = 100%, rather
    than Fit. You might have to resize your Program Monitor, but check at 100%.
     
    Also remember a few points:
     
    1.) You are looking at a DVD-quality image now, and that was designed
    with low-rez CRT TV's in mind, and NOT hi-rez computer monitors. DVD vs
    hi-rez sources and displays is probably less than what VHS vs DVD was, not
    that long ago.
    2.) You are looking at an emulation, a preview
    3.) Your images have already been compressed to JPEG once, loosing
    quality. That is why I always work in PSD, especially if there has already
    been one JPEG compression, whether in camera, or in the image processing
    stage. I keep JPEG either out of my workflow, or as limited, as is
    possible. Some do not see the quality loss with JPEG compression, but I do,
    and if I can create images that are as good as it gets, I know that my
    clients will be happy.
     
    Good luck,
     
    Hunt
    >

Maybe you are looking for

  • Taking the kth-column of multiple files and then joining them together in a single file

    Hi I would like some help with array manipulation I have multiple (1000) files with 5 columns each and 20,000 rows. The first row of each file has a header that labels the columns. I would like to be able to read these files, pull out colum 3 from ea

  • Home folder full

    When I try and open my mail I get a dialog box that says home folder full, delete files. How do I do that? Where do I go? I have deleted files in my documents, etc. still get the message. I am not out of space on the hard drive.

  • Spell checker in Pages for iOS - other than english

    Hello, I'm trying to get spell checking in Pages for iOS working in another language besides english. My question is- is spell checker in Pages for iOS evailable in any other language besides english? Because it doesn't seem to be- once I change keyb

  • Why wont my camera work

    a couple months ago, Apple replaced my phone because of a broken on/off button but now every time I want to use the camera, it doesn't work. I have to reset my phone every time I want to use it or any application that requires the camera. HELP!

  • Deleting Interface: Interface group is being used by AP Group

    When trying to delete an interface from the Interface Groups, I am getting an error "Interface group is being used by AP Group." Is there a way I can go in to delete the interface?