How do i do a copy paste on Apple

How do I do a copy paste on Apple.  On my Windows PC I hit control C to copy and control v to paste.

There are 3rd party apps that make copying & pasting easier on a Mac.  I use iClip. 

Similar Messages

  • How to duplicate calendar events copy paste?

    I am trying to build my schedule on calendars with my iPad. I would like to put in my work schedule but I don't work the same days every week. I am looking for a way to copy paste/duplicate entries so I don't have to keep inputting them. Because I don't work the same days each week/month I can't use the repeat feature. I have tried a long press to copy and paste but it moves the whole event and doesn't duplicate it. Is there a way to do this? I have found that I can do this on my Macbook Pro in iCal and then it updates the iPad through iCloud but I would like to do it with my iPad because I have the iPad and iPhone with me all the time and the Macbook stays at home.

    As you know by now, there is now way to copy and paste (drag and drop duplicate) iPad Calendar events. However, I have found a workaround that allows you to duplicate an event and place the duplicates in various dates on your Calendar. NOTE: This is probably not too practical for making a single copy, but it does save time and keystrokes for multiple copies.  In Calendar, tap on the event you want to duplicate and select Edit. In the Edit window select Repeat. In the Repeat window select Every Day, then tap Done to take you back to the Edit menu.  Tap End Repeat and select an end date that will give you the number of copies you want (e.g., if the original event date is 11/12 and you want 5 copies, select 11/17 as the End Repeat date.  Tap Done twice to return to the Calendar. Then just drag the Repeats/Copies to the various dates where you want them placed (works best in Month view). When you finish each drag/drop, you will get a "This is a repeating event" pop-up window; you need to select "Save for this event only."

  • How can I drag & drop / copy & paste COPY Calendar event on iPad iOS6?

    How can I copy Calendar events on the iPad iOS 6?
    I have read various forums on this subject and have not found an answer on how to perform this basic function.
    To be clear, I am NOT asking how to drag & drop MOVE an event, rather how to duplicate an event.
    In this way, I would not have to create a new event on a different date that is very similar to an existing one.
    If I have missed this in the manual just tell me where it is discussed and I will check it again.
    Thank you!

    Hi,
    I don't think it is possible to do that in iOS 5.
    Best wishes
    John M

  • Windows 8 how to bring up copy/paste option from touch screen

    How do you bring up Copy/Paste option from touch screen?

    Adobe Reader Touch supports copying text only (not images).
    Tap on text and move "grabbers" to adjust text selection (Touch) or select text with a mouse.
    Press and hold (Touch) or right-click with a mouse to bring up the context menu.
    Select Copy from the context menu.
    You can paste the copied text to an existing sticky note or text field in Adobe Reader Touch or to other application such as Microsoft Word or Notepad.

  • Enable copy-paste from Word to PDF

    Hi,
    I was working in PDF, copy-pasting words from Microsoft Word that needed altering, when suddenly this function was disabled. I can still paste text from Word into a new text field in PDF, but not in a Sticky Note or in Text Editing. Also, I can't copy-paste anything from the PDF into Word anymore. However, I can still copy-paste things from PDF into PDF (same file, and from other files). Does anyone know what's going on? How can I enable the copy-paste function again?
    Thank you.
    J

    Hi Deepak,
    The problem was in Word not Adobe. After closing Word and opening again, I could copy-paste again.
    Thanks.
    J

  • CR duplication when Copy/Pasting text from a JTextArea

    I have a typical scenario of having text in a JTextArea. When I select some of that text and try to paste it either to an external text editor or even in the same JTextArea, I am getting extra line spaces in the screen.
    For example, if I have the following text:
    <a id=1>
       <b/>
    </a>When I copy paste it, I get:
    <a id=1>
       <b/>
    </a>When I looked to see what characters were being used for the CR, I see "\r\n". This is the standard line.seperator for Windows OS which is fine. When I save this text to a file using the Java I/O libraries, it is fine (no extra lines). But when copy/pasting it prints extra lines.
    Has anyone had similar problems?

    Has anyone had similar problems? No. How are you doing the copy/paste? Did you write your own routines or are you using the default Actions. By default, when a Document is loaded it will convert the "\r\n" end of line string to "\n" and store the single character in the Document. When you use the getText(..) method the enod of line string will be expanded to "\r\n" on a Windows system, but this should not happen in a copy/paste operation. How do you add data to your text area?
    This section from the Swing tutorial on "Text Component Features" has a working example of using copy/paste:
    http://java.sun.com/docs/books/tutorial/uiswing/components/generaltext.html

  • Copy / Paste Properties

    Hello, I have had success with cutting and pasting Behaviors but not Properties. Is it possible to cut and paste Property parameters (Transform - Position, rotation, etc.)? And if so, how?
    Thanks,
    Ines

    Rather than copy-paste, try dragging the parameter you want from the Inspector onto the target layer in the Layers tab.

  • Cut,copy,paste in textarea

    JTextArea has predefined methods for cut,copy and paste. |||ly how do i implement cut,copy &paste in TextArea.

    hope this code sample helps.
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.datatransfer.*;
    public class ClipboardTest extends Frame implements ClipboardOwner{
         private Clipboard clipboard;
         private TextField copyFrom;
         private TextArea copyTo;
         private Button copy, paste;
         ClipboardTest(){
              setLayout( new FlowLayout());
              clipboard = Toolkit.getDefaultToolkit ().getSystemClipboard();
              copyFrom = new TextField(20);     
              copyTo     = new TextArea(3, 20);     
              copy = new Button("Copy");
              paste     = new Button("Paste");
              add(copyFrom); add(copyTo); add(copy); add(paste);
              copy.addActionListener( new CopyListener());     
              paste.addActionListener( new PasteListener());
              addWindowListener( new WindowAdapter(){     
                   public void windowClosing(WindowEvent we){
                        dispose();
                        System.exit(0);
              setSize(200,200);     
              show();
         class CopyListener implements ActionListener{
              public void actionPerformed(ActionEvent ae){     
                   StringSelection contents = new StringSelection(copyFrom.getSelectedText());
                   clipboard.setContents(contents, ClipboardTest.this);
         class PasteListener implements ActionListener{     
              public void actionPerformed(ActionEvent ae){     
                   Transferable contents = clipboard.getContents(this);
                   if((contents != null) && (contents.isDataFlavorSupported(DataFlavor.stringFlavor))){
                        try{     
                             String string;
                             string = (String) contents.getTransferData(DataFlavor.stringFlavor);
                             copyTo.append(string);
                        }catch(Exception e){
                             e.printStackTrace();     
         public void lostOwnership(Clipboard clip, Transferable transferable){
                   System.out.println("Lost ownership");
         public static void main (String args[]) {
              ClipboardTest clipBoardTest = new ClipboardTest();
    try out this code sample and see if works for you.
    Pradeep

  • I need to type in or copy/paste words from other languages (cyrillic for example) but when I do it the only thing I get is a "????????" instead of the word I want to type or insert. What should I do?

    That happens when I don't know how to write so I copy/paste words from other languages, it also happens when I copy words in other languages written in a Word document, and then paste it on a website using Mozilla. This doesn't happen when I use Internet Explorer.

    Well you second post was the correct question because I was going to say you got a second hand macbook pro, didn't change anything, and expected mail to work with your ISP.  The mail settings were thus those of the previous owner.  So you are correct to ask what your ISP's settings should be.
    Unfortunately I can't answer that.  You have to get that from your ISP.  They proably have a web page for it.
    You need to know:
    Incoming mail server (pop)
    Incoming mail server login name
    Incoming mail server password
    POP port
    Does is require SSL?
    Authentication for using POP server (probably password)
    Outgoing mail server (SMTP)
    Outgoing mail server login name (probably same as incoming)
    Outgoing mail server password (probably same sas incoming)
    SMTP port
    Does is require SSL?

  • GREAT ! 2.2 : BUT WHERE IS COPY & PASTE ?

    watch how easy this is.........
    COPY & PASTE ?
    COPY & PASTE ?
    COPY & PASTE ?
    COPY & PASTE ?
    COPY & PASTE ?
    COPY & PASTE ?
    COPY & PASTE ?
    COPY & PASTE ?
    Apple pleeeeeease !
    Or just tell us definitly you wont do it ever.
    thank You
    Ps.: sorry for shouting, but it seems you do not hear the request from many.
    Message was edited by: larryrrw

    well against what others predicted, it was done buy Apple, and I have to it was done well.
    AND this is the reason why I trust in Apple and. The cooperation works in most cases. It may take time , but it works.
    Show me one other mobile manifuture where you as a client get in real discussion with the producers team and other clients, and the outcome shows up in the productline.
    all the best !
    higher and beyond.
    Larryrrw

  • HT1216 copy-pasting text in Unix

    Hello.  I am trying to do shift-insert to paste text from clip board.  Since insert can be emulated using fn-return on a mac keyboard, I do shift-fn-return.  But nothing happens.  I'm doing this in a VNC session.  Any ideas?  Is my problem that the shift-fn-return is not going through VNC?  Or am I just using the wrong key combinations? TIA.

    This is kinda funny because I had a post about the same issue last week(not being able to copy\paste) and apple forums took my post down. I am not sure if they were upset because we are all complaining about not having this feature...but it seems like a necessity they might have forgotten.
    However, I did request (on their feedback site) that this feature be included in the next update...which is what I recommend you doing too!

  • I am working in windows 7 and I am trying to enable the copy/paste and I can not find user.j file in the profile and I am not real sure how to create a file, I can create a folder .

    I am trying to copy text from a word document and paste it into my web builder and it says that firefox does not support copy/paste from clipboard. Went to your site and it tells me to open the user.j file in my profile. This file does not exist and I am not real sure how to create that file so I can paste the fix from your site into it.

    I went to that link and added to firefox add on but it still does not work. I went to the add on option button for this but it told me that my MYSIWG widget was disabled. Does this have something to do with it not working and if so how do you enable it.

  • How do I reinstall the edit button on my Firefox 4 toolbar; cut, copy, paste, and print?

    I recently have been having problems with my Firefox 4 tool bars. Right now, the Edit icons are no longer on the tool bar, specifically Cut, Copy, Paste, and Print. If there were other Edit icons, they too are gone. All the other icons have remained.
    I would appreciate it if you could advise me how to reinstall those specific icons.
    Also recently, ALL my tool bars, and task and status bar disappeared. This was only in Firefox 4.0; IE 8 was not affected. Clicking F11 did not work. I could not function without them. Then, a short time later, they "automatically" reappeared. I have not idea of why the disappeared or reappeared.
    Thank you for any help you can provide.
    Sanford A. Berman

    You can find the Copy, Paste, and Cut buttons next to Firefox > Edit (and in its sub menu) and in the regular Edit menu on the menu bar (press F10 if the menu bar is hidden).
    The buttons next to Firefox > Edit are enabled if there is something to do with them, just like with the toolbar buttons.
    You can find the Copy, Paste, and Cut toolbar buttons in the toolbar palette in the Customize window and drag them on a toolbar.
    Open the Customize window via "View > Toolbars > Customize" or via "Firefox > Options > Toolbar Layout"
    *http://kb.mozillazine.org/Toolbar_customization
    *https://support.mozilla.com/kb/Back+and+forward+or+other+toolbar+items+are+missing

  • How can I use the "Copy and paste" tool in order get stamps in the same position in different pages (Acrobat XI for PC)?

    With Acrobat 6.0 I was able to copy a stamp in the same position (I mean "exactly" the same one) of different pages just by using the "copy/past" tool.
    Now I am using Acrobat XI and it seems like it is not possible anymore: I am copying a stamp and I am trying to past it in anoter page, but it appears in the center of the page (or wherever it wants to...).
    Does anyone have a solution?
    Thanks in advance.

    Thank you very much. I'll be waiting for you message.
    Messaggio originale----
    Da: [email protected]
    Data: 26/01/2015 17.56
    A: "Umberto Gangi"<[email protected]>
    Ogg:  How can I use the "Copy and paste" tool in order get stamps in the same position in different pages (Acrobat XI for PC)?
        How can I use the "Copy and paste" tool in order get stamps in the same position in different pages (Acrobat XI for PC)?
        created by Gilad D (try67) in Creating, Editing &amp; Exporting PDFs - View the full discussion
    Well, I was in the same situation so I've developed a tool that allows one to do it. I will send you some additional information about it in a private message.
         If the reply above answers your question, please take a moment to mark this answer as correct by visiting: https://forums.adobe.com/message/7132586#7132586 and clicking ‘Correct’ below the answer
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page:
    Please note that the Adobe Forums do not accept email attachments. If you want to embed an image in your message please visit the thread in the forum and click the camera icon: https://forums.adobe.com/message/7132586#7132586
         To unsubscribe from this thread, please visit the message page at , click "Following" at the top right, &amp; "Stop Following"
         Start a new discussion in Creating, Editing &amp; Exporting PDFs by email or at Adobe Community
      For more information about maintaining your forum email notifications please go to https://forums.adobe.com/thread/1516624.

  • How to import multiple XML files into one inDesign document without copy/paste ?

    I use InDesign CS6, and I have several XML files with the same structure. Only the data are different.
    I created  an Indesign layout with some tagged placeholder frames on merge mode, for automated layout.
    Today for each XML file I have to create a new InDesign document to import the XML. Everything works fine. Then in order to have all Indesign layouts one after the other into a single Indesign layout, I have to use the copy/paste function.
    I mean for example, copy the contents of all documents to the first one. Or add pages of other documents to the first one, then delete spaces between each page.
    So my question is the following:
    How to repeat this process without copy/paste function, knowing that the
    number of XML files could be unknown.
    Thank you very much for your answer.

    Yes, effectively I would like to catalogue the files into one collection so i can save as one PDF and Print as one.:)
    I know I could save each AI as a pdf them then merge the pdf's together in acrobat, but I have nearly 100 files so would feel more comfortable seeing them all together before print / saving.
    My concern is that if I insert them in Ai, will the file resolution reduce? and will the ai still be editable and would it update the indesign file?
    Thanks for the quick reply

Maybe you are looking for