Categorized | Blogging, Tips

Tags :

Double Right-Click Add Function Enables Quick Clipboard Paste

Posted on 15 July 2009

You can now quickly paste content from the clipboard into any application. Just double click of your right mouse button.

Script is simple to use, once you double click mouse button to the place you want to past, the script will simulate he Ctrl+V shortcut, which in turn can be used for pasting something other than just text.

In order make use of this script, just make a new AutoHotkey script, or just add the following script:

;Double Right Click to paste
~RButton::
If (A_PriorHotKey = A_ThisHotKey and A_TimeSincePriorHotkey < 500)
{
Sleep 200 ; wait for right-click menu, fine tune for your PC
Send {Esc} ; close it
Send ^v ; or your double-right-click action here
}
Return

Read More: Autokey forum

  • Share/Bookmark

Related posts:

  1. Use “AutoHotKey” To Send A Quick Gmail Message
  2. Firefox Add-on InstaClick Enables Opening New Tabs by Right Clicks
  3. Use Windows Shortcut’s to Shutdown Windows Faster.
  4. ChromePlus Has Similar Features Of Google Chrome And More
  5. Firefox CoScripter released-script browser actions and send them to other people

This post was written by:

webtech - who has written 1784 posts on Website Technology Point.


Contact the author

Leave a Reply

Partner Sites