Reputation: 41
My case is when the user press f10 i want to run the copy paste addons in Firefox. in the case i want to implement a listener for this key and when this key pressed run the addons and copy text to the clipboard. How i can use the Firefox addons to copy the text by javascript?
Upvotes: 0
Views: 103
Reputation: 37228
This copies text to the native clipboard. Not logical clipboard. Apparently those are different things.
var gClipboardHelper = Components.classes["@mozilla.org/widget/clipboardhelper;1"].getService(Components.interfaces.nsIClipboardHelper);
gClipboardHelper.copyString("Put me on the clipboard, please.")
Upvotes: 1