Cut,copy and paste functions using the mouse

Hi.
I'm a new mac owner and have read that I should be able to do the above. Is that correct, and if so how can I get my mouse to cut, copy and paste text. I can do it through edit but am unable to do so by right clicking.
Thanks for any help in advance.

Works fine in TextEdit and Pages - select text by clicking-and-holding and dragging the mouse across it, releasing, then right or control-clicking to bring up the contextual menu which includes these functions. (If you just right-click in TextEdit it will highlight just that word and bring up the menu). It doesn't work in, for example, Safari when entering text as in this forum or reading a web page.

Similar Messages

  • Can you add cut copy and paste icons to mail toolbar?

    Can you add a cut, copy and paste icons to the mail toolbar in macmail?

    I guess that these were considered such fundamental operations, each with an already existing variety of operations (mouse, keyboard, right-click, ctrl+c etc) that the Thunderbird devs didn't choose to replicate them again. Similarly, keyboard selection is relied upon a great deal in Thunderbird, rather than adding all the ugly (IMHO) checkboxes that now counterintuitively litter all Windows Explorer displays.
    So, if the devs expected you to use ctrl+right+shift to select the current text word by word, then ctrl+c to copy it, ctrl+x to cut it and ctrl+v to paste it would be quite natural, since your hands are already at the keyboard. Similarly, if you prefer to select by mouse, a right-click also offers options to copy, cut and paste, and there is also the possibility to drag selected text, serving cut and paste in one action. So it could be argued that there is no need for buttons.
    There used to be additional button add-ons for Thunderbird, but those that I know about don't appear to be under active maintenance and don't currently work with TB 31.0.
    You could build your own using a Custom Buttons add-on, but it isn't easy to find the appropriate function call to attach to your home-made buttons. :-(
    https://addons.mozilla.org/en-US/thunderbird/addon/custom-buttons/
    Here's the code you need if you try this add-on:
    cut: goDoCommand("cmd_cut")
    copy: goDoCommand("cmd_copy")
    paste: goDoCommand("cmd_paste")
    (taken from: http://kb.mozillazine.org/Keyconfig_extension:_Thunderbird )
    The tedious bit is finding suitable icons; the defaults are pretty but unhelpful coloured stars.

  • Cut, Copy, and Paste doesn't work for some Project files

    We have some Project files where the Cut, Copy, and Paste function is not working.  Suspecting corruption, I tried doing a "Save for Sharing", to no avail.
    Is there a switch setting that we are missing?
    We are using Project Server v2010 with SP2.  Our Project Pro clients are on SP2.

    Hi Chris,
    It could be due to a enterprise global corruption. Does it happen on a specific enterprise view? Does it work well in the default Gantt view?
    Try to open the enterprise global and make a copy of the table with the same fields and attributes, then replace the old table with the new one in all the relevant views.
    Hope this helps,
    Guillaume Rouyre, MBA, MCP, MCTS |

  • Re: Cut, Copy and Paste

    Hi Ronald,
    I am not an expert on this but I can tell you how I would
    start to approach this task.
    First, create menu commands for cut copy and paste, and
    map short-cut keys to them.
    When I got a cut or copy command, I would call the clipboard
    methods defined on WindowSystem (p. 545 in Display Library
    manual for Release 2). Same thing for paste. At least
    it seems to me that this is what you want to do -- move
    objects to and from the clipboard.
    There are also methods for finding the focus in various
    widgets but I bet you (or someone else) can find them! :-)
    Hope this helps,
    Geoff

    I wonder why the Windows Look and feel doesn't just put a "cut, copy, paste, clear and select all" menu as default for JTextFields and areas. When you use AWT, you get that for free.
    Anyways, read above, but I will add that you can build your menu with the cut copy and paste actions of the JTextField object ...
    Read this document for the actions provided by JTextComponents ...
    http://java.sun.com/docs/books/tutorial/uiswing/components/generaltext.html#commands
    If you use these actions, you don't have to reinvent the wheel and implement them yourself.

  • Cut, Copy and Paste + JEditorPane

    I am currently working on a text editor and i have now come to the cut, copy and paste "functions". When i try to compile my code i get:
    1. ERROR in MyMenu.java (at line 42)
    GUI.textarea.cut();
    ^^^
    The method cut() is undefined for the type JEditorPane
    2. ERROR in MyMenu.java (at line 47)
    GUI.textarea.copy();
    ^^^^
    The method copy() is undefined for the type JEditorPane
    3. ERROR in MyMenu.java (at line 51)
    GUI.textarea.paste();
    ^^^^^
    The method paste() is undefined for the type JEditorPane
    The code:
                             else if(event.getActionCommand().equals("Klipp ut")){
                             GUI.textarea.requestFocus();
                               GUI.textarea.cut();
                             else if(event.getActionCommand().equals("Kopiera")){
                             GUI.textarea.requestFocus();
                               GUI.textarea.copy();
                             else if(event.getActionCommand().equals("Klistra in")){
                             GUI.textarea.requestFocus();
                               GUI.textarea.paste();
                             }

    That didn't help me at all. I am trying to run the copy, paste and cut actions from my JMenubar. You can see my Jmenubar class code here.
    // Importerar det n�dv�ndiga
    import java.awt.*; import java.awt.event.*; import javax.swing.*;
    public class MyMenu extends JMenuBar
       // Arkivmenyn
       String fileItems[] = new String [] {"Nytt","�ppna","Spara","Spara som...","Avsluta"};
       char fileShortcuts[] = {'N','O','S','A','P','C','x'};
       char fileAccelerators[] = {};
       // Redigeramenyn
       String editItems[] = new String [] {"�ngra","G�r om","Klipp ut","Kopiera","Klistra in",
          "Rensa","Markera allt"};
       char editShortcuts[] = {'U','R','t','C','P','l','S'};
       char editAccelerators[] = {'Z','Y','X','C','V','\u0000','A'};
       // Konstruktorn
       MyMenu()
            // Namn till Menynraden
                   JMenu fileMenu = new JMenu("Arkiv");
                   JMenu editMenu = new JMenu("Redigera");
                   JMenu helpMenu = new JMenu("Hj�lp");
         // Kollar efter vilken meny som anv�ndaren g�r in p�
              ActionListener printListener = new ActionListener()
                           public void actionPerformed(ActionEvent event)
                             // Detta skall h�nda n�r anv�ndaren g�r in p� Avsluta
                             if(event.getActionCommand().equals("Avsluta")){System.exit(0);}
                             // Nytt
                             else if(event.getActionCommand().equals("Nytt") || event.getActionCommand().equals("Rensa")){
                                  GUI.textarea.setText("");
                             else if(event.getActionCommand().equals("Klipp ut")){
                               GUI.textarea.cut();
                             else if(event.getActionCommand().equals("Kopiera")){
                               GUI.textarea.copy();
                             else if(event.getActionCommand().equals("Klistra in")){
                               GUI.textarea.paste();
                             else if(event.getActionCommand().equals("�ppna")){
                               MyBrowser myBrowser = new MyBrowser();
                                 myBrowser.setVisible(false);
                             // Annars skall denna kodsnutt k�ras
                             else {System.out.println("Menu item["+event.getActionCommand()+"[pressed!");}
         // For-sats f�r att skapa Arkivmenyn
         for (int i=0;i<fileItems.length;i++)
            JMenuItem item = new JMenuItem(fileItems, fileShortcuts[i]);
         item.addActionListener(printListener);
         fileMenu.add(item);
         // Redigera-menyn
    for (int i=0;i<editItems.length;i++)
         JMenuItem item = new JMenuItem(editItems[i], editShortcuts[i]);
    if (editAccelerators[i] > ' ') // M�ste l�ggas till
    {item.setAccelerator(KeyStroke.getKeyStroke(editAccelerators[i],
    Toolkit.getDefaultToolkit().getMenuShortcutKeyMask(),false));}
         item.addActionListener(printListener);
         editMenu.add(item);
         // L�gger in tv� linjer i Redigeramenyn p� plats 2 och 9
    editMenu.insertSeparator(2);
    // L�gger till de skapade undermenyerna i menylisten
    add(fileMenu); add(editMenu); add(helpMenu);

  • I am trying to edit my website using the copy and paste function and am getting an error message that says my browser will not allow this function.. what do I do? thanks!

    I am trying to do a simple copy and paste function while editing my website and I am getting an error message that says that my browser will not allow this function.. how can I override this?
    thanks
    Doug Snyder

    You need to set Copy'n'Paste security policies for that domain in Firefox.
    AllowClipboard Helper will help you do that. <br />
    https://addons.mozilla.org/en-US/firefox/addon/allowclipboard-helper/

  • With PS 7  create new  Place two objects on the new file  then you may cut copy and paste Cs2  create new  place two object on the new file Cut is not available how does one cut and paste in new file

    With PS 7
    create new
    Place two objects on the new file
    then you may cut copy and paste
    Cs2
    create new
    place two object on the new file
    Cut is not available how does one cut and paste in new file

    If your using File>Place then photoshop cs2 creates what's known as Smart Objects, which photoshop 7 didn't have.
    In photoshop cs2 you can rasterize the smart objects and that should make the Cut function available.
    Select both placed layers, right click on the area to the right of the tumbnail and select Rasterize Layers.
    If in photoshop cs2 you to Help>Photoshop Help and look under Layers>Smart Objects, that should give you a good overview of what smart objects are.

  • Cannot use copy and paste function in PSE10?

    Today i went to copy and then paste an image onto another one,i could not use the copy or paste function(in pse 10). Only the paste function was usable  and when i hit it it pasted the picture of an eagle onto the image. This eagle i had copied from a particular website(unrelated to photoshop) amd pasted it to a folder in windows live photo gallery. I tried deleting this eagle from the windows gallery,but still i could paste the eagle onto the other picture.  And it created another layer with the picture of the eagle.This is very strange. How can this be corrected. Also as usual my lassoo tool is malfunctioning in pse 10?  Maybe uninstalling  and re-installing pse 10 would solve the problem  and if so can you give me instructions on how to do this safely or refer me to a link.  Would appreciate a quick reply. Thanks!!

    Thanks Barbara for your help  and your nice explanation as to how the copy and paste function works. Never had a problem before but now it functions normally!
    Irwin Lakin
    <mailto:[email protected]> [email protected]
    508-866-4250

  • My keyboard loses functionality when I try to leave comments on Facebook. Delete, backspace, apostrophe and cut, copy and paste are disabled.

    My keyboard loses functionality when I try to leave comments on Facebook.
    Delete, backspace, apostrophe and cut, copy and paste are disabled. This only happens in comments, no functionality is lost in messaging or status updates.
    I have disabled all my add-ons and restarted Firefox and the issue persists. I have updated add-ons, restarted Firefox and the issue persists.
    I have updated Firefox and that made no difference.
    I have cleared cookies and cache and still no luck.
    SOLUTION: I disabled the Grammarly Lite add-on and this seems to have resolved the issue.
    I have informed Facebook of the issue. I cannot find any information about this problem in Facebook's troubleshooting.
    I cannot replicate this issue in Internet Explorer. All the functions work fine.
    I have the same issue on a different device that runs Windows 7 Starter and on a laptop that runs Windows 8.1.

    Hello oysterchick, see a similar report :
    https://addons.mozilla.org/en-us/firefox/addon/grammarly/reviews/587040/
    thank you

  • On the Firefox drop down menu for Firefox 4, the tab for cut, copy and paste is not highlighted. Is there another way for me to include this on the Firefox start page?

    I have Firefox 4. In the Firefox drop down menu, there is an option to cut, copy and paste but it is not highlighted. Please tell me how to highlight this link. Or is there a way to have a cut copy and paste tab?

    Those links in the Edit menu are only highlighted if there is something to do:<br />
    Paste should be enabled if the clipboard has data placed on it by a previous Copy or Cut and you have set focus on a text area or field that allows to paste that data.
    Copy works if some text is selected.

  • I used to be able to copy and paste images from the internet into keynote slides and pages. Now when I copy and paste all I get is an empty  box. My iskysoft iTube studio has also stopped downloading videos. Is there an extension I need to enable?

    I used to be able to copy and paste images from the internet into keynote slides and pages. Now when I copy and paste all I get is an empty  box. My iskysoft iTube studio has also stopped downloading videos. Is there an extension I need to enable? Any ideas

    Try dragging the image to the desktop, then drag the image to the slide you want it on

  • Cut/copy and paste on the iPad I get extra text

    When I cut/copy and paste on the iPad I get extra text symbols like "%". Is there a way to just copy the text without the extra stuff? If I copy from Safari and paste into an email I have to go and erase all the extra text.

    the % is usually caused by spaces. It's an HTML 'glitch' in that, in the brain and logic of HTML, there should never be a space, so when it sees them it inserts % to fill that void that it's logic says isn't there.
    I'm not sure if there is a work around beyond maybe pasting it first into a text document, then from there into your e-mail and see if that makes the symbols go away.

  • Jsut update the adobe reader to version xi but why when I try to typing, no copy and paste function?

    jsut update the adobe reader to version xi but why when I try to typing some information, no copy and paste function available?

    What is your operating system?
    "type some information" into where - a form field?
    "no copy and paste function available" - what exactly does that mean?

  • Does iPhoto '11 have the copy and paste function?

    On my old MacBook the iPhoto allowed for the copying and pasting of adjustments, on my iPhoto '11 where the copy and paste option used to be there's nothing.

    Terence -
    I tried that, but it didn't work .. and I discovered why.  The key was in the last word of your sugg's first line:  "move."  I don't want to MOVE the pic, I want to COPY it to another event, and following your suggs produced this box:
    So, with your and the Old Toad's help, I now see I was pounding sand - can't do it!  Unless we can get the iPhoto developer gurus to add that capability, we'll have to consider this case ... Closed.
    Thanks, guys!

  • Copy and pasting a page in an existing document? Copy and paste functions are greyed out? Also tried extracting the page to copy but am alerted that an incorrect structure was found in the PDF file?

    copy and pasting a page in an existing document? Copy and paste functions are greyed out? Also tried extracting the page to copy but am alerted that an incorrect structure was found in the PDF file?

    What do you mean by "copy and paste a page"? What tool have you selected? Or are you just assuming you can select stuff and copy/paste as in Word?

Maybe you are looking for

  • Soundtrack Pro back to FCP some clips lose volume

    I'm having issues exporting a final mix from Soundtrack Pro. I didn't have this issue with the last version on my PowerMac. I send everything to STP from FCP, mix it, export it, and bring it back into FCP and one file (dialogue track) is not included

  • No response When I clicked Bex Broadcaster

    Hi All, In BW Development system I am able to Broadcast my query into Internet Explorer. Where as BW Quality system not able to do it, when I clicked Bex Broadcaster option In query designer, No response. FYI..I have authorizations as like BW Develop

  • TS2634 HI I have just inserted a new 3G sim card into my iPad, how do I activate it ?

    Hi I have just inserted a new 3G sim card into my IPad, how do I activate it ?

  • Missing 3rd party plug-ins

    I had to do an archive and install on my mac this morning, and now when I launch Logic it doesn't recognize my virtual instruments (Garritan Personal Orchestra and MOTU Ethno). Any advice on how to fix this? Thanks!

  • Changing panels XY position via code ?

    Hi Here is Some info about my program. i have a main panel on which i create about 15 child panels and each child panel has a canvas control on it. i created a scrollbar which moves the xy position of each panel. i could not use the standard panel sc