ATTENTION: You are viewing a page formatted for mobile devices; to view the full web page, click HERE.

DonationCoder.com Software > Post New Requests Here

IDEA: text-only clipboard without separate hotkey.

(1/3) > >>

rin67630:
Hi,
i do use a nice app named "HovText" that can modify the clipboard to store text-only.
This app has an quick icon to toggle between regular clipboard (with formatting) and text-only clipboard.

I'd prefer following behaviour:
[CTRL-C] once -> regular clipboard.
[CTRL-C] twice (e.g. within the mouse double-click time) -> text-only clipboard.

That would really be a huge increase in comfort, isn't it?

Could anyone achieve that piece of magic?

Regards
Michel

wr975:
My favorite Clipboard Manager ArsClip (just a 860 KB exe) offers an extra hotkey for pasting as plain text.

Example configuration:
CTRL + V = Paste (normal)
WIN + V = Paste as plain text

Some other features:

* Multiple permanent items groups
* Picture, RichText, File Copy, Unicode, HTML support
* Keypress emulation
* Form Mode for pasting multiple fields
* Highly configurable
Download:
http://www.joejoesoft.com/vcms/97/

skrommel:
 :) Not pretending to have all the answers, but isn't it more natural to give this option to Paste instead of Copy (and Cut)?


PlainPaste - Press Ctrl-V once to paste regularly, Ctrl-V twice within 1/3 of a second to paste as text.

Great idea, by the way!

Skrommel

rin67630:
Hi
i do not mind if it is done on the ctrl-c or the ctrl-v side, maybe the second option would be more tricky to programm, isn't it!
in the first option, after the first click the data is in one defined place (the clipboard) with the second option the data would be in the receiving programm...

Regards
Michel

skrommel:
 :) Here's PlainCopy for you!

Skrommel


--- ---;PlainCopy.ahk
;Press Ctrl-C once to copy regularly, Ctrl-C twice fast to copy as text.
;Skrommel @2006

#SingleInstance,Force
Gosub,TRAYMENU
counter=0
Return

$^c::
counter+=1
SetTimer,TWICE,333
Return

TWICE:
SetTimer,TWICE,Off
Send,^c
If counter>1
  Clipboard=%Clipboard%
counter=0
Return

TRAYMENU:
Menu,Tray,DeleteAll
Menu,Tray,NoStandard
Menu,Tray,Add,PlainCopy,ABOUT
Menu,Tray,Add,
Menu,Tray,Add,&About,ABOUT
Menu,Tray,Add,E&xit,EXIT
Menu,Tray,Default,PlainCopy
Return

ABOUT:
about=PlainCopy
about=%about%`n
about=%about%`nPress Ctrl-C once to copy regularly, Ctrl-C twice fast to copy as text.
about=%about%`n
about=%about%`nSkrommel @2006    www.donationcoder.com/Software/Skrommel
MsgBox,0,PlainCopy,%about%
about=
Return

EXIT:
ExitApp

Navigation

[0] Message Index

[#] Next page

Go to full version