I know this works, but it copies every time I click, or if I add a modifier key, it becomes more of a hassle, is there another way to trigger it, for example by whether it is dragged, or the interval between releases
auto copy Macro (v10.0)
The tricky thing about using the mouse click (or trackpad click) as the trigger for a Macro is that we are always clicking the mouse around screen - so the problem becomes how does the Macro know when to trigger and copy stuff and when not to?
I had a play with a Macro in TextEdit which achieved what I think you want (it tested for a few conditions - 1) had the mouse been dragged after the initial click 2) was "copy" enabled in the App menu 3) had the mouse button been pressed and released - before making the copy) but it still wasn't 100% reliable so I'm not uploading it.
One thing you could try - have a hot key run a Macro which basically puts you into a selection "Mode" where any text you click on and drag the mouse over is automatically copied while you are in that selection "Mode". And have another hot key end that "Mode". I think that would be more robust.
Or... drag over the text you want to select and press ⌘C
Thank you for your reply, and thank you for your suggestion, I don't know why I always think it is possible to achieve, but my current ability is not enough to achieve, I can only provide some of my ideas, for example, can be based on the interval between the mouse hold and release time to determine whether to select the text to trigger, or according to the mouse hold after whether to move to trigger, I think these are two feasible trigger conditions, I don't know what you think? think how? If you can, please let me know, thank you!
I still think you are trying to do something not that advisable and that kind of fights the way the Mac is designed to work. But with that said...
I have done something which I think achieves what you are after. This example Macro works in TextEdit - but it can be adapted to the App you are working in by putting it in that App's Macro Group.
But before doing that try it out with some text in TextEdit to check it is working.
The logic is that the Macro doesn't do anything if any of the following are true:
The Mouse has not been moved between the down and the up click
The Menu item "Copy" is not enabled (i.e. this becomes enabled when something is selected)
Breaking down the steps:
It is triggered when the Mouse or Trackpad Button is pressed (rather than when it is released).
It copies the current mouse location to a Variable - LOCAL__MousePosition1
It pauses for 0.25 seconds (I found it needed this pause to catch up)
It Pause until the mouse button has been released
It copies the new position of the Mouse to a Variable - LOCAL__MousePosition2
If the mouse hasn't moved between down and up click (i.e. LOCAL__MousePosition1 = LOCAL__MousePosition2) or the Menu Item "Paste" is not enabled, the Macro ends without doing anything.
Otherwise it copies the selection to the Clipboard.
It displays the Clipboard Briefly
Here is a little GIF showing it in action. I first click the mouse around without selecting text and then I start to select text: