How do you cut out exact figures?

When I use the lasso tool to carve out a figure and paste it in some other application I get the the figure I cut embedded in a white box. How do I just cut and paste only the figure?

Thanks that worked!
Date: Sun, 27 Jun 2010 20:31:25 -0600
From: [email protected]
To: [email protected]
Subject: How do you cut out exact figures?
System clipboards can be finicky, to say the least.
Also which operating system and application do you want to paste into?
The following may help:
1. With your selection active around your object, right click inside the selection.
    In the menu choose New Layer via Copy. (makes a new layer with just your
    selected object)
2. Right click on the new layer in the layers pallete and choose Duplicate Layer.
    In the dialog box, where it says document choose new from the drop down menu.
    You can name it or not. Click ok.
3. A new document should be created with just that layer.
4. Depending on how big the document is, you could use the Rectangle Marque Tool
   (M on the keyboard) and draw a selection box around your object and then go to
   Image>Crop, then Select>Deselect.
5. Save your image as a PNG file. File>Save As and choose png from the drop down.
    It should say File must be saved as copy, thats fine.
6. Open or insert your png into the application of choice.
MTSTUNER
>

Similar Messages

  • How do you cut out the part of an image in a photo?

    How do you cut out a part of an image on a photo that you have added to Pages. For example, if I have added a picture of a giraffe to Pages how would I cut out the giraffe from the image and get rid of the rest of the image

    You can use the instant alpha tool to make the background transparent.
    FYI: Pages is part of iWork, not iLife.

  • How do you cut out a part of an audio recording?

    Lets say I recorded a guitar solo but the last note of it didn't sound to good. I want to cut this one little portion of the audio recording off. How would I do this? I've tried double clicking the audio strip, highlighting the part to cut, and pressing delete but sometimes it completely changes the position of the track in the sequencer. Please help me out. Thanks a lot!!!

    RyConn M.D. wrote:
    Lets say I recorded a guitar solo but the last note of it didn't sound to good. I want to cut this one little portion of the audio recording off. How would I do this? I've tried double clicking the audio strip, highlighting the part to cut, and pressing delete but sometimes it completely changes the position of the track in the sequencer. Please help me out. Thanks a lot!!!
    Hi,
    From your post, I see that you are very new to audio recording on a computer.
    I HIGHLY recommend you buy a book on this subject. There are many out there, I suggest this one
    Logic-Pro-Power by Orren-Merton
    I had the one for version 5, and it is very good.
    Cheers

  • How do you find out the contacts that were updated via Facebook and twitter in the settings without having to figure it out manually?

    How do you find out the contacts that were updated via Facebook and twitter in the settings without having to figure it out manually?

    There is no such list of what is downloaded to each phone except in the backup. So if you have a recent backup of each phone you should be able to find an app that reads the backup files and would tell you what list is saved of the content on each phone.

  • How can you found out what computers you are home sharing so you can delete some, How can you found out what computers you are home sharing so you can delete some

    How can you find out what computers you are sharing with so you can delete some

    Oh, have you brought up so many good points. Not to take us off-topic, but I could rant all day about Eloqua consulting firms who let low-level employees (Eloqua skill-wise) loose on clients projects. Just not fair for either the employee or client. There was one company that did this to me a few years ago, and since then dozens of people have asked me about them for a reference.  Needless to say, they never get a good one from me, and have likely lost hundreds of thousands of dollars in projects because of this. Not worth it in the long-run to cut corners.
    Back to the topic at hand....
    You really hit the nail on the head in so many ways. It really all does come down to one thing: hard work. There are no shortcuts. Always keep learning. Embrace every Eloqua challenge you can, and never say never.  Never be fearful of being wrong by asking something 'silly', or 'looking stupid'. I remember several times that I've submitted Eloqua support tickets, or tickets to other related vendors about things that I was convinced were bugs/major issues. Turned out to be my mistake. But that's ok. You brush off, stand back up, and learn from them.
    And finally, be modest.  You will never know everything about Eloqua. Be willing to learn from others, and know that there actually may be a better way to do something than you may have spent days or weeks working on.

  • How can you find out whether anything in a table's been selected?

    How can you find out is there anything(a cell or a row) in a table's been selected???
    it's doesn't matter which cell or which row's been selected in a table, but just to know is there anything been selected
    I can't figure out the code to do that >.<
    is there anything to do with
    bookTable.getCellEditor()?

    How can you find out is there anything(a cell or a row) in a table's been selected???
    it's doesn't matter which cell or which row's been selected in a table, but just to know is there anything been selected
    I can't figure out the code to do that >.<
    is there anything to do with
    bookTable.getCellEditor()?

  • How do you grey out/disable fields under a radio button if another radio button is selected in Adobe Acrobat XI Pro?

    How do you grey out/disable fields under a radio button if another radio button is selected in Adobe Acrobat XI Pro?
    I’m creating a form where the user has three options to make a payment.
    1. charge to my credit card
    2. charge associated costs to bank account
    3. By cheque or money order
    My Problem is, under each option, there are required fields that has to be filled out. So if the user picks the first option, charge to my credit card, they would fill out the required fields (credit card number, expiration date etc.). But when they click submit button to submit the form, it won’t let them, because there are required fields under the second option. Also, I have the radio buttons for the three options setup so that if the user holds the shift key and clicks a radio button, it unchecks it. So what I'm trying to do is this: If the user selects the radio button for option 1, the other two options are greyed out/disabled. And if the user holds down the shift key and clicks radio button for option one again, it unchecks the radio button and the other two options are available again. Is there a way to grey out or disable the two other payment options when the other one is picked. I’m assuming I will have to use javascript, but what would the coding be and which field do I write it under?
    Thanks in advance guys

    You will have to use custom JavaScript to access the various properties of the field object.
    The radio button group has a value. When no button is selected that value is "Off". When an individual button has been selected the value for the group will be the option or export value for that individual button.
    Once you have determined the button selected, then you will know the form fields that need to be made required. You use JavaScript to access those fields and change the "read only" property to false, and set the "required" property to true. For the fields associated with the other options, those fields should be reset, made read only, and have the "required" property set to false.
    Disabling (graying-out) Form Fields
    >> Also, I have the radio buttons for the three options setup so that if the user holds the shift key and clicks a radio button, it unchecks it.
    Radio button in a PDF do not work that way. Only check boxes can be unchecked by clicking on one that has been checked.
    If you plan the coding for the Mouse UP action to test for all possible options and code for each of those options you should have what you want.
    If you want actual code you need to provide a lot more details.
    It is even possible to perform some credit card and bank routing number validations with JavaScript and some check digit formulas.

  • How do you grey out a radio button if a text field is blank in Adobe Acrobat XI Pro?

    How do you grey out a radio button if a text field is blank in Adobe Acrobat XI Pro?
    So this what I'm trying to do:
    (     )   |TEXT FIELD|
    (     )   |TEXT FIELD|
    (     )   |                  |
    (     )   |TEXT FIELD|
    I have a radio button: (     )
    and a text field: |TEXT FIELD|
    The third text field is blank, and I would like for the radio button next to it greyed out (user can't click on it) since the text field is blank. Is this possible to achieve? I'm assuming I'll have to use javascript, but what would the code be and would it be entered in the javascript editor for the text field or the radio button?
    Thanks in advance guys

    Hey, thanks, but it didn't work
    I have the text fields as read only. Could that be why it's not working? Should I make the fields not read only?
    Thanks,

  • HT204053 Can I set up two iCloud accounts on my IPAD3 at the same time? If not how do you sign out of one to sign in to another?

    Can I set up two iCloud accounts on my IPAD3 at the same time? If not how do you sign out of one to sign in to another?

    Welcome to the Apple community.
    You can add more than one account to your iPad, but you can only have one primary account. Secondary accounts which you can add at settings> mail, contacts, calendars do not have all the features of a primary account such as photo stream.

  • In iMovie 11, how can you cut/paste a clip that has subtitles and actually have the subtitles get cut/pasted. When I try, the subtitles disappear into the void and I have to do the subtitling all over again.

    In iMovie 11, how can you cut/paste a clip that has subtitles and actually have the subtitles get cut/pasted. When I try, the subtitles disappear into the void and I have to do the subtitling all over again.

    If you think this is a bug, you can report it here:
    Apple - Mac OS X - Feedback

  • How do you edit out the date and time stamp from a photo

    How do you edit out the date and time stamp from a photo

    You can blur it out with retouch
    The built-in "Retouch" brush in "Edit" mode should suffice, if the background is mostly uniform, and if you set the size of the brush to slightly wider than the bar width of the letters. For example, in this picture I removed the year from the date (in the lower right corner) by using the "retouch" brush and following the contours of the letters. (the screen shot is from iPhoto '11, but iPhoto 9 should give similar results).
    Regards
    Léonie

  • Hi there how are you guys out there of this forum? I got a question for y'a

    Hi there how are you guys out there of this forum? I got a question for y’all
    I wanted to know how I could record different folders using iTunes
    Cause when recorded 2000 thongs on the DVD
    There were 2000 songs to go through
    So I really wanted to have had folders and then the music recorded inside them
    So I could get right to where I wanted real quickly
    Could anyone please teach me how to do that real quickly?
    Can we do it with iTunes?
    I know we can do it with Nero.

    1) Go to file, select new playlist. Creat the playlaist.
    2) Download your music into iTunes.
    NOTE: CHECK 'Recently Added' before you download your music.
    If the select boxes has a check in them, turn it off by
    holding down the 'ctrl' key and selecting one of the
    checked boxes. This shold turn off all the checks.
    It would be better to clear 'Resently Add' of all
    previous downloads, but I don't know how to do that
    yet.
    3) under 'PLAYLIST' on the right, select 'Recently Add'.
    all of your song should show there with a check in the selection
    box.
    4)Hold the shift key and select the frist (selete records name),
    then the last recorded tune. All of the recordings shouls light
    up blue.
    5) While holding the 'shift' key, drag one of the records to your new
    playlist. All of the blue highlighted song will transfer to the new
    playlist.

  • How do you find out who did not contribute to a particular fund raiser that we all just did?

    Using MYsql How do you find out who did not contribute to a particular fund raiser that we all just did. There are many titles to the different charities that is under the othpaytitle of the Otherpay table,  I however just want to extract the non-contributors for a particular charity title. Is there anyway to do this? When I do the the syntax below it comes up as an "empty set". The search is done by way of the table Id matching and left joins. Please see below.
    SELECT  moiid, trim(concat(name.fname,' ' ,name.mname,' ',name.lname)) as Brother, name.moiid as Members_ID, sum(otherpay.othpayamt) as NO_Contribution, quadlt.ltfname as quad 
    FROM name 
    LEFT JOIN OTHERPAY  ON name.moiid = otherpay.othpaymoiid
    LEFT JOIN quadlt  ON name.quadlt = quadlt.ltid
    WHERE  Otherpay.othpaytitle like '%food drive%'
    AND otherpay.othpaymoiid IS NULL
    AND name.type = 'BOI'
    AND name.type <> 'jrboi'
    AND name.city = 'SUFFOLK'
    GROUP BY brother
    ORDER BY name.quadlt, brother

    Just guessing based on your query,  and assuming the above query works, just insert a "where" condition. I also removed the SUM function. Also, "AND otherpay.othpaymoiid IS NULL"  may not be needed.
    SELECT  moiid, trim(concat(name.fname,' ' ,name.mname,' ',name.lname)) as Brother, name.moiid as Members_ID, otherpay.othpayamt, quadlt.ltfname as quad
    FROM name 
    LEFT JOIN OTHERPAY  ON name.moiid = otherpay.othpaymoiid
    LEFT JOIN quadlt  ON name.quadlt = quadlt.ltid
    WHERE  Otherpay.othpaytitle like '%food drive%'
    AND otherpay.othpaymoiid IS NULL
    AND name.type = 'BOI'
    AND name.type <> 'jrboi'
    AND name.city = 'SUFFOLK'
    AND othpayamt=0
    ORDER BY name.quadlt, brother

  • How do you find out if the transmitter and/or receiver leaves the session ?

    So , how do you find out if the transmitter and/or a receiver leaves the session , is there an event when this happens ?

    1. There is no list available from your end.
    2. You can't actually check. If you suspect a device has been, deauthorize it twice and then authorize it.
    (89509)

  • How do you find out what your Apple ID password is?

    A friend of mine forgot their Apple ID password and can't log in. They also don't have access to their email, but that's not the issue. He wants to know how you find out what your current Apple ID password is. He awnsered his security questions but all it would let him do is reset his password, without finding out what his current one is. How do you find out your Apple ID password?

    You can't recover a password, only change it. The reason for this is that Apple has changed their conditions for passwords. They now need to have one upper case letter, 1 number, and be at least 8 characters. Also you cannot use any password you have previously used in the last year.

