Posts: 1,769
Threads: 410
Joined: Feb 2003
My TS Menu has a trigger "da" that executes a macro Date Output below.
However, most of the time it just pastes in my clipboard which is unrelated.
What am I doing wrong here?
TS Menu settings are: /b/i/c/p1
Macro
Date Output
ifa win("Microsoft Excel - 20 Percent Time.xlsx" "XLMAIN" "EXCEL")
,paste+ (_s.timeformat("{D}"))
,'R
else
,paste+ (_s.timeformat("{D}"))
Posts: 12,087
Threads: 142
Joined: Dec 2002
07-27-2020, 06:39 PM
(This post was last modified: 07-27-2020, 07:20 PM by Gintaras.)
In all programs?
Maybe interferes with some clipboard viewer etc software.
Also try
da :opt keysync 2; opt clip 1; paste "2020"
Also, if not using low-level keyboard hook, try low-level. In Options -> Triggers.
Posts: 12,087
Threads: 142
Joined: Dec 2002
QM bug: paste+ ignores + and always uses clipboard. Only its old alias outp+ uses keys as documented. Will be fixed in QM 2.4.11.1.
Also, now default key/paste synchronization does not work with some apps. I'll try to fix it if possible.
Posts: 1,769
Threads: 410
Joined: Feb 2003
Thanks! I'm using the opt code above and it hasn't failed yet. So, that's a good work around till then.
?