Cut and paste problem

When I cut and paste from a photoshop document into a new image, the edges are automatically feathered, as pictured below. How can I keep this from happening?

Make certain your Feather value is 0 when creating a selection.
(It's in the Control bar at the top of the screen)

Similar Messages

  • Cut and Paste problem with links in DW

    Anyone have a clue as to why this is happening.....
    when I cut and paste a complex link -- DW seems to add some characters.... see below....
    Original Link
    http://spie.org/app/program/index.cfm?fuseaction=exhibitordetail&exhibitorid=20189&meeting _id=169
    Dreamweaver's modified link.... it's adding  amp after the & sign....
    http://spie.org/app/program/index.cfm?fuseaction=exhibitordetail&exhibitorid=20189&meeting _id=169
    Simple links stay the same... but this got me in a little hot water with a client when I sent out an email from constant contact....
    Thanks
    -C
    oh... couple things.... I'm working on:
    OS 10.6.2  (MAC)
    CS4

    "it's adding  amp after the & sign"
    It's not actually adding "amp".
    DW is assisting you by encoding the "&" (which validators assume to be a broken HTML entity since they start with "&") and replacing it with the correct form of "&" so that browsers can understand the URL.
    See
    http://htmlhelp.com/tools/validator/problems.html#amp

  • Cut and paste problems

    Cut and paste between program has been real buggy since upgrading.  Today, I am trying to cut lines of text out of InDesign and paste into either a web browser or Mail, and nothing happening.  Text cuts OK, cause I can paste it back into ID, but won't let me paste elsewhere.  Had the same problem earlier pasting between Excel and ID.  Anybody else experiencing this?

    It's an extremely important skill to learn to read the API and become familiar with the tools you will use to program Java. Java has an extensive set of documentation that you can even download for your convenience. These "javadocs" are indexed and categorized so you can quickly look up any class or method. Take the time to consult this resource whenever you have a question - you'll find they typically contain very detailed descriptions and possibly some code examples.
    http://java.sun.com/reference/api/index.html
    http://java.sun.com/j2se/1.5.0/docs/api/

  • Dreamweaver cut and paste problem! LAST RESORT!

    Hello there people
    I am in desperate need of some help, I have exhausted all
    other options and I REALLY hope some one on here will be able to
    help me!...
    I was halfway through an index.html doc when my cut and paste
    option stopped working! if you go to edit, all the options are
    greyed out! and keyboard shortcuts wont work either! I have tried
    opening my other docs and they are all the same!,
    Thinking it was a bug I downloaded some updates, I then tried
    re-installing, and then removing the WHOLE thing then
    re-installing! Ive also looked at windows and there does not seem
    to be a problem there either!
    Cut and paste works EVERY where else except in DW!
    It is looking like maybe I have "selected" some thing, but I
    have checked every thing I know and still NOTHING!!
    can any one shed any light on this?

    IVE GOT THE ANSWER!
    In Windows, browse to this file:
    C:\Documents and Settings\<user>\Application
    Data\Macromedia\Dreamweaver 8\Configuration\panelset.xml
    Rename the panelset.xml file to panelsetOLD.xml, so that
    Dreamweaver will automatically create a new panelset.xml
    file.

  • Adobe Reader/Preview  pdf-to-Word cut and paste problems...

    Hi,
    I often cut and paste from pdfs of documents where the text is in two columns, to Word documents...and without fail, I get a jumbled-up mix of BOTH columns of text that I have to mess with, deleting bits I don't want, squishing-up the text I do, etc...
    What am I doing wrong, and is there anything I can do to stop this happening?!
    Thanks very much for any advice.

    If you are using Adobe Reader to open the pdf then the selection tool should highlight what you are copying and pasting. Unfortunetley sometimes with double row columns you are forced to copy parts of text that you don't want.

  • Cut and paste problem in an applet :(

    Hi All,
    I have developed an applet based GUI and now I wanted to cut and paste some text from an external application say from a notepad(Windows) to a
    JTextfield in the applet. I tried to do it on a applet but it was not allowing me to do it. I was able to do the same(cut and paste) on a textfield when run as an application. So does the cut and paste operation has anything to do with the sandbox security provided by an applet model?. This sounds bit crazy or maybe Im missing something here. Would appreciate help on this.
    Thanks a ton!
    Thanks,
    Ram

    You can always use CTRL-C and CTRL-V to copy/paste, but if you want to right-click, you have to implement it yourself.. Here's MY implementation, if even has 'Undo'!
    import java.awt.*;
    import java.awt.datatransfer.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.event.*;
    import javax.swing.text.*;
    public class CTPopupMenuMouseListener extends MouseAdapter
           private JPopupMenu popup = new JPopupMenu();
           private JMenuItem undoItem, cutItem, copyItem, pasteItem, deleteItem, selectAllItem;
           private JTextComponent textComponent;
           String savedstring="";
           String lastactionselected="";
           public CTPopupMenuMouseListener()
                  Action action = new AbstractAction("Undo")
                    public void actionPerformed(ActionEvent ae) {
                         if(lastactionselected.compareTo("")!=0){
                             textComponent.setText("");
                             textComponent.replaceSelection(savedstring);
                  undoItem = popup.add(action);
                  undoItem.setMnemonic('t');
                  popup.addSeparator();
                  action = new AbstractAction("Cut")
                    public void actionPerformed(ActionEvent ae) {
                          lastactionselected="c";
                          savedstring=textComponent.getText();
                          textComponent.cut();
                  cutItem = popup.add(action);
                  cutItem.setMnemonic('t');
                  action = new AbstractAction("Copy")
                    public void actionPerformed(ActionEvent ae) {
                          lastactionselected="";
                          textComponent.copy();
                  copyItem = popup.add(action);
                  copyItem.setMnemonic('c');
                  action = new AbstractAction("Paste")
                    public void actionPerformed(ActionEvent ae) {
                          lastactionselected="p";
                          savedstring=textComponent.getText();
                          System.out.println("in paste code savedstring is: "+savedstring);
                          textComponent.paste();
                  pasteItem = popup.add(action);
                  pasteItem.setMnemonic('p');
                  action = new AbstractAction("Delete")
                    public void actionPerformed(ActionEvent ae) {
                          lastactionselected="d";
                          savedstring=textComponent.getText();
                          textComponent.replaceSelection("");
                  deleteItem = popup.add(action);
                  deleteItem.setMnemonic('d');
                  popup.addSeparator();
                  action = new AbstractAction("Select All")
                     public void actionPerformed(ActionEvent ae) {
                          lastactionselected="s";
                          savedstring=textComponent.getText();
                          textComponent.selectAll();
                  selectAllItem = popup.add(action);
                  selectAllItem.setMnemonic('a');
            public void mouseClicked(MouseEvent e)
                  if (e.getModifiers()==InputEvent.BUTTON3_MASK)
                         if (!(e.getSource() instanceof JTextComponent))
                               return;
                         textComponent = (JTextComponent)e.getSource();
                         textComponent.requestFocus();
                         boolean enabled = textComponent.isEnabled();
                         boolean editable = textComponent.isEditable();
                         boolean nonempty = !(textComponent.getText()==null || textComponent.getText().equals(""));
                         boolean marked = textComponent.getSelectedText()!=null;
                         boolean pasteAvailable = Toolkit.getDefaultToolkit().getSystemClipboard().getContents(null)
                                    .isDataFlavorSupported(DataFlavor.stringFlavor);
                         undoItem.setEnabled(enabled && editable);
                         cutItem.setEnabled(enabled && editable && marked);
                         copyItem.setEnabled(enabled && marked);
                         pasteItem.setEnabled(enabled && editable && pasteAvailable);
                         deleteItem.setEnabled(enabled && editable && marked);
                         selectAllItem.setEnabled(enabled && nonempty);
                        int nx=e.getX();
                        if (nx>500)
                            nx=nx-popup.getSize().width;
                         popup.show(e.getComponent(),nx, e.getY()-popup.getSize().height);
                  }else if ( e.getClickCount()==2 )
                        CTmainFrame.JTextArea1.setText("");
      }

  • Apple Mail Cut and Paste Problem

    When I cut and past in Apple Mail font changes to smaller size.  Any suggestions?

    As you know, type sizes are uniform - unless you use cut-and-paste. The resulting text will sometimes be smaller, larger, or different than the type-style you began with.
    Personally, I'd ignore it. But if you want to fix the font size, you can alter it in the Format Bar on the top of the Mail program. This allows you to change the type, size, and even alter special characters. To make the text uniform, highlight the text you want to alter, open the Format Bar, and change the settings.

  • Copy Cut and Paste problems

    Hi!
    I hace a little app like a notepad.
    It has menubar and some menus.
    Including the Copy menu, cut menu, and paste menu.
    How do i copy, cuy and paste text?
    please if you can send a little example.
    Thanks

    It's an extremely important skill to learn to read the API and become familiar with the tools you will use to program Java. Java has an extensive set of documentation that you can even download for your convenience. These "javadocs" are indexed and categorized so you can quickly look up any class or method. Take the time to consult this resource whenever you have a question - you'll find they typically contain very detailed descriptions and possibly some code examples.
    http://java.sun.com/reference/api/index.html
    http://java.sun.com/j2se/1.5.0/docs/api/

  • Never in all my years have I seen this cut and paste problem - can anyone help?

    Hi all... I've been using Illustrator since v5, and never before has something foxed me as much as this...
    I have a document supplied from a customer to make up into packaging artwork. To start with, the file is 19MB which set the alarm bells ringing, as it has no images etc, and is fairly simply made up (it's a milk carton sleeve). However, when you copy any single element (even a simple shape) from the file and paste to a new doc it takes literally 2 mins to copy, and a minute or so to paste it into the new doc, and then comes in with nearly 100 colours - all called 'Deleted Global Color (1-100)'. You can delete these colours by selecting remove unused colours, but even then when you save the file down (an A4 page with a simple shape coloured in black), the file is 47MB!!! (which is obviously why I can't attach it)...
    I've looked in the appearances etc and nothing seems untoward - all masks have been disabled etc. As you can imagine, the file is very hard to work with, and even to deconstuct it is proving to be an impossible feat.
    If anyone has ever seen anything like this or if anyone knows what might be causing the problems or can suggest any way of tackling it, then I can be most grateful. I can supply a file if needed, but as mentioned, they are quite large!
    Thanks in anticipation, Karl

    Thanks Tom - I'm sure this is related to my problem in regards to the file having a severe 'lame ducks' problem. However, the answer in Teri Pettit's post (http://adobe.groupbrowser.com/t177412.html) is very specific to the user's problem she is addressing, so when I followed the instructions it didn't work for my file as I couldn't locate the offending string of text, as that must have been specific to the file that was being looked at.
    My file seems much worse! The file Teri was looking at was saving down at 6-8MB - mine saves down anything between 40-80MB. Though I'm sure it is the same problem.
    I could really do with getting in touch with Teri Petitt, but I am unsure as to how I can do this, as the adobe group browser doesn't let you reply to posts.
    Many thanks for pointing me in the right direction - I feel like I'm getting closer to a solution, just hope I can get in touch with Teri...
    Cheers, Karl

  • Having a problem with dates when I send my numbers doc to excel. dates are all out and that they have to cut and paste individual entries onto their spreadsheet. Any idea how I can prevent this

    having a problem with dates when I send my numbers doc to excel. dates are all out and that they have to cut and paste individual entries onto their spreadsheet. Any idea how I can prevent this.
    I'm using Lion on an MBP and Numbers is the latest version

    May you give more details about what is wrong with your dates ?
    M…oSoft products aren't allowed on my machines but I use LibreOffice which is a clone of Office.
    When I export from Numbers to Excel and open the result with LibreOffice, the dates are correctly treated.
    To be precise, dates after 01/01/1904 are correctly treated. dates before 01/01/1904 are exported as strings but, as it's flagged during the export process, it's not surprising.
    Yvan KOENIG (VALLAURIS, France) mardi 3 janvier 2012
    iMac 21”5, i7, 2.8 GHz, 12 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.2
    My iDisk is : http://public.me.com/koenigyvan
    Please : Search for questions similar to your own before submitting them to the community
    For iWork's applications dedicated to iOS, go to :
    https://discussions.apple.com/community/app_store/iwork_for_ios

  • Multiple problems: can't open two windows, browser doesn't close although window disappears, and after working for a while I loose my ability to cut and paste or use drop down arrows

    Maybe two weeks ago I discovered that I could no longer open two windows at a time (I can still open multiple tabs). I am also having problems with cutting and pasting, which is crucial to my on-line job. Plus, when I exit Firefox, it doesn't always shut down, so then when you go to re-open, of course, it won't (unless you go into process and turn it off). I have re-installed multiple times and I have also used restore. Nothing seems to be fixing this and I really, really don't want to use IE, especially for work.

    Start Firefox in [[Safe Mode]] to check if one of your add-ons is causing your problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    * Don't make any changes on the Safe mode start window.
    See
    * [[Troubleshooting extensions and themes]]
    * [[Troubleshooting plugins]]
    If it does work in Safe-mode then disable all your extensions and then try to find which is causing it by enabling one at a time until the problem reappears.
    * Use "Disable all add-ons" on the [[Safe mode]] start window to disable all extensions.
    * Close and restart Firefox after each change via "File > Exit" (Mac: "Firefox > Quit"; Linux: "File > Quit")
    See also "Hang at exit":
    * http://kb.mozillazine.org/Firefox_hangs
    * [[Firefox hangs]]
    Maybe also do a malware check with a few malware scan programs.<br />
    You need to use all programs because each detects different malware.<br />
    Make sure that you update each program to get the latest version of the database before doing a scan.<br />
    * http://www.malwarebytes.org/mbam.php - Malwarebytes' Anti-Malware
    * http://www.superantispyware.com/ - SuperAntispyware
    * http://www.safer-networking.org/en/index.html - Spybot Search & Destroy
    * http://www.lavasoft.com/products/ad_aware_free.php - Ad-Aware Free
    * http://www.microsoft.com/windows/products/winfamily/defender/default.mspx - Windows Defender: Home Page
    See also "Spyware on Windows": http://kb.mozillazine.org/Popups_not_blocked and [[Searches are redirected to another site]]

  • I can't be the only person who has this problem - when a month ends on a Saturday I can't drag events into the next month and instead have to cut and paste - a real pain in the butt. I thought there was something called "scroll" but I can't find that

    I can't be the only person who has this problem with iCal- when a month ends on a Saturday I can't drag events into the next month and instead have to cut and paste - a real pain in the butt. I thought there was something called "scroll" but I can't find that.

    Yeah that works, but, it involves a click on the event, a click on edit, a click on the date, keystrokes, plus, since you can't see the next month you have to have a calendar in front of you so as to put it to the right date. It's easier just to cut it and advance the month and paste it, once you are in the right month you can move it around helter skelter willy nilly no problems. Although now that you mention it I will try it, maybe it is easier than cut and paste as I don't really care about the date, as long as it gets moved into the right month I can drag it around all I want.

  • I am trying to cut and paste from a program, IEP DIRECT, and normally on my PC I have no problems; however, when using my MAC the formatting gets all mixed up

    i am trying to cut and paste from a program, IEP DIRECT, and normally on my PC I have no problems; however, when using my MAC the formatting gets all mixed up

    If you refer to this
    https://www.iepdirect.com/iepdotnet/hub/index.html
    then they have an issue with mac version.
    At a first glance, their website is optimized for Windows only, it displays badly in Safari, perhaps it would be better in Firefox or other browser.

  • I've suddenly lost the Cut and paste function.... Firefox or system problem?

    In the last 2 -3 days I do not get the cut and paste options when I highlight and right click. This is across the board.

    Start Firefox in a special diagnostic mode called "Safe mode:"
    * Click the Firefox button and in the help menu, select '''Restart with Add-ons Disabled'''
    * Or in Firefox 4-9, hold down '''Shift''' while selecting the shortcut you normally use to open the browser
    * ''For now if you encounter a Safe Mode window, select <u>Continue in Safe Mode</u>.
    If your problem is gone with Safe Mode, it is most likely caused by an add-on. Read [[Troubleshooting extensions and themes]] to find the culprit.

  • Problem: Mac OS X Photoshop 2014, cut and paste shortcuts intermittent?

    I've been suffering this since I installed CC, and just found out my colleagues have the same problem.
    Cut and paste shortcuts for Photoshop are intermittent. I have two open documents (single layer JPGs I've just opened), CMD A to select all, then CMD C to copy the entire layer ... then I switch over to my other JPG to CMD V to paste one image on top of the other.
    Often, on my first attempt, nothing happens. I have to repeat, CMD A, CMD C, CMD V between the two images, two or three times to get the image onto the clipboard and paste it.
    Sometimes, CMD V ends up pasting what's already on the clipboard.
    So why I am I frequently experiencing intermittent copy-paste?

    Hello,
    If a tool is behaving erratically, first try resetting just that tools preferences, via the below method:
    FAQ: How do I reset my preferences?
    If you have larger troubles, hold down Alt, Ctrl, and Shift keys (Mac: Command, Option, Shift) while starting up Photoshop. A dialog box will appear asking if you wish to delete the preferences/settings file. This one solves and fixes most of the most rare problems.
    Best Regards,
    José

Maybe you are looking for