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

DonationCoder.com Software > Clipboard Help+Spell

autocopy function?

(1/1)

HankFriedman:
I love clipboard help and spell. In fact, it's one of my most used and most valued programs.

I use Autocopy 2 in WaterFox to automatically copy to the clipboard any text that I select with the mouse, but that doesn't work anywhere else in Windows.

I would love it if you would add AutoCopy as a general function throughout Windows.

I did try DragKing, but it didn't work in WordPerfect or UltraEdit.

Any chance of adding this functionality?

Thanks again for a truly great piece of software.

mouser:
This is not a bad idea for a coding snack -- I think the way it would have to work is as an app where you could tell it which apps to monitor and trigger a Ctrl+C after a mouse click drag and release.
I believe that's the only way to trigger automatic copy on select (with ctrl+c), and you'd not want to do it in EVERY app, just certain ones.

Lintalist:
Just fyi and if you happen to be an AutoHotkey user (a scripting language for Windows) - there are various scripts that do that - here are some examples (incl. link to an older script) https://autohotkey.com/boards/viewtopic.php?f=5&t=53867 - (as it happens a Lintalist user asked about this hence I recalled this). Using #IfWinActive and a Group you can make work in specific programs only.

IainB:
@Lintalist: Interesting. That AHK "Word-like" text selection simulator - seems like it could be a potential improvement. Thanks.
Personally, I hadn't been needing anything like that previously, but when it comes to repetitive manual tasks I am always on the lookout for ergonomically sound timesavers and this particular AHK idea might be more intuitive - and a potential timesaver to boot - than what I had trained myself to do using the default text-selection-and-copy approach that is effectively dictated by the prevailing system design.

Oh dear, I shall have to try it out now...(sigh).    :D
EDIT: 2018-11-03 1844hrs:
It (the Word-like select+copy) seems to work rather well!    :Thmbsup:
I have now enabled it for continuous use:

--- ---; EXPERIMENTAL 08 - Word-like text selection + copy. (Works OK) (Keep this for everyday use) (Enabled)
;                            - from https://autohotkey.com/boards/viewtopic.php?f=5&t=53867
~LButton::
Sleep 200
If GetKeyState("LButton", "P")
{
  Click, Down
  While GetKeyState("LButton") {
   }
  send ^c
  Return
}
Else
Return

dantheman:
It might not quite match what the original "poster" is looking for, but the Autocopy2 extension combined with Cintanotes quick abilities to receive and paste from clipboard (option to add tags to notes and more) might be an option to consider:

Pasting notes from the clipboard
CintaNotes also supports direct text pasting from the Windows clipboard. Select the “Paste” command from the “Edit” menu or press Ctrl+V. CintaNotes creates a new note with the text from the clipboard. It also tries to determine which application has put the data into the clipboard, and if successful, it uses the application window title as the note’s title. Unfortunately, reliable clipboard data source detection is not always possible, and when CintaNotes fails to find the source window, the first line of the pasted text becomes also the note’s title.
If you are pasting a note that was inserted to the Clipboard from CintaNotes, the Title, Tags and date information will be copied from the original note in addition to the note content.
It is recommended that you use clipping instead of clipboard pasting as much as possible, because in the former case more data can be filled automatically for you.

http://cintanotes.com/help/

Personally, i use the middle mouse to paste any given note from CN.

Btw, Autocopy2 is a nice Firefox extension i didn't know about.  :Thmbsup:

Do like clipr since it grabs url at same time as selected text (but not needed if using CN):
https://addons.mozilla.org/en-US/firefox/addon/clipr/

Navigation

[0] Message Index

Go to full version