What paste formats does Acrobat support?

I have a software program that places formatted RTF and plain text data on the Windows clipboard.  When users of the program try to paste into Acrobat, they get text that has been stripped of all formatting.
This used to work, and still works perfectly when pasting into Word.
Has Acrobat eliminated support for RTF pasting?  Does it support an alternate formatted style?  Is there a way to select a clipboard format?
Thanks!

Thanks for replying.  I understand that this isn't the standard Acrobat use case, but nevertheless it's one I've seen repeated by hundreds of customers.  They have a PDF, and they want to annotate the PDF with the output of my program.  There are lots of ways to print to PDF and merge, etc., but those are all painful and the users just want something simple and familiar: copy/paste is what they want.
If there's a better, simpler, way ... by all means, please tell me, since I know little about Acrobat.
Actually, the ideal thing would be to paste some sort of embedded OLE object you could later click on and edit with my program, but that's probably another thread entirely, for another time.

Similar Messages

  • What files formats does Itunes support

    what files formats does Itunes support???
    Been trying to load some anime into Itunes and they wont play on my Apple Tv, though they play on the computer. Why is that. I've got codes and all that other jazz. What gives....

    iTunes 11 can currently read, write and convert between MP3, AIFF, WAV, MPEG-4, AAC and Apple Lossless (.m4a).
    iTunes can also play any audio files that QuickTime can play (as well as some video formats), including Protected AAC files from the iTunes Store and Audible.com audio books. There is limited support for Vorbis and FLAC enclosed in an Ogg container (files using the Ogg container format are not natively supported) or Speex codecs with the Xiph QuickTime Components. Because tag editing and album art is done within iTunes and not QuickTime, these features will not work with these QuickTime components. As of Snow Leopard, iTunes 9 (Mac) will play HE-AAC / AAC+ internet streams. The latest version of iTunes (Win/Mac) supports importing audio CDs with the default iTunes standard file format of AAC at 256 kbit/s, but users can choose from 16 kbit/s to 320 kbit/s constant bit rates (CBR) in either AAC or MP3.[citation needed] Importing of audio CDs into MP3 or AAC formats can also be accomplished using variable bitrate (VBR) encoding.
    The Windows version of iTunes can automatically transcode DRM-free WMA (including version 9) files to other audio formats, but does not support playback of WMA files and will not transcode DRM protected WMA files. Telestream, Inc. provides free codecs for Mac users of QuickTime to enable playback of unprotected Windows Media files. These codecs are recommended by Microsoft.[34]
    In addition to importing CDs into the iTunes library, the user can also import non-Apple mp3 files from Amazon.com and other sources. This can be accomplished by either right clicking on the file, selecting open with, and then selecting iTunes or dragging the file into the open iTunes window. Alternatively, for Amazon.com mp3s, the Amazon MP3 Downloader application will automatically import the mp3 files into the iTunes library.

  • What Audio Formats Does iTunes Supports?

    is there a way to find out what formats iTunes supports?
    for example, does iTunes support OptimFROG Loseless or FLAC Loseless?
    thanks.

    iTunes uses Quicktime for audio playback and plays Apple Lossless, WAV, AIFF, MP3 and AAC files. If you want to play other formats, you generally have to convert them to a format iTunes supports (I use Apple Lossless myself). iTunes to FLAC is a group of Applescripts enabling FLAC file conversion in iTunes. For a guide to enabling OGG support in iTunes, see here. Other file conversion tools I use are Max and xAct.

  • HT3775 What movie format does iMac support?

    How can I watch a movie format in Real Media on my iMac? I tried Windows Media and that did not work on my iMac either.
    I downloaded a software to convert the Windows Media, but there was no audio.

    OGELTHORPE wrote:
    Csound1, greetings;  The odds just went bust! 
    Ciao.
    It's an odd format, never was supported well and is clearly vanishing now. There used to be a converter but I haven't seen it since Moses embarked on his trek.

  • What vid format does iPod support? How do I convert mine?

    What video format do movie files have to be in to be played on the iPod? I have avi, mov, mpg, and mpeg from my digital camera and I want to put them on my iPod. What do I do ... and how do I do it? I need an idiot's step by step guide. And if I don't have to pay for any new programs that would be a bonus ... surely I can use something already on my PowerBook?

    Try this link:
    http://www.cs.brandeis.edu/~ari/scripts/iTunesVideoWorkflow.html

  • What audio formats does imovie support?

    thanks

    iMovie is flexible.
    The video and DVD standard is 48khz, so so if your camcorder has multiple audio settings, choose 48khz.
    CDs and itunes tracks are in 44.1khz, and these can be used in iMovie projects.
    I have never tried 96khz. I don't have any equipment that records at that rate.
    As for bit depth, I am pretty sure it will accept both 16 and 24.  There is no way to set this parameter in iMovie.
    If you do live recording into Logic Pro, you can use 24 bit depth, and then mix that into a 48khz or 44.1khz recording in AIFf, AAC, Mp3, etc. and use that in iMovie. I am not sure about GarageBand.

  • What video format does ipad 2 support?

    what video format does ipad 2 support?

    Pad2, the new iPad Supported Video Formats & Movie Formats
    H.264 video up to 1080p, 30 frames per second, High Profile level 4.1 with AAC-LC audio up to 160 Kbps, 48kHz, stereo audio in .m4v, .mp4, and .mov file formats;
    MPEG-4 video up to 2.5 Mbps, 640 by 480 pixels, 30 frames per second, Simple Profile with AAC-LC audio up to 160 Kbps per channel, 48kHz, stereo audio in .m4v, .mp4, and .mov file formats;
    Motion JPEG (M-JPEG) up to 35 Mbps, 1280 by 720 pixels, 30 frames per second, audio in ulaw, PCM stereo audio in .avi file format
     Cheers, Tom

  • In what character format does CS5 Export HTML?

    In what character format does indesign export html?
    I am having trouble writting a parsing script because text that looks like:
    of mutations to particular “hotspot” regions
    becomes, to my chagrin,
    of mutations to particular “hotspot� regions
    Here is my java code that simulates this problem. Perhaps somebody knows which encoding to choose on Windows 7 pro x64?
        public static int CopyFile()
            try
            StringBuffer sb = null;
            String NullSpace = System.getProperty("line.separator");
            //Writer output = new BufferedWriter(new FileWriter(outputFile));
            BufferedWriter output = new BufferedWriter(new OutputStreamWriter(new FileOutputStream(outputFile),"UTF-8"));
            String line;
            BufferedReader input =  new BufferedReader(new FileReader(myFile));
            while((line = input.readLine())!=null)
                    sb = new StringBuffer();
                    //Parsing happens
                    sb.append(line);
                    output.write(sb.toString()+NullSpace);
                return 0;
            catch (Exception e)
                return 1;

    This particular line is the culprit (a case of What You Ask Is What You Get, really a rarity):
    BufferedWriter output = new BufferedWriter(new OutputStreamWriter(new FileOutputStream(outputFile),"UTF-8"));
    -- and what you see is UTF-8 Encoding in action (rather, what you see with a non-UTF-8 aware text editor).
    Check the Javascript Tools Guide, section "File- and Folder-supported encoding names", for an encoding that better suits your needs. Actually, you might want to check the generated HTML file -- UTF8 is a perfectly acceptable character encoding, but you have to tell your browser it is this one.
    Alternatively, you can always check the string buffer text for any character codes (which are Unicodes) above 126 and replace these with the universal "&#xxx;" notation for out-of-range character codes.

  • What video formats Ipod 30GB supports...?

    Hi
    Recently bought a Ipod 30GB. I am not able to uploead the *.dat video files into Ipod.
    Can any one let me know what video formats Ipod 30GB supports...?
    Thanks
    Murali

    hi Murali!
    there's some info on that in this document:
    Frequently asked questions about viewing and syncing video with iTunes and iPod
    that FAQ is actually a bit out of date. as of itunes 6.0.2.23, some files can also be converted by itunes. see:
    Verifying iTunes video conversion and iPod video syncing using sample QuickTime files
    love, b

  • What encryption algorithims does JCE support?

    What encryption algorithims does JCE support?

    you can find out what your jce supports with something like
    --- clip ---
    public class listCrypto {
    public static void main(String[] argv) throws Exception {
         if ( 0 == argv.length ) {
         System.err.println("usage: java listCrypto Signature");
         return;
         System.out.println(java.security.Security.getAlgorithms(argv[0]));
    --- end clip ---
    -hugh

  • What video formats does Final Cut Express support?

    I have Final Cut Express HD 3.5. What video formats are compatible with this program? Also, what frame rate and aspect ratio do my videos have to be in for Express to accept the video file?

    Good of you to have read the manual. It helps us answer the question now that you've included that information.
    Your material must be converted to either DV, HDV or AIC (FCE Native formats). As you have discovered, while FCE will accept a number of non-standard or native formats, it will not play happily with them.
    DV and HDV are anamorphic formats. That is, they use non-square pixels. Standard DV is 720x480 (a 3:2 ratio) that FCE will do the conversion magic and have is display in a 4:3 format. Widescreen DV (aka 16:9) is ALSO 720x480 but the narrow dimension of the pixel is oriented the other way. When you tell FCE that the file is 16:9 anamorphic, it will do the magic and display the material properly. If you do not, it will display as though it is standard definition 4:3 and the people will be much skinnier but not taller.
    HDV is 1440x720 but displays in 16:9.
    AIC can be 1280x720 or 1980x1080.
    All other dimensions are not supported and you may have very unreliable results when using them. This very limited abiltiy to deal with more than a couple of formats was one of the main differentiation points between Express and Final Cut Pro. There were a great number of other differences but this was one of the biggest limitations for most consumer level users.
    If you want to edit a lot of non-standard,  non-native formats, look into Final Cut Pro X or Adobe Premiere Pro. Premiere Pro is within the editing paradigm of Final Cut Pro/Express. Final Cut Pro X has gone in a different direction which involves a new learning curve. Don't be fooled by the name, it is a very different animal than Express.
    x

  • Envy 17-j141na SD card reader - what card types does it support

    As in the title really - what card types does the SD reader on the Envy 17-j141na support? I can't find this actually documented anywhere.
    I know it supports up to SDHC, does it support the SDXC standard ?
    Mike

    Good Morning mykejb,
    As I stated your specifications do not state the exact cards it supports.  I regret that  I am unable to give you a yes or no answer.
      If you check around the card reader itself, sometimes on the bottom of the notebook, it will list the supported card types.  If not all I can suggest is try and see.   If it seems if the card is too small for the slot, you may need an adapter for an SDXC card.
    Here is a link to SD/SDHC/SDXC Specifications and Compatibility( from scan disk support).  Please note this quote"NOTE: Internal card readers on laptops from 2008 and prior may NOT support SDXC cards. SDXC cards will work in SDHC compatible readers (not SD readers) if the computer OS supports exFAT. For more information on exFat see: Operating Systems that support the exFAT File System"
    Sparkles1
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the bottom right to say “Thanks” for helping!

  • Does Acrobat support KSP?

    I have a question about SHA-256 signature in AcrobatX.
    I tried SHA-256 electronic signature to a PDF file using Acrobat on Windows 7.
    In Acrobat XI, I could create electronic signature with SHA-256 by KSP.
    However, in Acrobat X, I received the following error.
    (I use same signature mechanism.)
    The Windows Cryptographic Service Provider reported an error:
      The keyset is not defined.
      Error Code 2148073497
    Does Acrobat X support both CSP and KSP? or only CSP?
    To careate electronic signature with SHA-256 by KSP in Acrobat X, SDK should be required?

    Thank you very much for your prompt reply.
    As you mentioned, CSP is Cryptographic Service Provider.
    KSP stands for "Key Storage Provider" which is a provider like CSP.
    KSP is a provider used in CNG(Crptography Next Generation) implemented from Windows Vista.
    I want to create SHA-256 signature in Operating System later than Windows Vista.
    However, when CSP is specified to create SHA-256 signature, the signature created is SHA-1.
    Therfore, I implemented SHA-256 signature using "KSP".
    In Acrobat XI, I could create SHA-256 signature by KSP as I expected.
    But, in Acrobat X, KSP did not work and I received error message "The keyset is not defined".
    (The signature mechanism is same.)
    Therefore, I guess that Acrobat X doesn't support KSP.
    Is that correct?

  • What Video format does iPhone 5 play

    I'm trying to convert my 3gp. files to upload  to my iPhone 5. But for some reason it won't allow me to upload 3gp. files...
    So I need help figuring out if there is a certain program I can use to convert my file type or what I'm doing wrong to uplaod the videos to my phone

    Yeah, you need a video to iPhone converter to help you deal with it. It can convert all the videos to your iPhone.
    <Link Edited By Host>

  • What video files does Apple support?

    Hi
    I want to find out what video file tags are supported by Apple. 
    Thanks.
    Jim

    Quicktime will support DV, DV/NTSC, DV/PAL, h.264, mpeg1, mpeg4, m4v, animation (a 4:4:4 uncompressed file), photo jpeg, AIC
    With the proper QT plugin, it will support WMV (plugin from Flip4Mac), HDV (mpeg2 plugin). ProRes (ProRes plugin). There are others that are hardware specfic codecs (eg AJA, Blackmagic, AVID) .
    Is this a general question or do you have a specific codec in mind?
    x
    edit - a quick google search turned up this chart from 2008.
    http://www.simnet.is/klipklap/quicktime/

Maybe you are looking for

  • IPhone 5 music playback issues (after iOS 8 upgrade)

    Hi, After upgrading my iPhone 5 to iOS 8 I have had many playback issues with my Music. Songs randomly skipping or stopping without even doing anything are some of the issues. Also sometimes when I am listening to a song it would fast forward the mus

  • MAc won't save youtube video anymore. What am I doing wrong?

    I was trying to save a video from youtube as I did a 1000 times before. Now when I try, every program/site I use (KeepVid for instance), will turn the .mp4 video file in a .txt file. Basically the file name will be something like video.mp4.txt I trie

  • Actions not working in Illustrator CS6

    I created some actions that work on my PC. They area currently working in CS3, CS5 and CC. I had a friend test the actions on their MAC which is running CS6. The actions did not work. I am desperately trying to figure out why they work in previous bu

  • Any recommendation for to continue ?

    I was working in Oracle Forms, but now I decided to learn. I am study Java for the first part (Getting started) but there are more chapter but, I like to make application like account system. I was thinking to junk to java Swing for to continue study

  • After power surge g5 won't start.

    We had a power surge the other night. Now when I try to start my computer I get a message that says to hold down the power button to restart  the computer and the fans start to run loudly. I tried starting in safe mode but that simply keeps the messa