vote up 1 vote down star

Specifically, I want to copy a link (with text and location) and then to be able to paste it, e.g., into Word as a link.

flag

67% accept rate

2 Answers

vote up 2 vote down check

dig around inside Download of the Day: AutoCopy Firefox extension or Clipboard-Save-As 1.0.4

link|flag
Thanks, I'll try. Meanwhile, you've a typo in the second link. It should be addons.mozilla.org/en-US/firefox/… – Lev Oct 20 '08 at 16:09
AutoCopy does the trick – Lev Oct 20 '08 at 16:24
fixed the link. Thanks for the heads-up. – boost Oct 21 '08 at 3:14
vote up 0 vote down

Here's the actual code:

var richText = "<a href=\"" + gContextMenu.linkURL + "\">" + gContextMenu.linkText() + "</a>";
var xfer = Components.classes["@mozilla.org/widget/transferable;1"].createInstance(Components.interfaces.nsITransferable);
xfer.addDataFlavor("text/html");

var htmlString = Components.classes["@mozilla.org/supports-string;1"].createInstance(Components.interfaces.nsISupportsString);
htmlString.data = richText;
xfer.setTransferData("text/html", htmlString, richText.length * 2);

var clipboard = Components.classes["@mozilla.org/widget/clipboard;1"].getService(Components.interfaces.nsIClipboard);
clipboard.setData(xfer, null, Components.interfaces.nsIClipboard.kGlobalClipboard);

It is also recommended to create another Components.interfaces.nsISupportsString, whose data is plain text, and add it to the same xfer as text/unicode

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.