My question is about the Firefox add-on Pentadactyl (the question is also relevant to it's parent project Vimperator). In Pentadactyl, there is a way to save an image:

;s

At this point, you select the image you wish to save, but I want to copy the image to clipboard.

Does anyone know if there is a simple way to do that?

link|improve this question

feedback

1 Answer

Here's the best solution I could develop (valid for Linux only):

Install AutoKey, add a script there:

from Xlib import display

c = display.Display().screen().root.query_pointer()._data
x = c["root_x"]
y = c["root_y"]

mouse.click_absolute(x,y,3)
keyboard.send_key("<down>", repeat=10)

keyboard.press_key("<enter>")
keyboard.release_key("<enter>")

This script makes AutoKey press mouse-3, and then it presses ArrowDown 10 times (I have a 'Copy Image' there), and finally it presses Enter -- so that pic under Your current mouse position goes to clipboard. You can then bind this script to a key in AutoKey. Works more-or-less stable (don't call it several times at ones).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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