Maybe you are looking for

  • The transaction is no longer active - status: 'Committed'.

    Hello - We are attempting to use a design where a connection will remain in use over multiple transactions. Is there any way to get weblogic to allow this? We are currently experiencing the stack trace below, when a database read is attempting to use

  • Creation of Generic business Object for a standard transaction

    Hi, We have a requirement where we are depreciating the assets (standard transaction ABAA) using a custom BDC program. We need to maintain a history (called audit trail) for the particular asset that has been depreciated using this program. For this

  • How can I get the metronome to click dotted-quarters in 6/8?

    When I go from 4/4 to 6/8 the metronome goes hyper (clicks 8ths) This is annoying. How can I get the metronome to lay back and click dotted-quarters instead? -Thanks

  • Info Spoke-ABAP Code Modification

    Hi,    The below code is used as a customer exit variable Which give te YEAR TO DATE value on a KF. Could you please mofify this,That output will be year to date value & to eliminate '0' values and have to use it in Infospokes OUT PUT: If i use this 

  • Schemas and Grammar (JAXB)

    Does anyone know where I can find any documentation or examples for the APIS for Grammar and Expression classes - com.sun.msv.grammar.Grammar, com.sun.msv.grammar.Expression etc... ? The why: In a previous post I stated I had the following problem. I