I find that I can no longer copy text to the clipboard.

Why can I no longer copy text to my clipboard?

Here is a little more information.  Last week everything worked fine.  I opened the same document yesterday and tried to copy some text to the clipboard and now I get an error message saying "can not copy to clipboard, internal error.  I also find that pdf files from the internet will not load and all I get is a small black x box in the upper left corner of the screen.  Went through the steps in control panel and adobe is enabled.

Similar Messages

  • Programatically copying text to the clipboard

    Short: I need to programatically copy a string of text from
    either a variable or a hidden control field to the clipboard.
    Long: We have a requirement to allow the user to 'pop-up' a
    list of frequently used words, select one from the list and have
    it pasted into a field on the form. What I would prefer to do
    is select the user's words into an LOV and have the chosen word
    placed into a hidden field. If I could move the contents of
    that field to the clipboard, I can place the focus back in the
    original field ('keep cursor position' = yes) and used the
    PASTE_REGION built-in to insert the text without overwriting
    anything.
    The other method I have been experimenting with is creating my
    own 'List of Values' form. I'm using a t-list to display the
    user's word list. When-List-Changed copies the word to a visible
    text field and an OK button places the focus in the text field,
    executes the SELECT-ALL built-in, then the COPY-REGION built-in
    and returns to the calling form with the word in the clipboard.
    Problems: The user can't shrink the list by typing like they can
    with an Oracle LOV. When the focus is in the t-list, the
    DEFAULT functionality of the OK button doesn't happen. I can't
    get a When-Mouse-Doubleclick trigger to fire while in the t-list.
    In the end, I prefer the first method (the LOV) BUT... I have to
    have a field visible on the form to place focus in, select all
    of the text and copy to the clipboard. This field looks silly.
    I'm sorry this question is so long winded. Thank you for
    reading it all. Does anyone know how I might accomplish this
    requirement (professionally)?
    Thank you,
    Fouad

    Short: I need to programatically copy a string of text from
    either a variable or a hidden control field to the clipboard.
    Long: We have a requirement to allow the user to 'pop-up' a
    list of frequently used words, select one from the list and have
    it pasted into a field on the form. What I would prefer to do
    is select the user's words into an LOV and have the chosen word
    placed into a hidden field. If I could move the contents of
    that field to the clipboard, I can place the focus back in the
    original field ('keep cursor position' = yes) and used the
    PASTE_REGION built-in to insert the text without overwriting
    anything.
    The other method I have been experimenting with is creating my
    own 'List of Values' form. I'm using a t-list to display the
    user's word list. When-List-Changed copies the word to a visible
    text field and an OK button places the focus in the text field,
    executes the SELECT-ALL built-in, then the COPY-REGION built-in
    and returns to the calling form with the word in the clipboard.
    Problems: The user can't shrink the list by typing like they can
    with an Oracle LOV. When the focus is in the t-list, the
    DEFAULT functionality of the OK button doesn't happen. I can't
    get a When-Mouse-Doubleclick trigger to fire while in the t-list.
    In the end, I prefer the first method (the LOV) BUT... I have to
    have a field visible on the form to place focus in, select all
    of the text and copy to the clipboard. This field looks silly.
    I'm sorry this question is so long winded. Thank you for
    reading it all. Does anyone know how I might accomplish this
    requirement (professionally)?
    Thank you,
    Fouad

  • Button to copy text to the clipboard

    Reading the document "Javascript for Acrobat API Reference" Page 120:
    http://www.adobe.com/content/dam/Adobe/en/devnet/acrobat/pdfs/js_api_reference.pdf
    the document discusses the execMenuItem command. From all that I have researched it appears I cannot create a button that copies text from a text field to the UI clipboard. 
    On page 121 the API reference says:
    To ensure a secure environment, the menu items that can be executed are limited to the following:
    ●AcroSendMail:SendMail
    ●ActualSize
    ●AddFileAttachment
    ●BookmarkShowLocation
    ●Close
    ●CropPages
    ●DeletePages.............
    ..............●ZoomViewOut
    The list is long but nowhere is "Copy" mentioned. I don't want to surreptitiously copy text or use a trusted function. I am content with the user knowing a button just copied a field of text. I just want to skip the highlighting of multiple field to get all the text. Does anyone know a way around this? I would like to copy a text field to the clipboard so the text can be entered elsewhere in another program.

    All I know is they made this impossible a long time ago, like with Acrobat 5 or 6. I recall because I took advantage of it and never discovered a workaround.

  • Is it possible to copy text to the clipboard in Illustrator via Javascript ?

    I am working on a very basic script that exports coordinates from Illustrator.
    At the moment I am just outputing the values via $.writeln()
    I was wondering if I could copy the output values to the clipboard. If so, what
    am I looking for in the API ?
    Thanks,
    George

    For an actionscript project I will need to animate a few hundred objects to certain destinations. These destinations are given by a designer who works on the look and feel of things in Illustrator.
    I would like to make it as simple as possible for the designer to adjust things visually in Illustrator, then he can get a snippet to test in Flash as well.
    Thank you very much for the applescript idea!
    I'll use something like:
    app.system("osascript -e 'set the clipboard to \"" + code + "\"'");

  • Copying text to the clipboard in AVDocDidOpen event handler causes Acrobat 9 to crash

    I'm trying to copy the filename of a document to the clipboard in a plugin with my AVDocDidOpen event handler.  It works for the first file opened; however when a second file is opened, Acrobat crashes.  The description in the application event log is: "Faulting application acrobat.exe, version 9.1.0.163, faulting module gdi32.dll, version 5.1.2600.5698, fault address 0x000074cc."
    I've confirmed that the specific WIN32 function that causes this to happen is SetClipboardData(CF_TEXT, hText);  When that line is commented out and remaining code is left unchanged, Adobe doesn't crash.
    Is there an SDK function that I should be using instead of WIN32's SetClipboardData()?  Alternately, are there other SDK functions that I need to call be before or after I call SetClipboardData()
    Bill Erickson

    Leonard,
    I tried it with both "DURING, HANDLER, END_HANDLER" and "try catch," as shown below.  However, it doesn't crash in the event handler; it crashes later, so the HANDLER/catch block is never hit.
    The string that's passed to SetClipboardData() is good, because I'm able to paste it into the filename text box of the print dialog when I try to create the "connector line" PDF.  I also got rid of all the string manipulation and tried to pass a zero-length string to the clipboard but it still crashes.
    Here's the code:
    ACCB1 void ACCB2 CFkDisposition::myAVDocDidOpenCallback(AVDoc doc, Int32 error, void *clientData)
        PDDoc pdDoc = AVDocGetPDDoc(doc);
        char* pURL = ASFileGetURL(PDDocGetFile(annotDataRec->thePDDoc));
        if (pURL)    {
            if (strstr(pURL, "file://") && strstr(pURL, "Reviewed.pdf")) {
                // Opened from file system so copy filename to clipboard for connector line report
                char myURL[1000];
                strcpy(myURL, pURL);
                ASfree(pURL);    // Do this before we allocate a Windows handle just in case Windows messes with this pointer
                pURL = NULL;
                HGLOBAL hText = GlobalAlloc(GMEM_MOVEABLE, 1000);
                if (hText)    {
                    try
                        // Skip path info and go right to filename
                        char *pText = (char *)GlobalLock(hText);
                        char *pWork = strrchr(myURL,'/');
                        if (pWork)    {
                            strcpy(pText, pWork+1);
                        } else {
                            strcpy(pText, myURL);
                        char *pEnd = pText + strlen(pText);    // Get null terminator address
                        // Replace "%20" in filename with " "
                        pWork = strstr(pText, "%20");
                        while (pWork)    {
                            *pWork = ' ';
                            memmove(pWork+1, pWork+3, (pEnd - (pWork+2)));
                            pWork = strstr(pText, "%20");
                        // Append a new file extension
                        pWork = strstr(pText, ".pdf");
                        *pWork = 0;    // truncate the string before ".pdf"
                        strcat(pWork,".Connectors.pdf");
                        GlobalUnlock(hText);     // Must do this BEFORE SetClipboardData()
                        // Write it to the clipboard
                        OpenClipboard(NULL);
                        EmptyClipboard();
                        SetClipboardData(CF_TEXT, hText);     // Here's the culprit
                        CloseClipboard();
                        GlobalFree(hText);
                    } catch (char * str) {
                        AVAlertNote(str);
            if (pURL)
                ASfree(pURL);

  • Why is it that I can no longer access all of the people in my address book by typing their names in the address line of an email?

    Until the last month or so I have always been able to type the first few letters of a persons name in the email address bar and his address would be entered. Now this only happens for those people that I have contacted recently. The really big problem is my group that contains 40+ people. I use it only once a month and do not want to type 40+ addresses.

    I think that may be a javascript issue.
    In Firefox 23, as part of an effort to simplify the Firefox options set and protect users from unintentially damaging their Firefox, the option to disable JavaScript was removed from the Firefox Options window.
    However, the option to disable JavaScript was not removed from Firefox entirely. You can still access it from about:config or by installing an add-on.
    '''about:config'''
    # In the address bar, type "about:config" (with no quotes), and press Enter.
    # Click "I'll be careful, I promise"
    # In the search bar, search for "javascript.enabled" (with no quotes).
    # Right click the result named "javascript.enabled" and click "Toggle". JavaScript is now disabled.
    To Re-enable JavaScript, repeat these steps.
    '''Add-ons'''
    You can alternatively install an add-on that lets you disable JavaScript, such as
    *[https://addons.mozilla.org/firefox/addon/noscript/ No-Script] (to disable JavaScript on a per page basis, as required)
    *[https://addons.mozilla.org/firefox/addon/quickjava/ QuickJava] (to easily disable and enable JavaScript, automatic loading of images, and other content)
    *[https://addons.mozilla.org/firefox/addon/settingsanity/ SettingSanity] (adds back removed options for JavaScript, Advanced JavaScript Settings, loading images, and showing the Tab Bar)
    Thank you and I hope this helps!

  • I have updated my iPhoto through many versions,and althoust of these have been improvements, I now find that it is no longer possible to overprint the description on the photograph itself so that it is shown in sideshows etc. Is this still an option?

    I have up-dated my i Photo through many versions(now Mountain Lion) and although most

    No you couldn't. There has never been a version of iPhoto that allowed you to print onto a photo. Perhaps you're confusing it with some other app.
    Tp deface a photo on this way you will need an external editor. In order of price here are some suggestions:
    Seashore (free)
    The Gimp (free)
    Graphic Coverter ($45 approx)
    Acorn ($50 approx)
    Pixelmator ($50 approx)
    Photoshop Elements ($75 approx)
    There are many, many other options. Search on MacUpdate. You can set Photoshop (or any image editor) as an external editor in iPhoto. (Preferences -> General -> Edit Photo: Choose from the Drop Down Menu.) This way, when you double click a pic to edit in iPhoto it will open automatically in Photoshop or your Image Editor, and when you save it it's sent back to iPhoto automatically. This is the only way that edits made in another application will be displayed in iPhoto.

  • After the most recent firefox update I can no longer copy and paste. the fuinction only works in Windows and I HATE usign it. Any suggestions on how to restore the copy and paste function while using Mozilla?

    I have been unable to use the copy and past command while using mozilla. the fucntion does work in windows IE, but I don't want to use windows. How do I restore or fix this function? I varies, works some days and not others.

    See http://kb.mozillazine.org/Clipboard_not_working
    Try to use the keyboard if the buttons on the web page aren't working.
    * Copy: Ctrl+C or Ctrl+Insert
    * Paste: Ctrl+V or Shift+Insert
    * Cut: Ctrl+X or Shift+Delete

  • I just noticed that I can no longer select photos out of my finder that are located in my Aperture/Iphoto Library.  I used to be able to attach photos to my gmail out of the aperture library in the finder and for some reason, no longer can.

    I just noticed that I can no longer select photos out of my finder that are located in my Aperture/Iphoto Library.  I used to be able to attach photos to my gmail out of the aperture library in the finder and for some reason, no longer can.
    I can't access these images except to go into the applications. 
    Also, I'd like to import my iphoto library into aperture, and move aperture library to an external drive.  I tried the import first, but there wasn't enough space.  Then I tried copying over the aperture library onto the external drive but it failed bc it said file was in use. 
    As it is, I only have 50gb left on my imac, and the aperture library is 150gb.  Also, I have over 10k images in both libraries combined and there are tons of duplicates that need to be sorted, and hopefully not messed up because I've organized most of them.
    So in short, I need to know how to do the following:
    -select photos in finder in aperture/iphoto libraries
    -move aperture library to live on external drive
    -import iphoto library into aperture library
    -eliminate dups but maintain organization
    -moving forward i need a better workflow so that I import images from camera, and can organize right away into albums rather than creating projects by default and then creating albums so essentially the photos are in 2 different places, even tho they are referenced
    -live happily ever after
    Thanks in advance for any support you can offer!!

    If you're using apps like iPhoto or Aperture then they replace the Finder for managing your photos. The point is that you use the (many) options available via these apps for the things you want and need to do with the Photos.
    So, simply, you don't select the photos in the Finder. I'll append the supported ways to do this - which are faster and will yield the current version of your Photos - to the end of this post.
    -move aperture library to live on external drive
    Managed or Referenced Library? Managed -
    Make sure the drive is formatted Mac OS Extended (Journaled)
    1. Quit Aperture
    2. Copy the Library from your Pictures Folder to the External Disk.
    3. Hold down the option (or alt) key while launching Aperture. From the resulting menu select 'Choose Library' and navigate to the new location. From that point on this will be the default location of your library.
    4. Test the library and when you're sure all is well, trash the one on your internal HD to free up space.
    Referenced -  relocate your Masters first.
    These issues are covered in the Manual and on this forum hundreds of times.
    -import iphoto library into aperture library
    FIle -> Import -> iPhoto Library? Have you done this already? If so are you trying to move the Masters to Aperture from an  iPhoto Library? Or Consolidate them?
    -moving forward i need a better workflow so that I import images from camera, and can organize right away into albums rather than creating projects by default and then creating albums so essentially the photos are in 2 different places, even tho they are referenced
    You can't. Every photo is in a Project.  They’re the basic building blocks of the Library.
    You might want to spend a little time with the manual or the video tutorials. I'm not sure you've grasped the app  you've purchased.
    The following is written for iPhoto, but about 97% works for Aperture too.
    There are many, many ways to access your files in iPhoto/ APerture:   You can use any Open / Attach / Browse dialogue. On the left there's a Media heading, your pics can be accessed there. Command-Click for selecting multiple pics. This is what you use to attach your shot to your GMail
    (Note the above illustration is not a Finder Window. It's the dialogue you get when you go File -> Open)
    You can access the Library from the New Message Window in Mail:
    There's a similar option in Outlook and many, many other apps.  If you use Apple's Mail, Entourage, AOL or Eudora you can email from within iPhoto/ Aperture.
    If you use a Cocoa-based Browser such as Safari, you can drag the pics from the iPhoto Window to the Attach window in the browser.
    If you want to access the files with iPhoto/ Aperture not running:
    For users of 10.6 and later:  You can download a free Services component from MacOSXAutomation  which will give you access to the Library from your Services Menu.
    Using the Services Preference Pane you can even create a keyboard shortcut for it.
    or use this free utility Karelia iMedia Browser

  • Can no longer copy and paste filenames from the finder to other Apps?

    Did Leopard remove the ability to copy a file or folder name in the finder, and then paste that into a text editor?
    I have a need to copy file and folder names from the finder, then paste those names into BBEdit. I've been doing this for years. Now with Leopard, I can copy the file or folder names, and even see them in the clipboard of the Finder. But when I try to paste them into BBEdit, TextEdit, Word, Pages... nothing happens. And Paste is grayed out in the target application. As if I had never copied the item in the first place.
    Can anyone else copy filenames in the finder? Or do I have a system-specific problem?

    Never mind. Apparently there was something going wrong with the Finder. I ran Onyx, and things are back to normal now. I was concerned because I actually saw similar but not identical behavior on two Leopard machines. Running Onyx on the 2nd one now.

  • Apps on computer but in a different folder.  Can I merge them?I have 180 apps that iTunes can no longer "find".  They appear in "my apps" and there is a file location for them.  Can old purchases be restored without doing each one individually?

    I have 180 apps that iTunes can no longer "find".  They appear in "my apps" and there is a file location for them.  Can old purchases be restored without doing each one individually?

    That did the trick! Thank you.
    The free trial is all I needed to migrate my iPod Touch library into my main iTunes library. For those that want to use this tool for the same needs there are some things that need to be moved manually, e.g. Apps. But you can do it within the program very easily. Also iBooks/PDFs etc. need to be moved manually. The help section will point you in the right direction.
    No more switching iTunes libraries for me.

  • I can no longer copy/paste artwork after v10.5.1

    The bulk of my library are teaching cd's from the same author. For most iTunes cannot find any info so I have been able to copy/paste the album artwork. Suddenly in v 10.5.1 I can no longer copy artwork.

    I have discovered a work around.
    Select an album that does have artwork you want to copy.
    Drill down to the track level and select a track.
    File > Get Info and select the 'Artwork' tab.
    Select the artwork and Command-c to copy.
    Now back to the iTunes grid display and select an album and right-click in the artwork viewer and paste.

  • I can no longer copy files manually to our external drive?

    Hi - I'm not sure what happened here, and I'm hoping someone can help. Basically, we are starting to film library programs for local TV. A colleague at the high school with a lot of experience was kind enough to buy us a mybook external drive (one terabyte!) to store our video and audio files. We use an iMac and two eMacs for the teen digital film club and have also just been given a white macbook specifically for production. So -
    We (my teen assistant and I) had been able to move files over to the drive manually before. But, on getting the macbook, I got some raw film footage onto it, edited it, and then wanted to get that film onto the mybook in order to make room for a second hour of film to be edited on the macbook. But -
    As I tried to show my colleague how to connect the external drive to the macbook, some message came up very quickly - did I want to use the mybook to back up the macbook using Time Machine? I tried to click "no" - there was a scary warning about losing all the info on the drive, and I did not want that to happen! I just wanted to be able to move stuff between the computers and the drive, as we have been doing. I don't know what I did wrong, but, after connecting the drive to the macbook, there is an empty file on the external drive which has the same name as the new macbook, and we can no longer copy anything manually. How can I correct this?

    Just to let everyone know: my problem is solved - after a fashion.
    When I contacted customer support, I got told the formatting of the drive was not a problem; they sent them out this way so they would be universally compatible. But, since we were sharing the drive between macs, the tech support person thought it would be a good idea to reformat it. He also explained that the original formatting didn't allow transfers of more than 4 gigs - a problem for us, since we are regularly working with larger files.
    So he told us how to reformat using disc utility in Leopard. And then we discovered our second problem. The disc could not be reformatted. Nor could it be verified or repaired. It is too damaged to use.
    We now have a case number and therefore should be able to replace the hard drive. So that's what happened.

  • HT204053 I have purchases under an expired AOL account and very old Mac that I can no longer listen to on current versions of iTunes.  Previous version of iTunes accepted the music and allowed me to sync it to my iPod.  What do I do?

    I have purchases under an expired AOL account and very old Mac that I can no longer listen to on current versions of iTunes.  Previous version of iTunes accepted the music.  Now, I have a group of songs that will not sync to my iPod because it is associated with the old AOL account.  What do I do?

    If you have an iBook G4, (PPC) you can't do much.
    But if that is a MacBook (intel) you may be able to
    upgrade the OS X, if the hardware is up to it...
    Since there were about nine different build models
    of MacBook (not powerpc iBook) to identify what
    one you have would be the first step to knowing
    what OS X and RAM upgrades it could use.
    If the computer is not already at OS X 10.6.8,
    it can't go online to get or use OS X 10.7.5. So,
    when you more accurately describe the 'Book,
    detailed information is available.
    When you find the serial number, there is a web
    page that can be used to identify by serial no.
    http://www.powerbookmedic.com/identify-mac-serial.php
    That'd be a first step. Or even the Model number
    which should be visible on the outer case by hinge.
    Good luck & happy computing!

  • Did I miss something in the fine print? I installed Lion and and come to find out, I can no longer open any Word documents or Excel spreadsheets as they are no longer supported (being PowerPC apps).  Seriously?!?!?!?!!   What are my alternatives?

    Did I miss something in the fine print? I installed Lion and and come to find out, I can no longer open any Word documents or Excel spreadsheets as they are no longer supported (apparently because they are PowerPC apps).  Seriously?!?!?!?!!   What are my alternatives?

    Hi Mary and Matthew
    You might find it helpful to "try before you buy" - there is a 30 day free trial offer for Office for Mac 2011, accessible from M's .com website.
    You may be able to use this period to open and resave your old documents in a format that enables you to switch instead to using Apple's iWorks apps moving forward.
    I initially intended to do something similar, but ended up buying Office as it provided an easier way (for me, at least) to continue working with years worth of old emails, letters, spreadsheets and other documents (from my PC days) without risking damage to their integrity, formatting, etc.

Maybe you are looking for

  • Close all open windows

    Is there any way to close all open windows at once? I cannot find any way to do so. Any keyboard shortcut?

  • The jerking image in LR1.2; Good news: no more than in LR 1.0 or in LR1.1

    Would please, pleeeeease someone fix it at last? Whenever I advance to next image in "D" module, or after performing the acta acrobatica gymnastics with Control-Shift-E, every image jumps sidewards by an inch, than it jumps back, than it jumps left a

  • Manual Check Deposit

    I have done with all settings of Bank Accounting; Created House Bank Created Check Deposit Account Crated Account Symbols and assigned GL accounts Created Keys and defined Posting Rules Created and Assigned Business Transactions Defined Variant for M

  • Missing NetworkFolder by 2 users after upgrade 1.1

    After the upgrade form 1.0.1 tot 1.1 some users "lost" one specific netfolder (the complete folder not a subfolder). File rights are give by a AD group. All the other users whitin this group still see the netfolder. There are no changes at AD file ri

  • How i can create client copy

    how i can create client copy .      pls tell me step by step procedure to create client.          and client copy.