The clipboard is a software facility that can be used for short-term data storage and/or data transfer between documents or applications, via copy and paste operations.

learn more… | top users | synonyms

570
votes
18answers
322k views

How to copy to the clipboard in JavaScript?

What is the best way to copy text to the clipboard? (multi-browser) I have tried: function copyToClipboard(text) { if (window.clipboardData) // Internet Explorer { ...
62
votes
6answers
57k views

JavaScript get clipboard data on paste event (Cross browser)

How can a web application detect a paste event and retrieve the data to be pasted? I would like to remove HTML content before the text is pasted into a rich text editor. Cleaning the text after ...
66
votes
12answers
69k views

Copy / Put text on the clipboard with FireFox, Safari and Chrome

In Internet Explorer I can use the clipboardData object to access the clipboard. How can I do that in FireFox, Safari and/or Chrome?
99
votes
6answers
121k views

Copy text to the client's clipboard using jQuery

The workflow is simple: You click inside a textarea. The text is copied to the client's clipboard. Display notice to the user. How do you do it?
40
votes
5answers
15k views

Clipboard event C#

Is there a clipboard changed or updated event that i can access through C#?
30
votes
5answers
16k views

How do I copy a string to the clipboard on Windows using Python?

Hey there, I'm kind of new to Python and I'm trying to make a basic application that builds a string out of user input then adds it to the win32 clipboard. I'm having a problem passing the string to ...
19
votes
7answers
21k views

Webcam usage in C#

I am making a program in C# to connect to a webcam and do some image manipulation with it. I have a working application that uses win32 api (avicap32.dll) to connect to the webcam and send messages to ...
33
votes
6answers
23k views

Paste an image from clipboard using JavaScript

How do we paste an image from clipboard into a custom rich text editor using javascript? (ctrl+c and ctrl+v or a snapshot). Has anyone used Ajax's rich text editor? Does pasting an image from ...
14
votes
5answers
21k views

Is it possible to read the clipboard in Firefox, Safari and Chrome using Javascript?

I'm trying to read the contents of the clipboard using Javascript. With Internet Explorer it's possible using window.clipdData.getData("Text") Is there a similar way of reading the clipboard in ...
13
votes
1answer
3k views

How to add extra info to copied web text

Some websites now use a javascript service from Tynt that appends text to copied content. If you copy text from a site using this and then paste you get a link to the original content at the bottom ...
36
votes
4answers
24k views

Copy to clipboard without Flash

I found many solutions for copying to the clipboard, but they all either with flash, or for websites side. I'm looking for method copy to clipboard automatically, without flash and for user side, it's ...
41
votes
12answers
18k views

vim: copy selection to OS X clipboard

There must be a really simple solution here that I'm missing: Say you've got an area selected in vim. How can you copy it into the OS X clipboard? (Hint: the OS X clipboard can be written to via ...
19
votes
4answers
35k views

Copy to Clipboard for all Browsers using javascript

I was trying to make "Copy to Clipboard" work on all browsers but no luck. Am using javascript and I don't want to use Zero Clipboard to do. Please let us know what wrong in my code. Appreciate for ...
8
votes
1answer
10k views

Copy selected text to the clipboard WITHOUT using flash - must be cross-browser

I want to have a button which selects the text in a textarea and copies it to the clipboard. I can't seem to find any solutions which work in all browsers and don't use flash. Surely this is doable? ...
5
votes
2answers
3k views

How do I backup and restore the system clipboard in C#?

I will do my best to explain in detail what I'm trying to achieve. I'm using C# with IntPtr window handles to perform a CTRL-C copy operation on an external application from my own C# application. I ...
3
votes
3answers
16k views

Copy and paste clipboard in JavaScript. or jQuery

How do I copy content thats present in a div tag and paste it to applications like Paint, Powerpoint etc.
15
votes
3answers
9k views

How can I make a background worker thread set to Single Thread Apartment?

I am creating an automated test running application. In this part of the application, I am working on a polling server. It works by constantly polling the web server to determine when a new ...
16
votes
4answers
6k views

How to monitor clipboard content changes in C#?

I want to have this feature in my C# program: When the user do Ctrl+C or Copy anywhere (i.e. when the clipboard content changes), my program will get notified, and check whether the content met ...
9
votes
4answers
2k views

Can python send text to the Mac clipboard

I'd like my python program to place some text in the Mac clipboard. Is this possible?
5
votes
3answers
5k views

Copy and Modify selected text in different application

I have a windows application running at the backend. I have functions in this applications mapped to hot keys. Like if i put a message box into this function and give hot key as Alt+Ctl+D. then on ...
9
votes
2answers
5k views

How to copy to clipboard with GWT?

Couldn't find anything on this with a Google Search. Does anyone know how to copy some text to the clipboard through GWT Java code? I'd like to avoid the raw javascript injection solution. Any help ...
7
votes
7answers
2k views

Clipboard access using Javascript - sans Flash?

Is there a reliable way to access the client machine's clipboard using Javascript? I continue to run into permissions issues when attempting to do this. How does Google Docs do this? Do they use ...
2
votes
3answers
4k views

Copy/Paste not working in a signed Applet

I've a signed applet (which verifies correctly with jarsigner) that for some reason will not allow copy and paste from the system clipboard into a JTextField despite the documentation telling me that ...
2
votes
3answers
437 views

Clipboard management with websites

I would like to know how to put text into the clipboard like some popular websites are able to do. I have seen sites like www.photobucket.com and www.hulu.com somehow make copying to the clipboard ...
47
votes
3answers
8k views

Yank file name / path of current buffer in Vim

Assuming the current buffer is a file open for edit, so :e does not display E32: No file name. I would like to yank one or all of: The file name exactly as show on the status line, e.g. ...
53
votes
8answers
27k views

How to copy the contents of a String to the clipboard in C#?

If I have some text in a String, how can I copy that to the clipboard so that the user can paste it into another window (e.g. from my application to Notepad)?
13
votes
2answers
2k views

Injecting text when content is copied from Web Page

I ran into a a site that injects a "Read More: " line at the end of any text that you highlight and copy from it's pages. I've never seen this before, and without severely digging into their code, I ...
9
votes
3answers
4k views

How do I get the selected text from the focused window using native Win32 API?

My app. will be running on the system try monitoring for a hotkey; when the user selects some text in any window and presses a hotkey, how do I obtain the selected text, when I get the WM_HOTKEY ...
11
votes
2answers
11k views

Copy files to clipboard in C#

I have a WinForms TreeView (node, subnodes). Each node contains in it's Tag some additional info. Also, each nodes maps a file on the disk. What's the easiest way copy/cut/paste nodes/files in C#? ...
5
votes
3answers
2k views

iOS: How to copy HTML into the cut-paste buffer?

I'm interested in letting my users copy the text they've entered into the cut-and-paste buffer, but I'd like to do that as HTML. Is such a thing even possible? Or do I need to use a MIME format? (I ...
7
votes
3answers
5k views

Pasting an image from clipboard to a website

I need to come up with a solution for users to be able to paste an image on to a website, then upload that image on to the web server. I'm not sure what the right solution for this - I am pretty sure ...
7
votes
10answers
26k views

Use clipboard from VBScript

I am looking for a method to place some text onto the clipboard with VBScript. The VBScript in question will be deployed as part of our login script. I would like to avoid using anything that isn't ...
2
votes
3answers
3k views

Android clipboard code that works on all API levels

The clipboard code that works for API levels < 11 crashes on devices with API levels >= 11. The clipboard code that work for API level >= 11 crashes on devices with API levels < 11. I can not ...
6
votes
2answers
2k views

Cut files to clipboard in C#

I'm looking for a way to programmatically cut a file to the clipboard, e. g. some call to a function in C# that does the same as selecting a file in the Windows Explorer and pressing Ctrl+X So after ...
11
votes
4answers
3k views

Copying to Clipboard in Java

I want to set the users clipboard to a string in a Java Console Application. Any ideas?
5
votes
1answer
1k views

OpenClipboard Failed when copy pasting data from wpf DataGrid

I've got a WPF app using datagrid. The app worked fine until I installed VS2012 and Blend+SketchFlow preview. Now, when I'm trying to copy the data from the grid into the clipboard with ctrl+C (in any ...
1
vote
3answers
1k views

java/swing: clipboard paste

I have a DropTargetListener setup to allow me to drag + drop strings into some tables of my Swing application -- on a drop, I parse the string and insert data into the table. I would like to do the ...
0
votes
1answer
1k views

client system clipboard print screen image save in server system

It is possible the client system clipboard print screen image save in server system using C#. net web application
91
votes
6answers
25k views

Pipe to/from Clipboard

Is it possible to pipe to/from the clipboard in bash? Whether it is piping to/from a device handle or using an auxiliary application, I can't find anything. For example, if /dev/clip was a device ...
35
votes
9answers
13k views

vim - yank entire file

I often write something in gvim, then need to copy-paste it into another application. Is there an easy way to yank the entire file? I usually do something like this, but is there a better way that ...
26
votes
7answers
10k views

How to handle blocked Clipboard and other oddities

Over the course of the last couple of hours I have been tracking down a fairly specific bug with that occurs because another application has the clipboard open. Essentially as the Clipboard is a ...
8
votes
1answer
1k views

Vim and matlab GUI - Emulate matlab Run (<F5>) with Vim

I'm using linux and gvim/vim as external editor for matlab. Using matlab editor you can run a file by pressing F5. I'm trying to reproduce this with gvim-gtk(official debian packages). I know it is ...
10
votes
5answers
11k views

Copy to Clipboard in Chrome Extension

I'm making an extension for Google Chrome and I have hit a snag. I need to copy a readonly textarea's content to the clipboard on click in the popup. Does anyone know the best way to go about this ...
7
votes
5answers
8k views

How can I fix “Cannot open clipboard: Access Denied” errors?

I am using the following code to copy text to the clipboard: Clipboard.Open; try Clipboard.AsText := GenerateClipboardText; finally Clipboard.Close; end; Seemingly at random I get ...
6
votes
6answers
9k views

Programmatically (C#) convert Excel to an image

I want to convert an excel file to an image (every format is ok) programmatically (c#). Currently I'm using Microsoft Interop Libraries & Office 2007, but it does not support saving to an image by ...
47
votes
4answers
28k views

How to copy data to clipboard in C#

If I have a string, e.g "hello", how can I do in C# that it will be copy to the System Clipboard, so next time I'll do CTRL + V I'll get "hello"?
6
votes
2answers
893 views

Clipboard monitoring on Mac OS X | Java

I'm having troubles getting data from the system clipboard on Mac OS X. What I'm trying to do is to listen to the system clipboard and print the content of the clipboard each time new [text based] ...
0
votes
1answer
2k views

build a chrome extension in order to upload images (from clipboard)

I wanted to write a simple chrome extension in order to substitute the following sequence of steps which i have to do very often for university: make screenshot of something edit screenshot ...
9
votes
2answers
2k views

R: Function to copy to clipboard on Mac/OSX?

I've seen a Windows function to copy to the clipboard in R. Is there an equivalent function for Mac OSX?
8
votes
4answers
3k views

Pasting text into Android emulator clipboard using adb shell

I need to paste text into the Android emulator clipboard using adb shell. tried on Android 1.6 and 2.3.1 I tried to use adb shell command: clipboard:[android.text.iclipboard] "service call ...

1 2 3 4