For this you need AutoHotkey go and download in at their site.
1) Right click your desktop click new and make AutoHotkey script (name it w/e you want.
2) Right click the AutoHotkey script you just made and click "edit script"
3) Put this in your script
4) Save it and run it, you will see an icon appear at your system tray.
Now whenever you press F8 you will paste your copied text.
1) Right click your desktop click new and make AutoHotkey script (name it w/e you want.
2) Right click the AutoHotkey script you just made and click "edit script"
3) Put this in your script
Code:
~F8::
clipboard = %clipboard%
send %clipboard%
4) Save it and run it, you will see an icon appear at your system tray.
Now whenever you press F8 you will paste your copied text.