Originally posted by kay jee: I have an editor using JTextArea. I want to add cut , copy , paste options on right click. How can I go about it.
JTextArea (and all JTextComponents) support cut/copy/paste via the keyboard (ctrl-x, ctrl-c, ctrl-v on most LnFs) by default.
They also have simple cut(), copy(), and paste() methods. If you want a right-click popup menu, you can create menu items to call those three methods and put them in a JPopupMenu. There is some JPopupMenu information in the java tutorial.
Originally posted by kay jee:
JTextArea (and all JTextComponents) support cut/copy/paste via the keyboard (ctrl-x, ctrl-c, ctrl-v on most LnFs) by default.
For some bizarre reason Ctrl-C and Ctrl-V only work when I run a Swing app standalone under Windows 7. When I run it as an Applet, in any browser, they do nothing. How do I get them to work in a browser? Signed or unsigned does not seem to help. Do I have to revert to AWT TextField and TextArea for browser use?