Paste from clipboard not working

This HTML in AIR does not work correctly ... an
yone know why?
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>TEST</title>
<script language="JavaScript" type="text/javascript">
function fixFMT(event) {
  var cs = event.clipboardData.getData("text/plain");
  if(!cs) return;
  // processing for cs not shown
  // now want to insert cs into the textarea in place of the selection.
  var sel = window.getSelection();
  var rng = sel.getRangeAt(0);
  var insertion = document.createElement("b");
  insertion.innerHTML = cs;
  rng.insertNode(insertion);
  sel.removeAllRanges();
  event.preventDefault();
</script>
</head>
<body>
<form>
<table>
        <tr><th>Paste text into the text area - then click outside and see it disappear.</th></tr>
        <tr><td>
             <textarea id="t1" name="t1" rows="4" cols="40" onpaste="fixFMT(event);" ></textarea>
            </td>
        </tr>
</table>
</form>
</body>
</html>

Resloved:
data type was wrong ...
the line: var cs = event.clipboardData.getData("text/plain");
should be: var cs = event.clipboardData.getData("text/html");
With this change, all works.

Similar Messages

  • Copy to/from clipboard not working to/from VNC session

    Using the default VNC client that comes with Snow Leopard, I am unable to copy/paste text from/to the VNC session window to/from my Mac. Under the ScreenSharing View menu, I selected 'Show Toolbar". I see the 2 icons for "Get remote clipboard contents" and "Send clipboard contents to remote clipboard" but the Icons are disabled. How do I enable the icons? Is there any other way to copy/paste?

    Are you connecting to another Mac running Snow Leopard? Or Leopard? Or a non-Mac? I believe that OSX's implementation of VNC (a.k.a. Screen Sharing) can only transfer clipboards between Macs. (Correct me if I'm wrong.) (I'm not exactly certain about clipboard compatibility between Leopard and Snow Leopard, but I know it won't work between Mac and and a PC running VNC. (Or at least it doesn't work with the VNC client's I'm using on my PCs.)

  • Cannot paste from clipboard. Cannot read the available clipboard formats.

    I cannot open a new or old pagemaker 6.5 document.  The message comes up 'cannot paste from clipboard.  Cannot read the available clipboard formats.
    It will not let you do anything and I have to close by Alt. Ctrl. Delete.
    Any help would be much appreciated.
    Linda

    Let me confirm what you're saying.
    PM (windows?) loads up OK, but when you try to open an existing or create new publication, you get the error "'cannot paste from clipboard.  Cannot read the available clipboard formats"?
    !. PM6.5 can only be operated on a contemporary OS, like Win98SE or Win2K.  Generally speaking, with later versions on Windows, it's a non-starter.  If this is the case, and it's essential you open your PM files, download and install the trial version of PM7.
    2. You probably have some corruption somewhere.  You can try trashing all the configuration files (search using the string  PM65*.cnf ) and re-loading PM65
    3. If suggestion 2 fails, you need to remove and re-install PM65, but even this may not work.  See 7.6 - Re-installing PageMaker of this linked PDF which was taken from the old AdobeForums FAQs.  (Note the date of this FAQs and begin to realise how ancient PM65 is.)
    4. Forget all the above, and move to InDesign.
    Iechyd da! John
    23:09 15/09/2009 BST

  • KRDC: rdp clipboard not working

    I am trying to enable clipboard for an RDP connection and can't seem to find a way.
    It's not working by default. The only place where I can seem to be able to supply additional switches to freerdp is in host configuration -> expert options -> extra options.
    I have tried adding
    "--plugin cliprdr" (no connection)
    "/a:cliprdr" (connects, but no effect)
    "+clipboard" (connects, but no effect)
    "/clipboard" (connects, but no effect)
    in that field, but no changes. I can use the clipboard within the connection, but not to copy&paste between my PC and the remote session.
    Any ideas? System is freshly -Syu'd

    Not sure if this is exactly related to your problem, but read this:
    http://blogs.msdn.com/b/rds/archive/2006/11/16/why-does-my-shared-clipboard-not-work-part-1.aspx
    Cheers
    Alex

  • Urxvt pasting from clipboard.. efficient, fast, clean

    All urxvt users know this problem: you cannot paste from X clipboard into urxvt.
    There are various workarounds.  Many of them rely on synchronizing primary selection with clipboard (which I do not like.  I don't want to "lose" a buffer).  this can be in the form of autocutsel, or keybinds to do something like "xsel -bo | xsel -p", which has the additional disadvantage it requires an extra keyboard shortcut (one to sync the primary selection, one to do the actual paste).
    I was wondering what would be a simple and clean way to paste the clipboard into urxvt (by using a -but only one- keyboard shortcut), without touching the primary selection.
    I came up with putting this in my .xbindkeysrc
    "xdotool type "$(xsel -bo)""
    alt+Insert
    But it's not perfect.  I also tried with --clearmodifiers.  If you try this out, you'll notice sometimes the paste will work, sometimes it will work half.  Sometimes it replaces existing text, sometimes it will do nothing, and the best part is sometimes if you do backspace or stuff like that it behaves differently, I actually messed up my keyboard events with this.
    Anyone an idea for the "perfect" way to go?

    realturner wrote:
    I've just found this page recently and made a solution:
    #! perl -w
    # Usage:
    # URxvt.perl-ext-common: clipboard
    # URxvt.keysym.Mod4-c: perl:clipboard:copy
    # URxvt.keysym.Mod4-v: perl:clipboard:paste
    # consult command "xmodmap" to see what your modifier mapped into.
    sub copy {
    my ($self) = @_;
    my $pid = open( pout, "| xsel -ib" ) or die "fork";
    print pout $self->selection;
    close(pout) or die "close";
    sub paste {
    my ($self) = @_;
    my $content = `xsel -ob` ;
    $self->tt_write ($content);
    sub on_user_command {
    my ($self, $cmd) = @_;
    if ($cmd eq "clipboard:copy") {
    $self->copy;
    if ($cmd eq "clipboard:paste") {
    $self->paste;
    save this script as /usr/lib/urxvt/perl/clipboard
    then add lines in ~/.Xdefaults:
    URxvt.perl-ext-common: clipboard
    URxvt.keysym.Mod4-c: perl:clipboard:copy
    URxvt.keysym.Mod4-v: perl:clipboard:paste
    should have a good work for copy/paste via Win+C/V
    Edit: changed the method piping to xsel, avoid escape sequence problem.
    wow! nice. thank you.
    i didn't update this thread for a while, but i noticed that the earlier xdotool based solutions (including mine and Procyon's) sometimes just don't work, and I don't know why i will try this approach for a while
    btw is there no recommed userspace location for urxvt scripts? otherwise, package your script please

  • Paste from clipboard loses background coloring

    I have a short piece of text on the system clipboard, to which I have applied various styling properties (font size, font family, font color, and background color).  I can see these fine when I view the clipboard contents, like this:
    However, when I do a paste, the background color gets lost (ALMOST all the time).  I have tried pasting into many of the text-handling apps I have (Word, Pages, Text Wrangler, TextEdit, etc., etc.).  In Word I have even tried Paste Special, which seems to say that it will use the formatting properties it finds.
    But, alas, none of these apps present the background coloring.  However, when I tried a paste into the Notes.app I did get the background color.  (Yeah!)
    Why are all these other apps losing the background color and (more importantly) is there a way to get paste in these other apps (esp. Pages or Word) to correctly render the background color from the clipboard?

    You're probably doing something wrong, because I can get this to work normally.
    Have you installed the filter in the document correctly? Have you looked [java tutorials for text components|http://java.sun.com/docs/books/tutorial/uiswing/components/generaltext.html]?
    Anyway, both your code and java tutorials one forgot to check 'str' for null at replace function. As describe in the API:
    API wrote:
    text - Text to insert, null indicates no text to insertTry posting a SSCCE that demonstrates your problem.
    Regards,

  • Paste from clipboard?

    I used the listener to get the javascript to copy in an object from InDesign using BridgeTalk. the problem is, I want to use the dimensions from the clipboard every time, not the dimensions recorded during the original "listen", anybody know how to change this?
    Thanks in advance!
    Heres the current script:
    var obj = app.activeDocument.selection;
    app.select(obj);
    app.copy(obj);
    //function pasteToPS() {
    var bt = new BridgeTalk;
    bt.target = "photoshop";
    var myScript = '//start\n';
    // insert stuff from PS listener below this line
    // =======================================================
    myScript += 'var id53 = charIDToTypeID( "Mk " );\n';
    myScript += ' var desc8 = new ActionDescriptor();\n';
    myScript += 'var id54 = charIDToTypeID( "Nw " );\n';
    myScript += 'var desc9 = new ActionDescriptor();\n';
    myScript += 'var id55 = charIDToTypeID( "Md " );\n';
    myScript += 'var id56 = charIDToTypeID( "RGBM" );\n';
    myScript += 'desc9.putClass( id55, id56 );\n';
    myScript += 'var id57 = charIDToTypeID( "Wdth" );\n';
    myScript += 'var id58 = charIDToTypeID( "#Rlt" );\n';
    //var from clipboard instead of the 122 value?
    myScript += 'desc9.putUnitDouble( id57, id58, 122.000000 );\n';
    myScript += 'var id59 = charIDToTypeID( "Hght" );\n';
    myScript += 'var id60 = charIDToTypeID( "#Rlt" );\n';
    //var from clipboard instead ofthe 119 value?
    myScript += 'desc9.putUnitDouble( id59, id60, 122.000000 );\n';
    myScript += 'var id61 = charIDToTypeID( "Rslt" );\n';
    myScript += 'var id62 = charIDToTypeID( "#Rsl" );\n';
    myScript += 'desc9.putUnitDouble( id61, id62, 72.000000 );\n';
    myScript += 'var id63 = stringIDToTypeID( "pixelScaleFactor" );\n';
    myScript += 'desc9.putDouble( id63, 1.000000 );\n';
    myScript += 'var id64 = charIDToTypeID( "Fl " );\n';
    myScript += 'var id65 = charIDToTypeID( "Fl " );\n';
    myScript += 'var id66 = charIDToTypeID( "Trns" );\n';
    myScript += 'desc9.putEnumerated( id64, id65, id66 );\n';
    myScript += 'var id67 = charIDToTypeID( "Dpth" );\n';
    myScript += 'desc9.putInteger( id67, 8 );\n';
    myScript += 'var id68 = stringIDToTypeID( "profile" );\n';
    myScript += 'desc9.putString( id68, "sRGB IEC61966-2.1" );\n';
    myScript += 'var id69 = charIDToTypeID( "Dcmn" );\n';
    myScript += 'desc8.putObject( id54, id69, desc9 );\n';
    myScript += 'executeAction( id53, desc8, DialogModes.NO );\n';
    // =======================================================
    myScript += 'var id70 = charIDToTypeID( "past" );\n';
    myScript += 'var desc10 = new ActionDescriptor();\n';
    myScript += 'var id71 = charIDToTypeID( "AntA" );\n';
    myScript += 'desc10.putBoolean( id71, true );\n';
    myScript += 'var id72 = charIDToTypeID( "As " );\n';
    myScript += 'var id73 = stringIDToTypeID( "smartObject" );\n';
    myScript += 'desc10.putClass( id72, id73 );\n';
    myScript += 'var id74 = charIDToTypeID( "FTcs" );\n';
    myScript += 'var id75 = charIDToTypeID( "QCSt" );\n';
    myScript += 'var id76 = charIDToTypeID( "Qcsa" );\n';
    myScript += 'desc10.putEnumerated( id74, id75, id76 );\n';
    myScript += 'var id77 = charIDToTypeID( "Ofst" );\n';
    myScript += 'var desc11 = new ActionDescriptor();\n';
    myScript += 'var id78 = charIDToTypeID( "Hrzn" );\n';
    myScript += 'var id79 = charIDToTypeID( "#Rlt" );\n';
    myScript += 'desc11.putUnitDouble( id78, id79, 0.000000 );\n';
    myScript += 'var id80 = charIDToTypeID( "Vrtc" );\n';
    myScript += 'var id81 = charIDToTypeID( "#Rlt" );\n';
    myScript += 'desc11.putUnitDouble( id80, id81, 0.000000 );\n';
    myScript += 'var id82 = charIDToTypeID( "Ofst" );\n';
    myScript += 'desc10.putObject( id77, id82, desc11 );\n';

    Hello Christoph,
    Fortunately, no. I have seen them do some very stupid things before, but this is what we have found to be the fastest way to create composites and create new scaled images for printers dpi regulations. I have seen many scripts that will scale and rotate the original placed link. Those scripts may work fine but they don't crop the images to the bleed size as copying from ID and pasting into PS would. This is important because sometimes we are dealing with 1 gig files, then scaling them up creates what is basically an unusable file. Is this something that could logically be scripted? Have you seen one like this?
    What we manually do now, which is what I would like to script is:     Select image(s) in ID, copy, in Photoshop make a new document, 300 dpi, CMYK, no color management. Then we would paste the clipboard data into this new Photoshop document as a smart object, with the top left corner 0 px, 0 px. Then we save it out using the original links name with an _xxx (xxx is the percent the link was placed in ID) added to the end of the name. We save them as flat tifs with LZW compression to a designated "Scaled Links" folder. Then, we place it in ID at 100%, at bleed.
    As you can see, this is a relatively simple task, but can be time consuming if you need to do it 50 times my 3:30 this afternoon! If you have any tips or suggestions, I would greatly appreciate it.
    Thanks,
    Danny

  • Copy/Paste functionlity is not working in oracle forms 11g

    Hi All,
    We are using custom built big application (oracle 11g/forms 11g).
    1. And few user are not able to copy/paste from oracle forms 11g to winword.And its random sometime they can ,sometime they can't .
    2. If they have problem means they have copy/paste issue and (When we close application and run it again it is working fine)
    3.it's random we are not able to re-produce in development environment.
    What i noticed both user have problem and both are using left hand mouse ,generally we use left/right they are using right/left.
    Here the Environment Detail:
    Java runtime :1.6.0_26
    Weblogic server
    oracle forms 11g
    So just wondering is there any changes required. Seniors/Guru please advise.
    Thanks!

    It is very important to make clear which direction you are going. If you are not able to copy from Forms and paste to an external application, this could be any one or more of the following:
    1. There is a problem with the JRE. Consider uninstalling ALL currentlly installed JREs and install the latest supported version 1.6.0_33
    2. There may have been an issue with the Forms version you are using. Be sure you are using 11.1.1.6 or 11.1.2.0. If not, install the latest patch.
    3. The JRE was unable to properly identify or store the digitial signature in the Forms jar file or one which you included (custom code). If you are using any customer jar files, ensure that they have been properly signed. Also be sure that JRE cache is being stored on the local client machine and not a remote location as this is not supported. If you have not altered the default, the cache is stored in the user's home directory under Application Data (AppData for Win7)
    4. Could be a mouse driver issue. Go to the mouse vendor's web site and get the latest driver for that mouse. Do not use the MS drivers.
    Example:
    C:\Users\<USER NAME>\AppData\LocalLow\Sun\Java\Deployment\cache
    So, recommendations:
    1. Uninstall all JRE versions currently installed. Install 1.6.0_33
    2. Ensure that you are using 11.1.1.6 or 11.1.2.0
    3. Clear the JRE cache. To do this close ALL open browsers and open the Java Control Panel. Look on the General tab for Temporary Internet Files > Settings > Delete Files > Ok
    4. Install the latest mouse driver.
    5. Retest
    Edited by: Michael Ferrante (Oracle) on Jul 25, 2012 2:58 PM

  • Cut and Paste between Events not working

    Using iPhoto11, I can drag and drop pictures between events, no problem...but Cut and Paste does not work.
    I select a photo and cut in event A, go to event B, I right click and get a PAST button, It even clicks but nothing happen, the Cut image never gets pasted.
    Is this a bug? whats the solution?

    To delete the test user, go to the black apple menu, click on system preferences, then on accounts. From an administrator account, click on the "test" user and hit the "-" key. when the dialog box comes up, hit "delete the home folder" and it will be gone.
    For the startup disk issue you should repair permissions. From the finder, click on the "go" menu, then on "utilities". Select disc utility. Select your HD and click on repair disk permissions. This will take several minutes (5 or more).
    If that has not done the trick then you may need to reset the parameter ram (PRAM).  Turn your computer off. When you turn it back on, simultaneously hold 4 keysL command-option-p-r. Keep holding them. The startup chime will ring. Continue to hold until you have heard the chime at least 2 times (more won't help or hurt). Then release.

  • Iphoto remove photos from iphone not working

    For the past couple months iphoto will not delete the photos from my iphone. It successfully imports them, prompts to delete, appears to delete but doesn't actually remove them. They are still on my iphone. iphoto recognizes that they have already been imported and asks to delete them again the next time I plug in my phone, I accept, looks like something is happening but they are still there. I've tried image capture as well and there is no way to delete off the phone in image capture. Help!?

    Can it be, that you have enabled iCloud Photo Library (Beta) on your iPhone with iOS 8.1.3?  Then you can import photos from the phone, but deleting from Image Capture or iPhoto will not work, if the photos are in iCloud Photo Library.
    iCloud Photo Library beta FAQ
    Delete the photos directly on the iPhone or using the icloud webpage -
    Use the "Photos Beta" app on your iCloud page:
    https://www.icloud.com

  • Brbackup from DB13 not working

    Dear experts,
    For the past one week suddenly my Offline backup from DB13 has stopped  working. I havent change anything on my SAP server or Oracle but its not working.
    First I checked DB13 logs. Last messages it is giving me is like as follows
    =====================================================
    BR148I DBVERIFY will be used for verification                                  
    BR134I Unattended mode with 'force' active - no operator confirmation allowed  
    BR370I Directory /oracle/CYP/sapbackup/bdvklqkj created                        
    BR202I Saving init_ora                                                         
    BR203I to /oracle/CYP/sapbackup/CYP ...                                        
    BR202I Saving /oracle/CYP/920_64/dbs/initCYP.sap                               
    BR203I to /oracle/CYP/sapbackup/CYP ...                                        
    BR280I Time stamp 2007-06-05 03.00.07                                          
    BR198I Profiles saved successfully                                             
    BR280I Time stamp 2007-06-05 03.00.07                                          
    BR307I Shutting down database instance CYP ...    
    =============================================
    when I checked my previous DB13 successful logs I saw that next message is
    Shutdown of database instance CYP successful
    Obviously it gave me idea that might be database was not closing out successfully. then I checked and compared my oracle alert logs but havent found  very obvious changes their. Please check below messages of alert log. First set of messages are of successful backup and next set is of my recently failed backup
    ===================================================                             
    ALTER DATABASE CLOSE NORMAL
    Wed May  9 01:00:59 2007
    SMON: disabling tx recovery
    SMON: disabling cache recovery
    Wed May  9 01:00:59 2007
    Shutting down archive processes
    Archiving is disabled
    Wed May  9 01:00:59 2007
    ARCH shutting down
    Wed May  9 01:00:59 2007
    ARCH shutting down
    Wed May  9 01:00:59 2007
    ARC0: Archival stopped
    Wed May  9 01:00:59 2007
    ARC1: Archival stopped
    Wed May  9 01:01:00 2007
    Thread 1 closed at log sequence 2209
    Successful close of redo thread 1
    Wed May  9 01:01:00 2007
    Completed: ALTER DATABASE CLOSE NORMAL
    Wed May  9 01:01:00 2007
    ALTER DATABASE DISMOUNT
    Completed: ALTER DATABASE DISMOUNT
    ARCH: Archiving is disabled
    Shutting down archive processes
    Archiving is disabled
    Archive process shutdown avoided: 0 active
    ARCH: Archiving is disabled
    Shutting down archive processes
    Archiving is disabled
    Archive process shutdown avoided: 0 active
    ALTER DATABASE CLOSE NORMAL
    Tue Jun  5 03:00:42 2007
    SMON: disabling tx recovery
    SMON: disabling cache recovery
    Tue Jun  5 03:00:43 2007
    Shutting down archive processes
    Archiving is disabled
    Tue Jun  5 03:00:43 2007
    ARCH shutting down
    Tue Jun  5 03:00:43 2007
    ARCH shutting down
    ARC1: Archival stopped
    Tue Jun  5 03:00:43 2007
    ARC0: Archival stopped
    Tue Jun  5 03:00:43 2007
    Thread 1 closed at log sequence 2254
    Successful close of redo thread 1
    Tue Jun  5 03:00:43 2007
    Completed: ALTER DATABASE CLOSE NORMAL
    Tue Jun  5 03:00:43 2007
    ALTER DATABASE DISMOUNT
    Completed: ALTER DATABASE DISMOUNT
    ARCH: Archiving is disabled
    Shutting down archive processes
    Archiving is disabled
    Archive process shutdown avoided: 0 active
    ======================================================
    I used to schedule backup at 3 AM but when I came to office next morning my oracle instacne was in idle mode. I checked ps -ef OS command and saw process of brbackup was still there and not a single byte had been taken as backup.
    Please help me if  you have any clue.
    Best Regards
    Waqas

    which log do you want
    backCYP.log
    or
    bdvklqkj.afd log ( this is same is db13 logs)
    backCYP.log is showing following
    =======================================
    bdvfimya afd  2007-05-09 01.00.48  2007-05-09 01.57.18  1  ...............     2
    5    25     0      2209       2028063485     2209       2028063485  ALL
    offline_force   disk             -
    c 6.20 (113)
    bdvjrtwh afd  2007-06-01 02.00.23  0000-00-00 00.00.00  6  ...............     2
    5     0     0      2248       2104067221        0                0  ALL
    offline_force   disk             -
    c 6.20 (113)
    bdvklqkj afd  2007-06-05 03.00.05  0000-00-00 00.00.00  6  ...............     2
    5     0     0      2254       2114123006        0                0  ALL
    offline_force   disk             -
    dc 6.20 (113)
    ===================================
    Regards

  • Forms 11gR2 - paste from clipboard into image item

    Hi, how can I paste image from clipboard straight into an Image item on Form?
    If it can't be done via standard Forms functionality, is there any workaround - I mean can Java Bean do it, or maybe drag and drop via Beans Area?
    I know it's quite odd functionality, but any hint is much appreciated.
    Thanks in advance. Jack

    Hello,
    <p>I think that it is not possible. The only ways to populate an Image Item is to use the Read_Image_File() or to query from the database.
    You can use a Java Bean that allows to drag and drop an image file.</p>
    Francois

  • Copy and Paste Keyboard Shortcut not working

    My copy and paste (Command C) function is not working. Tried to resent in keyboard menu, but it didn't do anything. VERY FRUSTRATING as I use this function all day long in my job. Can somebody help please?

    The 'input menu' would put a small flag on the main menu bar and allow
    you to click there, and see Keyboard Viewer, and Character Palette. A
    small keyboard will appear on the desktop and mirror all keys you use
    on the real keyboard. Or not. When they don't work in the Viewer, you
    can safely assume they don't work. (Or it is software, vs hardware.)
    Someday, when you have time and perhaps some extra hardware, you
    may consider making a backup clone of your computer contents on a
    large enough external hard disk drive to support bootable OS X clones;
    and also large enough to have more than one partition there, for extras.
    Then, do a completely new installation on a 'secure erased' hard disk drive.
    And then update it. You could migrate previous user setting info, into the
    new installation from an external drive's clone; or if you have extra discover
    time, you may find a cure to the underlying problem's cause and use the
    clone in the external hard disk drive as a backup. Maybe DiskWarrior?
    The problem in the system may be due to at least one possible malady; a
    corruption of system data, a bad block on the hard disk drive, or some other
    matter that somehow became bigger than life when combined with another.
    You may try the SafeBoot mode, repair disk permisions in Disk Utility, and
    then try reinstalling the Mac OS X 10.5.8 Combo update file, on top of it all.
    Then when it restarts, run SafeBoot again and re-repair disk permissions.
    (But any actual hard disk drive issue may exist and remain unattended.)
    Odd problems often are best attacked at a root level, after you have adequate
    backup; a bootable clone on supported self-powered external hard disk drive.
    Clone utilities such as SuperDuper and Carbon Copy Cloner are fine tools;
    and CCC (bombich software) has evolved to be top-notch with site support.
    Glad you were able to remap some keys; I found several links in a search on
    how to do that, and had previously posted some URLs to help someone else
    on another user forum that covered some angles of resolving keyboard issues.
    Good luck & happy computing!

  • Object is distorted when pasted from clipboard into Acrobat

    I am running Acrobat X Pro. I can copy an image from my application and paste it Word without problem. However, if I paste it into Acrobat via Edit/Paste or using the Comment/Stamp tool to paste from the clipboard, the aspect ratio of the image is distorted. If I copy the image to Word, then copy it from Word and paste into Acrobat, it is not distorted. Is there any known problem with pasting metafiles from the clipboard into Acrobat? Any clues for diagnosing what might be the problem?

    A better approach might be to use Acrobat X Pro's Edit Object Tool to insert the image.
    Be well...

  • Cut and paste IPAD 2 not working

    Ipad 2 cut and paste feature not working-- what's the fix?  reset did not work

    To delete the test user, go to the black apple menu, click on system preferences, then on accounts. From an administrator account, click on the "test" user and hit the "-" key. when the dialog box comes up, hit "delete the home folder" and it will be gone.
    For the startup disk issue you should repair permissions. From the finder, click on the "go" menu, then on "utilities". Select disc utility. Select your HD and click on repair disk permissions. This will take several minutes (5 or more).
    If that has not done the trick then you may need to reset the parameter ram (PRAM).  Turn your computer off. When you turn it back on, simultaneously hold 4 keysL command-option-p-r. Keep holding them. The startup chime will ring. Continue to hold until you have heard the chime at least 2 times (more won't help or hurt). Then release.

Maybe you are looking for

  • SYST-UCOMM

    Hi I am FICO consultant. I was trying to construct a substitution rule in transaction OBBH.  The pre-requisite for this substitution rule is that when the user saves the document then only this rule should trigger and work. It seems i should have val

  • Usage of fmt:requestEncoding

    hello, I have problem using the tag <fmt:requestEncoding> - I put it in a JSP file but it is not being parsed by the server and is just being written into the resulting HTML file. I've included the xmlns:fmt declaration in the <jsp:root> tag and I ju

  • Performance of new version of Numbers versus Old version

    I only use Numbers to keep track of some small sales figures and work out pricing for products I sell and stuff. Not much. The old version of Numbers, the one before this new version for dummies, that launched on my Late 2012 iMac in one single secon

  • How to convert to Mp3?

    If i mix songs together in Soundbooth what do i use to covert them to an mp3 format? Any help apperciated

  • Licensing fees

    If I purchase a complete copy of developper 6.0 and use it to create an application, when I am finished, does developer 6 provide me with run-time copies of my application? Do I have to pay any fees everytime I sell my application? Assuming a custome